From c38105b9f58ee9b3e95c58de1ad194e63c073fb0 Mon Sep 17 00:00:00 2001 From: Eric Brelsford Date: Fri, 25 Oct 2024 13:43:54 +0000 Subject: [PATCH] Mappreview --- src/ckanext-mappreview/.coveragerc | 5 + .../.github/workflows/test.yml | 48 + src/ckanext-mappreview/.gitignore | 42 + src/ckanext-mappreview/LICENSE | 661 +++++++ src/ckanext-mappreview/MANIFEST.in | 5 + src/ckanext-mappreview/README.md | 123 ++ src/ckanext-mappreview/ckanext/__init__.py | 9 + .../ckanext/mappreview/__init__.py | 0 .../ckanext/mappreview/assets/.gitignore | 0 .../mappreview/assets/css/mappreview.css | 9 + .../assets/css/vendor/mapbox-gl-legend.css | 87 + .../assets/css/vendor/mapbox-gl.css | 1 + .../mappreview/assets/js/mappreview.js | 145 ++ .../assets/js/vendor/mapbox-gl-legend.js | 2 + .../mappreview/assets/js/vendor/mapbox-gl.js | 105 ++ .../ckanext/mappreview/assets/webassets.yml | 18 + .../ckanext/mappreview/i18n/.gitignore | 0 .../ckanext/mappreview/plugin.py | 14 + .../ckanext/mappreview/public/.gitignore | 0 .../public/data/recreation/airport.geojson | 10 + .../public/data/recreation/airport.qmd | 26 + .../public/data/recreation/andros-aoi.geojson | 8 + .../public/data/recreation/andros-aoi.qmd | 26 + .../public/data/recreation/beaches.geojson | 295 +++ .../public/data/recreation/beaches.qmd | 26 + .../public/data/recreation/bonefish.geojson | 8 + .../public/data/recreation/bonefish.qmd | 26 + .../data/recreation/dredged-ports.geojson | 21 + .../public/data/recreation/dredged-ports.qmd | 26 + .../data/recreation/roads-simple-buf.geojson | 8 + .../data/recreation/roads-simple-buf.qmd | 26 + .../data/recreation/roads-simple.geojson | 1592 +++++++++++++++++ .../public/data/recreation/roads-simple.qmd | 26 + .../ckanext/mappreview/templates/.gitignore | 0 .../ckanext/mappreview/templates/base.html | 11 + .../package/snippets/resources_list.html | 9 + .../ckanext/mappreview/tests/__init__.py | 0 .../ckanext/mappreview/tests/test_plugin.py | 56 + src/ckanext-mappreview/dev-requirements.txt | 1 + src/ckanext-mappreview/requirements.txt | 0 src/ckanext-mappreview/setup.cfg | 62 + src/ckanext-mappreview/setup.py | 16 + src/ckanext-mappreview/test.ini | 45 + 43 files changed, 3598 insertions(+) create mode 100644 src/ckanext-mappreview/.coveragerc create mode 100644 src/ckanext-mappreview/.github/workflows/test.yml create mode 100644 src/ckanext-mappreview/.gitignore create mode 100644 src/ckanext-mappreview/LICENSE create mode 100644 src/ckanext-mappreview/MANIFEST.in create mode 100644 src/ckanext-mappreview/README.md create mode 100644 src/ckanext-mappreview/ckanext/__init__.py create mode 100644 src/ckanext-mappreview/ckanext/mappreview/__init__.py create mode 100644 src/ckanext-mappreview/ckanext/mappreview/assets/.gitignore create mode 100644 src/ckanext-mappreview/ckanext/mappreview/assets/css/mappreview.css create mode 100644 src/ckanext-mappreview/ckanext/mappreview/assets/css/vendor/mapbox-gl-legend.css create mode 100644 src/ckanext-mappreview/ckanext/mappreview/assets/css/vendor/mapbox-gl.css create mode 100644 src/ckanext-mappreview/ckanext/mappreview/assets/js/mappreview.js create mode 100644 src/ckanext-mappreview/ckanext/mappreview/assets/js/vendor/mapbox-gl-legend.js create mode 100644 src/ckanext-mappreview/ckanext/mappreview/assets/js/vendor/mapbox-gl.js create mode 100644 src/ckanext-mappreview/ckanext/mappreview/assets/webassets.yml create mode 100644 src/ckanext-mappreview/ckanext/mappreview/i18n/.gitignore create mode 100644 src/ckanext-mappreview/ckanext/mappreview/plugin.py create mode 100644 src/ckanext-mappreview/ckanext/mappreview/public/.gitignore create mode 100644 src/ckanext-mappreview/ckanext/mappreview/public/data/recreation/airport.geojson create mode 100644 src/ckanext-mappreview/ckanext/mappreview/public/data/recreation/airport.qmd create mode 100644 src/ckanext-mappreview/ckanext/mappreview/public/data/recreation/andros-aoi.geojson create mode 100644 src/ckanext-mappreview/ckanext/mappreview/public/data/recreation/andros-aoi.qmd create mode 100644 src/ckanext-mappreview/ckanext/mappreview/public/data/recreation/beaches.geojson create mode 100644 src/ckanext-mappreview/ckanext/mappreview/public/data/recreation/beaches.qmd create mode 100644 src/ckanext-mappreview/ckanext/mappreview/public/data/recreation/bonefish.geojson create mode 100644 src/ckanext-mappreview/ckanext/mappreview/public/data/recreation/bonefish.qmd create mode 100644 src/ckanext-mappreview/ckanext/mappreview/public/data/recreation/dredged-ports.geojson create mode 100644 src/ckanext-mappreview/ckanext/mappreview/public/data/recreation/dredged-ports.qmd create mode 100644 src/ckanext-mappreview/ckanext/mappreview/public/data/recreation/roads-simple-buf.geojson create mode 100644 src/ckanext-mappreview/ckanext/mappreview/public/data/recreation/roads-simple-buf.qmd create mode 100644 src/ckanext-mappreview/ckanext/mappreview/public/data/recreation/roads-simple.geojson create mode 100644 src/ckanext-mappreview/ckanext/mappreview/public/data/recreation/roads-simple.qmd create mode 100644 src/ckanext-mappreview/ckanext/mappreview/templates/.gitignore create mode 100644 src/ckanext-mappreview/ckanext/mappreview/templates/base.html create mode 100644 src/ckanext-mappreview/ckanext/mappreview/templates/package/snippets/resources_list.html create mode 100644 src/ckanext-mappreview/ckanext/mappreview/tests/__init__.py create mode 100644 src/ckanext-mappreview/ckanext/mappreview/tests/test_plugin.py create mode 100644 src/ckanext-mappreview/dev-requirements.txt create mode 100644 src/ckanext-mappreview/requirements.txt create mode 100644 src/ckanext-mappreview/setup.cfg create mode 100644 src/ckanext-mappreview/setup.py create mode 100644 src/ckanext-mappreview/test.ini diff --git a/src/ckanext-mappreview/.coveragerc b/src/ckanext-mappreview/.coveragerc new file mode 100644 index 00000000..895e2913 --- /dev/null +++ b/src/ckanext-mappreview/.coveragerc @@ -0,0 +1,5 @@ +[report] +omit = + */site-packages/* + */python?.?/* + ckan/* diff --git a/src/ckanext-mappreview/.github/workflows/test.yml b/src/ckanext-mappreview/.github/workflows/test.yml new file mode 100644 index 00000000..b7cab86e --- /dev/null +++ b/src/ckanext-mappreview/.github/workflows/test.yml @@ -0,0 +1,48 @@ +name: Tests +on: [push, pull_request] +jobs: + test: + runs-on: ubuntu-latest + container: + # The CKAN version tag of the Solr and Postgres containers should match + # the one of the container the tests run on. + # You can switch this base image with a custom image tailored to your project + image: ckan/ckan-dev:2.10 + services: + solr: + image: ckan/ckan-solr:2.10-solr9 + postgres: + image: ckan/ckan-postgres-dev:2.10 + env: + POSTGRES_USER: postgres + POSTGRES_PASSWORD: postgres + POSTGRES_DB: postgres + options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5 + redis: + image: redis:3 + + env: + CKAN_SQLALCHEMY_URL: postgresql://ckan_default:pass@postgres/ckan_test + CKAN_DATASTORE_WRITE_URL: postgresql://datastore_write:pass@postgres/datastore_test + CKAN_DATASTORE_READ_URL: postgresql://datastore_read:pass@postgres/datastore_test + CKAN_SOLR_URL: http://solr:8983/solr/ckan + CKAN_REDIS_URL: redis://redis:6379/1 + + steps: + - uses: actions/checkout@v4 + - name: Install requirements + # Install any extra requirements your extension has here (dev requirements, other extensions etc) + run: | + pip install -r requirements.txt + pip install -r dev-requirements.txt + pip install -e . + - name: Setup extension + # Extra initialization steps + run: | + # Replace default path to CKAN core config file with the one on the container + sed -i -e 's/use = config:.*/use = config:\/srv\/app\/src\/ckan\/test-core.ini/' test.ini + + ckan -c test.ini db init + - name: Run tests + run: pytest --ckan-ini=test.ini --cov=ckanext.mappreview --disable-warnings ckanext/mappreview + diff --git a/src/ckanext-mappreview/.gitignore b/src/ckanext-mappreview/.gitignore new file mode 100644 index 00000000..8570dc5c --- /dev/null +++ b/src/ckanext-mappreview/.gitignore @@ -0,0 +1,42 @@ +.ropeproject +node_modules +bower_components + +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] + +# C extensions +*.so + +# Distribution / packaging +.Python +env/ +build/ +develop-eggs/ +dist/ +sdist/ +*.egg-info/ +.installed.cfg +*.egg + +# PyInstaller +# Usually these files are written by a python script from a template +# before PyInstaller builds the exe, so as to inject date/other infos into it. +*.manifest +*.spec + +# Installer logs +pip-log.txt +pip-delete-this-directory.txt + +# Unit test / coverage reports +htmlcov/ +.tox/ +.coverage +.cache +nosetests.xml +coverage.xml + +# Sphinx documentation +docs/_build/ diff --git a/src/ckanext-mappreview/LICENSE b/src/ckanext-mappreview/LICENSE new file mode 100644 index 00000000..58777e31 --- /dev/null +++ b/src/ckanext-mappreview/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/src/ckanext-mappreview/MANIFEST.in b/src/ckanext-mappreview/MANIFEST.in new file mode 100644 index 00000000..2244507c --- /dev/null +++ b/src/ckanext-mappreview/MANIFEST.in @@ -0,0 +1,5 @@ +include README.rst +include LICENSE +include requirements.txt +recursive-include ckanext/mappreview *.html *.json *.js *.less *.css *.mo *.yml +recursive-include ckanext/mappreview/migration *.ini *.py *.mako diff --git a/src/ckanext-mappreview/README.md b/src/ckanext-mappreview/README.md new file mode 100644 index 00000000..8ea05506 --- /dev/null +++ b/src/ckanext-mappreview/README.md @@ -0,0 +1,123 @@ +[![Tests](https://github.com/stamen/ckanext-mappreview/workflows/Tests/badge.svg?branch=main)](https://github.com/stamen/ckanext-mappreview/actions) + +# ckanext-mappreview + +**TODO:** Put a description of your extension here: What does it do? What features does it have? Consider including some screenshots or embedding a video! + + +## Requirements + +**TODO:** For example, you might want to mention here which versions of CKAN this +extension works with. + +If your extension works across different versions you can add the following table: + +Compatibility with core CKAN versions: + +| CKAN version | Compatible? | +| --------------- | ------------- | +| 2.6 and earlier | not tested | +| 2.7 | not tested | +| 2.8 | not tested | +| 2.9 | not tested | + +Suggested values: + +* "yes" +* "not tested" - I can't think of a reason why it wouldn't work +* "not yet" - there is an intention to get it working +* "no" + + +## Installation + +**TODO:** Add any additional install steps to the list below. + For example installing any non-Python dependencies or adding any required + config settings. + +To install ckanext-mappreview: + +1. Activate your CKAN virtual environment, for example: + + . /usr/lib/ckan/default/bin/activate + +2. Clone the source and install it on the virtualenv + + git clone https://github.com/stamen/ckanext-mappreview.git + cd ckanext-mappreview + pip install -e . + pip install -r requirements.txt + +3. Add `mappreview` to the `ckan.plugins` setting in your CKAN + config file (by default the config file is located at + `/etc/ckan/default/ckan.ini`). + +4. Restart CKAN. For example if you've deployed CKAN with Apache on Ubuntu: + + sudo service apache2 reload + + +## Config settings + +None at present + +**TODO:** Document any optional config settings here. For example: + + # The minimum number of hours to wait before re-checking a resource + # (optional, default: 24). + ckanext.mappreview.some_setting = some_default_value + + +## Developer installation + +To install ckanext-mappreview for development, activate your CKAN virtualenv and +do: + + git clone https://github.com/stamen/ckanext-mappreview.git + cd ckanext-mappreview + python setup.py develop + pip install -r dev-requirements.txt + + +## Tests + +To run the tests, do: + + pytest --ckan-ini=test.ini + + +## Releasing a new version of ckanext-mappreview + +If ckanext-mappreview should be available on PyPI you can follow these steps to publish a new version: + +1. Update the version number in the `setup.py` file. See [PEP 440](http://legacy.python.org/dev/peps/pep-0440/#public-version-identifiers) for how to choose version numbers. + +2. Make sure you have the latest version of necessary packages: + + pip install --upgrade setuptools wheel twine + +3. Create a source and binary distributions of the new version: + + python setup.py sdist bdist_wheel && twine check dist/* + + Fix any errors you get. + +4. Upload the source distribution to PyPI: + + twine upload dist/* + +5. Commit any outstanding changes: + + git commit -a + git push + +6. Tag the new release of the project on GitHub with the version number from + the `setup.py` file. For example if the version number in `setup.py` is + 0.0.1 then do: + + git tag 0.0.1 + git push --tags + +## License + +[AGPL](https://www.gnu.org/licenses/agpl-3.0.en.html) diff --git a/src/ckanext-mappreview/ckanext/__init__.py b/src/ckanext-mappreview/ckanext/__init__.py new file mode 100644 index 00000000..ed48ed01 --- /dev/null +++ b/src/ckanext-mappreview/ckanext/__init__.py @@ -0,0 +1,9 @@ +# encoding: utf-8 + +# this is a namespace package +try: + import pkg_resources + pkg_resources.declare_namespace(__name__) +except ImportError: + import pkgutil + __path__ = pkgutil.extend_path(__path__, __name__) diff --git a/src/ckanext-mappreview/ckanext/mappreview/__init__.py b/src/ckanext-mappreview/ckanext/mappreview/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/src/ckanext-mappreview/ckanext/mappreview/assets/.gitignore b/src/ckanext-mappreview/ckanext/mappreview/assets/.gitignore new file mode 100644 index 00000000..e69de29b diff --git a/src/ckanext-mappreview/ckanext/mappreview/assets/css/mappreview.css b/src/ckanext-mappreview/ckanext/mappreview/assets/css/mappreview.css new file mode 100644 index 00000000..ebe6e4b4 --- /dev/null +++ b/src/ckanext-mappreview/ckanext/mappreview/assets/css/mappreview.css @@ -0,0 +1,9 @@ +.mappreview .map { + height: 500px; + width: 100%; +} + +.mappreview .mappreview-mapboxgl-popup .mapboxgl-popup-content { + max-height: 200px; + overflow-y: auto; +} diff --git a/src/ckanext-mappreview/ckanext/mappreview/assets/css/vendor/mapbox-gl-legend.css b/src/ckanext-mappreview/ckanext/mappreview/assets/css/vendor/mapbox-gl-legend.css new file mode 100644 index 00000000..a4b285c8 --- /dev/null +++ b/src/ckanext-mappreview/ckanext/mappreview/assets/css/vendor/mapbox-gl-legend.css @@ -0,0 +1,87 @@ +.mapboxgl-legend-list +{ + display: none; +} + +.mapboxgl-legend-list{ + overflow-y:scroll; + max-height: calc(100vh * 0.7); +} + +.mapboxgl-ctrl-group .mapboxgl-legend-list button +{ + background: none; + border: none; + cursor: pointer; + display: block; + /* padding: 8px 8px 6px; */ + /* text-align: right; */ + /* width: 100%; */ + height: auto; +} + +.mapboxgl-legend-list button.active +{ + font-weight: bold; +} + +.mapboxgl-legend-list button:hover +{ + background-color: rgba(0, 0, 0, 0.05); +} + +.mapboxgl-legend-list button + button +{ + border-top: 1px solid #ddd; +} + +.mapboxgl-legend-switcher +{ + background: url('data:image/svg+xml;charset=UTF-8,'); + background-position: center; + background-repeat: no-repeat; + background-size: 70%; +} + +table.legend-table{ + border-collapse:collapse; + margin:0 auto; + } +td.legend-table-td,th.legend-table-th{ + border:1px solid #ffffff; + margin: 10px; + padding:2px; + text-align: left; +} + +.mapboxgl-legend-close-button{ + position: absolute; + right: 0; + top: 0; + border: 0; + border-radius: 0 3px 0 0; + cursor: pointer; + background-color: transparent; + font-size: 13px; + padding-top: 5px; + padding-right: 5px; +} + +.mapboxgl-legend-title-label{ + font-size: 14px; + font-weight: bold; + margin: 5px; +} + +.mapboxgl-legend-onlyRendered-checkbox{ + margin: 5px; +} + +.mapboxgl-legend-onlyRendered-label{ + font-size: 14px; + margin: 5px; +} + +td.legend-table-td > svg{ + height: 17px; +} \ No newline at end of file diff --git a/src/ckanext-mappreview/ckanext/mappreview/assets/css/vendor/mapbox-gl.css b/src/ckanext-mappreview/ckanext/mappreview/assets/css/vendor/mapbox-gl.css new file mode 100644 index 00000000..90c70f21 --- /dev/null +++ b/src/ckanext-mappreview/ckanext/mappreview/assets/css/vendor/mapbox-gl.css @@ -0,0 +1 @@ +.mapboxgl-map{font:12px/20px Helvetica Neue,Arial,Helvetica,sans-serif;overflow:hidden;position:relative;-webkit-tap-highlight-color:rgb(0 0 0/0)}.mapboxgl-canvas{left:0;position:absolute;top:0}.mapboxgl-map:-webkit-full-screen{height:100%;width:100%}.mapboxgl-canary{background-color:salmon}.mapboxgl-canvas-container.mapboxgl-interactive,.mapboxgl-ctrl-group button.mapboxgl-ctrl-compass{cursor:grab;-webkit-user-select:none;user-select:none}.mapboxgl-canvas-container.mapboxgl-interactive.mapboxgl-track-pointer{cursor:pointer}.mapboxgl-canvas-container.mapboxgl-interactive:active,.mapboxgl-ctrl-group button.mapboxgl-ctrl-compass:active{cursor:grabbing}.mapboxgl-canvas-container.mapboxgl-touch-zoom-rotate,.mapboxgl-canvas-container.mapboxgl-touch-zoom-rotate .mapboxgl-canvas{touch-action:pan-x pan-y}.mapboxgl-canvas-container.mapboxgl-touch-drag-pan,.mapboxgl-canvas-container.mapboxgl-touch-drag-pan .mapboxgl-canvas{touch-action:pinch-zoom}.mapboxgl-canvas-container.mapboxgl-touch-zoom-rotate.mapboxgl-touch-drag-pan,.mapboxgl-canvas-container.mapboxgl-touch-zoom-rotate.mapboxgl-touch-drag-pan .mapboxgl-canvas{touch-action:none}.mapboxgl-ctrl-bottom-left,.mapboxgl-ctrl-bottom-right,.mapboxgl-ctrl-top-left,.mapboxgl-ctrl-top-right{pointer-events:none;position:absolute;z-index:2}.mapboxgl-ctrl-top-left{left:0;top:0}.mapboxgl-ctrl-top-right{right:0;top:0}.mapboxgl-ctrl-bottom-left{bottom:0;left:0}.mapboxgl-ctrl-bottom-right{bottom:0;right:0}.mapboxgl-ctrl{clear:both;pointer-events:auto;transform:translate(0)}.mapboxgl-ctrl-top-left .mapboxgl-ctrl{float:left;margin:10px 0 0 10px}.mapboxgl-ctrl-top-right .mapboxgl-ctrl{float:right;margin:10px 10px 0 0}.mapboxgl-ctrl-bottom-left .mapboxgl-ctrl{float:left;margin:0 0 10px 10px}.mapboxgl-ctrl-bottom-right .mapboxgl-ctrl{float:right;margin:0 10px 10px 0}.mapboxgl-ctrl-group{background:#fff;border-radius:4px}.mapboxgl-ctrl-group:not(:empty){box-shadow:0 0 0 2px rgba(0,0,0,.1)}@media (-ms-high-contrast:active){.mapboxgl-ctrl-group:not(:empty){box-shadow:0 0 0 2px ButtonText}}.mapboxgl-ctrl-group button{background-color:transparent;border:0;box-sizing:border-box;cursor:pointer;display:block;height:29px;outline:0;overflow:hidden;padding:0;width:29px}.mapboxgl-ctrl-group button+button{border-top:1px solid #ddd}.mapboxgl-ctrl button .mapboxgl-ctrl-icon{background-position:50%;background-repeat:no-repeat;display:block;height:100%;width:100%}@media (-ms-high-contrast:active){.mapboxgl-ctrl-icon{background-color:transparent}.mapboxgl-ctrl-group button+button{border-top:1px solid ButtonText}}.mapboxgl-ctrl-attrib-button:focus,.mapboxgl-ctrl-group button:focus{box-shadow:0 0 2px 2px #0096ff}.mapboxgl-ctrl button:disabled{cursor:not-allowed}.mapboxgl-ctrl button:disabled .mapboxgl-ctrl-icon{opacity:.25}.mapboxgl-ctrl-group button:first-child{border-radius:4px 4px 0 0}.mapboxgl-ctrl-group button:last-child{border-radius:0 0 4px 4px}.mapboxgl-ctrl-group button:only-child{border-radius:inherit}.mapboxgl-ctrl button:not(:disabled):hover{background-color:rgb(0 0 0/5%)}.mapboxgl-ctrl-group button:focus:focus-visible{box-shadow:0 0 2px 2px #0096ff}.mapboxgl-ctrl-group button:focus:not(:focus-visible){box-shadow:none}.mapboxgl-ctrl button.mapboxgl-ctrl-zoom-out .mapboxgl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23333' viewBox='0 0 29 29'%3E%3Cpath d='M10 13c-.75 0-1.5.75-1.5 1.5S9.25 16 10 16h9c.75 0 1.5-.75 1.5-1.5S19.75 13 19 13h-9z'/%3E%3C/svg%3E")}.mapboxgl-ctrl button.mapboxgl-ctrl-zoom-in .mapboxgl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23333' viewBox='0 0 29 29'%3E%3Cpath d='M14.5 8.5c-.75 0-1.5.75-1.5 1.5v3h-3c-.75 0-1.5.75-1.5 1.5S9.25 16 10 16h3v3c0 .75.75 1.5 1.5 1.5S16 19.75 16 19v-3h3c.75 0 1.5-.75 1.5-1.5S19.75 13 19 13h-3v-3c0-.75-.75-1.5-1.5-1.5z'/%3E%3C/svg%3E")}@media (-ms-high-contrast:active){.mapboxgl-ctrl button.mapboxgl-ctrl-zoom-out .mapboxgl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 29 29'%3E%3Cpath d='M10 13c-.75 0-1.5.75-1.5 1.5S9.25 16 10 16h9c.75 0 1.5-.75 1.5-1.5S19.75 13 19 13h-9z'/%3E%3C/svg%3E")}.mapboxgl-ctrl button.mapboxgl-ctrl-zoom-in .mapboxgl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 29 29'%3E%3Cpath d='M14.5 8.5c-.75 0-1.5.75-1.5 1.5v3h-3c-.75 0-1.5.75-1.5 1.5S9.25 16 10 16h3v3c0 .75.75 1.5 1.5 1.5S16 19.75 16 19v-3h3c.75 0 1.5-.75 1.5-1.5S19.75 13 19 13h-3v-3c0-.75-.75-1.5-1.5-1.5z'/%3E%3C/svg%3E")}}@media (-ms-high-contrast:black-on-white){.mapboxgl-ctrl button.mapboxgl-ctrl-zoom-out .mapboxgl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' viewBox='0 0 29 29'%3E%3Cpath d='M10 13c-.75 0-1.5.75-1.5 1.5S9.25 16 10 16h9c.75 0 1.5-.75 1.5-1.5S19.75 13 19 13h-9z'/%3E%3C/svg%3E")}.mapboxgl-ctrl button.mapboxgl-ctrl-zoom-in .mapboxgl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' viewBox='0 0 29 29'%3E%3Cpath d='M14.5 8.5c-.75 0-1.5.75-1.5 1.5v3h-3c-.75 0-1.5.75-1.5 1.5S9.25 16 10 16h3v3c0 .75.75 1.5 1.5 1.5S16 19.75 16 19v-3h3c.75 0 1.5-.75 1.5-1.5S19.75 13 19 13h-3v-3c0-.75-.75-1.5-1.5-1.5z'/%3E%3C/svg%3E")}}.mapboxgl-ctrl button.mapboxgl-ctrl-fullscreen .mapboxgl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23333' viewBox='0 0 29 29'%3E%3Cpath d='M24 16v5.5c0 1.75-.75 2.5-2.5 2.5H16v-1l3-1.5-4-5.5 1-1 5.5 4 1.5-3h1zM6 16l1.5 3 5.5-4 1 1-4 5.5 3 1.5v1H7.5C5.75 24 5 23.25 5 21.5V16h1zm7-11v1l-3 1.5 4 5.5-1 1-5.5-4L6 13H5V7.5C5 5.75 5.75 5 7.5 5H13zm11 2.5c0-1.75-.75-2.5-2.5-2.5H16v1l3 1.5-4 5.5 1 1 5.5-4 1.5 3h1V7.5z'/%3E%3C/svg%3E")}.mapboxgl-ctrl button.mapboxgl-ctrl-shrink .mapboxgl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 29 29'%3E%3Cpath d='M18.5 16c-1.75 0-2.5.75-2.5 2.5V24h1l1.5-3 5.5 4 1-1-4-5.5 3-1.5v-1h-5.5zM13 18.5c0-1.75-.75-2.5-2.5-2.5H5v1l3 1.5L4 24l1 1 5.5-4 1.5 3h1v-5.5zm3-8c0 1.75.75 2.5 2.5 2.5H24v-1l-3-1.5L25 5l-1-1-5.5 4L17 5h-1v5.5zM10.5 13c1.75 0 2.5-.75 2.5-2.5V5h-1l-1.5 3L5 4 4 5l4 5.5L5 12v1h5.5z'/%3E%3C/svg%3E")}@media (-ms-high-contrast:active){.mapboxgl-ctrl button.mapboxgl-ctrl-fullscreen .mapboxgl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 29 29'%3E%3Cpath d='M24 16v5.5c0 1.75-.75 2.5-2.5 2.5H16v-1l3-1.5-4-5.5 1-1 5.5 4 1.5-3h1zM6 16l1.5 3 5.5-4 1 1-4 5.5 3 1.5v1H7.5C5.75 24 5 23.25 5 21.5V16h1zm7-11v1l-3 1.5 4 5.5-1 1-5.5-4L6 13H5V7.5C5 5.75 5.75 5 7.5 5H13zm11 2.5c0-1.75-.75-2.5-2.5-2.5H16v1l3 1.5-4 5.5 1 1 5.5-4 1.5 3h1V7.5z'/%3E%3C/svg%3E")}.mapboxgl-ctrl button.mapboxgl-ctrl-shrink .mapboxgl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 29 29'%3E%3Cpath d='M18.5 16c-1.75 0-2.5.75-2.5 2.5V24h1l1.5-3 5.5 4 1-1-4-5.5 3-1.5v-1h-5.5zM13 18.5c0-1.75-.75-2.5-2.5-2.5H5v1l3 1.5L4 24l1 1 5.5-4 1.5 3h1v-5.5zm3-8c0 1.75.75 2.5 2.5 2.5H24v-1l-3-1.5L25 5l-1-1-5.5 4L17 5h-1v5.5zM10.5 13c1.75 0 2.5-.75 2.5-2.5V5h-1l-1.5 3L5 4 4 5l4 5.5L5 12v1h5.5z'/%3E%3C/svg%3E")}}@media (-ms-high-contrast:black-on-white){.mapboxgl-ctrl button.mapboxgl-ctrl-fullscreen .mapboxgl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' viewBox='0 0 29 29'%3E%3Cpath d='M24 16v5.5c0 1.75-.75 2.5-2.5 2.5H16v-1l3-1.5-4-5.5 1-1 5.5 4 1.5-3h1zM6 16l1.5 3 5.5-4 1 1-4 5.5 3 1.5v1H7.5C5.75 24 5 23.25 5 21.5V16h1zm7-11v1l-3 1.5 4 5.5-1 1-5.5-4L6 13H5V7.5C5 5.75 5.75 5 7.5 5H13zm11 2.5c0-1.75-.75-2.5-2.5-2.5H16v1l3 1.5-4 5.5 1 1 5.5-4 1.5 3h1V7.5z'/%3E%3C/svg%3E")}.mapboxgl-ctrl button.mapboxgl-ctrl-shrink .mapboxgl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' viewBox='0 0 29 29'%3E%3Cpath d='M18.5 16c-1.75 0-2.5.75-2.5 2.5V24h1l1.5-3 5.5 4 1-1-4-5.5 3-1.5v-1h-5.5zM13 18.5c0-1.75-.75-2.5-2.5-2.5H5v1l3 1.5L4 24l1 1 5.5-4 1.5 3h1v-5.5zm3-8c0 1.75.75 2.5 2.5 2.5H24v-1l-3-1.5L25 5l-1-1-5.5 4L17 5h-1v5.5zM10.5 13c1.75 0 2.5-.75 2.5-2.5V5h-1l-1.5 3L5 4 4 5l4 5.5L5 12v1h5.5z'/%3E%3C/svg%3E")}}.mapboxgl-ctrl button.mapboxgl-ctrl-compass .mapboxgl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23333' viewBox='0 0 29 29'%3E%3Cpath d='M10.5 14l4-8 4 8h-8z'/%3E%3Cpath id='south' d='M10.5 16l4 8 4-8h-8z' fill='%23ccc'/%3E%3C/svg%3E")}@media (-ms-high-contrast:active){.mapboxgl-ctrl button.mapboxgl-ctrl-compass .mapboxgl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 29 29'%3E%3Cpath d='M10.5 14l4-8 4 8h-8z'/%3E%3Cpath id='south' d='M10.5 16l4 8 4-8h-8z' fill='%23999'/%3E%3C/svg%3E")}}@media (-ms-high-contrast:black-on-white){.mapboxgl-ctrl button.mapboxgl-ctrl-compass .mapboxgl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' viewBox='0 0 29 29'%3E%3Cpath d='M10.5 14l4-8 4 8h-8z'/%3E%3Cpath id='south' d='M10.5 16l4 8 4-8h-8z' fill='%23ccc'/%3E%3C/svg%3E")}}.mapboxgl-ctrl button.mapboxgl-ctrl-geolocate .mapboxgl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%23333'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E%3Ccircle id='dot' cx='10' cy='10' r='2'/%3E%3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' display='none'/%3E%3C/svg%3E")}.mapboxgl-ctrl button.mapboxgl-ctrl-geolocate:disabled .mapboxgl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%23aaa'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E%3Ccircle id='dot' cx='10' cy='10' r='2'/%3E%3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' fill='%23f00'/%3E%3C/svg%3E")}.mapboxgl-ctrl button.mapboxgl-ctrl-geolocate.mapboxgl-ctrl-geolocate-active .mapboxgl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%2333b5e5'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E%3Ccircle id='dot' cx='10' cy='10' r='2'/%3E%3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' display='none'/%3E%3C/svg%3E")}.mapboxgl-ctrl button.mapboxgl-ctrl-geolocate.mapboxgl-ctrl-geolocate-active-error .mapboxgl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%23e58978'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E%3Ccircle id='dot' cx='10' cy='10' r='2'/%3E%3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' display='none'/%3E%3C/svg%3E")}.mapboxgl-ctrl button.mapboxgl-ctrl-geolocate.mapboxgl-ctrl-geolocate-background .mapboxgl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%2333b5e5'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E%3Ccircle id='dot' cx='10' cy='10' r='2' display='none'/%3E%3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' display='none'/%3E%3C/svg%3E")}.mapboxgl-ctrl button.mapboxgl-ctrl-geolocate.mapboxgl-ctrl-geolocate-background-error .mapboxgl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%23e54e33'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E%3Ccircle id='dot' cx='10' cy='10' r='2' display='none'/%3E%3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' display='none'/%3E%3C/svg%3E")}.mapboxgl-ctrl button.mapboxgl-ctrl-geolocate.mapboxgl-ctrl-geolocate-waiting .mapboxgl-ctrl-icon{animation:mapboxgl-spin 2s linear infinite}@media (-ms-high-contrast:active){.mapboxgl-ctrl button.mapboxgl-ctrl-geolocate .mapboxgl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%23fff'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E%3Ccircle id='dot' cx='10' cy='10' r='2'/%3E%3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' display='none'/%3E%3C/svg%3E")}.mapboxgl-ctrl button.mapboxgl-ctrl-geolocate:disabled .mapboxgl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%23999'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E%3Ccircle id='dot' cx='10' cy='10' r='2'/%3E%3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' fill='%23f00'/%3E%3C/svg%3E")}.mapboxgl-ctrl button.mapboxgl-ctrl-geolocate.mapboxgl-ctrl-geolocate-active .mapboxgl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%2333b5e5'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E%3Ccircle id='dot' cx='10' cy='10' r='2'/%3E%3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' display='none'/%3E%3C/svg%3E")}.mapboxgl-ctrl button.mapboxgl-ctrl-geolocate.mapboxgl-ctrl-geolocate-active-error .mapboxgl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%23e58978'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E%3Ccircle id='dot' cx='10' cy='10' r='2'/%3E%3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' display='none'/%3E%3C/svg%3E")}.mapboxgl-ctrl button.mapboxgl-ctrl-geolocate.mapboxgl-ctrl-geolocate-background .mapboxgl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%2333b5e5'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E%3Ccircle id='dot' cx='10' cy='10' r='2' display='none'/%3E%3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' display='none'/%3E%3C/svg%3E")}.mapboxgl-ctrl button.mapboxgl-ctrl-geolocate.mapboxgl-ctrl-geolocate-background-error .mapboxgl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%23e54e33'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E%3Ccircle id='dot' cx='10' cy='10' r='2' display='none'/%3E%3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' display='none'/%3E%3C/svg%3E")}}@media (-ms-high-contrast:black-on-white){.mapboxgl-ctrl button.mapboxgl-ctrl-geolocate .mapboxgl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%23000'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E%3Ccircle id='dot' cx='10' cy='10' r='2'/%3E%3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' display='none'/%3E%3C/svg%3E")}.mapboxgl-ctrl button.mapboxgl-ctrl-geolocate:disabled .mapboxgl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%23666'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E%3Ccircle id='dot' cx='10' cy='10' r='2'/%3E%3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' fill='%23f00'/%3E%3C/svg%3E")}}@keyframes mapboxgl-spin{0%{transform:rotate(0)}to{transform:rotate(1turn)}}a.mapboxgl-ctrl-logo{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' fill-rule='evenodd' viewBox='0 0 88 23'%3E%3Cdefs%3E%3Cpath id='logo' d='M11.5 2.25c5.105 0 9.25 4.145 9.25 9.25s-4.145 9.25-9.25 9.25-9.25-4.145-9.25-9.25 4.145-9.25 9.25-9.25zM6.997 15.983c-.051-.338-.828-5.802 2.233-8.873a4.395 4.395 0 013.13-1.28c1.27 0 2.49.51 3.39 1.42.91.9 1.42 2.12 1.42 3.39 0 1.18-.449 2.301-1.28 3.13C12.72 16.93 7 16 7 16l-.003-.017zM15.3 10.5l-2 .8-.8 2-.8-2-2-.8 2-.8.8-2 .8 2 2 .8z'/%3E%3Cpath id='text' d='M50.63 8c.13 0 .23.1.23.23V9c.7-.76 1.7-1.18 2.73-1.18 2.17 0 3.95 1.85 3.95 4.17s-1.77 4.19-3.94 4.19c-1.04 0-2.03-.43-2.74-1.18v3.77c0 .13-.1.23-.23.23h-1.4c-.13 0-.23-.1-.23-.23V8.23c0-.12.1-.23.23-.23h1.4zm-3.86.01c.01 0 .01 0 .01-.01.13 0 .22.1.22.22v7.55c0 .12-.1.23-.23.23h-1.4c-.13 0-.23-.1-.23-.23V15c-.7.76-1.69 1.19-2.73 1.19-2.17 0-3.94-1.87-3.94-4.19 0-2.32 1.77-4.19 3.94-4.19 1.03 0 2.02.43 2.73 1.18v-.75c0-.12.1-.23.23-.23h1.4zm26.375-.19a4.24 4.24 0 00-4.16 3.29c-.13.59-.13 1.19 0 1.77a4.233 4.233 0 004.17 3.3c2.35 0 4.26-1.87 4.26-4.19 0-2.32-1.9-4.17-4.27-4.17zM60.63 5c.13 0 .23.1.23.23v3.76c.7-.76 1.7-1.18 2.73-1.18 1.88 0 3.45 1.4 3.84 3.28.13.59.13 1.2 0 1.8-.39 1.88-1.96 3.29-3.84 3.29-1.03 0-2.02-.43-2.73-1.18v.77c0 .12-.1.23-.23.23h-1.4c-.13 0-.23-.1-.23-.23V5.23c0-.12.1-.23.23-.23h1.4zm-34 11h-1.4c-.13 0-.23-.11-.23-.23V8.22c.01-.13.1-.22.23-.22h1.4c.13 0 .22.11.23.22v.68c.5-.68 1.3-1.09 2.16-1.1h.03c1.09 0 2.09.6 2.6 1.55.45-.95 1.4-1.55 2.44-1.56 1.62 0 2.93 1.25 2.9 2.78l.03 5.2c0 .13-.1.23-.23.23h-1.41c-.13 0-.23-.11-.23-.23v-4.59c0-.98-.74-1.71-1.62-1.71-.8 0-1.46.7-1.59 1.62l.01 4.68c0 .13-.11.23-.23.23h-1.41c-.13 0-.23-.11-.23-.23v-4.59c0-.98-.74-1.71-1.62-1.71-.85 0-1.54.79-1.6 1.8v4.5c0 .13-.1.23-.23.23zm53.615 0h-1.61c-.04 0-.08-.01-.12-.03-.09-.06-.13-.19-.06-.28l2.43-3.71-2.39-3.65a.213.213 0 01-.03-.12c0-.12.09-.21.21-.21h1.61c.13 0 .24.06.3.17l1.41 2.37 1.4-2.37a.34.34 0 01.3-.17h1.6c.04 0 .08.01.12.03.09.06.13.19.06.28l-2.37 3.65 2.43 3.7c0 .05.01.09.01.13 0 .12-.09.21-.21.21h-1.61c-.13 0-.24-.06-.3-.17l-1.44-2.42-1.44 2.42a.34.34 0 01-.3.17zm-7.12-1.49c-1.33 0-2.42-1.12-2.42-2.51 0-1.39 1.08-2.52 2.42-2.52 1.33 0 2.42 1.12 2.42 2.51 0 1.39-1.08 2.51-2.42 2.52zm-19.865 0c-1.32 0-2.39-1.11-2.42-2.48v-.07c.02-1.38 1.09-2.49 2.4-2.49 1.32 0 2.41 1.12 2.41 2.51 0 1.39-1.07 2.52-2.39 2.53zm-8.11-2.48c-.01 1.37-1.09 2.47-2.41 2.47s-2.42-1.12-2.42-2.51c0-1.39 1.08-2.52 2.4-2.52 1.33 0 2.39 1.11 2.41 2.48l.02.08zm18.12 2.47c-1.32 0-2.39-1.11-2.41-2.48v-.06c.02-1.38 1.09-2.48 2.41-2.48s2.42 1.12 2.42 2.51c0 1.39-1.09 2.51-2.42 2.51z'/%3E%3C/defs%3E%3Cmask id='clip'%3E%3Crect x='0' y='0' width='100%25' height='100%25' fill='white'/%3E%3Cuse xlink:href='%23logo'/%3E%3Cuse xlink:href='%23text'/%3E%3C/mask%3E%3Cg id='outline' opacity='0.3' stroke='%23000' stroke-width='3'%3E%3Ccircle mask='url(%23clip)' cx='11.5' cy='11.5' r='9.25'/%3E%3Cuse xlink:href='%23text' mask='url(%23clip)'/%3E%3C/g%3E%3Cg id='fill' opacity='0.9' fill='%23fff'%3E%3Cuse xlink:href='%23logo'/%3E%3Cuse xlink:href='%23text'/%3E%3C/g%3E%3C/svg%3E");background-repeat:no-repeat;cursor:pointer;display:block;height:23px;margin:0 0 -4px -4px;overflow:hidden;width:88px}a.mapboxgl-ctrl-logo.mapboxgl-compact{width:23px}@media (-ms-high-contrast:active){a.mapboxgl-ctrl-logo{background-color:transparent;background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' fill-rule='evenodd' viewBox='0 0 88 23'%3E%3Cdefs%3E%3Cpath id='logo' d='M11.5 2.25c5.105 0 9.25 4.145 9.25 9.25s-4.145 9.25-9.25 9.25-9.25-4.145-9.25-9.25 4.145-9.25 9.25-9.25zM6.997 15.983c-.051-.338-.828-5.802 2.233-8.873a4.395 4.395 0 013.13-1.28c1.27 0 2.49.51 3.39 1.42.91.9 1.42 2.12 1.42 3.39 0 1.18-.449 2.301-1.28 3.13C12.72 16.93 7 16 7 16l-.003-.017zM15.3 10.5l-2 .8-.8 2-.8-2-2-.8 2-.8.8-2 .8 2 2 .8z'/%3E%3Cpath id='text' d='M50.63 8c.13 0 .23.1.23.23V9c.7-.76 1.7-1.18 2.73-1.18 2.17 0 3.95 1.85 3.95 4.17s-1.77 4.19-3.94 4.19c-1.04 0-2.03-.43-2.74-1.18v3.77c0 .13-.1.23-.23.23h-1.4c-.13 0-.23-.1-.23-.23V8.23c0-.12.1-.23.23-.23h1.4zm-3.86.01c.01 0 .01 0 .01-.01.13 0 .22.1.22.22v7.55c0 .12-.1.23-.23.23h-1.4c-.13 0-.23-.1-.23-.23V15c-.7.76-1.69 1.19-2.73 1.19-2.17 0-3.94-1.87-3.94-4.19 0-2.32 1.77-4.19 3.94-4.19 1.03 0 2.02.43 2.73 1.18v-.75c0-.12.1-.23.23-.23h1.4zm26.375-.19a4.24 4.24 0 00-4.16 3.29c-.13.59-.13 1.19 0 1.77a4.233 4.233 0 004.17 3.3c2.35 0 4.26-1.87 4.26-4.19 0-2.32-1.9-4.17-4.27-4.17zM60.63 5c.13 0 .23.1.23.23v3.76c.7-.76 1.7-1.18 2.73-1.18 1.88 0 3.45 1.4 3.84 3.28.13.59.13 1.2 0 1.8-.39 1.88-1.96 3.29-3.84 3.29-1.03 0-2.02-.43-2.73-1.18v.77c0 .12-.1.23-.23.23h-1.4c-.13 0-.23-.1-.23-.23V5.23c0-.12.1-.23.23-.23h1.4zm-34 11h-1.4c-.13 0-.23-.11-.23-.23V8.22c.01-.13.1-.22.23-.22h1.4c.13 0 .22.11.23.22v.68c.5-.68 1.3-1.09 2.16-1.1h.03c1.09 0 2.09.6 2.6 1.55.45-.95 1.4-1.55 2.44-1.56 1.62 0 2.93 1.25 2.9 2.78l.03 5.2c0 .13-.1.23-.23.23h-1.41c-.13 0-.23-.11-.23-.23v-4.59c0-.98-.74-1.71-1.62-1.71-.8 0-1.46.7-1.59 1.62l.01 4.68c0 .13-.11.23-.23.23h-1.41c-.13 0-.23-.11-.23-.23v-4.59c0-.98-.74-1.71-1.62-1.71-.85 0-1.54.79-1.6 1.8v4.5c0 .13-.1.23-.23.23zm53.615 0h-1.61c-.04 0-.08-.01-.12-.03-.09-.06-.13-.19-.06-.28l2.43-3.71-2.39-3.65a.213.213 0 01-.03-.12c0-.12.09-.21.21-.21h1.61c.13 0 .24.06.3.17l1.41 2.37 1.4-2.37a.34.34 0 01.3-.17h1.6c.04 0 .08.01.12.03.09.06.13.19.06.28l-2.37 3.65 2.43 3.7c0 .05.01.09.01.13 0 .12-.09.21-.21.21h-1.61c-.13 0-.24-.06-.3-.17l-1.44-2.42-1.44 2.42a.34.34 0 01-.3.17zm-7.12-1.49c-1.33 0-2.42-1.12-2.42-2.51 0-1.39 1.08-2.52 2.42-2.52 1.33 0 2.42 1.12 2.42 2.51 0 1.39-1.08 2.51-2.42 2.52zm-19.865 0c-1.32 0-2.39-1.11-2.42-2.48v-.07c.02-1.38 1.09-2.49 2.4-2.49 1.32 0 2.41 1.12 2.41 2.51 0 1.39-1.07 2.52-2.39 2.53zm-8.11-2.48c-.01 1.37-1.09 2.47-2.41 2.47s-2.42-1.12-2.42-2.51c0-1.39 1.08-2.52 2.4-2.52 1.33 0 2.39 1.11 2.41 2.48l.02.08zm18.12 2.47c-1.32 0-2.39-1.11-2.41-2.48v-.06c.02-1.38 1.09-2.48 2.41-2.48s2.42 1.12 2.42 2.51c0 1.39-1.09 2.51-2.42 2.51z'/%3E%3C/defs%3E%3Cmask id='clip'%3E%3Crect x='0' y='0' width='100%25' height='100%25' fill='white'/%3E%3Cuse xlink:href='%23logo'/%3E%3Cuse xlink:href='%23text'/%3E%3C/mask%3E%3Cg id='outline' opacity='1' stroke='%23000' stroke-width='3'%3E%3Ccircle mask='url(%23clip)' cx='11.5' cy='11.5' r='9.25'/%3E%3Cuse xlink:href='%23text' mask='url(%23clip)'/%3E%3C/g%3E%3Cg id='fill' opacity='1' fill='%23fff'%3E%3Cuse xlink:href='%23logo'/%3E%3Cuse xlink:href='%23text'/%3E%3C/g%3E%3C/svg%3E")}}@media (-ms-high-contrast:black-on-white){a.mapboxgl-ctrl-logo{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' fill-rule='evenodd' viewBox='0 0 88 23'%3E%3Cdefs%3E%3Cpath id='logo' d='M11.5 2.25c5.105 0 9.25 4.145 9.25 9.25s-4.145 9.25-9.25 9.25-9.25-4.145-9.25-9.25 4.145-9.25 9.25-9.25zM6.997 15.983c-.051-.338-.828-5.802 2.233-8.873a4.395 4.395 0 013.13-1.28c1.27 0 2.49.51 3.39 1.42.91.9 1.42 2.12 1.42 3.39 0 1.18-.449 2.301-1.28 3.13C12.72 16.93 7 16 7 16l-.003-.017zM15.3 10.5l-2 .8-.8 2-.8-2-2-.8 2-.8.8-2 .8 2 2 .8z'/%3E%3Cpath id='text' d='M50.63 8c.13 0 .23.1.23.23V9c.7-.76 1.7-1.18 2.73-1.18 2.17 0 3.95 1.85 3.95 4.17s-1.77 4.19-3.94 4.19c-1.04 0-2.03-.43-2.74-1.18v3.77c0 .13-.1.23-.23.23h-1.4c-.13 0-.23-.1-.23-.23V8.23c0-.12.1-.23.23-.23h1.4zm-3.86.01c.01 0 .01 0 .01-.01.13 0 .22.1.22.22v7.55c0 .12-.1.23-.23.23h-1.4c-.13 0-.23-.1-.23-.23V15c-.7.76-1.69 1.19-2.73 1.19-2.17 0-3.94-1.87-3.94-4.19 0-2.32 1.77-4.19 3.94-4.19 1.03 0 2.02.43 2.73 1.18v-.75c0-.12.1-.23.23-.23h1.4zm26.375-.19a4.24 4.24 0 00-4.16 3.29c-.13.59-.13 1.19 0 1.77a4.233 4.233 0 004.17 3.3c2.35 0 4.26-1.87 4.26-4.19 0-2.32-1.9-4.17-4.27-4.17zM60.63 5c.13 0 .23.1.23.23v3.76c.7-.76 1.7-1.18 2.73-1.18 1.88 0 3.45 1.4 3.84 3.28.13.59.13 1.2 0 1.8-.39 1.88-1.96 3.29-3.84 3.29-1.03 0-2.02-.43-2.73-1.18v.77c0 .12-.1.23-.23.23h-1.4c-.13 0-.23-.1-.23-.23V5.23c0-.12.1-.23.23-.23h1.4zm-34 11h-1.4c-.13 0-.23-.11-.23-.23V8.22c.01-.13.1-.22.23-.22h1.4c.13 0 .22.11.23.22v.68c.5-.68 1.3-1.09 2.16-1.1h.03c1.09 0 2.09.6 2.6 1.55.45-.95 1.4-1.55 2.44-1.56 1.62 0 2.93 1.25 2.9 2.78l.03 5.2c0 .13-.1.23-.23.23h-1.41c-.13 0-.23-.11-.23-.23v-4.59c0-.98-.74-1.71-1.62-1.71-.8 0-1.46.7-1.59 1.62l.01 4.68c0 .13-.11.23-.23.23h-1.41c-.13 0-.23-.11-.23-.23v-4.59c0-.98-.74-1.71-1.62-1.71-.85 0-1.54.79-1.6 1.8v4.5c0 .13-.1.23-.23.23zm53.615 0h-1.61c-.04 0-.08-.01-.12-.03-.09-.06-.13-.19-.06-.28l2.43-3.71-2.39-3.65a.213.213 0 01-.03-.12c0-.12.09-.21.21-.21h1.61c.13 0 .24.06.3.17l1.41 2.37 1.4-2.37a.34.34 0 01.3-.17h1.6c.04 0 .08.01.12.03.09.06.13.19.06.28l-2.37 3.65 2.43 3.7c0 .05.01.09.01.13 0 .12-.09.21-.21.21h-1.61c-.13 0-.24-.06-.3-.17l-1.44-2.42-1.44 2.42a.34.34 0 01-.3.17zm-7.12-1.49c-1.33 0-2.42-1.12-2.42-2.51 0-1.39 1.08-2.52 2.42-2.52 1.33 0 2.42 1.12 2.42 2.51 0 1.39-1.08 2.51-2.42 2.52zm-19.865 0c-1.32 0-2.39-1.11-2.42-2.48v-.07c.02-1.38 1.09-2.49 2.4-2.49 1.32 0 2.41 1.12 2.41 2.51 0 1.39-1.07 2.52-2.39 2.53zm-8.11-2.48c-.01 1.37-1.09 2.47-2.41 2.47s-2.42-1.12-2.42-2.51c0-1.39 1.08-2.52 2.4-2.52 1.33 0 2.39 1.11 2.41 2.48l.02.08zm18.12 2.47c-1.32 0-2.39-1.11-2.41-2.48v-.06c.02-1.38 1.09-2.48 2.41-2.48s2.42 1.12 2.42 2.51c0 1.39-1.09 2.51-2.42 2.51z'/%3E%3C/defs%3E%3Cmask id='clip'%3E%3Crect x='0' y='0' width='100%25' height='100%25' fill='white'/%3E%3Cuse xlink:href='%23logo'/%3E%3Cuse xlink:href='%23text'/%3E%3C/mask%3E%3Cg id='outline' opacity='1' stroke='%23fff' stroke-width='3' fill='%23fff'%3E%3Ccircle mask='url(%23clip)' cx='11.5' cy='11.5' r='9.25'/%3E%3Cuse xlink:href='%23text' mask='url(%23clip)'/%3E%3C/g%3E%3Cg id='fill' opacity='1' fill='%23000'%3E%3Cuse xlink:href='%23logo'/%3E%3Cuse xlink:href='%23text'/%3E%3C/g%3E%3C/svg%3E")}}.mapboxgl-ctrl.mapboxgl-ctrl-attrib{background-color:hsla(0,0%,100%,.5);margin:0;padding:0 5px}@media screen{.mapboxgl-ctrl-attrib.mapboxgl-compact{background-color:#fff;border-radius:12px;box-sizing:content-box;margin:10px;min-height:20px;padding:2px 24px 2px 0;position:relative}.mapboxgl-ctrl-attrib.mapboxgl-compact-show{padding:2px 28px 2px 8px;visibility:visible}.mapboxgl-ctrl-bottom-left>.mapboxgl-ctrl-attrib.mapboxgl-compact-show,.mapboxgl-ctrl-top-left>.mapboxgl-ctrl-attrib.mapboxgl-compact-show{border-radius:12px;padding:2px 8px 2px 28px}.mapboxgl-ctrl-attrib.mapboxgl-compact .mapboxgl-ctrl-attrib-inner{display:none}.mapboxgl-ctrl-attrib-button{background-color:hsla(0,0%,100%,.5);background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill-rule='evenodd'%3E%3Cpath d='M4 10a6 6 0 1 0 12 0 6 6 0 1 0-12 0m5-3a1 1 0 1 0 2 0 1 1 0 1 0-2 0m0 3a1 1 0 1 1 2 0v3a1 1 0 1 1-2 0'/%3E%3C/svg%3E");border:0;border-radius:12px;box-sizing:border-box;cursor:pointer;display:none;height:24px;outline:0;position:absolute;right:0;top:0;width:24px}.mapboxgl-ctrl-bottom-left .mapboxgl-ctrl-attrib-button,.mapboxgl-ctrl-top-left .mapboxgl-ctrl-attrib-button{left:0}.mapboxgl-ctrl-attrib.mapboxgl-compact .mapboxgl-ctrl-attrib-button,.mapboxgl-ctrl-attrib.mapboxgl-compact-show .mapboxgl-ctrl-attrib-inner{display:block}.mapboxgl-ctrl-attrib.mapboxgl-compact-show .mapboxgl-ctrl-attrib-button{background-color:rgb(0 0 0/5%)}.mapboxgl-ctrl-bottom-right>.mapboxgl-ctrl-attrib.mapboxgl-compact:after{bottom:0;right:0}.mapboxgl-ctrl-top-right>.mapboxgl-ctrl-attrib.mapboxgl-compact:after{right:0;top:0}.mapboxgl-ctrl-top-left>.mapboxgl-ctrl-attrib.mapboxgl-compact:after{left:0;top:0}.mapboxgl-ctrl-bottom-left>.mapboxgl-ctrl-attrib.mapboxgl-compact:after{bottom:0;left:0}}@media screen and (-ms-high-contrast:active){.mapboxgl-ctrl-attrib.mapboxgl-compact:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill-rule='evenodd' fill='%23fff'%3E%3Cpath d='M4 10a6 6 0 1 0 12 0 6 6 0 1 0-12 0m5-3a1 1 0 1 0 2 0 1 1 0 1 0-2 0m0 3a1 1 0 1 1 2 0v3a1 1 0 1 1-2 0'/%3E%3C/svg%3E")}}@media screen and (-ms-high-contrast:black-on-white){.mapboxgl-ctrl-attrib.mapboxgl-compact:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill-rule='evenodd'%3E%3Cpath d='M4 10a6 6 0 1 0 12 0 6 6 0 1 0-12 0m5-3a1 1 0 1 0 2 0 1 1 0 1 0-2 0m0 3a1 1 0 1 1 2 0v3a1 1 0 1 1-2 0'/%3E%3C/svg%3E")}}.mapboxgl-ctrl-attrib a{color:rgba(0,0,0,.75);text-decoration:none}.mapboxgl-ctrl-attrib a:hover{color:inherit;text-decoration:underline}.mapboxgl-ctrl-attrib .mapbox-improve-map{font-weight:700;margin-left:2px}.mapboxgl-attrib-empty{display:none}.mapboxgl-ctrl-scale{background-color:hsla(0,0%,100%,.75);border:2px solid #333;border-top:#333;box-sizing:border-box;color:#333;font-size:10px;padding:0 5px;white-space:nowrap}.mapboxgl-popup{display:flex;left:0;pointer-events:none;position:absolute;top:0;will-change:transform}.mapboxgl-popup-anchor-top,.mapboxgl-popup-anchor-top-left,.mapboxgl-popup-anchor-top-right{flex-direction:column}.mapboxgl-popup-anchor-bottom,.mapboxgl-popup-anchor-bottom-left,.mapboxgl-popup-anchor-bottom-right{flex-direction:column-reverse}.mapboxgl-popup-anchor-left{flex-direction:row}.mapboxgl-popup-anchor-right{flex-direction:row-reverse}.mapboxgl-popup-tip{border:10px solid transparent;height:0;width:0;z-index:1}.mapboxgl-popup-anchor-top .mapboxgl-popup-tip{align-self:center;border-bottom-color:#fff;border-top:none}.mapboxgl-popup-anchor-top-left .mapboxgl-popup-tip{align-self:flex-start;border-bottom-color:#fff;border-left:none;border-top:none}.mapboxgl-popup-anchor-top-right .mapboxgl-popup-tip{align-self:flex-end;border-bottom-color:#fff;border-right:none;border-top:none}.mapboxgl-popup-anchor-bottom .mapboxgl-popup-tip{align-self:center;border-bottom:none;border-top-color:#fff}.mapboxgl-popup-anchor-bottom-left .mapboxgl-popup-tip{align-self:flex-start;border-bottom:none;border-left:none;border-top-color:#fff}.mapboxgl-popup-anchor-bottom-right .mapboxgl-popup-tip{align-self:flex-end;border-bottom:none;border-right:none;border-top-color:#fff}.mapboxgl-popup-anchor-left .mapboxgl-popup-tip{align-self:center;border-left:none;border-right-color:#fff}.mapboxgl-popup-anchor-right .mapboxgl-popup-tip{align-self:center;border-left-color:#fff;border-right:none}.mapboxgl-popup-close-button{background-color:transparent;border:0;border-radius:0 3px 0 0;cursor:pointer;position:absolute;right:0;top:0}.mapboxgl-popup-close-button:hover{background-color:rgb(0 0 0/5%)}.mapboxgl-popup-content{background:#fff;border-radius:3px;box-shadow:0 1px 2px rgba(0,0,0,.1);padding:10px 10px 15px;pointer-events:auto;position:relative}.mapboxgl-popup-anchor-top-left .mapboxgl-popup-content{border-top-left-radius:0}.mapboxgl-popup-anchor-top-right .mapboxgl-popup-content{border-top-right-radius:0}.mapboxgl-popup-anchor-bottom-left .mapboxgl-popup-content{border-bottom-left-radius:0}.mapboxgl-popup-anchor-bottom-right .mapboxgl-popup-content{border-bottom-right-radius:0}.mapboxgl-popup-track-pointer{display:none}.mapboxgl-popup-track-pointer *{pointer-events:none;user-select:none}.mapboxgl-map:hover .mapboxgl-popup-track-pointer{display:flex}.mapboxgl-map:active .mapboxgl-popup-track-pointer{display:none}.mapboxgl-marker{left:0;opacity:1;position:absolute;top:0;transition:opacity .2s;will-change:transform}.mapboxgl-user-location-dot,.mapboxgl-user-location-dot:before{background-color:#1da1f2;border-radius:50%;height:15px;width:15px}.mapboxgl-user-location-dot:before{animation:mapboxgl-user-location-dot-pulse 2s infinite;content:"";position:absolute}.mapboxgl-user-location-dot:after{border:2px solid #fff;border-radius:50%;box-shadow:0 0 3px rgba(0,0,0,.35);box-sizing:border-box;content:"";height:19px;left:-2px;position:absolute;top:-2px;width:19px}.mapboxgl-user-location-show-heading .mapboxgl-user-location-heading{height:0;width:0}.mapboxgl-user-location-show-heading .mapboxgl-user-location-heading:after,.mapboxgl-user-location-show-heading .mapboxgl-user-location-heading:before{border-bottom:7.5px solid #4aa1eb;content:"";position:absolute}.mapboxgl-user-location-show-heading .mapboxgl-user-location-heading:before{border-left:7.5px solid transparent;transform:translateY(-28px) skewY(-20deg)}.mapboxgl-user-location-show-heading .mapboxgl-user-location-heading:after{border-right:7.5px solid transparent;transform:translate(7.5px,-28px) skewY(20deg)}@keyframes mapboxgl-user-location-dot-pulse{0%{opacity:1;transform:scale(1)}70%{opacity:0;transform:scale(3)}to{opacity:0;transform:scale(1)}}.mapboxgl-user-location-dot-stale{background-color:#aaa}.mapboxgl-user-location-dot-stale:after{display:none}.mapboxgl-user-location-accuracy-circle{background-color:#1da1f233;border-radius:100%;height:1px;width:1px}.mapboxgl-crosshair,.mapboxgl-crosshair .mapboxgl-interactive,.mapboxgl-crosshair .mapboxgl-interactive:active{cursor:crosshair}.mapboxgl-boxzoom{background:#fff;border:2px dotted #202020;height:0;left:0;opacity:.5;position:absolute;top:0;width:0}@media print{.mapbox-improve-map{display:none}}.mapboxgl-scroll-zoom-blocker,.mapboxgl-touch-pan-blocker{align-items:center;background:rgba(0,0,0,.7);color:#fff;display:flex;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif;height:100%;justify-content:center;left:0;opacity:0;pointer-events:none;position:absolute;text-align:center;top:0;transition:opacity .75s ease-in-out;transition-delay:1s;width:100%}.mapboxgl-scroll-zoom-blocker-show,.mapboxgl-touch-pan-blocker-show{opacity:1;transition:opacity .1s ease-in-out}.mapboxgl-canvas-container.mapboxgl-touch-pan-blocker-override.mapboxgl-scrollable-page,.mapboxgl-canvas-container.mapboxgl-touch-pan-blocker-override.mapboxgl-scrollable-page .mapboxgl-canvas{touch-action:pan-x pan-y} \ No newline at end of file diff --git a/src/ckanext-mappreview/ckanext/mappreview/assets/js/mappreview.js b/src/ckanext-mappreview/ckanext/mappreview/assets/js/mappreview.js new file mode 100644 index 00000000..47999707 --- /dev/null +++ b/src/ckanext-mappreview/ckanext/mappreview/assets/js/mappreview.js @@ -0,0 +1,145 @@ +ckan.module("mappreview", function ($, _) { + "use strict"; + return { + options: { + debug: false, + }, + + initialize: function () { + mapboxgl.accessToken = 'pk.eyJ1Ijoic3RhbWVuIiwiYSI6ImNtMWkzNm16ZzBsZDYya3B4anI5cG9tN3kifQ.i91AOKPswRy5EA1zi7PO-w'; + const map = new mapboxgl.Map({ + container: 'map', + center: [-122.420679, 37.772537], + zoom: 13, + style: 'mapbox://styles/mapbox/light-v11', + bounds: [-79.365234,23.120154,-76.453857,25.849337], + }); + + const sources = [ + { id: 'airport', url: '/data/recreation/airport.geojson' }, + { id: 'dredged-ports', url: '/data/recreation/dredged-ports.geojson' }, + { id: 'beaches', url: '/data/recreation/beaches.geojson' }, + { id: 'roads-simple', url: '/data/recreation/roads-simple.geojson' }, + { id: 'roads-simple-buf', url: '/data/recreation/roads-simple-buf.geojson' }, + { id: 'bonefish', url: '/data/recreation/bonefish.geojson' }, + { id: 'andros-aoi', url: '/data/recreation/andros-aoi.geojson' }, + ]; + + map.on('load', () => { + sources.forEach((source) => { + map.addSource(source.id, { + type: 'geojson', + data: source.url, + }); + }); + + map.addLayer({ + id: 'andros-aoi', + type: 'fill', + source: 'andros-aoi', + paint: { + 'fill-color': '#0088ff', + 'fill-opacity': 0.2, + }, + }); + + map.addLayer({ + id: 'bonefish', + type: 'fill', + source: 'bonefish', + paint: { + 'fill-color': '#ff44ef', + 'fill-opacity': 0.2, + }, + }); + + map.addLayer({ + id: 'roads-simple-buf', + type: 'fill', + source: 'roads-simple-buf', + paint: { + 'fill-color': '#91522d', + 'fill-opacity': 0.5, + }, + }); + + map.addLayer({ + id: 'beaches', + type: 'line', + source: 'beaches', + paint: { + 'line-color': 'brown', + 'line-opacity': 1, + 'line-width': 2, + }, + }); + + map.addLayer({ + id: 'roads-simple', + type: 'line', + source: 'roads-simple', + paint: { + 'line-color': 'black', + 'line-opacity': 0.5, + 'line-width': 0.5, + }, + }); + + map.addLayer({ + id: 'airport', + type: 'circle', + source: 'airport', + paint: { + 'circle-color': '#ff0000', + 'circle-radius': 5, + }, + }); + + map.addLayer({ + id: 'dredged-ports', + type: 'circle', + source: 'dredged-ports', + paint: { + 'circle-color': '#00ff00', + 'circle-radius': 5, + }, + }); + + const targets = { + 'andros-aoi': 'Andros AOI', + 'bonefish': 'Bonefish', + 'beaches': 'Beaches', + 'roads-simple': 'Roads', + 'roads-simple-buf': 'Roads Buffer', + 'dredged-ports': 'Dredged Ports', + 'airport': 'Airport', + }; + + map.addControl(new MapboxLegendControl(targets, { + showDefault: false, + showCheckbox: true, + onlyRendered: false, + reverseOrder: true + }), 'top-right'); + }); + + map.on('click', sources.map(s => s.id), (e) => { + console.log(e.features); + let content = ''; + + e.features.forEach(f => { + content += `

${f.layer.id}

+
    + ${Object.keys(f.properties).map(k => `
  • ${k}: ${f.properties[k]}
  • `).join('')} +
`; + }); + + const popup = new mapboxgl.Popup({ className: 'mappreview-mapboxgl-popup' }) + .setLngLat(e.lngLat) + .setMaxWidth("300px") + .setHTML(content) + .addTo(map); + }); + }, + }; +}); diff --git a/src/ckanext-mappreview/ckanext/mappreview/assets/js/vendor/mapbox-gl-legend.js b/src/ckanext-mappreview/ckanext/mappreview/assets/js/vendor/mapbox-gl-legend.js new file mode 100644 index 00000000..d57bfca8 --- /dev/null +++ b/src/ckanext-mappreview/ckanext/mappreview/assets/js/vendor/mapbox-gl-legend.js @@ -0,0 +1,2 @@ +/*! For license information please see mapbox-gl-legend.js.LICENSE.txt */ +!function(e,t){if("object"==typeof exports&&"object"==typeof module)module.exports=t(require("mapboxgl"));else if("function"==typeof define&&define.amd)define(["mapboxgl"],t);else{var o="object"==typeof exports?t(require("mapboxgl")):t(e.mapboxgl);for(var r in o)("object"==typeof exports?exports:e)[r]=o[r]}}(self,(e=>(()=>{var t={335:(e,t,o)=>{"use strict";o.r(t),o.d(t,{default:()=>Lo});var r={$version:8,$root:{version:{required:!0,type:"enum",values:[8],doc:"Style specification version number. Must be 8.",example:8},name:{type:"string",doc:"A human-readable name for the style.",example:"Bright"},metadata:{type:"*",doc:"Arbitrary properties useful to track with the stylesheet, but do not influence rendering. Properties should be prefixed to avoid collisions, like 'mapbox:'."},center:{type:"array",value:"number",doc:"Default map center in longitude and latitude. The style center will be used only if the map has not been positioned by other means (e.g. map options or user interaction).",example:[-73.9749,40.7736]},zoom:{type:"number",doc:"Default zoom level. The style zoom will be used only if the map has not been positioned by other means (e.g. map options or user interaction).",example:12.5},bearing:{type:"number",default:0,period:360,units:"degrees",doc:'Default bearing, in degrees. The bearing is the compass direction that is "up"; for example, a bearing of 90° orients the map so that east is up. This value will be used only if the map has not been positioned by other means (e.g. map options or user interaction).',example:29},pitch:{type:"number",default:0,units:"degrees",doc:"Default pitch, in degrees. Zero is perpendicular to the surface, for a look straight down at the map, while a greater value like 60 looks ahead towards the horizon. The style pitch will be used only if the map has not been positioned by other means (e.g. map options or user interaction).",example:50},light:{type:"light",doc:"The global light source.",example:{anchor:"viewport",color:"white",intensity:.4}},terrain:{type:"terrain",doc:"A global modifier that elevates layers and markers based on a DEM data source."},fog:{type:"fog",doc:"A global effect that fades layers and markers based on their distance to the camera. The fog can be used to approximate the effect of atmosphere on distant objects and enhance the depth perception of the map when used with terrain or 3D features. Note: fog is renamed to atmosphere in the Android and iOS SDKs and planned to be changed in GL-JS v.3.0.0."},sources:{required:!0,type:"sources",doc:"Data source specifications.",example:{"mapbox-streets":{type:"vector",url:"mapbox://mapbox.mapbox-streets-v6"}}},sprite:{type:"string",doc:"A base URL for retrieving the sprite image and metadata. The extensions `.png`, `.json` and scale factor `@2x.png` will be automatically appended. This property is required if any layer uses the `background-pattern`, `fill-pattern`, `line-pattern`, `fill-extrusion-pattern`, or `icon-image` properties. The URL must be absolute, containing the [scheme, authority and path components](https://en.wikipedia.org/wiki/URL#Syntax).",example:"mapbox://sprites/mapbox/bright-v8"},glyphs:{type:"string",doc:"A URL template for loading signed-distance-field glyph sets in PBF format. The URL must include `{fontstack}` and `{range}` tokens. This property is required if any layer uses the `text-field` layout property. The URL must be absolute, containing the [scheme, authority and path components](https://en.wikipedia.org/wiki/URL#Syntax).",example:"mapbox://fonts/mapbox/{fontstack}/{range}.pbf"},transition:{type:"transition",doc:"A global transition definition to use as a default across properties, to be used for timing transitions between one value and the next when no property-specific transition is set. Collision-based symbol fading is controlled independently of the style's `transition` property.",example:{duration:300,delay:0}},projection:{type:"projection",doc:"The projection the map should be rendered in. Supported projections are Mercator, Globe, Albers, Equal Earth, Equirectangular (WGS84), Lambert conformal conic, Natural Earth, and Winkel Tripel. Terrain, sky and fog are supported by only Mercator and globe. CustomLayerInterface is not supported outside of Mercator.",example:{name:"albers",center:[-154,50],parallels:[55,65]}},layers:{required:!0,type:"array",value:"layer",doc:"Layers will be drawn in the order of this array.",example:[{id:"water",source:"mapbox-streets","source-layer":"water",type:"fill",paint:{"fill-color":"#00ffff"}}]}},sources:{"*":{type:"source",doc:"Specification of a data source. For vector and raster sources, either TileJSON or a URL to a TileJSON must be provided. For image and video sources, a URL must be provided. For GeoJSON sources, a URL or inline GeoJSON must be provided."}},source:["source_vector","source_raster","source_raster_dem","source_geojson","source_video","source_image"],source_vector:{type:{required:!0,type:"enum",values:{vector:{doc:"A vector tile source."}},doc:"The type of the source."},url:{type:"string",doc:"A URL to a TileJSON resource. Supported protocols are `http:`, `https:`, and `mapbox://`."},tiles:{type:"array",value:"string",doc:"An array of one or more tile source URLs, as in the TileJSON spec."},bounds:{type:"array",value:"number",length:4,default:[-180,-85.051129,180,85.051129],doc:"An array containing the longitude and latitude of the southwest and northeast corners of the source's bounding box in the following order: `[sw.lng, sw.lat, ne.lng, ne.lat]`. When this property is included in a source, no tiles outside of the given bounds are requested by Mapbox GL."},scheme:{type:"enum",values:{xyz:{doc:"Slippy map tilenames scheme."},tms:{doc:"OSGeo spec scheme."}},default:"xyz",doc:"Influences the y direction of the tile coordinates. The global-mercator (aka Spherical Mercator) profile is assumed."},minzoom:{type:"number",default:0,doc:"Minimum zoom level for which tiles are available, as in the TileJSON spec."},maxzoom:{type:"number",default:22,doc:"Maximum zoom level for which tiles are available, as in the TileJSON spec. Data from tiles at the maxzoom are used when displaying the map at higher zoom levels."},attribution:{type:"string",doc:"Contains an attribution to be displayed when the map is shown to a user."},promoteId:{type:"promoteId",doc:"A property to use as a feature id (for feature state). Either a property name, or an object of the form `{: }`. If specified as a string for a vector tile source, the same property is used across all its source layers."},volatile:{type:"boolean",default:!1,doc:"A setting to determine whether a source's tiles are cached locally.","sdk-support":{"basic functionality":{android:"9.3.0",ios:"5.10.0"}}},"*":{type:"*",doc:"Other keys to configure the data source."}},source_raster:{type:{required:!0,type:"enum",values:{raster:{doc:"A raster tile source."}},doc:"The type of the source."},url:{type:"string",doc:"A URL to a TileJSON resource. Supported protocols are `http:`, `https:`, and `mapbox://`."},tiles:{type:"array",value:"string",doc:"An array of one or more tile source URLs, as in the TileJSON spec."},bounds:{type:"array",value:"number",length:4,default:[-180,-85.051129,180,85.051129],doc:"An array containing the longitude and latitude of the southwest and northeast corners of the source's bounding box in the following order: `[sw.lng, sw.lat, ne.lng, ne.lat]`. When this property is included in a source, no tiles outside of the given bounds are requested by Mapbox GL."},minzoom:{type:"number",default:0,doc:"Minimum zoom level for which tiles are available, as in the TileJSON spec."},maxzoom:{type:"number",default:22,doc:"Maximum zoom level for which tiles are available, as in the TileJSON spec. Data from tiles at the maxzoom are used when displaying the map at higher zoom levels."},tileSize:{type:"number",default:512,units:"pixels",doc:"The minimum visual size to display tiles for this layer. Only configurable for raster layers."},scheme:{type:"enum",values:{xyz:{doc:"Slippy map tilenames scheme."},tms:{doc:"OSGeo spec scheme."}},default:"xyz",doc:"Influences the y direction of the tile coordinates. The global-mercator (aka Spherical Mercator) profile is assumed."},attribution:{type:"string",doc:"Contains an attribution to be displayed when the map is shown to a user."},volatile:{type:"boolean",default:!1,doc:"A setting to determine whether a source's tiles are cached locally.","sdk-support":{"basic functionality":{android:"9.3.0",ios:"5.10.0"}}},"*":{type:"*",doc:"Other keys to configure the data source."}},source_raster_dem:{type:{required:!0,type:"enum",values:{"raster-dem":{doc:"A RGB-encoded raster DEM source"}},doc:"The type of the source."},url:{type:"string",doc:"A URL to a TileJSON resource. Supported protocols are `http:`, `https:`, and `mapbox://`."},tiles:{type:"array",value:"string",doc:"An array of one or more tile source URLs, as in the TileJSON spec."},bounds:{type:"array",value:"number",length:4,default:[-180,-85.051129,180,85.051129],doc:"An array containing the longitude and latitude of the southwest and northeast corners of the source's bounding box in the following order: `[sw.lng, sw.lat, ne.lng, ne.lat]`. When this property is included in a source, no tiles outside of the given bounds are requested by Mapbox GL."},minzoom:{type:"number",default:0,doc:"Minimum zoom level for which tiles are available, as in the TileJSON spec."},maxzoom:{type:"number",default:22,doc:"Maximum zoom level for which tiles are available, as in the TileJSON spec. Data from tiles at the maxzoom are used when displaying the map at higher zoom levels."},tileSize:{type:"number",default:512,units:"pixels",doc:"The minimum visual size to display tiles for this layer. Only configurable for raster layers."},attribution:{type:"string",doc:"Contains an attribution to be displayed when the map is shown to a user."},encoding:{type:"enum",values:{terrarium:{doc:"Terrarium format PNG tiles. See https://aws.amazon.com/es/public-datasets/terrain/ for more info."},mapbox:{doc:"Mapbox Terrain RGB tiles. See https://www.mapbox.com/help/access-elevation-data/#mapbox-terrain-rgb for more info."}},default:"mapbox",doc:"The encoding used by this source. Mapbox Terrain RGB is used by default"},volatile:{type:"boolean",default:!1,doc:"A setting to determine whether a source's tiles are cached locally.","sdk-support":{"basic functionality":{android:"9.3.0",ios:"5.10.0"}}},"*":{type:"*",doc:"Other keys to configure the data source."}},source_geojson:{type:{required:!0,type:"enum",values:{geojson:{doc:"A GeoJSON data source."}},doc:"The data type of the GeoJSON source."},data:{type:"*",doc:"A URL to a GeoJSON file, or inline GeoJSON."},maxzoom:{type:"number",default:18,doc:"Maximum zoom level at which to create vector tiles (higher means greater detail at high zoom levels)."},attribution:{type:"string",doc:"Contains an attribution to be displayed when the map is shown to a user."},buffer:{type:"number",default:128,maximum:512,minimum:0,doc:"Size of the tile buffer on each side. A value of 0 produces no buffer. A value of 512 produces a buffer as wide as the tile itself. Larger values produce fewer rendering artifacts near tile edges and slower performance."},filter:{type:"*",doc:"An expression for filtering features prior to processing them for rendering."},tolerance:{type:"number",default:.375,doc:"Douglas-Peucker simplification tolerance (higher means simpler geometries and faster performance)."},cluster:{type:"boolean",default:!1,doc:"If the data is a collection of point features, setting this to true clusters the points by radius into groups. Cluster groups become new `Point` features in the source with additional properties:\n * `cluster` Is `true` if the point is a cluster \n * `cluster_id` A unqiue id for the cluster to be used in conjunction with the [cluster inspection methods](https://www.mapbox.com/mapbox-gl-js/api/#geojsonsource#getclusterexpansionzoom)\n * `point_count` Number of original points grouped into this cluster\n * `point_count_abbreviated` An abbreviated point count"},clusterRadius:{type:"number",default:50,minimum:0,doc:"Radius of each cluster if clustering is enabled. A value of 512 indicates a radius equal to the width of a tile."},clusterMaxZoom:{type:"number",doc:"Max zoom on which to cluster points if clustering is enabled. Defaults to one zoom less than maxzoom (so that last zoom features are not clustered). Clusters are re-evaluated at integer zoom levels so setting clusterMaxZoom to 14 means the clusters will be displayed until z15."},clusterMinPoints:{type:"number",doc:"Minimum number of points necessary to form a cluster if clustering is enabled. Defaults to `2`."},clusterProperties:{type:"*",doc:'An object defining custom properties on the generated clusters if clustering is enabled, aggregating values from clustered points. Has the form `{"property_name": [operator, map_expression]}`. `operator` is any expression function that accepts at least 2 operands (e.g. `"+"` or `"max"`) — it accumulates the property value from clusters/points the cluster contains; `map_expression` produces the value of a single point.\n\nExample: `{"sum": ["+", ["get", "scalerank"]]}`.\n\nFor more advanced use cases, in place of `operator`, you can use a custom reduce expression that references a special `["accumulated"]` value, e.g.:\n`{"sum": [["+", ["accumulated"], ["get", "sum"]], ["get", "scalerank"]]}`'},lineMetrics:{type:"boolean",default:!1,doc:"Whether to calculate line distance metrics. This is required for line layers that specify `line-gradient` values."},generateId:{type:"boolean",default:!1,doc:"Whether to generate ids for the geojson features. When enabled, the `feature.id` property will be auto assigned based on its index in the `features` array, over-writing any previous values."},promoteId:{type:"promoteId",doc:"A property to use as a feature id (for feature state). Either a property name, or an object of the form `{: }`."}},source_video:{type:{required:!0,type:"enum",values:{video:{doc:"A video data source."}},doc:"The data type of the video source."},urls:{required:!0,type:"array",value:"string",doc:"URLs to video content in order of preferred format."},coordinates:{required:!0,doc:"Corners of video specified in longitude, latitude pairs.",type:"array",length:4,value:{type:"array",length:2,value:"number",doc:"A single longitude, latitude pair."}}},source_image:{type:{required:!0,type:"enum",values:{image:{doc:"An image data source."}},doc:"The data type of the image source."},url:{required:!0,type:"string",doc:"URL that points to an image."},coordinates:{required:!0,doc:"Corners of image specified in longitude, latitude pairs.",type:"array",length:4,value:{type:"array",length:2,value:"number",doc:"A single longitude, latitude pair."}}},layer:{id:{type:"string",doc:"Unique layer name.",required:!0},type:{type:"enum",values:{fill:{doc:"A filled polygon with an optional stroked border.","sdk-support":{"basic functionality":{js:"0.10.0",android:"2.0.1",ios:"2.0.0",macos:"0.1.0"}}},line:{doc:"A stroked line.","sdk-support":{"basic functionality":{js:"0.10.0",android:"2.0.1",ios:"2.0.0",macos:"0.1.0"}}},symbol:{doc:"An icon or a text label.","sdk-support":{"basic functionality":{js:"0.10.0",android:"2.0.1",ios:"2.0.0",macos:"0.1.0"}}},circle:{doc:"A filled circle.","sdk-support":{"basic functionality":{js:"0.10.0",android:"2.0.1",ios:"2.0.0",macos:"0.1.0"}}},heatmap:{doc:"A heatmap.","sdk-support":{"basic functionality":{js:"0.41.0",android:"6.0.0",ios:"4.0.0",macos:"0.7.0"}}},"fill-extrusion":{doc:"An extruded (3D) polygon.","sdk-support":{"basic functionality":{js:"0.27.0",android:"5.1.0",ios:"3.6.0",macos:"0.5.0"}}},raster:{doc:"Raster map textures such as satellite imagery.","sdk-support":{"basic functionality":{js:"0.10.0",android:"2.0.1",ios:"2.0.0",macos:"0.1.0"}}},hillshade:{doc:"Client-side hillshading visualization based on DEM data. Currently, the implementation only supports Mapbox Terrain RGB and Mapzen Terrarium tiles.","sdk-support":{"basic functionality":{js:"0.43.0",android:"6.0.0",ios:"4.0.0",macos:"0.7.0"}}},background:{doc:"The background color or pattern of the map.","sdk-support":{"basic functionality":{js:"0.10.0",android:"2.0.1",ios:"2.0.0",macos:"0.1.0"}}},sky:{doc:"A spherical dome around the map that is always rendered behind all other layers.","sdk-support":{"basic functionality":{js:"2.0.0",ios:"10.0.0",android:"10.0.0"}}}},doc:"Rendering type of this layer.",required:!0},metadata:{type:"*",doc:"Arbitrary properties useful to track with the layer, but do not influence rendering. Properties should be prefixed to avoid collisions, like 'mapbox:'."},source:{type:"string",doc:"Name of a source description to be used for this layer. Required for all layer types except `background`."},"source-layer":{type:"string",doc:"Layer to use from a vector tile source. Required for vector tile sources; prohibited for all other source types, including GeoJSON sources."},minzoom:{type:"number",minimum:0,maximum:24,doc:"The minimum zoom level for the layer. At zoom levels less than the minzoom, the layer will be hidden."},maxzoom:{type:"number",minimum:0,maximum:24,doc:"The maximum zoom level for the layer. At zoom levels equal to or greater than the maxzoom, the layer will be hidden."},filter:{type:"filter",doc:'An expression specifying conditions on source features. Only features that match the filter are displayed. Zoom expressions in filters are only evaluated at integer zoom levels. The `["feature-state", ...]` expression is not supported in filter expressions. The `["pitch"]` and `["distance-from-center"]` expressions are supported only for filter expressions on the symbol layer.'},layout:{type:"layout",doc:"Layout properties for the layer."},paint:{type:"paint",doc:"Default paint properties for this layer."}},layout:["layout_fill","layout_line","layout_circle","layout_heatmap","layout_fill-extrusion","layout_symbol","layout_raster","layout_hillshade","layout_background","layout_sky"],layout_background:{visibility:{type:"enum",values:{visible:{doc:"The layer is shown."},none:{doc:"The layer is not shown."}},default:"visible",doc:"Whether this layer is displayed.","sdk-support":{"basic functionality":{js:"0.10.0",android:"2.0.1",ios:"2.0.0",macos:"0.1.0"}},"property-type":"constant"}},layout_sky:{visibility:{type:"enum",values:{visible:{doc:"The layer is shown."},none:{doc:"The layer is not shown."}},default:"visible",doc:"Whether this layer is displayed.","sdk-support":{"basic functionality":{js:"2.0.0",ios:"10.0.0",android:"10.0.0"}},"property-type":"constant"}},layout_fill:{"fill-sort-key":{type:"number",doc:"Sorts features in ascending order based on this value. Features with a higher sort key will appear above features with a lower sort key.","sdk-support":{"basic functionality":{js:"1.2.0",android:"9.1.0",ios:"5.8.0",macos:"0.15.0"},"data-driven styling":{js:"1.2.0",android:"9.1.0",ios:"5.8.0",macos:"0.15.0"}},expression:{interpolated:!1,parameters:["zoom","feature"]},"property-type":"data-driven"},visibility:{type:"enum",values:{visible:{doc:"The layer is shown."},none:{doc:"The layer is not shown."}},default:"visible",doc:"Whether this layer is displayed.","sdk-support":{"basic functionality":{js:"0.10.0",android:"2.0.1",ios:"2.0.0",macos:"0.1.0"}},"property-type":"constant"}},layout_circle:{"circle-sort-key":{type:"number",doc:"Sorts features in ascending order based on this value. Features with a higher sort key will appear above features with a lower sort key.","sdk-support":{"basic functionality":{js:"1.2.0",android:"9.2.0",ios:"5.9.0",macos:"0.16.0"},"data-driven styling":{js:"1.2.0",android:"9.2.0",ios:"5.9.0",macos:"0.16.0"}},expression:{interpolated:!1,parameters:["zoom","feature"]},"property-type":"data-driven"},visibility:{type:"enum",values:{visible:{doc:"The layer is shown."},none:{doc:"The layer is not shown."}},default:"visible",doc:"Whether this layer is displayed.","sdk-support":{"basic functionality":{js:"0.10.0",android:"2.0.1",ios:"2.0.0",macos:"0.1.0"}},"property-type":"constant"}},layout_heatmap:{visibility:{type:"enum",values:{visible:{doc:"The layer is shown."},none:{doc:"The layer is not shown."}},default:"visible",doc:"Whether this layer is displayed.","sdk-support":{"basic functionality":{js:"0.41.0",android:"6.0.0",ios:"4.0.0",macos:"0.7.0"}},"property-type":"constant"}},"layout_fill-extrusion":{visibility:{type:"enum",values:{visible:{doc:"The layer is shown."},none:{doc:"The layer is not shown."}},default:"visible",doc:"Whether this layer is displayed.","sdk-support":{"basic functionality":{js:"0.27.0",android:"5.1.0",ios:"3.6.0",macos:"0.5.0"}},"property-type":"constant"}},layout_line:{"line-cap":{type:"enum",values:{butt:{doc:"A cap with a squared-off end which is drawn to the exact endpoint of the line."},round:{doc:"A cap with a rounded end which is drawn beyond the endpoint of the line at a radius of one-half of the line's width and centered on the endpoint of the line."},square:{doc:"A cap with a squared-off end which is drawn beyond the endpoint of the line at a distance of one-half of the line's width."}},default:"butt",doc:"The display of line endings.","sdk-support":{"basic functionality":{js:"0.10.0",android:"2.0.1",ios:"2.0.0",macos:"0.1.0"},"data-driven styling":{js:"2.3.0"}},expression:{interpolated:!1,parameters:["zoom","feature"]},"property-type":"data-driven"},"line-join":{type:"enum",values:{bevel:{doc:"A join with a squared-off end which is drawn beyond the endpoint of the line at a distance of one-half of the line's width."},round:{doc:"A join with a rounded end which is drawn beyond the endpoint of the line at a radius of one-half of the line's width and centered on the endpoint of the line."},miter:{doc:"A join with a sharp, angled corner which is drawn with the outer sides beyond the endpoint of the path until they meet."}},default:"miter",doc:"The display of lines when joining.","sdk-support":{"basic functionality":{js:"0.10.0",android:"2.0.1",ios:"2.0.0",macos:"0.1.0"},"data-driven styling":{js:"0.40.0",android:"5.2.0",ios:"3.7.0",macos:"0.6.0"}},expression:{interpolated:!1,parameters:["zoom","feature"]},"property-type":"data-driven"},"line-miter-limit":{type:"number",default:2,doc:"Used to automatically convert miter joins to bevel joins for sharp angles.",requires:[{"line-join":"miter"}],"sdk-support":{"basic functionality":{js:"0.10.0",android:"2.0.1",ios:"2.0.0",macos:"0.1.0"}},expression:{interpolated:!0,parameters:["zoom"]},"property-type":"data-constant"},"line-round-limit":{type:"number",default:1.05,doc:"Used to automatically convert round joins to miter joins for shallow angles.",requires:[{"line-join":"round"}],"sdk-support":{"basic functionality":{js:"0.10.0",android:"2.0.1",ios:"2.0.0",macos:"0.1.0"}},expression:{interpolated:!0,parameters:["zoom"]},"property-type":"data-constant"},"line-sort-key":{type:"number",doc:"Sorts features in ascending order based on this value. Features with a higher sort key will appear above features with a lower sort key.","sdk-support":{"basic functionality":{js:"1.2.0",android:"9.1.0",ios:"5.8.0",macos:"0.15.0"},"data-driven styling":{js:"1.2.0",android:"9.1.0",ios:"5.8.0",macos:"0.15.0"}},expression:{interpolated:!1,parameters:["zoom","feature"]},"property-type":"data-driven"},visibility:{type:"enum",values:{visible:{doc:"The layer is shown."},none:{doc:"The layer is not shown."}},default:"visible",doc:"Whether this layer is displayed.","sdk-support":{"basic functionality":{js:"0.10.0",android:"2.0.1",ios:"2.0.0",macos:"0.1.0"}},"property-type":"constant"}},layout_symbol:{"symbol-placement":{type:"enum",values:{point:{doc:"The label is placed at the point where the geometry is located."},line:{doc:"The label is placed along the line of the geometry. Can only be used on `LineString` and `Polygon` geometries."},"line-center":{doc:"The label is placed at the center of the line of the geometry. Can only be used on `LineString` and `Polygon` geometries. Note that a single feature in a vector tile may contain multiple line geometries."}},default:"point",doc:"Label placement relative to its geometry.","sdk-support":{"basic functionality":{js:"0.10.0",android:"2.0.1",ios:"2.0.0",macos:"0.1.0"},"`line-center` value":{js:"0.47.0",android:"6.4.0",ios:"4.3.0",macos:"0.10.0"}},expression:{interpolated:!1,parameters:["zoom"]},"property-type":"data-constant"},"symbol-spacing":{type:"number",default:250,minimum:1,units:"pixels",doc:"Distance between two symbol anchors.",requires:[{"symbol-placement":"line"}],"sdk-support":{"basic functionality":{js:"0.10.0",android:"2.0.1",ios:"2.0.0",macos:"0.1.0"}},expression:{interpolated:!0,parameters:["zoom"]},"property-type":"data-constant"},"symbol-avoid-edges":{type:"boolean",default:!1,doc:"If true, the symbols will not cross tile edges to avoid mutual collisions. Recommended in layers that don't have enough padding in the vector tile to prevent collisions, or if it is a point symbol layer placed after a line symbol layer. When using a client that supports global collision detection, like Mapbox GL JS version 0.42.0 or greater, enabling this property is not needed to prevent clipped labels at tile boundaries.","sdk-support":{"basic functionality":{js:"0.10.0",android:"2.0.1",ios:"2.0.0",macos:"0.1.0"}},expression:{interpolated:!1,parameters:["zoom"]},"property-type":"data-constant"},"symbol-sort-key":{type:"number",doc:"Sorts features in ascending order based on this value. Features with lower sort keys are drawn and placed first. When `icon-allow-overlap` or `text-allow-overlap` is `false`, features with a lower sort key will have priority during placement. When `icon-allow-overlap` or `text-allow-overlap` is set to `true`, features with a higher sort key will overlap over features with a lower sort key.","sdk-support":{"basic functionality":{js:"0.53.0",android:"7.4.0",ios:"4.11.0",macos:"0.14.0"},"data-driven styling":{js:"0.53.0",android:"7.4.0",ios:"4.11.0",macos:"0.14.0"}},expression:{interpolated:!1,parameters:["zoom","feature"]},"property-type":"data-driven"},"symbol-z-order":{type:"enum",values:{auto:{doc:"Sorts symbols by `symbol-sort-key` if set. Otherwise, sorts symbols by their y-position relative to the viewport if `icon-allow-overlap` or `text-allow-overlap` is set to `true` or `icon-ignore-placement` or `text-ignore-placement` is `false`."},"viewport-y":{doc:"Sorts symbols by their y-position relative to the viewport if `icon-allow-overlap` or `text-allow-overlap` is set to `true` or `icon-ignore-placement` or `text-ignore-placement` is `false`."},source:{doc:"Sorts symbols by `symbol-sort-key` if set. Otherwise, no sorting is applied; symbols are rendered in the same order as the source data."}},default:"auto",doc:"Determines whether overlapping symbols in the same layer are rendered in the order that they appear in the data source or by their y-position relative to the viewport. To control the order and prioritization of symbols otherwise, use `symbol-sort-key`.","sdk-support":{"basic functionality":{js:"0.49.0",android:"6.6.0",ios:"4.5.0",macos:"0.12.0"}},expression:{interpolated:!1,parameters:["zoom"]},"property-type":"data-constant"},"icon-allow-overlap":{type:"boolean",default:!1,doc:"If true, the icon will be visible even if it collides with other previously drawn symbols.",requires:["icon-image"],"sdk-support":{"basic functionality":{js:"0.10.0",android:"2.0.1",ios:"2.0.0",macos:"0.1.0"}},expression:{interpolated:!1,parameters:["zoom"]},"property-type":"data-constant"},"icon-ignore-placement":{type:"boolean",default:!1,doc:"If true, other symbols can be visible even if they collide with the icon.",requires:["icon-image"],"sdk-support":{"basic functionality":{js:"0.10.0",android:"2.0.1",ios:"2.0.0",macos:"0.1.0"}},expression:{interpolated:!1,parameters:["zoom"]},"property-type":"data-constant"},"icon-optional":{type:"boolean",default:!1,doc:"If true, text will display without their corresponding icons when the icon collides with other symbols and the text does not.",requires:["icon-image","text-field"],"sdk-support":{"basic functionality":{js:"0.10.0",android:"2.0.1",ios:"2.0.0",macos:"0.1.0"}},expression:{interpolated:!1,parameters:["zoom"]},"property-type":"data-constant"},"icon-rotation-alignment":{type:"enum",values:{map:{doc:"When `symbol-placement` is set to `point`, aligns icons east-west. When `symbol-placement` is set to `line` or `line-center`, aligns icon x-axes with the line."},viewport:{doc:"Produces icons whose x-axes are aligned with the x-axis of the viewport, regardless of the value of `symbol-placement`."},auto:{doc:"When `symbol-placement` is set to `point`, this is equivalent to `viewport`. When `symbol-placement` is set to `line` or `line-center`, this is equivalent to `map`."}},default:"auto",doc:"In combination with `symbol-placement`, determines the rotation behavior of icons.",requires:["icon-image"],"sdk-support":{"basic functionality":{js:"0.10.0",android:"2.0.1",ios:"2.0.0",macos:"0.1.0"},"`auto` value":{js:"0.25.0",android:"4.2.0",ios:"3.4.0",macos:"0.3.0"}},expression:{interpolated:!1,parameters:["zoom"]},"property-type":"data-constant"},"icon-size":{type:"number",default:1,minimum:0,units:"factor of the original icon size",doc:"Scales the original size of the icon by the provided factor. The new pixel size of the image will be the original pixel size multiplied by `icon-size`. 1 is the original size; 3 triples the size of the image.",requires:["icon-image"],"sdk-support":{"basic functionality":{js:"0.10.0",android:"2.0.1",ios:"2.0.0",macos:"0.1.0"},"data-driven styling":{js:"0.35.0",android:"5.1.0",ios:"3.6.0",macos:"0.5.0"}},expression:{interpolated:!0,parameters:["zoom","feature"]},"property-type":"data-driven"},"icon-text-fit":{type:"enum",values:{none:{doc:"The icon is displayed at its intrinsic aspect ratio."},width:{doc:"The icon is scaled in the x-dimension to fit the width of the text."},height:{doc:"The icon is scaled in the y-dimension to fit the height of the text."},both:{doc:"The icon is scaled in both x- and y-dimensions."}},default:"none",doc:"Scales the icon to fit around the associated text.",requires:["icon-image","text-field"],"sdk-support":{"basic functionality":{js:"0.21.0",android:"4.2.0",ios:"3.4.0",macos:"0.2.1"},"stretchable icons":{js:"1.6.0",android:"9.2.0",ios:"5.8.0",macos:"0.15.0"}},expression:{interpolated:!1,parameters:["zoom"]},"property-type":"data-constant"},"icon-text-fit-padding":{type:"array",value:"number",length:4,default:[0,0,0,0],units:"pixels",doc:"Size of the additional area added to dimensions determined by `icon-text-fit`, in clockwise order: top, right, bottom, left.",requires:["icon-image","text-field",{"icon-text-fit":["both","width","height"]}],"sdk-support":{"basic functionality":{js:"0.21.0",android:"4.2.0",ios:"3.4.0",macos:"0.2.1"}},expression:{interpolated:!0,parameters:["zoom"]},"property-type":"data-constant"},"icon-image":{type:"resolvedImage",doc:"Name of image in sprite to use for drawing an image background.",tokens:!0,"sdk-support":{"basic functionality":{js:"0.10.0",android:"2.0.1",ios:"2.0.0",macos:"0.1.0"},"data-driven styling":{js:"0.35.0",android:"5.1.0",ios:"3.6.0",macos:"0.5.0"}},expression:{interpolated:!1,parameters:["zoom","feature"]},"property-type":"data-driven"},"icon-rotate":{type:"number",default:0,period:360,units:"degrees",doc:"Rotates the icon clockwise.",requires:["icon-image"],"sdk-support":{"basic functionality":{js:"0.10.0",android:"2.0.1",ios:"2.0.0",macos:"0.1.0"},"data-driven styling":{js:"0.21.0",android:"5.0.0",ios:"3.5.0",macos:"0.4.0"}},expression:{interpolated:!0,parameters:["zoom","feature"]},"property-type":"data-driven"},"icon-padding":{type:"number",default:2,minimum:0,units:"pixels",doc:"Size of the additional area around the icon bounding box used for detecting symbol collisions.",requires:["icon-image"],"sdk-support":{"basic functionality":{js:"0.10.0",android:"2.0.1",ios:"2.0.0",macos:"0.1.0"}},expression:{interpolated:!0,parameters:["zoom"]},"property-type":"data-constant"},"icon-keep-upright":{type:"boolean",default:!1,doc:"If true, the icon may be flipped to prevent it from being rendered upside-down.",requires:["icon-image",{"icon-rotation-alignment":"map"},{"symbol-placement":["line","line-center"]}],"sdk-support":{"basic functionality":{js:"0.10.0",android:"2.0.1",ios:"2.0.0",macos:"0.1.0"}},expression:{interpolated:!1,parameters:["zoom"]},"property-type":"data-constant"},"icon-offset":{type:"array",value:"number",length:2,default:[0,0],doc:"Offset distance of icon from its anchor. Positive values indicate right and down, while negative values indicate left and up. Each component is multiplied by the value of `icon-size` to obtain the final offset in pixels. When combined with `icon-rotate` the offset will be as if the rotated direction was up.",requires:["icon-image"],"sdk-support":{"basic functionality":{js:"0.10.0",android:"2.0.1",ios:"2.0.0",macos:"0.1.0"},"data-driven styling":{js:"0.29.0",android:"5.0.0",ios:"3.5.0",macos:"0.4.0"}},expression:{interpolated:!0,parameters:["zoom","feature"]},"property-type":"data-driven"},"icon-anchor":{type:"enum",values:{center:{doc:"The center of the icon is placed closest to the anchor."},left:{doc:"The left side of the icon is placed closest to the anchor."},right:{doc:"The right side of the icon is placed closest to the anchor."},top:{doc:"The top of the icon is placed closest to the anchor."},bottom:{doc:"The bottom of the icon is placed closest to the anchor."},"top-left":{doc:"The top left corner of the icon is placed closest to the anchor."},"top-right":{doc:"The top right corner of the icon is placed closest to the anchor."},"bottom-left":{doc:"The bottom left corner of the icon is placed closest to the anchor."},"bottom-right":{doc:"The bottom right corner of the icon is placed closest to the anchor."}},default:"center",doc:"Part of the icon placed closest to the anchor.",requires:["icon-image"],"sdk-support":{"basic functionality":{js:"0.40.0",android:"5.2.0",ios:"3.7.0",macos:"0.6.0"},"data-driven styling":{js:"0.40.0",android:"5.2.0",ios:"3.7.0",macos:"0.6.0"}},expression:{interpolated:!1,parameters:["zoom","feature"]},"property-type":"data-driven"},"icon-pitch-alignment":{type:"enum",values:{map:{doc:"The icon is aligned to the plane of the map."},viewport:{doc:"The icon is aligned to the plane of the viewport."},auto:{doc:"Automatically matches the value of `icon-rotation-alignment`."}},default:"auto",doc:"Orientation of icon when map is pitched.",requires:["icon-image"],"sdk-support":{"basic functionality":{js:"0.39.0",android:"5.2.0",ios:"3.7.0",macos:"0.6.0"}},expression:{interpolated:!1,parameters:["zoom"]},"property-type":"data-constant"},"text-pitch-alignment":{type:"enum",values:{map:{doc:"The text is aligned to the plane of the map."},viewport:{doc:"The text is aligned to the plane of the viewport."},auto:{doc:"Automatically matches the value of `text-rotation-alignment`."}},default:"auto",doc:"Orientation of text when map is pitched.",requires:["text-field"],"sdk-support":{"basic functionality":{js:"0.21.0",android:"4.2.0",ios:"3.4.0",macos:"0.2.1"},"`auto` value":{js:"0.25.0",android:"4.2.0",ios:"3.4.0",macos:"0.3.0"}},expression:{interpolated:!1,parameters:["zoom"]},"property-type":"data-constant"},"text-rotation-alignment":{type:"enum",values:{map:{doc:"When `symbol-placement` is set to `point`, aligns text east-west. When `symbol-placement` is set to `line` or `line-center`, aligns text x-axes with the line."},viewport:{doc:"Produces glyphs whose x-axes are aligned with the x-axis of the viewport, regardless of the value of `symbol-placement`."},auto:{doc:"When `symbol-placement` is set to `point`, this is equivalent to `viewport`. When `symbol-placement` is set to `line` or `line-center`, this is equivalent to `map`."}},default:"auto",doc:"In combination with `symbol-placement`, determines the rotation behavior of the individual glyphs forming the text.",requires:["text-field"],"sdk-support":{"basic functionality":{js:"0.10.0",android:"2.0.1",ios:"2.0.0",macos:"0.1.0"},"`auto` value":{js:"0.25.0",android:"4.2.0",ios:"3.4.0",macos:"0.3.0"}},expression:{interpolated:!1,parameters:["zoom"]},"property-type":"data-constant"},"text-field":{type:"formatted",default:"",tokens:!0,doc:"Value to use for a text label. If a plain `string` is provided, it will be treated as a `formatted` with default/inherited formatting options. SDF images are not supported in formatted text and will be ignored.","sdk-support":{"basic functionality":{js:"0.10.0",android:"2.0.1",ios:"2.0.0",macos:"0.1.0"},"data-driven styling":{js:"0.33.0",android:"5.0.0",ios:"3.5.0",macos:"0.4.0"}},expression:{interpolated:!1,parameters:["zoom","feature"]},"property-type":"data-driven"},"text-font":{type:"array",value:"string",default:["Open Sans Regular","Arial Unicode MS Regular"],doc:"Font stack to use for displaying text.",requires:["text-field"],"sdk-support":{"basic functionality":{js:"0.10.0",android:"2.0.1",ios:"2.0.0",macos:"0.1.0"},"data-driven styling":{js:"0.43.0",android:"6.0.0",ios:"4.0.0",macos:"0.7.0"}},expression:{interpolated:!1,parameters:["zoom","feature"]},"property-type":"data-driven"},"text-size":{type:"number",default:16,minimum:0,units:"pixels",doc:"Font size.",requires:["text-field"],"sdk-support":{"basic functionality":{js:"0.10.0",android:"2.0.1",ios:"2.0.0",macos:"0.1.0"},"data-driven styling":{js:"0.35.0",android:"5.1.0",ios:"3.6.0",macos:"0.5.0"}},expression:{interpolated:!0,parameters:["zoom","feature"]},"property-type":"data-driven"},"text-max-width":{type:"number",default:10,minimum:0,units:"ems",doc:"The maximum line width for text wrapping.",requires:["text-field",{"symbol-placement":["point"]}],"sdk-support":{"basic functionality":{js:"0.10.0",android:"2.0.1",ios:"2.0.0",macos:"0.1.0"},"data-driven styling":{js:"0.40.0",android:"5.2.0",ios:"3.7.0",macos:"0.6.0"}},expression:{interpolated:!0,parameters:["zoom","feature"]},"property-type":"data-driven"},"text-line-height":{type:"number",default:1.2,units:"ems",doc:"Text leading value for multi-line text.",requires:["text-field"],"sdk-support":{"basic functionality":{js:"0.10.0",android:"2.0.1",ios:"2.0.0",macos:"0.1.0"},"data-driven styling":{js:"2.3.0"}},expression:{interpolated:!0,parameters:["zoom","feature"]},"property-type":"data-driven"},"text-letter-spacing":{type:"number",default:0,units:"ems",doc:"Text tracking amount.",requires:["text-field"],"sdk-support":{"basic functionality":{js:"0.10.0",android:"2.0.1",ios:"2.0.0",macos:"0.1.0"},"data-driven styling":{js:"0.40.0",android:"5.2.0",ios:"3.7.0",macos:"0.6.0"}},expression:{interpolated:!0,parameters:["zoom","feature"]},"property-type":"data-driven"},"text-justify":{type:"enum",values:{auto:{doc:"The text is aligned towards the anchor position."},left:{doc:"The text is aligned to the left."},center:{doc:"The text is centered."},right:{doc:"The text is aligned to the right."}},default:"center",doc:"Text justification options.",requires:["text-field"],"sdk-support":{"basic functionality":{js:"0.10.0",android:"2.0.1",ios:"2.0.0",macos:"0.1.0"},"data-driven styling":{js:"0.39.0",android:"5.2.0",ios:"3.7.0",macos:"0.6.0"},auto:{js:"0.54.0",android:"7.4.0",ios:"4.10.0",macos:"0.14.0"}},expression:{interpolated:!1,parameters:["zoom","feature"]},"property-type":"data-driven"},"text-radial-offset":{type:"number",units:"ems",default:0,doc:"Radial offset of text, in the direction of the symbol's anchor. Useful in combination with `text-variable-anchor`, which defaults to using the two-dimensional `text-offset` if present.","sdk-support":{"basic functionality":{js:"0.54.0",android:"7.4.0",ios:"4.10.0",macos:"0.14.0"},"data-driven styling":{js:"0.54.0",android:"7.4.0",ios:"4.10.0",macos:"0.14.0"}},requires:["text-field"],"property-type":"data-driven",expression:{interpolated:!0,parameters:["zoom","feature"]}},"text-variable-anchor":{type:"array",value:"enum",values:{center:{doc:"The center of the text is placed closest to the anchor."},left:{doc:"The left side of the text is placed closest to the anchor."},right:{doc:"The right side of the text is placed closest to the anchor."},top:{doc:"The top of the text is placed closest to the anchor."},bottom:{doc:"The bottom of the text is placed closest to the anchor."},"top-left":{doc:"The top left corner of the text is placed closest to the anchor."},"top-right":{doc:"The top right corner of the text is placed closest to the anchor."},"bottom-left":{doc:"The bottom left corner of the text is placed closest to the anchor."},"bottom-right":{doc:"The bottom right corner of the text is placed closest to the anchor."}},requires:["text-field",{"symbol-placement":["point"]}],doc:"To increase the chance of placing high-priority labels on the map, you can provide an array of `text-anchor` locations: the renderer will attempt to place the label at each location, in order, before moving onto the next label. Use `text-justify: auto` to choose justification based on anchor position. To apply an offset, use the `text-radial-offset` or the two-dimensional `text-offset`.","sdk-support":{"basic functionality":{js:"0.54.0",android:"7.4.0",ios:"4.10.0",macos:"0.14.0"}},expression:{interpolated:!1,parameters:["zoom"]},"property-type":"data-constant"},"text-anchor":{type:"enum",values:{center:{doc:"The center of the text is placed closest to the anchor."},left:{doc:"The left side of the text is placed closest to the anchor."},right:{doc:"The right side of the text is placed closest to the anchor."},top:{doc:"The top of the text is placed closest to the anchor."},bottom:{doc:"The bottom of the text is placed closest to the anchor."},"top-left":{doc:"The top left corner of the text is placed closest to the anchor."},"top-right":{doc:"The top right corner of the text is placed closest to the anchor."},"bottom-left":{doc:"The bottom left corner of the text is placed closest to the anchor."},"bottom-right":{doc:"The bottom right corner of the text is placed closest to the anchor."}},default:"center",doc:"Part of the text placed closest to the anchor.",requires:["text-field",{"!":"text-variable-anchor"}],"sdk-support":{"basic functionality":{js:"0.10.0",android:"2.0.1",ios:"2.0.0",macos:"0.1.0"},"data-driven styling":{js:"0.39.0",android:"5.2.0",ios:"3.7.0",macos:"0.6.0"}},expression:{interpolated:!1,parameters:["zoom","feature"]},"property-type":"data-driven"},"text-max-angle":{type:"number",default:45,units:"degrees",doc:"Maximum angle change between adjacent characters.",requires:["text-field",{"symbol-placement":["line","line-center"]}],"sdk-support":{"basic functionality":{js:"0.10.0",android:"2.0.1",ios:"2.0.0",macos:"0.1.0"}},expression:{interpolated:!0,parameters:["zoom"]},"property-type":"data-constant"},"text-writing-mode":{type:"array",value:"enum",values:{horizontal:{doc:"If a text's language supports horizontal writing mode, symbols would be laid out horizontally."},vertical:{doc:"If a text's language supports vertical writing mode, symbols would be laid out vertically."}},doc:"The property allows control over a symbol's orientation. Note that the property values act as a hint, so that a symbol whose language doesn’t support the provided orientation will be laid out in its natural orientation. Example: English point symbol will be rendered horizontally even if array value contains single 'vertical' enum value. For symbol with point placement, the order of elements in an array define priority order for the placement of an orientation variant. For symbol with line placement, the default text writing mode is either ['horizontal', 'vertical'] or ['vertical', 'horizontal'], the order doesn't affect the placement.",requires:["text-field"],"sdk-support":{"basic functionality":{js:"1.3.0",android:"8.3.0",ios:"5.3.0",macos:"0.15.0"}},expression:{interpolated:!1,parameters:["zoom"]},"property-type":"data-constant"},"text-rotate":{type:"number",default:0,period:360,units:"degrees",doc:"Rotates the text clockwise.",requires:["text-field"],"sdk-support":{"basic functionality":{js:"0.10.0",android:"2.0.1",ios:"2.0.0",macos:"0.1.0"},"data-driven styling":{js:"0.35.0",android:"5.1.0",ios:"3.6.0",macos:"0.5.0"}},expression:{interpolated:!0,parameters:["zoom","feature"]},"property-type":"data-driven"},"text-padding":{type:"number",default:2,minimum:0,units:"pixels",doc:"Size of the additional area around the text bounding box used for detecting symbol collisions.",requires:["text-field"],"sdk-support":{"basic functionality":{js:"0.10.0",android:"2.0.1",ios:"2.0.0",macos:"0.1.0"}},expression:{interpolated:!0,parameters:["zoom"]},"property-type":"data-constant"},"text-keep-upright":{type:"boolean",default:!0,doc:"If true, the text may be flipped vertically to prevent it from being rendered upside-down.",requires:["text-field",{"text-rotation-alignment":"map"},{"symbol-placement":["line","line-center"]}],"sdk-support":{"basic functionality":{js:"0.10.0",android:"2.0.1",ios:"2.0.0",macos:"0.1.0"}},expression:{interpolated:!1,parameters:["zoom"]},"property-type":"data-constant"},"text-transform":{type:"enum",values:{none:{doc:"The text is not altered."},uppercase:{doc:"Forces all letters to be displayed in uppercase."},lowercase:{doc:"Forces all letters to be displayed in lowercase."}},default:"none",doc:"Specifies how to capitalize text, similar to the CSS `text-transform` property.",requires:["text-field"],"sdk-support":{"basic functionality":{js:"0.10.0",android:"2.0.1",ios:"2.0.0",macos:"0.1.0"},"data-driven styling":{js:"0.33.0",android:"5.0.0",ios:"3.5.0",macos:"0.4.0"}},expression:{interpolated:!1,parameters:["zoom","feature"]},"property-type":"data-driven"},"text-offset":{type:"array",doc:"Offset distance of text from its anchor. Positive values indicate right and down, while negative values indicate left and up. If used with text-variable-anchor, input values will be taken as absolute values. Offsets along the x- and y-axis will be applied automatically based on the anchor position.",value:"number",units:"ems",length:2,default:[0,0],requires:["text-field",{"!":"text-radial-offset"}],"sdk-support":{"basic functionality":{js:"0.10.0",android:"2.0.1",ios:"2.0.0",macos:"0.1.0"},"data-driven styling":{js:"0.35.0",android:"5.1.0",ios:"3.6.0",macos:"0.5.0"}},expression:{interpolated:!0,parameters:["zoom","feature"]},"property-type":"data-driven"},"text-allow-overlap":{type:"boolean",default:!1,doc:"If true, the text will be visible even if it collides with other previously drawn symbols.",requires:["text-field"],"sdk-support":{"basic functionality":{js:"0.10.0",android:"2.0.1",ios:"2.0.0",macos:"0.1.0"}},expression:{interpolated:!1,parameters:["zoom"]},"property-type":"data-constant"},"text-ignore-placement":{type:"boolean",default:!1,doc:"If true, other symbols can be visible even if they collide with the text.",requires:["text-field"],"sdk-support":{"basic functionality":{js:"0.10.0",android:"2.0.1",ios:"2.0.0",macos:"0.1.0"}},expression:{interpolated:!1,parameters:["zoom"]},"property-type":"data-constant"},"text-optional":{type:"boolean",default:!1,doc:"If true, icons will display without their corresponding text when the text collides with other symbols and the icon does not.",requires:["text-field","icon-image"],"sdk-support":{"basic functionality":{js:"0.10.0",android:"2.0.1",ios:"2.0.0",macos:"0.1.0"}},expression:{interpolated:!1,parameters:["zoom"]},"property-type":"data-constant"},visibility:{type:"enum",values:{visible:{doc:"The layer is shown."},none:{doc:"The layer is not shown."}},default:"visible",doc:"Whether this layer is displayed.","sdk-support":{"basic functionality":{js:"0.10.0",android:"2.0.1",ios:"2.0.0",macos:"0.1.0"}},"property-type":"constant"}},layout_raster:{visibility:{type:"enum",values:{visible:{doc:"The layer is shown."},none:{doc:"The layer is not shown."}},default:"visible",doc:"Whether this layer is displayed.","sdk-support":{"basic functionality":{js:"0.10.0",android:"2.0.1",ios:"2.0.0",macos:"0.1.0"}},"property-type":"constant"}},layout_hillshade:{visibility:{type:"enum",values:{visible:{doc:"The layer is shown."},none:{doc:"The layer is not shown."}},default:"visible",doc:"Whether this layer is displayed.","sdk-support":{"basic functionality":{js:"0.43.0",android:"6.0.0",ios:"4.0.0",macos:"0.7.0"}},"property-type":"constant"}},filter:{type:"array",value:"*",doc:"A filter selects specific features from a layer."},filter_symbol:{type:"boolean",doc:'Expression which determines whether or not to display a symbol. Symbols support dynamic filtering, meaning this expression can use the `["pitch"]` and `["distance-from-center"]` expressions to reference the current state of the view.',default:!1,transition:!1,"property-type":"data-driven",expression:{interpolated:!1,parameters:["zoom","feature","pitch","distance-from-center"]}},filter_fill:{type:"boolean",doc:'Expression which determines whether or not to display a polygon. Fill layer does NOT support dynamic filtering, meaning this expression can NOT use the `["pitch"]` and `["distance-from-center"]` expressions to reference the current state of the view.',default:!1,transition:!1,"property-type":"data-driven",expression:{interpolated:!1,parameters:["zoom","feature"]}},filter_line:{type:"boolean",doc:'Expression which determines whether or not to display a Polygon or LineString. Line layer does NOT support dynamic filtering, meaning this expression can NOT use the `["pitch"]` and `["distance-from-center"]` expressions to reference the current state of the view.',default:!1,transition:!1,"property-type":"data-driven",expression:{interpolated:!1,parameters:["zoom","feature"]}},filter_circle:{type:"boolean",doc:'Expression which determines whether or not to display a circle. Circle layer does NOT support dynamic filtering, meaning this expression can NOT use the `["pitch"]` and `["distance-from-center"]` expressions to reference the current state of the view.',default:!1,transition:!1,"property-type":"data-driven",expression:{interpolated:!1,parameters:["zoom","feature"]}},"filter_fill-extrusion":{type:"boolean",doc:'Expression which determines whether or not to display a Polygon. Fill-extrusion layer does NOT support dynamic filtering, meaning this expression can NOT use the `["pitch"]` and `["distance-from-center"]` expressions to reference the current state of the view.',default:!1,transition:!1,"property-type":"data-driven",expression:{interpolated:!1,parameters:["zoom","feature"]}},filter_heatmap:{type:"boolean",doc:'Expression used to determine whether a point is being displayed or not. Heatmap layer does NOT support dynamic filtering, meaning this expression can NOT use the `["pitch"]` and `["distance-from-center"]` expressions to reference the current state of the view.',default:!1,transition:!1,"property-type":"data-driven",expression:{interpolated:!1,parameters:["zoom","feature"]}},filter_operator:{type:"enum",values:{"==":{doc:'`["==", key, value]` equality: `feature[key] = value`'},"!=":{doc:'`["!=", key, value]` inequality: `feature[key] ≠ value`'},">":{doc:'`[">", key, value]` greater than: `feature[key] > value`'},">=":{doc:'`[">=", key, value]` greater than or equal: `feature[key] ≥ value`'},"<":{doc:'`["<", key, value]` less than: `feature[key] < value`'},"<=":{doc:'`["<=", key, value]` less than or equal: `feature[key] ≤ value`'},in:{doc:'`["in", key, v0, ..., vn]` set inclusion: `feature[key] ∈ {v0, ..., vn}`'},"!in":{doc:'`["!in", key, v0, ..., vn]` set exclusion: `feature[key] ∉ {v0, ..., vn}`'},all:{doc:'`["all", f0, ..., fn]` logical `AND`: `f0 ∧ ... ∧ fn`'},any:{doc:'`["any", f0, ..., fn]` logical `OR`: `f0 ∨ ... ∨ fn`'},none:{doc:'`["none", f0, ..., fn]` logical `NOR`: `¬f0 ∧ ... ∧ ¬fn`'},has:{doc:'`["has", key]` `feature[key]` exists'},"!has":{doc:'`["!has", key]` `feature[key]` does not exist'},within:{doc:'`["within", object]` feature geometry is within object geometry'}},doc:"The filter operator."},geometry_type:{type:"enum",values:{Point:{doc:"Filter to point geometries."},LineString:{doc:"Filter to line geometries."},Polygon:{doc:"Filter to polygon geometries."}},doc:"The geometry type for the filter to select."},function:{expression:{type:"expression",doc:"An expression."},stops:{type:"array",doc:"An array of stops.",value:"function_stop"},base:{type:"number",default:1,minimum:0,doc:"The exponential base of the interpolation curve. It controls the rate at which the result increases. Higher values make the result increase more towards the high end of the range. With `1` the stops are interpolated linearly."},property:{type:"string",doc:"The name of a feature property to use as the function input.",default:"$zoom"},type:{type:"enum",values:{identity:{doc:"Return the input value as the output value."},exponential:{doc:"Generate an output by interpolating between stops just less than and just greater than the function input."},interval:{doc:"Return the output value of the stop just less than the function input."},categorical:{doc:"Return the output value of the stop equal to the function input."}},doc:"The interpolation strategy to use in function evaluation.",default:"exponential"},colorSpace:{type:"enum",values:{rgb:{doc:"Use the RGB color space to interpolate color values"},lab:{doc:"Use the LAB color space to interpolate color values."},hcl:{doc:"Use the HCL color space to interpolate color values, interpolating the Hue, Chroma, and Luminance channels individually."}},doc:"The color space in which colors interpolated. Interpolating colors in perceptual color spaces like LAB and HCL tend to produce color ramps that look more consistent and produce colors that can be differentiated more easily than those interpolated in RGB space.",default:"rgb"},default:{type:"*",required:!1,doc:"A value to serve as a fallback function result when a value isn't otherwise available. It is used in the following circumstances:\n* In categorical functions, when the feature value does not match any of the stop domain values.\n* In property and zoom-and-property functions, when a feature does not contain a value for the specified property.\n* In identity functions, when the feature value is not valid for the style property (for example, if the function is being used for a `circle-color` property but the feature property value is not a string or not a valid color).\n* In interval or exponential property and zoom-and-property functions, when the feature value is not numeric.\nIf no default is provided, the style property's default is used in these circumstances."}},function_stop:{type:"array",minimum:0,maximum:24,value:["number","color"],length:2,doc:"Zoom level and value pair."},expression:{type:"array",value:"*",minimum:1,doc:"An expression defines a function that can be used for data-driven style properties or feature filters."},expression_name:{doc:"",type:"enum",values:{let:{doc:'Binds expressions to named variables, which can then be referenced in the result expression using ["var", "variable_name"].',group:"Variable binding","sdk-support":{"basic functionality":{js:"0.41.0",android:"6.0.0",ios:"4.0.0",macos:"0.7.0"}}},var:{doc:'References variable bound using "let".',group:"Variable binding","sdk-support":{"basic functionality":{js:"0.41.0",android:"6.0.0",ios:"4.0.0",macos:"0.7.0"}}},literal:{doc:"Provides a literal array or object value.",group:"Types","sdk-support":{"basic functionality":{js:"0.41.0",android:"6.0.0",ios:"4.0.0",macos:"0.7.0"}}},array:{doc:"Asserts that the input is an array (optionally with a specific item type and length). If, when the input expression is evaluated, it is not of the asserted type, then this assertion will cause the whole expression to be aborted.",group:"Types","sdk-support":{"basic functionality":{js:"0.41.0",android:"6.0.0",ios:"4.0.0",macos:"0.7.0"}}},at:{doc:"Retrieves an item from an array.",group:"Lookup","sdk-support":{"basic functionality":{js:"0.41.0",android:"6.0.0",ios:"4.0.0",macos:"0.7.0"}}},in:{doc:"Determines whether an item exists in an array or a substring exists in a string. In the specific case when the second and third arguments are string literals, you must wrap at least one of them in a [`literal`](#types-literal) expression to hint correct interpretation to the [type system](#type-system).",group:"Lookup","sdk-support":{"basic functionality":{js:"1.6.0",android:"9.1.0",ios:"5.8.0",macos:"0.15.0"}}},"index-of":{doc:"Returns the first position at which an item can be found in an array or a substring can be found in a string, or `-1` if the input cannot be found. Accepts an optional index from where to begin the search.",group:"Lookup","sdk-support":{"basic functionality":{js:"1.10.0"}}},slice:{doc:"Returns an item from an array or a substring from a string from a specified start index, or between a start index and an end index if set. The return value is inclusive of the start index but not of the end index.",group:"Lookup","sdk-support":{"basic functionality":{js:"1.10.0"}}},case:{doc:"Selects the first output whose corresponding test condition evaluates to true, or the fallback value otherwise.",group:"Decision","sdk-support":{"basic functionality":{js:"0.41.0",android:"6.0.0",ios:"4.0.0",macos:"0.7.0"}}},match:{doc:'Selects the output for which the label value matches the input value, or the fallback value if no match is found. The input can be any expression (for example, `["get", "building_type"]`). Each label must be unique, and must be either:\n - a single literal value; or\n - an array of literal values, the values of which must be all strings or all numbers (for example `[100, 101]` or `["c", "b"]`).\n\nThe input matches if any of the values in the array matches using strict equality, similar to the `"in"` operator.\nIf the input type does not match the type of the labels, the result will be the fallback value.',group:"Decision","sdk-support":{"basic functionality":{js:"0.41.0",android:"6.0.0",ios:"4.0.0",macos:"0.7.0"}}},coalesce:{doc:"Evaluates each expression in turn until the first valid value is obtained. Invalid values are `null` and [`'image'`](#types-image) expressions that are unavailable in the style. If all values are invalid, `coalesce` returns the first value listed.",group:"Decision","sdk-support":{"basic functionality":{js:"0.41.0",android:"6.0.0",ios:"4.0.0",macos:"0.7.0"}}},step:{doc:'Produces discrete, stepped results by evaluating a piecewise-constant function defined by pairs of input and output values ("stops"). The `input` may be any numeric expression (e.g., `["get", "population"]`). Stop inputs must be numeric literals in strictly ascending order. Returns the output value of the stop just less than the input, or the first output if the input is less than the first stop.',group:"Ramps, scales, curves","sdk-support":{"basic functionality":{js:"0.42.0",android:"6.0.0",ios:"4.0.0",macos:"0.7.0"}}},interpolate:{doc:'Produces continuous, smooth results by interpolating between pairs of input and output values ("stops"). The `input` may be any numeric expression (e.g., `["get", "population"]`). Stop inputs must be numeric literals in strictly ascending order. The output type must be `number`, `array`, or `color`.\n\nInterpolation types:\n- `["linear"]`: Interpolates linearly between the pair of stops just less than and just greater than the input.\n- `["exponential", base]`: Interpolates exponentially between the stops just less than and just greater than the input. `base` controls the rate at which the output increases: higher values make the output increase more towards the high end of the range. With values close to 1 the output increases linearly.\n- `["cubic-bezier", x1, y1, x2, y2]`: Interpolates using the cubic bezier curve defined by the given control points.',group:"Ramps, scales, curves","sdk-support":{"basic functionality":{js:"0.42.0",android:"6.0.0",ios:"4.0.0",macos:"0.7.0"}}},"interpolate-hcl":{doc:'Produces continuous, smooth results by interpolating between pairs of input and output values ("stops"). Works like `interpolate`, but the output type must be `color`, and the interpolation is performed in the Hue-Chroma-Luminance color space.',group:"Ramps, scales, curves","sdk-support":{"basic functionality":{js:"0.49.0"}}},"interpolate-lab":{doc:'Produces continuous, smooth results by interpolating between pairs of input and output values ("stops"). Works like `interpolate`, but the output type must be `color`, and the interpolation is performed in the CIELAB color space.',group:"Ramps, scales, curves","sdk-support":{"basic functionality":{js:"0.49.0"}}},ln2:{doc:"Returns mathematical constant ln(2).",group:"Math","sdk-support":{"basic functionality":{js:"0.41.0",android:"6.0.0",ios:"4.0.0",macos:"0.7.0"}}},pi:{doc:"Returns the mathematical constant pi.",group:"Math","sdk-support":{"basic functionality":{js:"0.41.0",android:"6.0.0",ios:"4.0.0",macos:"0.7.0"}}},e:{doc:"Returns the mathematical constant e.",group:"Math","sdk-support":{"basic functionality":{js:"0.41.0",android:"6.0.0",ios:"4.0.0",macos:"0.7.0"}}},typeof:{doc:"Returns a string describing the type of the given value.",group:"Types","sdk-support":{"basic functionality":{js:"0.41.0",android:"6.0.0",ios:"4.0.0",macos:"0.7.0"}}},string:{doc:"Asserts that the input value is a string. If multiple values are provided, each one is evaluated in order until a string is obtained. If none of the inputs are strings, the expression is an error.",group:"Types","sdk-support":{"basic functionality":{js:"0.41.0",android:"6.0.0",ios:"4.0.0",macos:"0.7.0"}}},number:{doc:"Asserts that the input value is a number. If multiple values are provided, each one is evaluated in order until a number is obtained. If none of the inputs are numbers, the expression is an error.",group:"Types","sdk-support":{"basic functionality":{js:"0.41.0",android:"6.0.0",ios:"4.0.0",macos:"0.7.0"}}},boolean:{doc:"Asserts that the input value is a boolean. If multiple values are provided, each one is evaluated in order until a boolean is obtained. If none of the inputs are booleans, the expression is an error.",group:"Types","sdk-support":{"basic functionality":{js:"0.41.0",android:"6.0.0",ios:"4.0.0",macos:"0.7.0"}}},object:{doc:"Asserts that the input value is an object. If multiple values are provided, each one is evaluated in order until an object is obtained. If none of the inputs are objects, the expression is an error.",group:"Types","sdk-support":{"basic functionality":{js:"0.41.0",android:"6.0.0",ios:"4.0.0",macos:"0.7.0"}}},collator:{doc:"Returns a `collator` for use in locale-dependent comparison operations. The `case-sensitive` and `diacritic-sensitive` options default to `false`. The `locale` argument specifies the IETF language tag of the locale to use. If none is provided, the default locale is used. If the requested locale is not available, the `collator` will use a system-defined fallback locale. Use `resolved-locale` to test the results of locale fallback behavior.",group:"Types","sdk-support":{"basic functionality":{js:"0.45.0",android:"6.5.0",ios:"4.2.0",macos:"0.9.0"}}},format:{doc:'Returns a `formatted` string for displaying mixed-format text in the `text-field` property. The input may contain a string literal or expression, including an [`\'image\'`](#types-image) expression. Strings may be followed by a style override object that supports the following properties:\n- `"text-font"`: Overrides the font stack specified by the root layout property.\n- `"text-color"`: Overrides the color specified by the root paint property.\n- `"font-scale"`: Applies a scaling factor on `text-size` as specified by the root layout property.',group:"Types","sdk-support":{"basic functionality":{js:"0.48.0",android:"6.7.0",ios:"4.6.0",macos:"0.12.0"},"text-font":{js:"0.48.0",android:"6.7.0",ios:"4.6.0",macos:"0.12.0"},"font-scale":{js:"0.48.0",android:"6.7.0",ios:"4.6.0",macos:"0.12.0"},"text-color":{js:"1.3.0",android:"7.3.0",ios:"4.10.0",macos:"0.14.0"},image:{js:"1.6.0",android:"8.6.0",ios:"5.7.0",macos:"0.15.0"}}},image:{doc:"Returns a [`ResolvedImage`](/mapbox-gl-js/style-spec/types/#resolvedimage) for use in [`icon-image`](/mapbox-gl-js/style-spec/layers/#layout-symbol-icon-image), `*-pattern` entries, and as a section in the [`'format'`](#types-format) expression. A [`'coalesce'`](#coalesce) expression containing `image` expressions will evaluate to the first listed image that is currently in the style. This validation process is synchronous and requires the image to have been added to the style before requesting it in the `'image'` argument.",group:"Types","sdk-support":{"basic functionality":{js:"1.4.0",android:"8.6.0",ios:"5.7.0",macos:"0.15.0"}}},"number-format":{doc:"Converts the input number into a string representation using the providing formatting rules. If set, the `locale` argument specifies the locale to use, as a BCP 47 language tag. If set, the `currency` argument specifies an ISO 4217 code to use for currency-style formatting. If set, the `min-fraction-digits` and `max-fraction-digits` arguments specify the minimum and maximum number of fractional digits to include.",group:"Types","sdk-support":{"basic functionality":{js:"0.54.0",android:"8.4.0",ios:"5.4.0",macos:"0.15.0"}}},"to-string":{doc:'Converts the input value to a string. If the input is `null`, the result is `""`. If the input is a [`boolean`](#types-boolean), the result is `"true"` or `"false"`. If the input is a number, it is converted to a string as specified by the ["NumberToString" algorithm](https://tc39.github.io/ecma262/#sec-tostring-applied-to-the-number-type) of the ECMAScript Language Specification. If the input is a [`color`](#color), it is converted to a string of the form `"rgba(r,g,b,a)"`, where `r`, `g`, and `b` are numerals ranging from 0 to 255, and `a` ranges from 0 to 1. If the input is an [`\'image\'`](#types-image) expression, `\'to-string\'` returns the image name. Otherwise, the input is converted to a string in the format specified by the [`JSON.stringify`](https://tc39.github.io/ecma262/#sec-json.stringify) function of the ECMAScript Language Specification.',group:"Types","sdk-support":{"basic functionality":{js:"0.41.0",android:"6.0.0",ios:"4.0.0",macos:"0.7.0"}}},"to-number":{doc:'Converts the input value to a number, if possible. If the input is `null` or `false`, the result is 0. If the input is `true`, the result is 1. If the input is a string, it is converted to a number as specified by the ["ToNumber Applied to the String Type" algorithm](https://tc39.github.io/ecma262/#sec-tonumber-applied-to-the-string-type) of the ECMAScript Language Specification. If multiple values are provided, each one is evaluated in order until the first successful conversion is obtained. If none of the inputs can be converted, the expression is an error.',group:"Types","sdk-support":{"basic functionality":{js:"0.41.0",android:"6.0.0",ios:"4.0.0",macos:"0.7.0"}}},"to-boolean":{doc:"Converts the input value to a boolean. The result is `false` when then input is an empty string, 0, `false`, `null`, or `NaN`; otherwise it is `true`.",group:"Types","sdk-support":{"basic functionality":{js:"0.41.0",android:"6.0.0",ios:"4.0.0",macos:"0.7.0"}}},"to-rgba":{doc:"Returns a four-element array containing the input color's red, green, blue, and alpha components, in that order.",group:"Color","sdk-support":{"basic functionality":{js:"0.41.0",android:"6.0.0",ios:"4.0.0",macos:"0.7.0"}}},"to-color":{doc:"Converts the input value to a color. If multiple values are provided, each one is evaluated in order until the first successful conversion is obtained. If none of the inputs can be converted, the expression is an error.",group:"Types","sdk-support":{"basic functionality":{js:"0.41.0",android:"6.0.0",ios:"4.0.0",macos:"0.7.0"}}},rgb:{doc:"Creates a color value from red, green, and blue components, which must range between 0 and 255, and an alpha component of 1. If any component is out of range, the expression is an error.",group:"Color","sdk-support":{"basic functionality":{js:"0.41.0",android:"6.0.0",ios:"4.0.0",macos:"0.7.0"}}},rgba:{doc:"Creates a color value from red, green, blue components, which must range between 0 and 255, and an alpha component which must range between 0 and 1. If any component is out of range, the expression is an error.",group:"Color","sdk-support":{"basic functionality":{js:"0.41.0",android:"6.0.0",ios:"4.0.0",macos:"0.7.0"}}},get:{doc:"Retrieves a property value from the current feature's properties, or from another object if a second argument is provided. Returns `null` if the requested property is missing.",group:"Lookup","sdk-support":{"basic functionality":{js:"0.41.0",android:"6.0.0",ios:"4.0.0",macos:"0.7.0"}}},has:{doc:"Tests for the presence of an property value in the current feature's properties, or from another object if a second argument is provided.",group:"Lookup","sdk-support":{"basic functionality":{js:"0.41.0",android:"6.0.0",ios:"4.0.0",macos:"0.7.0"}}},length:{doc:"Returns the length of an array or string.",group:"Lookup","sdk-support":{"basic functionality":{js:"0.41.0",android:"6.0.0",ios:"4.0.0",macos:"0.7.0"}}},properties:{doc:'Returns the feature properties object. Note that in some cases, it may be more efficient to use `["get", "property_name"]` directly.',group:"Feature data","sdk-support":{"basic functionality":{js:"0.41.0",android:"6.0.0",ios:"4.0.0",macos:"0.7.0"}}},"feature-state":{doc:"Retrieves a property value from the current feature's state. Returns `null` if the requested property is not present on the feature's state. A feature's state is not part of the GeoJSON or vector tile data, and must be set programmatically on each feature. Features are identified by their `id` attribute, which must be an integer or a string that can be cast to an integer. Note that [\"feature-state\"] can only be used with paint properties that support data-driven styling.",group:"Feature data","sdk-support":{"basic functionality":{js:"0.46.0"}}},"geometry-type":{doc:"Returns the feature's geometry type: `Point`, `MultiPoint`, `LineString`, `MultiLineString`, `Polygon`, `MultiPolygon`. `Multi*` feature types are only returned in GeoJSON sources. When working with vector tile sources, use the singular forms.",group:"Feature data","sdk-support":{"basic functionality":{js:"0.41.0",android:"6.0.0",ios:"4.0.0",macos:"0.7.0"}}},id:{doc:"Returns the feature's id, if it has one.",group:"Feature data","sdk-support":{"basic functionality":{js:"0.41.0",android:"6.0.0",ios:"4.0.0",macos:"0.7.0"}}},zoom:{doc:'Returns the current zoom level. Note that in style layout and paint properties, ["zoom"] may only appear as the input to a top-level "step" or "interpolate" expression.',group:"Camera","sdk-support":{"basic functionality":{js:"0.41.0",android:"6.0.0",ios:"4.0.0",macos:"0.7.0"}}},pitch:{doc:'Returns the current pitch in degrees. `["pitch"]` may only be used in the `filter` expression for a `symbol` layer.',group:"Camera","sdk-support":{"basic functionality":{js:"2.6.0"}}},"distance-from-center":{doc:'Returns the distance of a `symbol` instance from the center of the map. The distance is measured in pixels divided by the height of the map container. It measures 0 at the center, decreases towards the camera and increase away from the camera. For example, if the height of the map is 1000px, a value of -1 means 1000px away from the center towards the camera, and a value of 1 means a distance of 1000px away from the camera from the center. `["distance-from-center"]` may only be used in the `filter` expression for a `symbol` layer.',group:"Camera","sdk-support":{"basic functionality":{js:"2.6.0"}}},"heatmap-density":{doc:"Returns the kernel density estimation of a pixel in a heatmap layer, which is a relative measure of how many data points are crowded around a particular pixel. Can only be used in the `heatmap-color` property.",group:"Heatmap","sdk-support":{"basic functionality":{js:"0.41.0",android:"6.0.0",ios:"4.0.0",macos:"0.7.0"}}},"line-progress":{doc:"Returns the progress along a gradient line. Can only be used in the `line-gradient` property.",group:"Feature data","sdk-support":{"basic functionality":{js:"0.45.0",android:"6.5.0",ios:"4.6.0",macos:"0.12.0"}}},"sky-radial-progress":{doc:"Returns the distance of a point on the sky from the sun position. Returns 0 at sun position and 1 when the distance reaches `sky-gradient-radius`. Can only be used in the `sky-gradient` property.",group:"sky","sdk-support":{"basic functionality":{js:"2.0.0",ios:"10.0.0",android:"10.0.0"}}},accumulated:{doc:"Returns the value of a cluster property accumulated so far. Can only be used in the `clusterProperties` option of a clustered GeoJSON source.",group:"Feature data","sdk-support":{"basic functionality":{js:"0.53.0",android:"8.4.0",ios:"5.5.0",macos:"0.15.0"}}},"+":{doc:"Returns the sum of the inputs.",group:"Math","sdk-support":{"basic functionality":{js:"0.41.0",android:"6.0.0",ios:"4.0.0",macos:"0.7.0"}}},"*":{doc:"Returns the product of the inputs.",group:"Math","sdk-support":{"basic functionality":{js:"0.41.0",android:"6.0.0",ios:"4.0.0",macos:"0.7.0"}}},"-":{doc:"For two inputs, returns the result of subtracting the second input from the first. For a single input, returns the result of subtracting it from 0.",group:"Math","sdk-support":{"basic functionality":{js:"0.41.0",android:"6.0.0",ios:"4.0.0",macos:"0.7.0"}}},"/":{doc:"Returns the result of floating point division of the first input by the second.",group:"Math","sdk-support":{"basic functionality":{js:"0.41.0",android:"6.0.0",ios:"4.0.0",macos:"0.7.0"}}},"%":{doc:"Returns the remainder after integer division of the first input by the second.",group:"Math","sdk-support":{"basic functionality":{js:"0.41.0",android:"6.0.0",ios:"4.0.0",macos:"0.7.0"}}},"^":{doc:"Returns the result of raising the first input to the power specified by the second.",group:"Math","sdk-support":{"basic functionality":{js:"0.41.0",android:"6.0.0",ios:"4.0.0",macos:"0.7.0"}}},sqrt:{doc:"Returns the square root of the input.",group:"Math","sdk-support":{"basic functionality":{js:"0.42.0",android:"6.0.0",ios:"4.0.0",macos:"0.7.0"}}},log10:{doc:"Returns the base-ten logarithm of the input.",group:"Math","sdk-support":{"basic functionality":{js:"0.41.0",android:"6.0.0",ios:"4.0.0",macos:"0.7.0"}}},ln:{doc:"Returns the natural logarithm of the input.",group:"Math","sdk-support":{"basic functionality":{js:"0.41.0",android:"6.0.0",ios:"4.0.0",macos:"0.7.0"}}},log2:{doc:"Returns the base-two logarithm of the input.",group:"Math","sdk-support":{"basic functionality":{js:"0.41.0",android:"6.0.0",ios:"4.0.0",macos:"0.7.0"}}},sin:{doc:"Returns the sine of the input.",group:"Math","sdk-support":{"basic functionality":{js:"0.41.0",android:"6.0.0",ios:"4.0.0",macos:"0.7.0"}}},cos:{doc:"Returns the cosine of the input.",group:"Math","sdk-support":{"basic functionality":{js:"0.41.0",android:"6.0.0",ios:"4.0.0",macos:"0.7.0"}}},tan:{doc:"Returns the tangent of the input.",group:"Math","sdk-support":{"basic functionality":{js:"0.41.0",android:"6.0.0",ios:"4.0.0",macos:"0.7.0"}}},asin:{doc:"Returns the arcsine of the input.",group:"Math","sdk-support":{"basic functionality":{js:"0.41.0",android:"6.0.0",ios:"4.0.0",macos:"0.7.0"}}},acos:{doc:"Returns the arccosine of the input.",group:"Math","sdk-support":{"basic functionality":{js:"0.41.0",android:"6.0.0",ios:"4.0.0",macos:"0.7.0"}}},atan:{doc:"Returns the arctangent of the input.",group:"Math","sdk-support":{"basic functionality":{js:"0.41.0",android:"6.0.0",ios:"4.0.0",macos:"0.7.0"}}},min:{doc:"Returns the minimum value of the inputs.",group:"Math","sdk-support":{"basic functionality":{js:"0.41.0",android:"6.0.0",ios:"4.0.0",macos:"0.7.0"}}},max:{doc:"Returns the maximum value of the inputs.",group:"Math","sdk-support":{"basic functionality":{js:"0.41.0",android:"6.0.0",ios:"4.0.0",macos:"0.7.0"}}},round:{doc:'Rounds the input to the nearest integer. Halfway values are rounded away from zero. For example, `["round", -1.5]` evaluates to -2.',group:"Math","sdk-support":{"basic functionality":{js:"0.45.0",android:"6.0.0",ios:"4.0.0",macos:"0.7.0"}}},abs:{doc:"Returns the absolute value of the input.",group:"Math","sdk-support":{"basic functionality":{js:"0.45.0",android:"6.0.0",ios:"4.0.0",macos:"0.7.0"}}},ceil:{doc:"Returns the smallest integer that is greater than or equal to the input.",group:"Math","sdk-support":{"basic functionality":{js:"0.45.0",android:"6.0.0",ios:"4.0.0",macos:"0.7.0"}}},floor:{doc:"Returns the largest integer that is less than or equal to the input.",group:"Math","sdk-support":{"basic functionality":{js:"0.45.0",android:"6.0.0",ios:"4.0.0",macos:"0.7.0"}}},distance:{doc:"Returns the shortest distance in meters between the evaluated feature and the input geometry. The input value can be a valid GeoJSON of type `Point`, `MultiPoint`, `LineString`, `MultiLineString`, `Polygon`, `MultiPolygon`, `Feature`, or `FeatureCollection`. Distance values returned may vary in precision due to loss in precision from encoding geometries, particularly below zoom level 13.",group:"Math","sdk-support":{"basic functionality":{android:"9.2.0",ios:"5.9.0",macos:"0.16.0"}}},"==":{doc:"Returns `true` if the input values are equal, `false` otherwise. The comparison is strictly typed: values of different runtime types are always considered unequal. Cases where the types are known to be different at parse time are considered invalid and will produce a parse error. Accepts an optional `collator` argument to control locale-dependent string comparisons.",group:"Decision","sdk-support":{"basic functionality":{js:"0.41.0",android:"6.0.0",ios:"4.0.0",macos:"0.7.0"},collator:{js:"0.45.0",android:"6.5.0",ios:"4.2.0",macos:"0.9.0"}}},"!=":{doc:"Returns `true` if the input values are not equal, `false` otherwise. The comparison is strictly typed: values of different runtime types are always considered unequal. Cases where the types are known to be different at parse time are considered invalid and will produce a parse error. Accepts an optional `collator` argument to control locale-dependent string comparisons.",group:"Decision","sdk-support":{"basic functionality":{js:"0.41.0",android:"6.0.0",ios:"4.0.0",macos:"0.7.0"},collator:{js:"0.45.0",android:"6.5.0",ios:"4.2.0",macos:"0.9.0"}}},">":{doc:"Returns `true` if the first input is strictly greater than the second, `false` otherwise. The arguments are required to be either both strings or both numbers; if during evaluation they are not, expression evaluation produces an error. Cases where this constraint is known not to hold at parse time are considered in valid and will produce a parse error. Accepts an optional `collator` argument to control locale-dependent string comparisons.",group:"Decision","sdk-support":{"basic functionality":{js:"0.41.0",android:"6.0.0",ios:"4.0.0",macos:"0.7.0"},collator:{js:"0.45.0",android:"6.5.0",ios:"4.2.0",macos:"0.9.0"}}},"<":{doc:"Returns `true` if the first input is strictly less than the second, `false` otherwise. The arguments are required to be either both strings or both numbers; if during evaluation they are not, expression evaluation produces an error. Cases where this constraint is known not to hold at parse time are considered in valid and will produce a parse error. Accepts an optional `collator` argument to control locale-dependent string comparisons.",group:"Decision","sdk-support":{"basic functionality":{js:"0.41.0",android:"6.0.0",ios:"4.0.0",macos:"0.7.0"},collator:{js:"0.45.0",android:"6.5.0",ios:"4.2.0",macos:"0.9.0"}}},">=":{doc:"Returns `true` if the first input is greater than or equal to the second, `false` otherwise. The arguments are required to be either both strings or both numbers; if during evaluation they are not, expression evaluation produces an error. Cases where this constraint is known not to hold at parse time are considered in valid and will produce a parse error. Accepts an optional `collator` argument to control locale-dependent string comparisons.",group:"Decision","sdk-support":{"basic functionality":{js:"0.41.0",android:"6.0.0",ios:"4.0.0",macos:"0.7.0"},collator:{js:"0.45.0",android:"6.5.0",ios:"4.2.0",macos:"0.9.0"}}},"<=":{doc:"Returns `true` if the first input is less than or equal to the second, `false` otherwise. The arguments are required to be either both strings or both numbers; if during evaluation they are not, expression evaluation produces an error. Cases where this constraint is known not to hold at parse time are considered in valid and will produce a parse error. Accepts an optional `collator` argument to control locale-dependent string comparisons.",group:"Decision","sdk-support":{"basic functionality":{js:"0.41.0",android:"6.0.0",ios:"4.0.0",macos:"0.7.0"},collator:{js:"0.45.0",android:"6.5.0",ios:"4.2.0",macos:"0.9.0"}}},all:{doc:"Returns `true` if all the inputs are `true`, `false` otherwise. The inputs are evaluated in order, and evaluation is short-circuiting: once an input expression evaluates to `false`, the result is `false` and no further input expressions are evaluated.",group:"Decision","sdk-support":{"basic functionality":{js:"0.41.0",android:"6.0.0",ios:"4.0.0",macos:"0.7.0"}}},any:{doc:"Returns `true` if any of the inputs are `true`, `false` otherwise. The inputs are evaluated in order, and evaluation is short-circuiting: once an input expression evaluates to `true`, the result is `true` and no further input expressions are evaluated.",group:"Decision","sdk-support":{"basic functionality":{js:"0.41.0",android:"6.0.0",ios:"4.0.0",macos:"0.7.0"}}},"!":{doc:"Logical negation. Returns `true` if the input is `false`, and `false` if the input is `true`.",group:"Decision","sdk-support":{"basic functionality":{js:"0.41.0",android:"6.0.0",ios:"4.0.0",macos:"0.7.0"}}},within:{doc:"Returns `true` if the evaluated feature is fully contained inside a boundary of the input geometry, `false` otherwise. The input value can be a valid GeoJSON of type `Polygon`, `MultiPolygon`, `Feature`, or `FeatureCollection`. Supported features for evaluation:\n- `Point`: Returns `false` if a point is on the boundary or falls outside the boundary.\n- `LineString`: Returns `false` if any part of a line falls outside the boundary, the line intersects the boundary, or a line's endpoint is on the boundary.",group:"Decision","sdk-support":{"basic functionality":{js:"1.9.0",android:"9.1.0",ios:"5.8.0",macos:"0.15.0"}}},"is-supported-script":{doc:"Returns `true` if the input string is expected to render legibly. Returns `false` if the input string contains sections that cannot be rendered without potential loss of meaning (e.g. Indic scripts that require complex text shaping, or right-to-left scripts if the the `mapbox-gl-rtl-text` plugin is not in use in Mapbox GL JS).",group:"String","sdk-support":{"basic functionality":{js:"0.45.0",android:"6.6.0"}}},upcase:{doc:"Returns the input string converted to uppercase. Follows the Unicode Default Case Conversion algorithm and the locale-insensitive case mappings in the Unicode Character Database.",group:"String","sdk-support":{"basic functionality":{js:"0.41.0",android:"6.0.0",ios:"4.0.0",macos:"0.7.0"}}},downcase:{doc:"Returns the input string converted to lowercase. Follows the Unicode Default Case Conversion algorithm and the locale-insensitive case mappings in the Unicode Character Database.",group:"String","sdk-support":{"basic functionality":{js:"0.41.0",android:"6.0.0",ios:"4.0.0",macos:"0.7.0"}}},concat:{doc:"Returns a `string` consisting of the concatenation of the inputs. Each input is converted to a string as if by `to-string`.",group:"String","sdk-support":{"basic functionality":{js:"0.41.0",android:"6.0.0",ios:"4.0.0",macos:"0.7.0"}}},"resolved-locale":{doc:"Returns the IETF language tag of the locale being used by the provided `collator`. This can be used to determine the default system locale, or to determine if a requested locale was successfully loaded.",group:"String","sdk-support":{"basic functionality":{js:"0.45.0",android:"6.5.0",ios:"4.2.0",macos:"0.9.0"}}}}},fog:{range:{type:"array",default:[.5,10],minimum:-20,maximum:20,length:2,value:"number","property-type":"data-constant",transition:!0,expression:{interpolated:!0,parameters:["zoom"]},doc:"The start and end distance range in which fog fades from fully transparent to fully opaque. The distance to the point at the center of the map is defined as zero, so that negative range values are closer to the camera, and positive values are farther away.",example:[.5,10],"sdk-support":{"basic functionality":{js:"2.3.0",android:"10.6.0",ios:"10.6.0"}}},color:{type:"color","property-type":"data-constant",default:"#ffffff",expression:{interpolated:!0,parameters:["zoom"]},transition:!0,doc:"The color of the atmosphere region immediately below the horizon and within the `range` and above the horizon and within `horizon-blend`. Using opacity is recommended only for smoothly transitioning fog on/off as anything less than 100% opacity results in more tiles loaded and drawn.","sdk-support":{"basic functionality":{js:"2.3.0",android:"10.6.0",ios:"10.6.0"}}},"high-color":{type:"color","property-type":"data-constant",default:"#245cdf",expression:{interpolated:!0,parameters:["zoom"]},transition:!0,doc:"The color of the atmosphere region above the horizon, `high-color` extends further above the horizon than the `color` property and its spread can be controlled with `horizon-blend`. The opacity can be set to `0` to remove the high atmosphere color contribution.","sdk-support":{"basic functionality":{js:"2.9.0",android:"10.6.0",ios:"10.6.0"}}},"space-color":{type:"color","property-type":"data-constant",default:["interpolate",["linear"],["zoom"],4,"#010b19",7,"#367ab9"],expression:{interpolated:!0,parameters:["zoom"]},transition:!0,doc:"The color of the region above the horizon and after the end of the `horizon-blend` contribution. The opacity can be set to `0` to have a transparent background.","sdk-support":{"basic functionality":{js:"2.9.0",android:"10.6.0",ios:"10.6.0"}}},"horizon-blend":{type:"number","property-type":"data-constant",default:["interpolate",["linear"],["zoom"],4,.2,7,.1],minimum:0,maximum:1,expression:{interpolated:!0,parameters:["zoom"]},transition:!0,doc:"Horizon blend applies a smooth fade from the color of the atmosphere to the color of space. A value of zero leaves a sharp transition from atmosphere to space. Increasing the value blends the color of atmosphere into increasingly high angles of the sky.","sdk-support":{"basic functionality":{js:"2.3.0",android:"10.6.0",ios:"10.6.0"}}},"star-intensity":{type:"number","property-type":"data-constant",default:["interpolate",["linear"],["zoom"],5,.35,6,0],minimum:0,maximum:1,expression:{interpolated:!0,parameters:["zoom"]},transition:!0,doc:"A value controlling the star intensity where `0` will show no stars and `1` will show stars at their maximum intensity.","sdk-support":{"basic functionality":{js:"2.9.0",android:"10.6.0",ios:"10.6.0"}}}},light:{anchor:{type:"enum",default:"viewport",values:{map:{doc:"The position of the light source is aligned to the rotation of the map."},viewport:{doc:"The position of the light source is aligned to the rotation of the viewport."}},"property-type":"data-constant",transition:!1,expression:{interpolated:!1,parameters:["zoom"]},doc:"Whether extruded geometries are lit relative to the map or viewport.",example:"map","sdk-support":{"basic functionality":{js:"0.27.0",android:"5.1.0",ios:"3.6.0",macos:"0.5.0"}}},position:{type:"array",default:[1.15,210,30],length:3,value:"number","property-type":"data-constant",transition:!0,expression:{interpolated:!0,parameters:["zoom"]},doc:"Position of the light source relative to lit (extruded) geometries, in [r radial coordinate, a azimuthal angle, p polar angle] where r indicates the distance from the center of the base of an object to its light, a indicates the position of the light relative to 0° (0° when `light.anchor` is set to `viewport` corresponds to the top of the viewport, or 0° when `light.anchor` is set to `map` corresponds to due north, and degrees proceed clockwise), and p indicates the height of the light (from 0°, directly above, to 180°, directly below).",example:[1.5,90,80],"sdk-support":{"basic functionality":{js:"0.27.0",android:"5.1.0",ios:"3.6.0",macos:"0.5.0"}}},color:{type:"color","property-type":"data-constant",default:"#ffffff",expression:{interpolated:!0,parameters:["zoom"]},transition:!0,doc:"Color tint for lighting extruded geometries.","sdk-support":{"basic functionality":{js:"0.27.0",android:"5.1.0",ios:"3.6.0",macos:"0.5.0"}}},intensity:{type:"number","property-type":"data-constant",default:.5,minimum:0,maximum:1,expression:{interpolated:!0,parameters:["zoom"]},transition:!0,doc:"Intensity of lighting (on a scale from 0 to 1). Higher numbers will present as more extreme contrast.","sdk-support":{"basic functionality":{js:"0.27.0",android:"5.1.0",ios:"3.6.0",macos:"0.5.0"}}}},projection:{name:{type:"enum",values:{albers:{doc:"An Albers equal-area projection centered on the continental United States. You can configure the projection for a different region by setting `center` and `parallels` properties. You may want to set max bounds to constrain the map to the relevant region."},equalEarth:{doc:"An Equal Earth projection."},equirectangular:{doc:"An Equirectangular projection. This projection is very similar to the Plate Carrée projection."},lambertConformalConic:{doc:"A Lambert conformal conic projection. You can configure the projection for a region by setting `center` and `parallels` properties. You may want to set max bounds to constrain the map to the relevant region."},mercator:{doc:"The Mercator projection is the default projection."},naturalEarth:{doc:"A Natural Earth projection."},winkelTripel:{doc:"A Winkel Tripel projection."},globe:{doc:"A globe projection."}},default:"mercator",doc:"The name of the projection to be used for rendering the map.",required:!0,"sdk-support":{"basic functionality":{js:"2.6.0"}}},center:{type:"array",length:2,value:"number","property-type":"data-constant",minimum:[-180,-90],maximum:[180,90],transition:!1,doc:"The reference longitude and latitude of the projection. `center` takes the form of [lng, lat]. This property is only configurable for conic projections (Albers and Lambert Conformal Conic). All other projections are centered on [0, 0].",example:[-96,37.5],requires:[{name:["albers","lambertConformalConic"]}],"sdk-support":{"basic functionality":{js:"2.6.0"}}},parallels:{type:"array",length:2,value:"number","property-type":"data-constant",minimum:[-90,-90],maximum:[90,90],transition:!1,doc:"The standard parallels of the projection, denoting the desired latitude range with minimal distortion. `parallels` takes the form of [lat0, lat1]. This property is only configurable for conic projections (Albers and Lambert Conformal Conic).",example:[29.5,45.5],requires:[{name:["albers","lambertConformalConic"]}],"sdk-support":{"basic functionality":{js:"2.6.0"}}}},terrain:{source:{type:"string",doc:"Name of a source of `raster_dem` type to be used for terrain elevation.",required:!0,"sdk-support":{"basic functionality":{js:"2.0.0",ios:"10.0.0",android:"10.0.0"}}},exaggeration:{type:"number","property-type":"data-constant",default:1,minimum:0,maximum:1e3,expression:{interpolated:!0,parameters:["zoom"]},transition:!0,doc:"Exaggerates the elevation of the terrain by multiplying the data from the DEM with this value.",requires:["source"],"sdk-support":{"basic functionality":{js:"2.0.0",ios:"10.0.0",android:"10.0.0"}}}},paint:["paint_fill","paint_line","paint_circle","paint_heatmap","paint_fill-extrusion","paint_symbol","paint_raster","paint_hillshade","paint_background","paint_sky"],paint_fill:{"fill-antialias":{type:"boolean",default:!0,doc:"Whether or not the fill should be antialiased.","sdk-support":{"basic functionality":{js:"0.10.0",android:"2.0.1",ios:"2.0.0",macos:"0.1.0"}},expression:{interpolated:!1,parameters:["zoom"]},"property-type":"data-constant"},"fill-opacity":{type:"number",default:1,minimum:0,maximum:1,doc:"The opacity of the entire fill layer. In contrast to the `fill-color`, this value will also affect the 1px stroke around the fill, if the stroke is used.",transition:!0,"sdk-support":{"basic functionality":{js:"0.10.0",android:"2.0.1",ios:"2.0.0",macos:"0.1.0"},"data-driven styling":{js:"0.21.0",android:"5.0.0",ios:"3.5.0",macos:"0.4.0"}},expression:{interpolated:!0,parameters:["zoom","feature","feature-state"]},"property-type":"data-driven"},"fill-color":{type:"color",default:"#000000",doc:"The color of the filled part of this layer. This color can be specified as `rgba` with an alpha component and the color's opacity will not affect the opacity of the 1px stroke, if it is used.",transition:!0,requires:[{"!":"fill-pattern"}],"sdk-support":{"basic functionality":{js:"0.10.0",android:"2.0.1",ios:"2.0.0",macos:"0.1.0"},"data-driven styling":{js:"0.19.0",android:"5.0.0",ios:"3.5.0",macos:"0.4.0"}},expression:{interpolated:!0,parameters:["zoom","feature","feature-state"]},"property-type":"data-driven"},"fill-outline-color":{type:"color",doc:"The outline color of the fill. Matches the value of `fill-color` if unspecified.",transition:!0,requires:[{"!":"fill-pattern"},{"fill-antialias":!0}],"sdk-support":{"basic functionality":{js:"0.10.0",android:"2.0.1",ios:"2.0.0",macos:"0.1.0"},"data-driven styling":{js:"0.19.0",android:"5.0.0",ios:"3.5.0",macos:"0.4.0"}},expression:{interpolated:!0,parameters:["zoom","feature","feature-state"]},"property-type":"data-driven"},"fill-translate":{type:"array",value:"number",length:2,default:[0,0],transition:!0,units:"pixels",doc:"The geometry's offset. Values are [x, y] where negatives indicate left and up, respectively.","sdk-support":{"basic functionality":{js:"0.10.0",android:"2.0.1",ios:"2.0.0",macos:"0.1.0"}},expression:{interpolated:!0,parameters:["zoom"]},"property-type":"data-constant"},"fill-translate-anchor":{type:"enum",values:{map:{doc:"The fill is translated relative to the map."},viewport:{doc:"The fill is translated relative to the viewport."}},doc:"Controls the frame of reference for `fill-translate`.",default:"map",requires:["fill-translate"],"sdk-support":{"basic functionality":{js:"0.10.0",android:"2.0.1",ios:"2.0.0",macos:"0.1.0"}},expression:{interpolated:!1,parameters:["zoom"]},"property-type":"data-constant"},"fill-pattern":{type:"resolvedImage",transition:!0,doc:"Name of image in sprite to use for drawing image fills. For seamless patterns, image width and height must be a factor of two (2, 4, 8, ..., 512). Note that zoom-dependent expressions will be evaluated only at integer zoom levels.","sdk-support":{"basic functionality":{js:"0.10.0",android:"2.0.1",ios:"2.0.0",macos:"0.1.0"},"data-driven styling":{js:"0.49.0",android:"6.5.0",macos:"0.11.0",ios:"4.4.0"}},expression:{interpolated:!1,parameters:["zoom","feature"]},"property-type":"cross-faded-data-driven"}},"paint_fill-extrusion":{"fill-extrusion-opacity":{type:"number",default:1,minimum:0,maximum:1,doc:"The opacity of the entire fill extrusion layer. This is rendered on a per-layer, not per-feature, basis, and data-driven styling is not available.",transition:!0,"sdk-support":{"basic functionality":{js:"0.27.0",android:"5.1.0",ios:"3.6.0",macos:"0.5.0"}},expression:{interpolated:!0,parameters:["zoom"]},"property-type":"data-constant"},"fill-extrusion-color":{type:"color",default:"#000000",doc:"The base color of the extruded fill. The extrusion's surfaces will be shaded differently based on this color in combination with the root `light` settings. If this color is specified as `rgba` with an alpha component, the alpha component will be ignored; use `fill-extrusion-opacity` to set layer opacity.",transition:!0,requires:[{"!":"fill-extrusion-pattern"}],"sdk-support":{"basic functionality":{js:"0.27.0",android:"5.1.0",ios:"3.6.0",macos:"0.5.0"},"data-driven styling":{js:"0.27.0",android:"5.1.0",ios:"3.6.0",macos:"0.5.0"}},expression:{interpolated:!0,parameters:["zoom","feature","feature-state"]},"property-type":"data-driven"},"fill-extrusion-translate":{type:"array",value:"number",length:2,default:[0,0],transition:!0,units:"pixels",doc:"The geometry's offset. Values are [x, y] where negatives indicate left and up (on the flat plane), respectively.","sdk-support":{"basic functionality":{js:"0.27.0",android:"5.1.0",ios:"3.6.0",macos:"0.5.0"}},expression:{interpolated:!0,parameters:["zoom"]},"property-type":"data-constant"},"fill-extrusion-translate-anchor":{type:"enum",values:{map:{doc:"The fill extrusion is translated relative to the map."},viewport:{doc:"The fill extrusion is translated relative to the viewport."}},doc:"Controls the frame of reference for `fill-extrusion-translate`.",default:"map",requires:["fill-extrusion-translate"],"sdk-support":{"basic functionality":{js:"0.27.0",android:"5.1.0",ios:"3.6.0",macos:"0.5.0"}},expression:{interpolated:!1,parameters:["zoom"]},"property-type":"data-constant"},"fill-extrusion-pattern":{type:"resolvedImage",transition:!0,doc:"Name of image in sprite to use for drawing images on extruded fills. For seamless patterns, image width and height must be a factor of two (2, 4, 8, ..., 512). Note that zoom-dependent expressions will be evaluated only at integer zoom levels.","sdk-support":{"basic functionality":{js:"0.27.0",android:"5.1.0",ios:"3.6.0",macos:"0.5.0"},"data-driven styling":{js:"0.49.0",android:"6.5.0",macos:"0.11.0",ios:"4.4.0"}},expression:{interpolated:!1,parameters:["zoom","feature"]},"property-type":"cross-faded-data-driven"},"fill-extrusion-height":{type:"number",default:0,minimum:0,units:"meters",doc:"The height with which to extrude this layer.",transition:!0,"sdk-support":{"basic functionality":{js:"0.27.0",android:"5.1.0",ios:"3.6.0",macos:"0.5.0"},"data-driven styling":{js:"0.27.0",android:"5.1.0",ios:"3.6.0",macos:"0.5.0"}},expression:{interpolated:!0,parameters:["zoom","feature","feature-state"]},"property-type":"data-driven"},"fill-extrusion-base":{type:"number",default:0,minimum:0,units:"meters",doc:"The height with which to extrude the base of this layer. Must be less than or equal to `fill-extrusion-height`.",transition:!0,requires:["fill-extrusion-height"],"sdk-support":{"basic functionality":{js:"0.27.0",android:"5.1.0",ios:"3.6.0",macos:"0.5.0"},"data-driven styling":{js:"0.27.0",android:"5.1.0",ios:"3.6.0",macos:"0.5.0"}},expression:{interpolated:!0,parameters:["zoom","feature","feature-state"]},"property-type":"data-driven"},"fill-extrusion-vertical-gradient":{type:"boolean",default:!0,doc:"Whether to apply a vertical gradient to the sides of a fill-extrusion layer. If true, sides will be shaded slightly darker farther down.",transition:!1,"sdk-support":{"basic functionality":{js:"0.50.0",android:"7.0.0",ios:"4.7.0",macos:"0.13.0"}},expression:{interpolated:!1,parameters:["zoom"]},"property-type":"data-constant"}},paint_line:{"line-opacity":{type:"number",doc:"The opacity at which the line will be drawn.",default:1,minimum:0,maximum:1,transition:!0,"sdk-support":{"basic functionality":{js:"0.10.0",android:"2.0.1",ios:"2.0.0",macos:"0.1.0"},"data-driven styling":{js:"0.29.0",android:"5.0.0",ios:"3.5.0",macos:"0.4.0"}},expression:{interpolated:!0,parameters:["zoom","feature","feature-state"]},"property-type":"data-driven"},"line-color":{type:"color",doc:"The color with which the line will be drawn.",default:"#000000",transition:!0,requires:[{"!":"line-pattern"}],"sdk-support":{"basic functionality":{js:"0.10.0",android:"2.0.1",ios:"2.0.0",macos:"0.1.0"},"data-driven styling":{js:"0.23.0",android:"5.0.0",ios:"3.5.0",macos:"0.4.0"}},expression:{interpolated:!0,parameters:["zoom","feature","feature-state"]},"property-type":"data-driven"},"line-translate":{type:"array",value:"number",length:2,default:[0,0],transition:!0,units:"pixels",doc:"The geometry's offset. Values are [x, y] where negatives indicate left and up, respectively.","sdk-support":{"basic functionality":{js:"0.10.0",android:"2.0.1",ios:"2.0.0",macos:"0.1.0"}},expression:{interpolated:!0,parameters:["zoom"]},"property-type":"data-constant"},"line-translate-anchor":{type:"enum",values:{map:{doc:"The line is translated relative to the map."},viewport:{doc:"The line is translated relative to the viewport."}},doc:"Controls the frame of reference for `line-translate`.",default:"map",requires:["line-translate"],"sdk-support":{"basic functionality":{js:"0.10.0",android:"2.0.1",ios:"2.0.0",macos:"0.1.0"}},expression:{interpolated:!1,parameters:["zoom"]},"property-type":"data-constant"},"line-width":{type:"number",default:1,minimum:0,transition:!0,units:"pixels",doc:"Stroke thickness.","sdk-support":{"basic functionality":{js:"0.10.0",android:"2.0.1",ios:"2.0.0",macos:"0.1.0"},"data-driven styling":{js:"0.39.0",android:"5.2.0",ios:"3.7.0",macos:"0.6.0"}},expression:{interpolated:!0,parameters:["zoom","feature","feature-state"]},"property-type":"data-driven"},"line-gap-width":{type:"number",default:0,minimum:0,doc:"Draws a line casing outside of a line's actual path. Value indicates the width of the inner gap.",transition:!0,units:"pixels","sdk-support":{"basic functionality":{js:"0.10.0",android:"2.0.1",ios:"2.0.0",macos:"0.1.0"},"data-driven styling":{js:"0.29.0",android:"5.0.0",ios:"3.5.0",macos:"0.4.0"}},expression:{interpolated:!0,parameters:["zoom","feature","feature-state"]},"property-type":"data-driven"},"line-offset":{type:"number",default:0,doc:"The line's offset. For linear features, a positive value offsets the line to the right, relative to the direction of the line, and a negative value to the left. For polygon features, a positive value results in an inset, and a negative value results in an outset.",transition:!0,units:"pixels","sdk-support":{"basic functionality":{js:"0.12.1",android:"3.0.0",ios:"3.1.0",macos:"0.1.0"},"data-driven styling":{js:"0.29.0",android:"5.0.0",ios:"3.5.0",macos:"0.4.0"}},expression:{interpolated:!0,parameters:["zoom","feature","feature-state"]},"property-type":"data-driven"},"line-blur":{type:"number",default:0,minimum:0,transition:!0,units:"pixels",doc:"Blur applied to the line, in pixels.","sdk-support":{"basic functionality":{js:"0.10.0",android:"2.0.1",ios:"2.0.0",macos:"0.1.0"},"data-driven styling":{js:"0.29.0",android:"5.0.0",ios:"3.5.0",macos:"0.4.0"}},expression:{interpolated:!0,parameters:["zoom","feature","feature-state"]},"property-type":"data-driven"},"line-dasharray":{type:"array",value:"number",doc:"Specifies the lengths of the alternating dashes and gaps that form the dash pattern. The lengths are later scaled by the line width. To convert a dash length to pixels, multiply the length by the current line width. Note that GeoJSON sources with `lineMetrics: true` specified won't render dashed lines to the expected scale. Also note that zoom-dependent expressions will be evaluated only at integer zoom levels.",minimum:0,transition:!0,units:"line widths",requires:[{"!":"line-pattern"}],"sdk-support":{"basic functionality":{js:"0.10.0",android:"2.0.1",ios:"2.0.0",macos:"0.1.0"},"data-driven styling":{js:"2.3.0"}},expression:{interpolated:!1,parameters:["zoom","feature"]},"property-type":"cross-faded-data-driven"},"line-pattern":{type:"resolvedImage",transition:!0,doc:"Name of image in sprite to use for drawing image lines. For seamless patterns, image width must be a factor of two (2, 4, 8, ..., 512). Note that zoom-dependent expressions will be evaluated only at integer zoom levels.","sdk-support":{"basic functionality":{js:"0.10.0",android:"2.0.1",ios:"2.0.0",macos:"0.1.0"},"data-driven styling":{js:"0.49.0",android:"6.5.0",macos:"0.11.0",ios:"4.4.0"}},expression:{interpolated:!1,parameters:["zoom","feature"]},"property-type":"cross-faded-data-driven"},"line-gradient":{type:"color",doc:'Defines a gradient with which to color a line feature. Can only be used with GeoJSON sources that specify `"lineMetrics": true`.',transition:!1,requires:[{"!":"line-pattern"},{source:"geojson",has:{lineMetrics:!0}}],"sdk-support":{"basic functionality":{js:"0.45.0",android:"6.5.0",ios:"4.4.0",macos:"0.11.0"},"data-driven styling":{}},expression:{interpolated:!0,parameters:["line-progress"]},"property-type":"color-ramp"},"line-trim-offset":{type:"array",value:"number",doc:"The line part between [trim-start, trim-end] will be marked as transparent to make a route vanishing effect. The line trim-off offset is based on the whole line range [0.0, 1.0].",length:2,default:[0,0],minimum:[0,0],maximum:[1,1],transition:!1,requires:[{source:"geojson",has:{lineMetrics:!0}}],"sdk-support":{"basic functionality":{js:"2.9.0",android:"10.5.0",ios:"10.5.0",macos:"10.5.0"}},"property-type":"constant"}},paint_circle:{"circle-radius":{type:"number",default:5,minimum:0,transition:!0,units:"pixels",doc:"Circle radius.","sdk-support":{"basic functionality":{js:"0.10.0",android:"2.0.1",ios:"2.0.0",macos:"0.1.0"},"data-driven styling":{js:"0.18.0",android:"5.0.0",ios:"3.5.0",macos:"0.4.0"}},expression:{interpolated:!0,parameters:["zoom","feature","feature-state"]},"property-type":"data-driven"},"circle-color":{type:"color",default:"#000000",doc:"The fill color of the circle.",transition:!0,"sdk-support":{"basic functionality":{js:"0.10.0",android:"2.0.1",ios:"2.0.0",macos:"0.1.0"},"data-driven styling":{js:"0.18.0",android:"5.0.0",ios:"3.5.0",macos:"0.4.0"}},expression:{interpolated:!0,parameters:["zoom","feature","feature-state"]},"property-type":"data-driven"},"circle-blur":{type:"number",default:0,doc:"Amount to blur the circle. 1 blurs the circle such that only the centerpoint is full opacity.",transition:!0,"sdk-support":{"basic functionality":{js:"0.10.0",android:"2.0.1",ios:"2.0.0",macos:"0.1.0"},"data-driven styling":{js:"0.20.0",android:"5.0.0",ios:"3.5.0",macos:"0.4.0"}},expression:{interpolated:!0,parameters:["zoom","feature","feature-state"]},"property-type":"data-driven"},"circle-opacity":{type:"number",doc:"The opacity at which the circle will be drawn.",default:1,minimum:0,maximum:1,transition:!0,"sdk-support":{"basic functionality":{js:"0.10.0",android:"2.0.1",ios:"2.0.0",macos:"0.1.0"},"data-driven styling":{js:"0.20.0",android:"5.0.0",ios:"3.5.0",macos:"0.4.0"}},expression:{interpolated:!0,parameters:["zoom","feature","feature-state"]},"property-type":"data-driven"},"circle-translate":{type:"array",value:"number",length:2,default:[0,0],transition:!0,units:"pixels",doc:"The geometry's offset. Values are [x, y] where negatives indicate left and up, respectively.","sdk-support":{"basic functionality":{js:"0.10.0",android:"2.0.1",ios:"2.0.0",macos:"0.1.0"}},expression:{interpolated:!0,parameters:["zoom"]},"property-type":"data-constant"},"circle-translate-anchor":{type:"enum",values:{map:{doc:"The circle is translated relative to the map."},viewport:{doc:"The circle is translated relative to the viewport."}},doc:"Controls the frame of reference for `circle-translate`.",default:"map",requires:["circle-translate"],"sdk-support":{"basic functionality":{js:"0.10.0",android:"2.0.1",ios:"2.0.0",macos:"0.1.0"}},expression:{interpolated:!1,parameters:["zoom"]},"property-type":"data-constant"},"circle-pitch-scale":{type:"enum",values:{map:{doc:"Circles are scaled according to their apparent distance to the camera."},viewport:{doc:"Circles are not scaled."}},default:"map",doc:"Controls the scaling behavior of the circle when the map is pitched.","sdk-support":{"basic functionality":{js:"0.21.0",android:"4.2.0",ios:"3.4.0",macos:"0.2.1"}},expression:{interpolated:!1,parameters:["zoom"]},"property-type":"data-constant"},"circle-pitch-alignment":{type:"enum",values:{map:{doc:"The circle is aligned to the plane of the map."},viewport:{doc:"The circle is aligned to the plane of the viewport."}},default:"viewport",doc:"Orientation of circle when map is pitched.","sdk-support":{"basic functionality":{js:"0.39.0",android:"5.2.0",ios:"3.7.0",macos:"0.6.0"}},expression:{interpolated:!1,parameters:["zoom"]},"property-type":"data-constant"},"circle-stroke-width":{type:"number",default:0,minimum:0,transition:!0,units:"pixels",doc:"The width of the circle's stroke. Strokes are placed outside of the `circle-radius`.","sdk-support":{"basic functionality":{js:"0.29.0",android:"5.0.0",ios:"3.5.0",macos:"0.4.0"},"data-driven styling":{js:"0.29.0",android:"5.0.0",ios:"3.5.0",macos:"0.4.0"}},expression:{interpolated:!0,parameters:["zoom","feature","feature-state"]},"property-type":"data-driven"},"circle-stroke-color":{type:"color",default:"#000000",doc:"The stroke color of the circle.",transition:!0,"sdk-support":{"basic functionality":{js:"0.29.0",android:"5.0.0",ios:"3.5.0",macos:"0.4.0"},"data-driven styling":{js:"0.29.0",android:"5.0.0",ios:"3.5.0",macos:"0.4.0"}},expression:{interpolated:!0,parameters:["zoom","feature","feature-state"]},"property-type":"data-driven"},"circle-stroke-opacity":{type:"number",doc:"The opacity of the circle's stroke.",default:1,minimum:0,maximum:1,transition:!0,"sdk-support":{"basic functionality":{js:"0.29.0",android:"5.0.0",ios:"3.5.0",macos:"0.4.0"},"data-driven styling":{js:"0.29.0",android:"5.0.0",ios:"3.5.0",macos:"0.4.0"}},expression:{interpolated:!0,parameters:["zoom","feature","feature-state"]},"property-type":"data-driven"}},paint_heatmap:{"heatmap-radius":{type:"number",default:30,minimum:1,transition:!0,units:"pixels",doc:"Radius of influence of one heatmap point in pixels. Increasing the value makes the heatmap smoother, but less detailed. `queryRenderedFeatures` on heatmap layers will return points within this radius.","sdk-support":{"basic functionality":{js:"0.41.0",android:"6.0.0",ios:"4.0.0",macos:"0.7.0"},"data-driven styling":{js:"0.43.0",android:"6.0.0",ios:"4.0.0",macos:"0.7.0"}},expression:{interpolated:!0,parameters:["zoom","feature","feature-state"]},"property-type":"data-driven"},"heatmap-weight":{type:"number",default:1,minimum:0,transition:!1,doc:"A measure of how much an individual point contributes to the heatmap. A value of 10 would be equivalent to having 10 points of weight 1 in the same spot. Especially useful when combined with clustering.","sdk-support":{"basic functionality":{js:"0.41.0",android:"6.0.0",ios:"4.0.0",macos:"0.7.0"},"data-driven styling":{js:"0.41.0",android:"6.0.0",ios:"4.0.0",macos:"0.7.0"}},expression:{interpolated:!0,parameters:["zoom","feature","feature-state"]},"property-type":"data-driven"},"heatmap-intensity":{type:"number",default:1,minimum:0,transition:!0,doc:"Similar to `heatmap-weight` but controls the intensity of the heatmap globally. Primarily used for adjusting the heatmap based on zoom level.","sdk-support":{"basic functionality":{js:"0.41.0",android:"6.0.0",ios:"4.0.0",macos:"0.7.0"}},expression:{interpolated:!0,parameters:["zoom"]},"property-type":"data-constant"},"heatmap-color":{type:"color",default:["interpolate",["linear"],["heatmap-density"],0,"rgba(0, 0, 255, 0)",.1,"royalblue",.3,"cyan",.5,"lime",.7,"yellow",1,"red"],doc:'Defines the color of each pixel based on its density value in a heatmap. Should be an expression that uses `["heatmap-density"]` as input.',transition:!1,"sdk-support":{"basic functionality":{js:"0.41.0",android:"6.0.0",ios:"4.0.0",macos:"0.7.0"},"data-driven styling":{}},expression:{interpolated:!0,parameters:["heatmap-density"]},"property-type":"color-ramp"},"heatmap-opacity":{type:"number",doc:"The global opacity at which the heatmap layer will be drawn.",default:1,minimum:0,maximum:1,transition:!0,"sdk-support":{"basic functionality":{js:"0.41.0",android:"6.0.0",ios:"4.0.0",macos:"0.7.0"}},expression:{interpolated:!0,parameters:["zoom"]},"property-type":"data-constant"}},paint_symbol:{"icon-opacity":{doc:"The opacity at which the icon will be drawn.",type:"number",default:1,minimum:0,maximum:1,transition:!0,requires:["icon-image"],"sdk-support":{"basic functionality":{js:"0.10.0",android:"2.0.1",ios:"2.0.0",macos:"0.1.0"},"data-driven styling":{js:"0.33.0",android:"5.0.0",ios:"3.5.0",macos:"0.4.0"}},expression:{interpolated:!0,parameters:["zoom","feature","feature-state"]},"property-type":"data-driven"},"icon-color":{type:"color",default:"#000000",transition:!0,doc:"The color of the icon. This can only be used with [SDF icons](/help/troubleshooting/using-recolorable-images-in-mapbox-maps/).",requires:["icon-image"],"sdk-support":{"basic functionality":{js:"0.10.0",android:"2.0.1",ios:"2.0.0",macos:"0.1.0"},"data-driven styling":{js:"0.33.0",android:"5.0.0",ios:"3.5.0",macos:"0.4.0"}},expression:{interpolated:!0,parameters:["zoom","feature","feature-state"]},"property-type":"data-driven"},"icon-halo-color":{type:"color",default:"rgba(0, 0, 0, 0)",transition:!0,doc:"The color of the icon's halo. Icon halos can only be used with [SDF icons](/help/troubleshooting/using-recolorable-images-in-mapbox-maps/).",requires:["icon-image"],"sdk-support":{"basic functionality":{js:"0.10.0",android:"2.0.1",ios:"2.0.0",macos:"0.1.0"},"data-driven styling":{js:"0.33.0",android:"5.0.0",ios:"3.5.0",macos:"0.4.0"}},expression:{interpolated:!0,parameters:["zoom","feature","feature-state"]},"property-type":"data-driven"},"icon-halo-width":{type:"number",default:0,minimum:0,transition:!0,units:"pixels",doc:"Distance of halo to the icon outline.",requires:["icon-image"],"sdk-support":{"basic functionality":{js:"0.10.0",android:"2.0.1",ios:"2.0.0",macos:"0.1.0"},"data-driven styling":{js:"0.33.0",android:"5.0.0",ios:"3.5.0",macos:"0.4.0"}},expression:{interpolated:!0,parameters:["zoom","feature","feature-state"]},"property-type":"data-driven"},"icon-halo-blur":{type:"number",default:0,minimum:0,transition:!0,units:"pixels",doc:"Fade out the halo towards the outside.",requires:["icon-image"],"sdk-support":{"basic functionality":{js:"0.10.0",android:"2.0.1",ios:"2.0.0",macos:"0.1.0"},"data-driven styling":{js:"0.33.0",android:"5.0.0",ios:"3.5.0",macos:"0.4.0"}},expression:{interpolated:!0,parameters:["zoom","feature","feature-state"]},"property-type":"data-driven"},"icon-translate":{type:"array",value:"number",length:2,default:[0,0],transition:!0,units:"pixels",doc:"Distance that the icon's anchor is moved from its original placement. Positive values indicate right and down, while negative values indicate left and up.",requires:["icon-image"],"sdk-support":{"basic functionality":{js:"0.10.0",android:"2.0.1",ios:"2.0.0",macos:"0.1.0"}},expression:{interpolated:!0,parameters:["zoom"]},"property-type":"data-constant"},"icon-translate-anchor":{type:"enum",values:{map:{doc:"Icons are translated relative to the map."},viewport:{doc:"Icons are translated relative to the viewport."}},doc:"Controls the frame of reference for `icon-translate`.",default:"map",requires:["icon-image","icon-translate"],"sdk-support":{"basic functionality":{js:"0.10.0",android:"2.0.1",ios:"2.0.0",macos:"0.1.0"}},expression:{interpolated:!1,parameters:["zoom"]},"property-type":"data-constant"},"text-opacity":{type:"number",doc:"The opacity at which the text will be drawn.",default:1,minimum:0,maximum:1,transition:!0,requires:["text-field"],"sdk-support":{"basic functionality":{js:"0.10.0",android:"2.0.1",ios:"2.0.0",macos:"0.1.0"},"data-driven styling":{js:"0.33.0",android:"5.0.0",ios:"3.5.0",macos:"0.4.0"}},expression:{interpolated:!0,parameters:["zoom","feature","feature-state"]},"property-type":"data-driven"},"text-color":{type:"color",doc:"The color with which the text will be drawn.",default:"#000000",transition:!0,overridable:!0,requires:["text-field"],"sdk-support":{"basic functionality":{js:"0.10.0",android:"2.0.1",ios:"2.0.0",macos:"0.1.0"},"data-driven styling":{js:"0.33.0",android:"5.0.0",ios:"3.5.0",macos:"0.4.0"}},expression:{interpolated:!0,parameters:["zoom","feature","feature-state"]},"property-type":"data-driven"},"text-halo-color":{type:"color",default:"rgba(0, 0, 0, 0)",transition:!0,doc:"The color of the text's halo, which helps it stand out from backgrounds.",requires:["text-field"],"sdk-support":{"basic functionality":{js:"0.10.0",android:"2.0.1",ios:"2.0.0",macos:"0.1.0"},"data-driven styling":{js:"0.33.0",android:"5.0.0",ios:"3.5.0",macos:"0.4.0"}},expression:{interpolated:!0,parameters:["zoom","feature","feature-state"]},"property-type":"data-driven"},"text-halo-width":{type:"number",default:0,minimum:0,transition:!0,units:"pixels",doc:"Distance of halo to the font outline. Max text halo width is 1/4 of the font-size.",requires:["text-field"],"sdk-support":{"basic functionality":{js:"0.10.0",android:"2.0.1",ios:"2.0.0",macos:"0.1.0"},"data-driven styling":{js:"0.33.0",android:"5.0.0",ios:"3.5.0",macos:"0.4.0"}},expression:{interpolated:!0,parameters:["zoom","feature","feature-state"]},"property-type":"data-driven"},"text-halo-blur":{type:"number",default:0,minimum:0,transition:!0,units:"pixels",doc:"The halo's fadeout distance towards the outside.",requires:["text-field"],"sdk-support":{"basic functionality":{js:"0.10.0",android:"2.0.1",ios:"2.0.0",macos:"0.1.0"},"data-driven styling":{js:"0.33.0",android:"5.0.0",ios:"3.5.0",macos:"0.4.0"}},expression:{interpolated:!0,parameters:["zoom","feature","feature-state"]},"property-type":"data-driven"},"text-translate":{type:"array",value:"number",length:2,default:[0,0],transition:!0,units:"pixels",doc:"Distance that the text's anchor is moved from its original placement. Positive values indicate right and down, while negative values indicate left and up.",requires:["text-field"],"sdk-support":{"basic functionality":{js:"0.10.0",android:"2.0.1",ios:"2.0.0",macos:"0.1.0"}},expression:{interpolated:!0,parameters:["zoom"]},"property-type":"data-constant"},"text-translate-anchor":{type:"enum",values:{map:{doc:"The text is translated relative to the map."},viewport:{doc:"The text is translated relative to the viewport."}},doc:"Controls the frame of reference for `text-translate`.",default:"map",requires:["text-field","text-translate"],"sdk-support":{"basic functionality":{js:"0.10.0",android:"2.0.1",ios:"2.0.0",macos:"0.1.0"}},expression:{interpolated:!1,parameters:["zoom"]},"property-type":"data-constant"}},paint_raster:{"raster-opacity":{type:"number",doc:"The opacity at which the image will be drawn.",default:1,minimum:0,maximum:1,transition:!0,"sdk-support":{"basic functionality":{js:"0.10.0",android:"2.0.1",ios:"2.0.0",macos:"0.1.0"}},expression:{interpolated:!0,parameters:["zoom"]},"property-type":"data-constant"},"raster-hue-rotate":{type:"number",default:0,period:360,transition:!0,units:"degrees",doc:"Rotates hues around the color wheel.","sdk-support":{"basic functionality":{js:"0.10.0",android:"2.0.1",ios:"2.0.0",macos:"0.1.0"}},expression:{interpolated:!0,parameters:["zoom"]},"property-type":"data-constant"},"raster-brightness-min":{type:"number",doc:"Increase or reduce the brightness of the image. The value is the minimum brightness.",default:0,minimum:0,maximum:1,transition:!0,"sdk-support":{"basic functionality":{js:"0.10.0",android:"2.0.1",ios:"2.0.0",macos:"0.1.0"}},expression:{interpolated:!0,parameters:["zoom"]},"property-type":"data-constant"},"raster-brightness-max":{type:"number",doc:"Increase or reduce the brightness of the image. The value is the maximum brightness.",default:1,minimum:0,maximum:1,transition:!0,"sdk-support":{"basic functionality":{js:"0.10.0",android:"2.0.1",ios:"2.0.0",macos:"0.1.0"}},expression:{interpolated:!0,parameters:["zoom"]},"property-type":"data-constant"},"raster-saturation":{type:"number",doc:"Increase or reduce the saturation of the image.",default:0,minimum:-1,maximum:1,transition:!0,"sdk-support":{"basic functionality":{js:"0.10.0",android:"2.0.1",ios:"2.0.0",macos:"0.1.0"}},expression:{interpolated:!0,parameters:["zoom"]},"property-type":"data-constant"},"raster-contrast":{type:"number",doc:"Increase or reduce the contrast of the image.",default:0,minimum:-1,maximum:1,transition:!0,"sdk-support":{"basic functionality":{js:"0.10.0",android:"2.0.1",ios:"2.0.0",macos:"0.1.0"}},expression:{interpolated:!0,parameters:["zoom"]},"property-type":"data-constant"},"raster-resampling":{type:"enum",doc:"The resampling/interpolation method to use for overscaling, also known as texture magnification filter",values:{linear:{doc:"(Bi)linear filtering interpolates pixel values using the weighted average of the four closest original source pixels creating a smooth but blurry look when overscaled"},nearest:{doc:"Nearest neighbor filtering interpolates pixel values using the nearest original source pixel creating a sharp but pixelated look when overscaled"}},default:"linear","sdk-support":{"basic functionality":{js:"0.47.0",android:"6.3.0",ios:"4.2.0",macos:"0.9.0"}},expression:{interpolated:!1,parameters:["zoom"]},"property-type":"data-constant"},"raster-fade-duration":{type:"number",default:300,minimum:0,transition:!1,units:"milliseconds",doc:"Fade duration when a new tile is added.","sdk-support":{"basic functionality":{js:"0.10.0",android:"2.0.1",ios:"2.0.0",macos:"0.1.0"}},expression:{interpolated:!0,parameters:["zoom"]},"property-type":"data-constant"}},paint_hillshade:{"hillshade-illumination-direction":{type:"number",default:335,minimum:0,maximum:359,doc:"The direction of the light source used to generate the hillshading with 0 as the top of the viewport if `hillshade-illumination-anchor` is set to `viewport` and due north if `hillshade-illumination-anchor` is set to `map`.",transition:!1,"sdk-support":{"basic functionality":{js:"0.43.0",android:"6.0.0",ios:"4.0.0",macos:"0.7.0"}},expression:{interpolated:!0,parameters:["zoom"]},"property-type":"data-constant"},"hillshade-illumination-anchor":{type:"enum",values:{map:{doc:"The hillshade illumination is relative to the north direction."},viewport:{doc:"The hillshade illumination is relative to the top of the viewport."}},default:"viewport",doc:"Direction of light source when map is rotated.","sdk-support":{"basic functionality":{js:"0.43.0",android:"6.0.0",ios:"4.0.0",macos:"0.7.0"}},expression:{interpolated:!1,parameters:["zoom"]},"property-type":"data-constant"},"hillshade-exaggeration":{type:"number",doc:"Intensity of the hillshade",default:.5,minimum:0,maximum:1,transition:!0,"sdk-support":{"basic functionality":{js:"0.43.0",android:"6.0.0",ios:"4.0.0",macos:"0.7.0"}},expression:{interpolated:!0,parameters:["zoom"]},"property-type":"data-constant"},"hillshade-shadow-color":{type:"color",default:"#000000",doc:"The shading color of areas that face away from the light source.",transition:!0,"sdk-support":{"basic functionality":{js:"0.43.0",android:"6.0.0",ios:"4.0.0",macos:"0.7.0"}},expression:{interpolated:!0,parameters:["zoom"]},"property-type":"data-constant"},"hillshade-highlight-color":{type:"color",default:"#FFFFFF",doc:"The shading color of areas that faces towards the light source.",transition:!0,"sdk-support":{"basic functionality":{js:"0.43.0",android:"6.0.0",ios:"4.0.0",macos:"0.7.0"}},expression:{interpolated:!0,parameters:["zoom"]},"property-type":"data-constant"},"hillshade-accent-color":{type:"color",default:"#000000",doc:"The shading color used to accentuate rugged terrain like sharp cliffs and gorges.",transition:!0,"sdk-support":{"basic functionality":{js:"0.43.0",android:"6.0.0",ios:"4.0.0",macos:"0.7.0"}},expression:{interpolated:!0,parameters:["zoom"]},"property-type":"data-constant"}},paint_background:{"background-color":{type:"color",default:"#000000",doc:"The color with which the background will be drawn.",transition:!0,requires:[{"!":"background-pattern"}],"sdk-support":{"basic functionality":{js:"0.10.0",android:"2.0.1",ios:"2.0.0",macos:"0.1.0"}},expression:{interpolated:!0,parameters:["zoom"]},"property-type":"data-constant"},"background-pattern":{type:"resolvedImage",transition:!0,doc:"Name of image in sprite to use for drawing an image background. For seamless patterns, image width and height must be a factor of two (2, 4, 8, ..., 512). Note that zoom-dependent expressions will be evaluated only at integer zoom levels.","sdk-support":{"basic functionality":{js:"0.10.0",android:"2.0.1",ios:"2.0.0",macos:"0.1.0"},"data-driven styling":{}},expression:{interpolated:!1,parameters:["zoom"]},"property-type":"cross-faded"},"background-opacity":{type:"number",default:1,minimum:0,maximum:1,doc:"The opacity at which the background will be drawn.",transition:!0,"sdk-support":{"basic functionality":{js:"0.10.0",android:"2.0.1",ios:"2.0.0",macos:"0.1.0"}},expression:{interpolated:!0,parameters:["zoom"]},"property-type":"data-constant"}},paint_sky:{"sky-type":{type:"enum",values:{gradient:{doc:"Renders the sky with a gradient that can be configured with `sky-gradient-radius` and `sky-gradient`."},atmosphere:{doc:"Renders the sky with a simulated atmospheric scattering algorithm, the sun direction can be attached to the light position or explicitly set through `sky-atmosphere-sun`."}},default:"atmosphere",doc:"The type of the sky","sdk-support":{"basic functionality":{js:"2.0.0",ios:"10.0.0",android:"10.0.0"}},expression:{interpolated:!1,parameters:["zoom"]},"property-type":"data-constant"},"sky-atmosphere-sun":{type:"array",value:"number",length:2,units:"degrees",minimum:[0,0],maximum:[360,180],transition:!1,doc:"Position of the sun center [a azimuthal angle, p polar angle]. The azimuthal angle indicates the position of the sun relative to 0° north, where degrees proceed clockwise. The polar angle indicates the height of the sun, where 0° is directly above, at zenith, and 90° at the horizon. When this property is ommitted, the sun center is directly inherited from the light position.","sdk-support":{"basic functionality":{js:"2.0.0",ios:"10.0.0",android:"10.0.0"}},requires:[{"sky-type":"atmosphere"}],expression:{interpolated:!1,parameters:["zoom"]},"property-type":"data-constant"},"sky-atmosphere-sun-intensity":{type:"number",requires:[{"sky-type":"atmosphere"}],default:10,minimum:0,maximum:100,transition:!1,doc:"Intensity of the sun as a light source in the atmosphere (on a scale from 0 to a 100). Setting higher values will brighten up the sky.","sdk-support":{"basic functionality":{js:"2.0.0",ios:"10.0.0",android:"10.0.0"}},"property-type":"data-constant"},"sky-gradient-center":{type:"array",requires:[{"sky-type":"gradient"}],value:"number",default:[0,0],length:2,units:"degrees",minimum:[0,0],maximum:[360,180],transition:!1,doc:"Position of the gradient center [a azimuthal angle, p polar angle]. The azimuthal angle indicates the position of the gradient center relative to 0° north, where degrees proceed clockwise. The polar angle indicates the height of the gradient center, where 0° is directly above, at zenith, and 90° at the horizon.","sdk-support":{"basic functionality":{js:"2.0.0",ios:"10.0.0",android:"10.0.0"}},expression:{interpolated:!1,parameters:["zoom"]},"property-type":"data-constant"},"sky-gradient-radius":{type:"number",requires:[{"sky-type":"gradient"}],default:90,minimum:0,maximum:180,transition:!1,doc:"The angular distance (measured in degrees) from `sky-gradient-center` up to which the gradient extends. A value of 180 causes the gradient to wrap around to the opposite direction from `sky-gradient-center`.","sdk-support":{"basic functionality":{js:"2.0.0",ios:"10.0.0",android:"10.0.0"}},expression:{interpolated:!1,parameters:["zoom"]},"property-type":"data-constant"},"sky-gradient":{type:"color",default:["interpolate",["linear"],["sky-radial-progress"],.8,"#87ceeb",1,"white"],doc:"Defines a radial color gradient with which to color the sky. The color values can be interpolated with an expression using `sky-radial-progress`. The range [0, 1] for the interpolant covers a radial distance (in degrees) of [0, `sky-gradient-radius`] centered at the position specified by `sky-gradient-center`.",transition:!1,requires:[{"sky-type":"gradient"}],"sdk-support":{"basic functionality":{js:"2.0.0",ios:"10.0.0",android:"10.0.0"},"data-driven styling":{}},expression:{interpolated:!0,parameters:["sky-radial-progress"]},"property-type":"color-ramp"},"sky-atmosphere-halo-color":{type:"color",default:"white",doc:"A color applied to the atmosphere sun halo. The alpha channel describes how strongly the sun halo is represented in an atmosphere sky layer.",transition:!1,requires:[{"sky-type":"atmosphere"}],"sdk-support":{"basic functionality":{js:"2.0.0",ios:"10.0.0",android:"10.0.0"}},"property-type":"data-constant"},"sky-atmosphere-color":{type:"color",default:"white",doc:"A color used to tweak the main atmospheric scattering coefficients. Using white applies the default coefficients giving the natural blue color to the atmosphere. This color affects how heavily the corresponding wavelength is represented during scattering. The alpha channel describes the density of the atmosphere, with 1 maximum density and 0 no density.",transition:!1,requires:[{"sky-type":"atmosphere"}],"sdk-support":{"basic functionality":{js:"2.0.0",ios:"10.0.0",android:"10.0.0"}},"property-type":"data-constant"},"sky-opacity":{type:"number",default:1,minimum:0,maximum:1,doc:"The opacity of the entire sky layer.",transition:!0,"sdk-support":{"basic functionality":{js:"2.0.0",ios:"10.0.0",android:"10.0.0"}},expression:{interpolated:!0,parameters:["zoom"]},"property-type":"data-constant"}},transition:{duration:{type:"number",default:300,minimum:0,units:"milliseconds",doc:"Time allotted for transitions to complete."},delay:{type:"number",default:0,minimum:0,units:"milliseconds",doc:"Length of time before a transition begins."}},"property-type":{"data-driven":{type:"property-type",doc:"Property is interpolable and can be represented using a property expression."},"cross-faded":{type:"property-type",doc:"Property is non-interpolable; rather, its values will be cross-faded to smoothly transition between integer zooms."},"cross-faded-data-driven":{type:"property-type",doc:"Property is non-interpolable; rather, its values will be cross-faded to smoothly transition between integer zooms. It can be represented using a property expression."},"color-ramp":{type:"property-type",doc:"Property should be specified using a color ramp from which the output color can be sampled based on a property calculation."},"data-constant":{type:"property-type",doc:"Property is interpolable but cannot be represented using a property expression."},constant:{type:"property-type",doc:"Property is constant across all zoom levels and property values."}},promoteId:{"*":{type:"string",doc:"A name of a feature property to use as ID for feature state."}}},i="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{};function n(e){var t={exports:{}};return e(t,t.exports),t.exports}var a=n((function(e,t){!function(o){var r=t&&!t.nodeType&&t,n=e&&!e.nodeType&&e,a="object"==typeof i&&i;a.global!==a&&a.window!==a&&a.self!==a||(o=a);var s,l,u=2147483647,c=36,p=/^xn--/,d=/[^\x20-\x7E]/,h=/[\x2E\u3002\uFF0E\uFF61]/g,f={overflow:"Overflow: input needs wider integers to process","not-basic":"Illegal input >= 0x80 (not a basic code point)","invalid-input":"Invalid input"},m=Math.floor,y=String.fromCharCode;function g(e){throw RangeError(f[e])}function b(e,t){for(var o=e.length,r=[];o--;)r[o]=t(e[o]);return r}function v(e,t){var o=e.split("@"),r="";return o.length>1&&(r=o[0]+"@",e=o[1]),r+b((e=e.replace(h,".")).split("."),t).join(".")}function x(e){for(var t,o,r=[],i=0,n=e.length;i=55296&&t<=56319&&i65535&&(t+=y((e-=65536)>>>10&1023|55296),e=56320|1023&e),t+y(e)})).join("")}function k(e,t){return e+22+75*(e<26)-((0!=t)<<5)}function j(e,t,o){var r=0;for(e=o?m(e/700):e>>1,e+=m(e/t);e>455;r+=c)e=m(e/35);return m(r+36*e/(e+38))}function T(e){var t,o,r,i,n,a,s,l,p,d,h,f=[],y=e.length,b=0,v=128,x=72;for((o=e.lastIndexOf("-"))<0&&(o=0),r=0;r=128&&g("not-basic"),f.push(e.charCodeAt(r));for(i=o>0?o+1:0;i=y&&g("invalid-input"),((l=(h=e.charCodeAt(i++))-48<10?h-22:h-65<26?h-65:h-97<26?h-97:c)>=c||l>m((u-b)/a))&&g("overflow"),b+=l*a,!(l<(p=s<=x?1:s>=x+26?26:s-x));s+=c)a>m(u/(d=c-p))&&g("overflow"),a*=d;x=j(b-n,t=f.length+1,0==n),m(b/t)>u-v&&g("overflow"),v+=m(b/t),b%=t,f.splice(b++,0,v)}return w(f)}function z(e){var t,o,r,i,n,a,s,l,p,d,h,f,b,v,w,T=[];for(f=(e=x(e)).length,t=128,o=0,n=72,a=0;a=t&&hm((u-o)/(b=r+1))&&g("overflow"),o+=(s-t)*b,t=s,a=0;au&&g("overflow"),h==t){for(l=o,p=c;!(l<(d=p<=n?1:p>=n+26?26:p-n));p+=c)w=l-d,v=c-d,T.push(y(k(d+w%v,0))),l=m(w/v);T.push(y(k(l,0))),n=j(o,b,r==i),o=0,++r}++o,++t}return T.join("")}if(s={version:"1.3.2",ucs2:{decode:x,encode:w},decode:T,encode:z,toASCII:function(e){return v(e,(function(e){return d.test(e)?"xn--"+z(e):e}))},toUnicode:function(e){return v(e,(function(e){return p.test(e)?T(e.slice(4).toLowerCase()):e}))}},r&&n)if(e.exports==r)n.exports=s;else for(l in s)s.hasOwnProperty(l)&&(r[l]=s[l]);else o.punycode=s}(i)})),s=function(e){return"string"==typeof e},l=function(e){return"object"==typeof e&&null!==e},u=function(e){return null===e};function c(e,t){return Object.prototype.hasOwnProperty.call(e,t)}var p=function(e,t,o,r){t=t||"&",o=o||"=";var i={};if("string"!=typeof e||0===e.length)return i;var n=/\+/g;e=e.split(t);var a=1e3;r&&"number"==typeof r.maxKeys&&(a=r.maxKeys);var s=e.length;a>0&&s>a&&(s=a);for(var l=0;l=0?(u=f.substr(0,m),p=f.substr(m+1)):(u=f,p=""),d=decodeURIComponent(u),h=decodeURIComponent(p),c(i,d)?Array.isArray(i[d])?i[d].push(h):i[d]=[i[d],h]:i[d]=h}return i},d=function(e){switch(typeof e){case"string":return e;case"boolean":return e?"true":"false";case"number":return isFinite(e)?e:"";default:return""}},h=function(e,t,o,r){return t=t||"&",o=o||"=",null===e&&(e=void 0),"object"==typeof e?Object.keys(e).map((function(r){var i=encodeURIComponent(d(r))+o;return Array.isArray(e[r])?e[r].map((function(e){return i+encodeURIComponent(d(e))})).join(t):i+encodeURIComponent(d(e[r]))})).join(t):r?encodeURIComponent(d(r))+o+encodeURIComponent(d(e)):""},f=n((function(e,t){t.decode=t.parse=p,t.encode=t.stringify=h}));function m(){this.protocol=null,this.slashes=null,this.auth=null,this.host=null,this.port=null,this.hostname=null,this.hash=null,this.search=null,this.query=null,this.pathname=null,this.path=null,this.href=null}var y=/^([a-z0-9.+-]+:)/i,g=/:[0-9]*$/,b=/^(\/\/?(?!\/)[^\?\s]*)(\?[^\s]*)?$/,v=["{","}","|","\\","^","`"].concat(["<",">",'"',"`"," ","\r","\n","\t"]),x=["'"].concat(v),w=["%","/","?",";","#"].concat(x),k=["/","?","#"],j=/^[+a-z0-9A-Z_-]{0,63}$/,T=/^([+a-z0-9A-Z_-]{0,63})(.*)$/,z={javascript:!0,"javascript:":!0},_={javascript:!0,"javascript:":!0},A={http:!0,https:!0,ftp:!0,gopher:!0,file:!0,"http:":!0,"https:":!0,"ftp:":!0,"gopher:":!0,"file:":!0};function C(e,...t){for(const o of t)for(const t in o)e[t]=o[t];return e}m.prototype.parse=function(e,t,o){if(!s(e))throw new TypeError("Parameter 'url' must be a string, not "+typeof e);var r=e.indexOf("?"),i=-1!==r&&r127?I+="x":I+=R[q];if(!I.match(j)){var D=S.slice(0,v),L=S.slice(v+1),M=R.match(T);M&&(D.push(M[1]),L.unshift(M[2])),L.length&&(l="/"+L.join(".")+l),this.hostname=D.join(".");break}}}this.hostname.length>255?this.hostname="":this.hostname=this.hostname.toLowerCase(),E||(this.hostname=a.toASCII(this.hostname));var P=this.port?":"+this.port:"",F=this.hostname||"";this.host=F+P,this.href+=this.host,E&&(this.hostname=this.hostname.substr(1,this.hostname.length-2),"/"!==l[0]&&(l="/"+l))}if(!z[p])for(v=0,O=x.length;v0)&&o.host.split("@"))&&(o.auth=S.shift(),o.host=o.hostname=S.shift())),o.search=e.search,o.query=e.query,u(o.pathname)&&u(o.search)||(o.path=(o.pathname?o.pathname:"")+(o.search?o.search:"")),o.href=o.format(),o;if(!k.length)return o.pathname=null,o.search?o.path="/"+o.search:o.path=null,o.href=o.format(),o;for(var T=k.slice(-1)[0],z=(o.host||e.host||k.length>1)&&("."===T||".."===T)||""===T,C=0,E=k.length;E>=0;E--)"."===(T=k[E])?k.splice(E,1):".."===T?(k.splice(E,1),C++):C&&(k.splice(E,1),C--);if(!x&&!w)for(;C--;C)k.unshift("..");!x||""===k[0]||k[0]&&"/"===k[0].charAt(0)||k.unshift(""),z&&"/"!==k.join("/").substr(-1)&&k.push("");var S,O=""===k[0]||k[0]&&"/"===k[0].charAt(0);return j&&(o.hostname=o.host=O?"":k.length?k.shift():"",(S=!!(o.host&&o.host.indexOf("@")>0)&&o.host.split("@"))&&(o.auth=S.shift(),o.host=o.hostname=S.shift())),(x=x||o.host&&k.length)&&!O&&k.unshift(""),k.length?o.pathname=k.join("/"):(o.pathname=null,o.path=null),u(o.pathname)&&u(o.search)||(o.path=(o.pathname?o.pathname:"")+(o.search?o.search:"")),o.auth=e.auth||o.auth,o.slashes=o.slashes||e.slashes,o.href=o.format(),o},m.prototype.parseHost=function(){var e=this.host,t=g.exec(e);t&&(":"!==(t=t[0])&&(this.port=t.substr(1)),e=e.substr(0,e.length-t.length)),e&&(this.hostname=e)};class E extends Error{constructor(e,t){super(t),this.message=t,this.key=e}}var S=E;class O{constructor(e,t=[]){this.parent=e,this.bindings={};for(const[e,o]of t)this.bindings[e]=o}concat(e){return new O(this,e)}get(e){if(this.bindings[e])return this.bindings[e];if(this.parent)return this.parent.get(e);throw new Error(`${e} not found in scope.`)}has(e){return!!this.bindings[e]||!!this.parent&&this.parent.has(e)}}var R=O;const I={kind:"null"},q={kind:"number"},N={kind:"string"},D={kind:"boolean"},L={kind:"color"},M={kind:"object"},P={kind:"value"},F={kind:"collator"},$={kind:"formatted"},U={kind:"resolvedImage"};function B(e,t){return{kind:"array",itemType:e,N:t}}function J(e){if("array"===e.kind){const t=J(e.itemType);return"number"==typeof e.N?`array<${t}, ${e.N}>`:"value"===e.itemType.kind?"array":`array<${t}>`}return e.kind}const W=[I,q,N,D,L,$,M,B(P),U];function G(e,t){if("error"===t.kind)return null;if("array"===e.kind){if("array"===t.kind&&(0===t.N&&"value"===t.itemType.kind||!G(e.itemType,t.itemType))&&("number"!=typeof e.N||e.N===t.N))return null}else{if(e.kind===t.kind)return null;if("value"===e.kind)for(const e of W)if(!G(e,t))return null}return`Expected ${J(e)} but found ${J(t)} instead.`}function H(e,t){return t.some((t=>t.kind===e.kind))}function V(e,t){return t.some((t=>"null"===t?null===e:"array"===t?Array.isArray(e):"object"===t?e&&!Array.isArray(e)&&"object"==typeof e:t===typeof e))}var Z=n((function(e,t){var o={transparent:[0,0,0,0],aliceblue:[240,248,255,1],antiquewhite:[250,235,215,1],aqua:[0,255,255,1],aquamarine:[127,255,212,1],azure:[240,255,255,1],beige:[245,245,220,1],bisque:[255,228,196,1],black:[0,0,0,1],blanchedalmond:[255,235,205,1],blue:[0,0,255,1],blueviolet:[138,43,226,1],brown:[165,42,42,1],burlywood:[222,184,135,1],cadetblue:[95,158,160,1],chartreuse:[127,255,0,1],chocolate:[210,105,30,1],coral:[255,127,80,1],cornflowerblue:[100,149,237,1],cornsilk:[255,248,220,1],crimson:[220,20,60,1],cyan:[0,255,255,1],darkblue:[0,0,139,1],darkcyan:[0,139,139,1],darkgoldenrod:[184,134,11,1],darkgray:[169,169,169,1],darkgreen:[0,100,0,1],darkgrey:[169,169,169,1],darkkhaki:[189,183,107,1],darkmagenta:[139,0,139,1],darkolivegreen:[85,107,47,1],darkorange:[255,140,0,1],darkorchid:[153,50,204,1],darkred:[139,0,0,1],darksalmon:[233,150,122,1],darkseagreen:[143,188,143,1],darkslateblue:[72,61,139,1],darkslategray:[47,79,79,1],darkslategrey:[47,79,79,1],darkturquoise:[0,206,209,1],darkviolet:[148,0,211,1],deeppink:[255,20,147,1],deepskyblue:[0,191,255,1],dimgray:[105,105,105,1],dimgrey:[105,105,105,1],dodgerblue:[30,144,255,1],firebrick:[178,34,34,1],floralwhite:[255,250,240,1],forestgreen:[34,139,34,1],fuchsia:[255,0,255,1],gainsboro:[220,220,220,1],ghostwhite:[248,248,255,1],gold:[255,215,0,1],goldenrod:[218,165,32,1],gray:[128,128,128,1],green:[0,128,0,1],greenyellow:[173,255,47,1],grey:[128,128,128,1],honeydew:[240,255,240,1],hotpink:[255,105,180,1],indianred:[205,92,92,1],indigo:[75,0,130,1],ivory:[255,255,240,1],khaki:[240,230,140,1],lavender:[230,230,250,1],lavenderblush:[255,240,245,1],lawngreen:[124,252,0,1],lemonchiffon:[255,250,205,1],lightblue:[173,216,230,1],lightcoral:[240,128,128,1],lightcyan:[224,255,255,1],lightgoldenrodyellow:[250,250,210,1],lightgray:[211,211,211,1],lightgreen:[144,238,144,1],lightgrey:[211,211,211,1],lightpink:[255,182,193,1],lightsalmon:[255,160,122,1],lightseagreen:[32,178,170,1],lightskyblue:[135,206,250,1],lightslategray:[119,136,153,1],lightslategrey:[119,136,153,1],lightsteelblue:[176,196,222,1],lightyellow:[255,255,224,1],lime:[0,255,0,1],limegreen:[50,205,50,1],linen:[250,240,230,1],magenta:[255,0,255,1],maroon:[128,0,0,1],mediumaquamarine:[102,205,170,1],mediumblue:[0,0,205,1],mediumorchid:[186,85,211,1],mediumpurple:[147,112,219,1],mediumseagreen:[60,179,113,1],mediumslateblue:[123,104,238,1],mediumspringgreen:[0,250,154,1],mediumturquoise:[72,209,204,1],mediumvioletred:[199,21,133,1],midnightblue:[25,25,112,1],mintcream:[245,255,250,1],mistyrose:[255,228,225,1],moccasin:[255,228,181,1],navajowhite:[255,222,173,1],navy:[0,0,128,1],oldlace:[253,245,230,1],olive:[128,128,0,1],olivedrab:[107,142,35,1],orange:[255,165,0,1],orangered:[255,69,0,1],orchid:[218,112,214,1],palegoldenrod:[238,232,170,1],palegreen:[152,251,152,1],paleturquoise:[175,238,238,1],palevioletred:[219,112,147,1],papayawhip:[255,239,213,1],peachpuff:[255,218,185,1],peru:[205,133,63,1],pink:[255,192,203,1],plum:[221,160,221,1],powderblue:[176,224,230,1],purple:[128,0,128,1],rebeccapurple:[102,51,153,1],red:[255,0,0,1],rosybrown:[188,143,143,1],royalblue:[65,105,225,1],saddlebrown:[139,69,19,1],salmon:[250,128,114,1],sandybrown:[244,164,96,1],seagreen:[46,139,87,1],seashell:[255,245,238,1],sienna:[160,82,45,1],silver:[192,192,192,1],skyblue:[135,206,235,1],slateblue:[106,90,205,1],slategray:[112,128,144,1],slategrey:[112,128,144,1],snow:[255,250,250,1],springgreen:[0,255,127,1],steelblue:[70,130,180,1],tan:[210,180,140,1],teal:[0,128,128,1],thistle:[216,191,216,1],tomato:[255,99,71,1],turquoise:[64,224,208,1],violet:[238,130,238,1],wheat:[245,222,179,1],white:[255,255,255,1],whitesmoke:[245,245,245,1],yellow:[255,255,0,1],yellowgreen:[154,205,50,1]};function r(e){return(e=Math.round(e))<0?0:e>255?255:e}function i(e){return e<0?0:e>1?1:e}function n(e){return"%"===e[e.length-1]?r(parseFloat(e)/100*255):r(parseInt(e))}function a(e){return"%"===e[e.length-1]?i(parseFloat(e)/100):i(parseFloat(e))}function s(e,t,o){return o<0?o+=1:o>1&&(o-=1),6*o<1?e+(t-e)*o*6:2*o<1?t:3*o<2?e+(t-e)*(2/3-o)*6:e}try{t.parseCSSColor=function(e){var t,i=e.replace(/ /g,"").toLowerCase();if(i in o)return o[i].slice();if("#"===i[0])return 4===i.length?(t=parseInt(i.substr(1),16))>=0&&t<=4095?[(3840&t)>>4|(3840&t)>>8,240&t|(240&t)>>4,15&t|(15&t)<<4,1]:null:7===i.length&&(t=parseInt(i.substr(1),16))>=0&&t<=16777215?[(16711680&t)>>16,(65280&t)>>8,255&t,1]:null;var l=i.indexOf("("),u=i.indexOf(")");if(-1!==l&&u+1===i.length){var c=i.substr(0,l),p=i.substr(l+1,u-(l+1)).split(","),d=1;switch(c){case"rgba":if(4!==p.length)return null;d=a(p.pop());case"rgb":return 3!==p.length?null:[n(p[0]),n(p[1]),n(p[2]),d];case"hsla":if(4!==p.length)return null;d=a(p.pop());case"hsl":if(3!==p.length)return null;var h=(parseFloat(p[0])%360+360)%360/360,f=a(p[1]),m=a(p[2]),y=m<=.5?m*(f+1):m+f-m*f,g=2*m-y;return[r(255*s(g,y,h+1/3)),r(255*s(g,y,h)),r(255*s(g,y,h-1/3)),d];default:return null}}return null}}catch(e){}}));class X{constructor(e,t,o,r=1){this.r=e,this.g=t,this.b=o,this.a=r}static parse(e){if(!e)return;if(e instanceof X)return e;if("string"!=typeof e)return;const t=Z.parseCSSColor(e);return t?new X(t[0]/255*t[3],t[1]/255*t[3],t[2]/255*t[3],t[3]):void 0}toString(){const[e,t,o,r]=this.toArray();return`rgba(${Math.round(e)},${Math.round(t)},${Math.round(o)},${r})`}toArray(){const{r:e,g:t,b:o,a:r}=this;return 0===r?[0,0,0,0]:[255*e/r,255*t/r,255*o/r,r]}toArray01(){const{r:e,g:t,b:o,a:r}=this;return 0===r?[0,0,0,0]:[e/r,t/r,o/r,r]}toArray01PremultipliedAlpha(){const{r:e,g:t,b:o,a:r}=this;return[e,t,o,r]}}X.black=new X(0,0,0,1),X.white=new X(1,1,1,1),X.transparent=new X(0,0,0,0),X.red=new X(1,0,0,1),X.blue=new X(0,0,1,1);var Y=X;class K{constructor(e,t,o){this.sensitivity=e?t?"variant":"case":t?"accent":"base",this.locale=o,this.collator=new Intl.Collator(this.locale?this.locale:[],{sensitivity:this.sensitivity,usage:"search"})}compare(e,t){return this.collator.compare(e,t)}resolvedLocale(){return new Intl.Collator(this.locale?this.locale:[]).resolvedOptions().locale}}class Q{constructor(e,t,o,r,i){this.text=e.normalize?e.normalize():e,this.image=t,this.scale=o,this.fontStack=r,this.textColor=i}}class ee{constructor(e){this.sections=e}static fromString(e){return new ee([new Q(e,null,null,null,null)])}isEmpty(){return 0===this.sections.length||!this.sections.some((e=>0!==e.text.length||e.image&&0!==e.image.name.length))}static factory(e){return e instanceof ee?e:ee.fromString(e)}toString(){return 0===this.sections.length?"":this.sections.map((e=>e.text)).join("")}serialize(){const e=["format"];for(const t of this.sections){if(t.image){e.push(["image",t.image.name]);continue}e.push(t.text);const o={};t.fontStack&&(o["text-font"]=["literal",t.fontStack.split(",")]),t.scale&&(o["font-scale"]=t.scale),t.textColor&&(o["text-color"]=["rgba"].concat(t.textColor.toArray())),e.push(o)}return e}}class te{constructor(e){this.name=e.name,this.available=e.available}toString(){return this.name}static fromString(e){return e?new te({name:e,available:!1}):null}serialize(){return["image",this.name]}}function oe(e,t,o,r){return"number"==typeof e&&e>=0&&e<=255&&"number"==typeof t&&t>=0&&t<=255&&"number"==typeof o&&o>=0&&o<=255?void 0===r||"number"==typeof r&&r>=0&&r<=1?null:`Invalid rgba value [${[e,t,o,r].join(", ")}]: 'a' must be between 0 and 1.`:`Invalid rgba value [${("number"==typeof r?[e,t,o,r]:[e,t,o]).join(", ")}]: 'r', 'g', and 'b' must be between 0 and 255.`}function re(e){if(null===e)return!0;if("string"==typeof e)return!0;if("boolean"==typeof e)return!0;if("number"==typeof e)return!0;if(e instanceof Y)return!0;if(e instanceof K)return!0;if(e instanceof ee)return!0;if(e instanceof te)return!0;if(Array.isArray(e)){for(const t of e)if(!re(t))return!1;return!0}if("object"==typeof e){for(const t in e)if(!re(e[t]))return!1;return!0}return!1}function ie(e){if(null===e)return I;if("string"==typeof e)return N;if("boolean"==typeof e)return D;if("number"==typeof e)return q;if(e instanceof Y)return L;if(e instanceof K)return F;if(e instanceof ee)return $;if(e instanceof te)return U;if(Array.isArray(e)){const t=e.length;let o;for(const t of e){const e=ie(t);if(o){if(o===e)continue;o=P;break}o=e}return B(o||P,t)}return M}function ne(e){const t=typeof e;return null===e?"":"string"===t||"number"===t||"boolean"===t?String(e):e instanceof Y||e instanceof ee||e instanceof te?e.toString():JSON.stringify(e)}class ae{constructor(e,t){this.type=e,this.value=t}static parse(e,t){if(2!==e.length)return t.error(`'literal' expression requires exactly one argument, but found ${e.length-1} instead.`);if(!re(e[1]))return t.error("invalid value");const o=e[1];let r=ie(o);const i=t.expectedType;return"array"!==r.kind||0!==r.N||!i||"array"!==i.kind||"number"==typeof i.N&&0!==i.N||(r=i),new ae(r,o)}evaluate(){return this.value}eachChild(){}outputDefined(){return!0}serialize(){return"array"===this.type.kind||"object"===this.type.kind?["literal",this.value]:this.value instanceof Y?["rgba"].concat(this.value.toArray()):this.value instanceof ee?this.value.serialize():this.value}}var se=ae,le=class{constructor(e){this.name="ExpressionEvaluationError",this.message=e}toJSON(){return this.message}};const ue={string:N,number:q,boolean:D,object:M};class ce{constructor(e,t){this.type=e,this.args=t}static parse(e,t){if(e.length<2)return t.error("Expected at least one argument.");let o,r=1;const i=e[0];if("array"===i){let i,n;if(e.length>2){const o=e[1];if("string"!=typeof o||!(o in ue)||"object"===o)return t.error('The item type argument of "array" must be one of string, number, boolean',1);i=ue[o],r++}else i=P;if(e.length>3){if(null!==e[2]&&("number"!=typeof e[2]||e[2]<0||e[2]!==Math.floor(e[2])))return t.error('The length argument to "array" must be a positive integer literal',2);n=e[2],r++}o=B(i,n)}else o=ue[i];const n=[];for(;re.outputDefined()))}serialize(){const e=this.type,t=[e.kind];if("array"===e.kind){const o=e.itemType;if("string"===o.kind||"number"===o.kind||"boolean"===o.kind){t.push(o.kind);const r=e.N;("number"==typeof r||this.args.length>1)&&t.push(r)}}return t.concat(this.args.map((e=>e.serialize())))}}var pe=ce;class de{constructor(e){this.type=$,this.sections=e}static parse(e,t){if(e.length<2)return t.error("Expected at least one argument.");const o=e[1];if(!Array.isArray(o)&&"object"==typeof o)return t.error("First argument must be an image or text section.");const r=[];let i=!1;for(let o=1;o<=e.length-1;++o){const n=e[o];if(i&&"object"==typeof n&&!Array.isArray(n)){i=!1;let e=null;if(n["font-scale"]&&(e=t.parse(n["font-scale"],1,q),!e))return null;let o=null;if(n["text-font"]&&(o=t.parse(n["text-font"],1,B(N)),!o))return null;let a=null;if(n["text-color"]&&(a=t.parse(n["text-color"],1,L),!a))return null;const s=r[r.length-1];s.scale=e,s.font=o,s.textColor=a}else{const n=t.parse(e[o],1,P);if(!n)return null;const a=n.type.kind;if("string"!==a&&"value"!==a&&"null"!==a&&"resolvedImage"!==a)return t.error("Formatted text type must be 'string', 'value', 'image' or 'null'.");i=!0,r.push({content:n,scale:null,font:null,textColor:null})}}return new de(r)}evaluate(e){return new ee(this.sections.map((t=>{const o=t.content.evaluate(e);return ie(o)===U?new Q("",o,null,null,null):new Q(ne(o),null,t.scale?t.scale.evaluate(e):null,t.font?t.font.evaluate(e).join(","):null,t.textColor?t.textColor.evaluate(e):null)})))}eachChild(e){for(const t of this.sections)e(t.content),t.scale&&e(t.scale),t.font&&e(t.font),t.textColor&&e(t.textColor)}outputDefined(){return!1}serialize(){const e=["format"];for(const t of this.sections){e.push(t.content.serialize());const o={};t.scale&&(o["font-scale"]=t.scale.serialize()),t.font&&(o["text-font"]=t.font.serialize()),t.textColor&&(o["text-color"]=t.textColor.serialize()),e.push(o)}return e}}class he{constructor(e){this.type=U,this.input=e}static parse(e,t){if(2!==e.length)return t.error("Expected two arguments.");const o=t.parse(e[1],1,N);return o?new he(o):t.error("No image name provided.")}evaluate(e){const t=this.input.evaluate(e),o=te.fromString(t);return o&&e.availableImages&&(o.available=e.availableImages.indexOf(t)>-1),o}eachChild(e){e(this.input)}outputDefined(){return!1}serialize(){return["image",this.input.serialize()]}}const fe={"to-boolean":D,"to-color":L,"to-number":q,"to-string":N};class me{constructor(e,t){this.type=e,this.args=t}static parse(e,t){if(e.length<2)return t.error("Expected at least one argument.");const o=e[0];if(("to-boolean"===o||"to-string"===o)&&2!==e.length)return t.error("Expected one argument.");const r=fe[o],i=[];for(let o=1;o4?`Invalid rbga value ${JSON.stringify(t)}: expected an array containing either three or four numeric values.`:oe(t[0],t[1],t[2],t[3]),!o))return new Y(t[0]/255,t[1]/255,t[2]/255,t[3])}throw new le(o||`Could not parse color from value '${"string"==typeof t?t:String(JSON.stringify(t))}'`)}if("number"===this.type.kind){let t=null;for(const o of this.args){if(t=o.evaluate(e),null===t)return 0;const r=Number(t);if(!isNaN(r))return r}throw new le(`Could not convert ${JSON.stringify(t)} to number.`)}return"formatted"===this.type.kind?ee.fromString(ne(this.args[0].evaluate(e))):"resolvedImage"===this.type.kind?te.fromString(ne(this.args[0].evaluate(e))):ne(this.args[0].evaluate(e))}eachChild(e){this.args.forEach(e)}outputDefined(){return this.args.every((e=>e.outputDefined()))}serialize(){if("formatted"===this.type.kind)return new de([{content:this.args[0],scale:null,font:null,textColor:null}]).serialize();if("resolvedImage"===this.type.kind)return new he(this.args[0]).serialize();const e=[`to-${this.type.kind}`];return this.eachChild((t=>{e.push(t.serialize())})),e}}var ye=me;const ge=["Unknown","Point","LineString","Polygon"];var be=class{constructor(){this.globals=null,this.feature=null,this.featureState=null,this.formattedSection=null,this._parseColorCache={},this.availableImages=null,this.canonical=null,this.featureTileCoord=null,this.featureDistanceData=null}id(){return this.feature&&"id"in this.feature&&this.feature.id?this.feature.id:null}geometryType(){return this.feature?"number"==typeof this.feature.type?ge[this.feature.type]:this.feature.type:null}geometry(){return this.feature&&"geometry"in this.feature?this.feature.geometry:null}canonicalID(){return this.canonical}properties(){return this.feature&&this.feature.properties||{}}distanceFromCenter(){if(this.featureTileCoord&&this.featureDistanceData){const e=this.featureDistanceData.center,t=this.featureDistanceData.scale,{x:o,y:r}=this.featureTileCoord,i=o*t-e[0],n=r*t-e[1];return this.featureDistanceData.bearing[0]*i+this.featureDistanceData.bearing[1]*n}return 0}parseColor(e){let t=this._parseColorCache[e];return t||(t=this._parseColorCache[e]=Y.parse(e)),t}};class ve{constructor(e,t,o,r){this.name=e,this.type=t,this._evaluate=o,this.args=r}evaluate(e){return this._evaluate(e,this.args)}eachChild(e){this.args.forEach(e)}outputDefined(){return!1}serialize(){return[this.name].concat(this.args.map((e=>e.serialize())))}static parse(e,t){const o=e[0],r=ve.definitions[o];if(!r)return t.error(`Unknown expression "${o}". If you wanted a literal array, use ["literal", [...]].`,0);const i=Array.isArray(r)?r[0]:r.type,n=Array.isArray(r)?[[r[1],r[2]]]:r.overloads,a=n.filter((([t])=>!Array.isArray(t)||t.length===e.length-1));let s=null;for(const[r,n]of a){s=new He(t.registry,t.path,null,t.scope);const a=[];let l=!1;for(let t=1;t{return t=e,Array.isArray(t)?`(${t.map(J).join(", ")})`:`(${J(t.type)}...)`;var t})).join(" | "),r=[];for(let o=1;o=t[2]||e[1]<=t[1]||e[3]>=t[3])}function ze(e,t){const o=(180+e[0])/360,r=(i=e[1],(180-180/Math.PI*Math.log(Math.tan(Math.PI/4+i*Math.PI/360)))/360);var i;const n=Math.pow(2,t.z);return[Math.round(o*n*ke),Math.round(r*n*ke)]}function _e(e,t,o){const r=e[0]-t[0],i=e[1]-t[1],n=e[0]-o[0],a=e[1]-o[1];return r*a-n*i==0&&r*n<=0&&i*a<=0}function Ae(e,t){let o=!1;for(let a=0,s=t.length;ar[1]!=n[1]>r[1]&&r[0]<(n[0]-i[0])*(r[1]-i[1])/(n[1]-i[1])+i[0]&&(o=!o)}}var r,i,n;return o}function Ce(e,t){for(let o=0;o0&&p<0||c<0&&p>0}function Se(e,t,o,r){const i=[t[0]-e[0],t[1]-e[1]];return 0!=(n=[r[0]-o[0],r[1]-o[1]])[0]*(a=i)[1]-n[1]*a[0]&&!(!Ee(e,t,o,r)||!Ee(o,r,e,t));var n,a}function Oe(e,t,o){for(const r of o)for(let o=0;oo[2]){const t=.5*r;let i=e[0]-o[0]>t?-r:o[0]-e[0]>t?r:0;0===i&&(i=e[0]-o[2]>t?-r:o[2]-e[0]>t?r:0),e[0]+=i}je(t,e)}function Le(e,t,o,r){const i=Math.pow(2,r.z)*ke,n=[r.x*ke,r.y*ke],a=[];if(!e)return a;for(const r of e)for(const e of r){const r=[e.x+n[0],e.y+n[1]];De(r,t,o,i),a.push(r)}return a}function Me(e,t,o,r){const i=Math.pow(2,r.z)*ke,n=[r.x*ke,r.y*ke],a=[];if(!e)return a;for(const o of e){const e=[];for(const r of o){const o=[r.x+n[0],r.y+n[1]];je(t,o),e.push(o)}a.push(e)}if(t[2]-t[0]<=i/2){(s=t)[0]=s[1]=1/0,s[2]=s[3]=-1/0;for(const e of a)for(const r of e)De(r,t,o,i)}var s;return a}class Pe{constructor(e,t){this.type=D,this.geojson=e,this.geometries=t}static parse(e,t){if(2!==e.length)return t.error(`'within' expression requires exactly one argument, but found ${e.length-1} instead.`);if(re(e[1])){const t=e[1];if("FeatureCollection"===t.type)for(let e=0;e{t&&!$e(e)&&(t=!1)})),t}function Ue(e){if(e instanceof xe&&"feature-state"===e.name)return!1;let t=!0;return e.eachChild((e=>{t&&!Ue(e)&&(t=!1)})),t}function Be(e,t){if(e instanceof xe&&t.indexOf(e.name)>=0)return!1;let o=!0;return e.eachChild((e=>{o&&!Be(e,t)&&(o=!1)})),o}class Je{constructor(e,t){this.type=t.type,this.name=e,this.boundExpression=t}static parse(e,t){if(2!==e.length||"string"!=typeof e[1])return t.error("'var' expression requires exactly one string literal argument.");const o=e[1];return t.scope.has(o)?new Je(o,t.scope.get(o)):t.error(`Unknown variable "${o}". Make sure "${o}" has been bound in an enclosing "let" expression before using it.`,1)}evaluate(e){return this.boundExpression.evaluate(e)}eachChild(){}outputDefined(){return!1}serialize(){return["var",this.name]}}var We=Je;class Ge{constructor(e,t=[],o,r=new R,i=[]){this.registry=e,this.path=t,this.key=t.map((e=>`[${e}]`)).join(""),this.scope=r,this.errors=i,this.expectedType=o}parse(e,t,o,r,i={}){return t?this.concat(t,o,r)._parse(e,i):this._parse(e,i)}_parse(e,t){function o(e,t,o){return"assert"===o?new pe(t,[e]):"coerce"===o?new ye(t,[e]):e}if(null!==e&&"string"!=typeof e&&"boolean"!=typeof e&&"number"!=typeof e||(e=["literal",e]),Array.isArray(e)){if(0===e.length)return this.error('Expected an array with at least one element. If you wanted a literal array, use ["literal", []].');const r=e[0];if("string"!=typeof r)return this.error(`Expression name must be a string, but found ${typeof r} instead. If you wanted a literal array, use ["literal", [...]].`,0),null;const i=this.registry[r];if(i){let r=i.parse(e,this);if(!r)return null;if(this.expectedType){const e=this.expectedType,i=r.type;if("string"!==e.kind&&"number"!==e.kind&&"boolean"!==e.kind&&"object"!==e.kind&&"array"!==e.kind||"value"!==i.kind)if("color"!==e.kind&&"formatted"!==e.kind&&"resolvedImage"!==e.kind||"value"!==i.kind&&"string"!==i.kind){if(this.checkSubtype(e,i))return null}else r=o(r,e,t.typeAnnotation||"coerce");else r=o(r,e,t.typeAnnotation||"assert")}if(!(r instanceof se)&&"resolvedImage"!==r.type.kind&&Ve(r)){const e=new be;try{r=new se(r.type,r.evaluate(e))}catch(e){return this.error(e.message),null}}return r}return this.error(`Unknown expression "${r}". If you wanted a literal array, use ["literal", [...]].`,0)}return void 0===e?this.error("'undefined' value invalid. Use null instead."):"object"==typeof e?this.error('Bare objects invalid. Use ["literal", {...}] instead.'):this.error(`Expected an array, but found ${typeof e} instead.`)}concat(e,t,o){const r="number"==typeof e?this.path.concat(e):this.path,i=o?this.scope.concat(o):this.scope;return new Ge(this.registry,r,t||null,i,this.errors)}error(e,...t){const o=`${this.key}${t.map((e=>`[${e}]`)).join("")}`;this.errors.push(new S(o,e))}checkSubtype(e,t){const o=G(e,t);return o&&this.error(o),o}}var He=Ge;function Ve(e){if(e instanceof We)return Ve(e.boundExpression);if(e instanceof xe&&"error"===e.name)return!1;if(e instanceof we)return!1;if(e instanceof Fe)return!1;const t=e instanceof ye||e instanceof pe;let o=!0;return e.eachChild((e=>{o=t?o&&Ve(e):o&&e instanceof se})),!!o&&$e(e)&&Be(e,["zoom","heatmap-density","line-progress","sky-radial-progress","accumulated","is-supported-script","pitch","distance-from-center"])}function Ze(e,t){const o=e.length-1;let r,i,n=0,a=o,s=0;for(;n<=a;)if(s=Math.floor((n+a)/2),r=e[s],i=e[s+1],r<=t){if(s===o||tt))throw new le("Input is not a number.");a=s-1}return 0}class Xe{constructor(e,t,o){this.type=e,this.input=t,this.labels=[],this.outputs=[];for(const[e,t]of o)this.labels.push(e),this.outputs.push(t)}static parse(e,t){if(e.length-1<4)return t.error(`Expected at least 4 arguments, but found only ${e.length-1}.`);if((e.length-1)%2!=0)return t.error("Expected an even number of arguments.");const o=t.parse(e[1],1,q);if(!o)return null;const r=[];let i=null;t.expectedType&&"value"!==t.expectedType.kind&&(i=t.expectedType);for(let o=1;o=n)return t.error('Input/output pairs for "step" expressions must be arranged with input values in strictly ascending order.',s);const u=t.parse(a,l,i);if(!u)return null;i=i||u.type,r.push([n,u])}return new Xe(i,o,r)}evaluate(e){const t=this.labels,o=this.outputs;if(1===t.length)return o[0].evaluate(e);const r=this.input.evaluate(e);if(r<=t[0])return o[0].evaluate(e);const i=t.length;return r>=t[i-1]?o[i-1].evaluate(e):o[Ze(t,r)].evaluate(e)}eachChild(e){e(this.input);for(const t of this.outputs)e(t)}outputDefined(){return this.outputs.every((e=>e.outputDefined()))}serialize(){const e=["step",this.input.serialize()];for(let t=0;t0&&e.push(this.labels[t]),e.push(this.outputs[t].serialize());return e}}var Ye=Xe,Ke=Qe;function Qe(e,t,o,r){this.cx=3*e,this.bx=3*(o-e)-this.cx,this.ax=1-this.cx-this.bx,this.cy=3*t,this.by=3*(r-t)-this.cy,this.ay=1-this.cy-this.by,this.p1x=e,this.p1y=r,this.p2x=o,this.p2y=r}function et(e,t,o){return e*(1-o)+t*o}Qe.prototype.sampleCurveX=function(e){return((this.ax*e+this.bx)*e+this.cx)*e},Qe.prototype.sampleCurveY=function(e){return((this.ay*e+this.by)*e+this.cy)*e},Qe.prototype.sampleCurveDerivativeX=function(e){return(3*this.ax*e+2*this.bx)*e+this.cx},Qe.prototype.solveCurveX=function(e,t){var o,r,i,n,a;for(void 0===t&&(t=1e-6),i=e,a=0;a<8;a++){if(n=this.sampleCurveX(i)-e,Math.abs(n)(r=1))return r;for(;on?o=i:r=i,i=.5*(r-o)+o}return i},Qe.prototype.solve=function(e,t){return this.sampleCurveY(this.solveCurveX(e,t))};var tt=Object.freeze({__proto__:null,number:et,color:function(e,t,o){return new Y(et(e.r,t.r,o),et(e.g,t.g,o),et(e.b,t.b,o),et(e.a,t.a,o))},array:function(e,t,o){return e.map(((e,r)=>et(e,t[r],o)))}});const ot=.95047,rt=1.08883,it=4/29,nt=6/29,at=3*nt*nt,st=Math.PI/180,lt=180/Math.PI;function ut(e){return e>.008856451679035631?Math.pow(e,1/3):e/at+it}function ct(e){return e>nt?e*e*e:at*(e-it)}function pt(e){return 255*(e<=.0031308?12.92*e:1.055*Math.pow(e,1/2.4)-.055)}function dt(e){return(e/=255)<=.04045?e/12.92:Math.pow((e+.055)/1.055,2.4)}function ht(e){const t=dt(e.r),o=dt(e.g),r=dt(e.b),i=ut((.4124564*t+.3575761*o+.1804375*r)/ot),n=ut((.2126729*t+.7151522*o+.072175*r)/1);return{l:116*n-16,a:500*(i-n),b:200*(n-ut((.0193339*t+.119192*o+.9503041*r)/rt)),alpha:e.a}}function ft(e){let t=(e.l+16)/116,o=isNaN(e.a)?t:t+e.a/500,r=isNaN(e.b)?t:t-e.b/200;return t=1*ct(t),o=ot*ct(o),r=rt*ct(r),new Y(pt(3.2404542*o-1.5371385*t-.4985314*r),pt(-.969266*o+1.8760108*t+.041556*r),pt(.0556434*o-.2040259*t+1.0572252*r),e.alpha)}function mt(e,t,o){const r=t-e;return e+o*(r>180||r<-180?r-360*Math.round(r/360):r)}const yt={forward:ht,reverse:ft,interpolate:function(e,t,o){return{l:et(e.l,t.l,o),a:et(e.a,t.a,o),b:et(e.b,t.b,o),alpha:et(e.alpha,t.alpha,o)}}},gt={forward:function(e){const{l:t,a:o,b:r}=ht(e),i=Math.atan2(r,o)*lt;return{h:i<0?i+360:i,c:Math.sqrt(o*o+r*r),l:t,alpha:e.a}},reverse:function(e){const t=e.h*st,o=e.c;return ft({l:e.l,a:Math.cos(t)*o,b:Math.sin(t)*o,alpha:e.alpha})},interpolate:function(e,t,o){return{h:mt(e.h,t.h,o),c:et(e.c,t.c,o),l:et(e.l,t.l,o),alpha:et(e.alpha,t.alpha,o)}}};var bt=Object.freeze({__proto__:null,lab:yt,hcl:gt});class vt{constructor(e,t,o,r,i){this.type=e,this.operator=t,this.interpolation=o,this.input=r,this.labels=[],this.outputs=[];for(const[e,t]of i)this.labels.push(e),this.outputs.push(t)}static interpolationFactor(e,t,o,r){let i=0;if("exponential"===e.name)i=xt(t,e.base,o,r);else if("linear"===e.name)i=xt(t,1,o,r);else if("cubic-bezier"===e.name){const n=e.controlPoints;i=new Ke(n[0],n[1],n[2],n[3]).solve(xt(t,1,o,r))}return i}static parse(e,t){let[o,r,i,...n]=e;if(!Array.isArray(r)||0===r.length)return t.error("Expected an interpolation type expression.",1);if("linear"===r[0])r={name:"linear"};else if("exponential"===r[0]){const e=r[1];if("number"!=typeof e)return t.error("Exponential interpolation requires a numeric base.",1,1);r={name:"exponential",base:e}}else{if("cubic-bezier"!==r[0])return t.error(`Unknown interpolation type ${String(r[0])}`,1,0);{const e=r.slice(1);if(4!==e.length||e.some((e=>"number"!=typeof e||e<0||e>1)))return t.error("Cubic bezier interpolation requires four numeric arguments with values between 0 and 1.",1);r={name:"cubic-bezier",controlPoints:e}}}if(e.length-1<4)return t.error(`Expected at least 4 arguments, but found only ${e.length-1}.`);if((e.length-1)%2!=0)return t.error("Expected an even number of arguments.");if(i=t.parse(i,2,q),!i)return null;const a=[];let s=null;"interpolate-hcl"===o||"interpolate-lab"===o?s=L:t.expectedType&&"value"!==t.expectedType.kind&&(s=t.expectedType);for(let e=0;e=o)return t.error('Input/output pairs for "interpolate" expressions must be arranged with input values in strictly ascending order.',i);const u=t.parse(r,l,s);if(!u)return null;s=s||u.type,a.push([o,u])}return"number"===s.kind||"color"===s.kind||"array"===s.kind&&"number"===s.itemType.kind&&"number"==typeof s.N?new vt(s,o,r,i,a):t.error(`Type ${J(s)} is not interpolatable.`)}evaluate(e){const t=this.labels,o=this.outputs;if(1===t.length)return o[0].evaluate(e);const r=this.input.evaluate(e);if(r<=t[0])return o[0].evaluate(e);const i=t.length;if(r>=t[i-1])return o[i-1].evaluate(e);const n=Ze(t,r),a=t[n],s=t[n+1],l=vt.interpolationFactor(this.interpolation,r,a,s),u=o[n].evaluate(e),c=o[n+1].evaluate(e);return"interpolate"===this.operator?tt[this.type.kind.toLowerCase()](u,c,l):"interpolate-hcl"===this.operator?gt.reverse(gt.interpolate(gt.forward(u),gt.forward(c),l)):yt.reverse(yt.interpolate(yt.forward(u),yt.forward(c),l))}eachChild(e){e(this.input);for(const t of this.outputs)e(t)}outputDefined(){return this.outputs.every((e=>e.outputDefined()))}serialize(){let e;e="linear"===this.interpolation.name?["linear"]:"exponential"===this.interpolation.name?1===this.interpolation.base?["linear"]:["exponential",this.interpolation.base]:["cubic-bezier"].concat(this.interpolation.controlPoints);const t=[this.operator,e,this.input.serialize()];for(let e=0;eG(r,e.type)));return new kt(n?P:o,i)}evaluate(e){let t,o=null,r=0;for(const i of this.args){if(r++,o=i.evaluate(e),o&&o instanceof te&&!o.available&&(t||(t=o),o=null,r===this.args.length))return t;if(null!==o)break}return o}eachChild(e){this.args.forEach(e)}outputDefined(){return this.args.every((e=>e.outputDefined()))}serialize(){const e=["coalesce"];return this.eachChild((t=>{e.push(t.serialize())})),e}}var jt=kt;class Tt{constructor(e,t){this.type=t.type,this.bindings=[].concat(e),this.result=t}evaluate(e){return this.result.evaluate(e)}eachChild(e){for(const t of this.bindings)e(t[1]);e(this.result)}static parse(e,t){if(e.length<4)return t.error(`Expected at least 3 arguments, but found ${e.length-1} instead.`);const o=[];for(let r=1;r=o.length)throw new le(`Array index out of bounds: ${t} > ${o.length-1}.`);if(t!==Math.floor(t))throw new le(`Array index must be an integer, but found ${t} instead.`);return o[t]}eachChild(e){e(this.index),e(this.input)}outputDefined(){return!1}serialize(){return["at",this.index.serialize(),this.input.serialize()]}}var At=_t;class Ct{constructor(e,t){this.type=D,this.needle=e,this.haystack=t}static parse(e,t){if(3!==e.length)return t.error(`Expected 2 arguments, but found ${e.length-1} instead.`);const o=t.parse(e[1],1,P),r=t.parse(e[2],2,P);return o&&r?H(o.type,[D,N,q,I,P])?new Ct(o,r):t.error(`Expected first argument to be of type boolean, string, number or null, but found ${J(o.type)} instead`):null}evaluate(e){const t=this.needle.evaluate(e),o=this.haystack.evaluate(e);if(null==o)return!1;if(!V(t,["boolean","string","number","null"]))throw new le(`Expected first argument to be of type boolean, string, number or null, but found ${J(ie(t))} instead.`);if(!V(o,["string","array"]))throw new le(`Expected second argument to be of type array or string, but found ${J(ie(o))} instead.`);return o.indexOf(t)>=0}eachChild(e){e(this.needle),e(this.haystack)}outputDefined(){return!0}serialize(){return["in",this.needle.serialize(),this.haystack.serialize()]}}var Et=Ct;class St{constructor(e,t,o){this.type=q,this.needle=e,this.haystack=t,this.fromIndex=o}static parse(e,t){if(e.length<=2||e.length>=5)return t.error(`Expected 3 or 4 arguments, but found ${e.length-1} instead.`);const o=t.parse(e[1],1,P),r=t.parse(e[2],2,P);if(!o||!r)return null;if(!H(o.type,[D,N,q,I,P]))return t.error(`Expected first argument to be of type boolean, string, number or null, but found ${J(o.type)} instead`);if(4===e.length){const i=t.parse(e[3],3,q);return i?new St(o,r,i):null}return new St(o,r)}evaluate(e){const t=this.needle.evaluate(e),o=this.haystack.evaluate(e);if(!V(t,["boolean","string","number","null"]))throw new le(`Expected first argument to be of type boolean, string, number or null, but found ${J(ie(t))} instead.`);if(!V(o,["string","array"]))throw new le(`Expected second argument to be of type array or string, but found ${J(ie(o))} instead.`);if(this.fromIndex){const r=this.fromIndex.evaluate(e);return o.indexOf(t,r)}return o.indexOf(t)}eachChild(e){e(this.needle),e(this.haystack),this.fromIndex&&e(this.fromIndex)}outputDefined(){return!1}serialize(){if(null!=this.fromIndex&&void 0!==this.fromIndex){const e=this.fromIndex.serialize();return["index-of",this.needle.serialize(),this.haystack.serialize(),e]}return["index-of",this.needle.serialize(),this.haystack.serialize()]}}var Ot=St;class Rt{constructor(e,t,o,r,i,n){this.inputType=e,this.type=t,this.input=o,this.cases=r,this.outputs=i,this.otherwise=n}static parse(e,t){if(e.length<5)return t.error(`Expected at least 4 arguments, but found only ${e.length-1}.`);if(e.length%2!=1)return t.error("Expected an even number of arguments.");let o,r;t.expectedType&&"value"!==t.expectedType.kind&&(r=t.expectedType);const i={},n=[];for(let a=2;aNumber.MAX_SAFE_INTEGER)return u.error(`Branch labels must be integers no larger than ${Number.MAX_SAFE_INTEGER}.`);if("number"==typeof e&&Math.floor(e)!==e)return u.error("Numeric branch labels must be integer values.");if(o){if(u.checkSubtype(o,ie(e)))return null}else o=ie(e);if(void 0!==i[String(e)])return u.error("Branch labels must be unique.");i[String(e)]=n.length}const c=t.parse(l,a,r);if(!c)return null;r=r||c.type,n.push(c)}const a=t.parse(e[1],1,P);if(!a)return null;const s=t.parse(e[e.length-1],e.length-1,r);return s?"value"!==a.type.kind&&t.concat(1).checkSubtype(o,a.type)?null:new Rt(o,r,a,i,n,s):null}evaluate(e){const t=this.input.evaluate(e);return(ie(t)===this.inputType&&this.outputs[this.cases[t]]||this.otherwise).evaluate(e)}eachChild(e){e(this.input),this.outputs.forEach(e),e(this.otherwise)}outputDefined(){return this.outputs.every((e=>e.outputDefined()))&&this.otherwise.outputDefined()}serialize(){const e=["match",this.input.serialize()],t=Object.keys(this.cases).sort(),o=[],r={};for(const e of t){const t=r[this.cases[e]];void 0===t?(r[this.cases[e]]=o.length,o.push([this.cases[e],[e]])):o[t][1].push(e)}const i=e=>"number"===this.inputType.kind?Number(e):e;for(const[t,r]of o)1===r.length?e.push(i(r[0])):e.push(r.map(i)),e.push(this.outputs[t].serialize());return e.push(this.otherwise.serialize()),e}}var It=Rt;class qt{constructor(e,t,o){this.type=e,this.branches=t,this.otherwise=o}static parse(e,t){if(e.length<4)return t.error(`Expected at least 3 arguments, but found only ${e.length-1}.`);if(e.length%2!=0)return t.error("Expected an odd number of arguments.");let o;t.expectedType&&"value"!==t.expectedType.kind&&(o=t.expectedType);const r=[];for(let i=1;it.outputDefined()))&&this.otherwise.outputDefined()}serialize(){const e=["case"];return this.eachChild((t=>{e.push(t.serialize())})),e}}var Nt=qt;class Dt{constructor(e,t,o,r){this.type=e,this.input=t,this.beginIndex=o,this.endIndex=r}static parse(e,t){if(e.length<=2||e.length>=5)return t.error(`Expected 3 or 4 arguments, but found ${e.length-1} instead.`);const o=t.parse(e[1],1,P),r=t.parse(e[2],2,q);if(!o||!r)return null;if(!H(o.type,[B(P),N,P]))return t.error(`Expected first argument to be of type array or string, but found ${J(o.type)} instead`);if(4===e.length){const i=t.parse(e[3],3,q);return i?new Dt(o.type,o,r,i):null}return new Dt(o.type,o,r)}evaluate(e){const t=this.input.evaluate(e),o=this.beginIndex.evaluate(e);if(!V(t,["string","array"]))throw new le(`Expected first argument to be of type array or string, but found ${J(ie(t))} instead.`);if(this.endIndex){const r=this.endIndex.evaluate(e);return t.slice(o,r)}return t.slice(o)}eachChild(e){e(this.input),e(this.beginIndex),this.endIndex&&e(this.endIndex)}outputDefined(){return!1}serialize(){if(null!=this.endIndex&&void 0!==this.endIndex){const e=this.endIndex.serialize();return["slice",this.input.serialize(),this.beginIndex.serialize(),e]}return["slice",this.input.serialize(),this.beginIndex.serialize()]}}var Lt=Dt;function Mt(e,t){return"=="===e||"!="===e?"boolean"===t.kind||"string"===t.kind||"number"===t.kind||"null"===t.kind||"value"===t.kind:"string"===t.kind||"number"===t.kind||"value"===t.kind}function Pt(e,t,o,r){return 0===r.compare(t,o)}function Ft(e,t,o){const r="=="!==e&&"!="!==e;return class i{constructor(e,t,o){this.type=D,this.lhs=e,this.rhs=t,this.collator=o,this.hasUntypedArgument="value"===e.type.kind||"value"===t.type.kind}static parse(e,t){if(3!==e.length&&4!==e.length)return t.error("Expected two or three arguments.");const o=e[0];let n=t.parse(e[1],1,P);if(!n)return null;if(!Mt(o,n.type))return t.concat(1).error(`"${o}" comparisons are not supported for type '${J(n.type)}'.`);let a=t.parse(e[2],2,P);if(!a)return null;if(!Mt(o,a.type))return t.concat(2).error(`"${o}" comparisons are not supported for type '${J(a.type)}'.`);if(n.type.kind!==a.type.kind&&"value"!==n.type.kind&&"value"!==a.type.kind)return t.error(`Cannot compare types '${J(n.type)}' and '${J(a.type)}'.`);r&&("value"===n.type.kind&&"value"!==a.type.kind?n=new pe(a.type,[n]):"value"!==n.type.kind&&"value"===a.type.kind&&(a=new pe(n.type,[a])));let s=null;if(4===e.length){if("string"!==n.type.kind&&"string"!==a.type.kind&&"value"!==n.type.kind&&"value"!==a.type.kind)return t.error("Cannot use collator to compare non-string types.");if(s=t.parse(e[3],3,F),!s)return null}return new i(n,a,s)}evaluate(i){const n=this.lhs.evaluate(i),a=this.rhs.evaluate(i);if(r&&this.hasUntypedArgument){const t=ie(n),o=ie(a);if(t.kind!==o.kind||"string"!==t.kind&&"number"!==t.kind)throw new le(`Expected arguments for "${e}" to be (string, string) or (number, number), but found (${t.kind}, ${o.kind}) instead.`)}if(this.collator&&!r&&this.hasUntypedArgument){const e=ie(n),o=ie(a);if("string"!==e.kind||"string"!==o.kind)return t(i,n,a)}return this.collator?o(i,n,a,this.collator.evaluate(i)):t(i,n,a)}eachChild(e){e(this.lhs),e(this.rhs),this.collator&&e(this.collator)}outputDefined(){return!0}serialize(){const t=[e];return this.eachChild((e=>{t.push(e.serialize())})),t}}}const $t=Ft("==",(function(e,t,o){return t===o}),Pt),Ut=Ft("!=",(function(e,t,o){return t!==o}),(function(e,t,o,r){return!Pt(0,t,o,r)})),Bt=Ft("<",(function(e,t,o){return t",(function(e,t,o){return t>o}),(function(e,t,o,r){return r.compare(t,o)>0})),Wt=Ft("<=",(function(e,t,o){return t<=o}),(function(e,t,o,r){return r.compare(t,o)<=0})),Gt=Ft(">=",(function(e,t,o){return t>=o}),(function(e,t,o,r){return r.compare(t,o)>=0}));class Ht{constructor(e,t,o,r,i){this.type=N,this.number=e,this.locale=t,this.currency=o,this.minFractionDigits=r,this.maxFractionDigits=i}static parse(e,t){if(3!==e.length)return t.error("Expected two arguments.");const o=t.parse(e[1],1,q);if(!o)return null;const r=e[2];if("object"!=typeof r||Array.isArray(r))return t.error("NumberFormat options argument must be an object.");let i=null;if(r.locale&&(i=t.parse(r.locale,1,N),!i))return null;let n=null;if(r.currency&&(n=t.parse(r.currency,1,N),!n))return null;let a=null;if(r["min-fraction-digits"]&&(a=t.parse(r["min-fraction-digits"],1,q),!a))return null;let s=null;return r["max-fraction-digits"]&&(s=t.parse(r["max-fraction-digits"],1,q),!s)?null:new Ht(o,i,n,a,s)}evaluate(e){return new Intl.NumberFormat(this.locale?this.locale.evaluate(e):[],{style:this.currency?"currency":"decimal",currency:this.currency?this.currency.evaluate(e):void 0,minimumFractionDigits:this.minFractionDigits?this.minFractionDigits.evaluate(e):void 0,maximumFractionDigits:this.maxFractionDigits?this.maxFractionDigits.evaluate(e):void 0}).format(this.number.evaluate(e))}eachChild(e){e(this.number),this.locale&&e(this.locale),this.currency&&e(this.currency),this.minFractionDigits&&e(this.minFractionDigits),this.maxFractionDigits&&e(this.maxFractionDigits)}outputDefined(){return!1}serialize(){const e={};return this.locale&&(e.locale=this.locale.serialize()),this.currency&&(e.currency=this.currency.serialize()),this.minFractionDigits&&(e["min-fraction-digits"]=this.minFractionDigits.serialize()),this.maxFractionDigits&&(e["max-fraction-digits"]=this.maxFractionDigits.serialize()),["number-format",this.number.serialize(),e]}}class Vt{constructor(e){this.type=q,this.input=e}static parse(e,t){if(2!==e.length)return t.error(`Expected 1 argument, but found ${e.length-1} instead.`);const o=t.parse(e[1],1);return o?"array"!==o.type.kind&&"string"!==o.type.kind&&"value"!==o.type.kind?t.error(`Expected argument of type string or array, but found ${J(o.type)} instead.`):new Vt(o):null}evaluate(e){const t=this.input.evaluate(e);if("string"==typeof t)return t.length;if(Array.isArray(t))return t.length;throw new le(`Expected value to be of type string or array, but found ${J(ie(t))} instead.`)}eachChild(e){e(this.input)}outputDefined(){return!1}serialize(){const e=["length"];return this.eachChild((t=>{e.push(t.serialize())})),e}}const Zt={"==":$t,"!=":Ut,">":Jt,"<":Bt,">=":Gt,"<=":Wt,array:pe,at:At,boolean:pe,case:Nt,coalesce:jt,collator:we,format:de,image:he,in:Et,"index-of":Ot,interpolate:wt,"interpolate-hcl":wt,"interpolate-lab":wt,length:Vt,let:zt,literal:se,match:It,number:pe,"number-format":Ht,object:pe,slice:Lt,step:Ye,string:pe,"to-boolean":ye,"to-color":ye,"to-number":ye,"to-string":ye,var:We,within:Fe};function Xt(e,[t,o,r,i]){t=t.evaluate(e),o=o.evaluate(e),r=r.evaluate(e);const n=i?i.evaluate(e):1,a=oe(t,o,r,n);if(a)throw new le(a);return new Y(t/255*n,o/255*n,r/255*n,n)}function Yt(e,t){return e in t}function Kt(e,t){const o=t[e];return void 0===o?null:o}function Qt(e){return{type:e}}xe.register(Zt,{error:[{kind:"error"},[N],(e,[t])=>{throw new le(t.evaluate(e))}],typeof:[N,[P],(e,[t])=>J(ie(t.evaluate(e)))],"to-rgba":[B(q,4),[L],(e,[t])=>t.evaluate(e).toArray()],rgb:[L,[q,q,q],Xt],rgba:[L,[q,q,q,q],Xt],has:{type:D,overloads:[[[N],(e,[t])=>Yt(t.evaluate(e),e.properties())],[[N,M],(e,[t,o])=>Yt(t.evaluate(e),o.evaluate(e))]]},get:{type:P,overloads:[[[N],(e,[t])=>Kt(t.evaluate(e),e.properties())],[[N,M],(e,[t,o])=>Kt(t.evaluate(e),o.evaluate(e))]]},"feature-state":[P,[N],(e,[t])=>Kt(t.evaluate(e),e.featureState||{})],properties:[M,[],e=>e.properties()],"geometry-type":[N,[],e=>e.geometryType()],id:[P,[],e=>e.id()],zoom:[q,[],e=>e.globals.zoom],pitch:[q,[],e=>e.globals.pitch||0],"distance-from-center":[q,[],e=>e.distanceFromCenter()],"heatmap-density":[q,[],e=>e.globals.heatmapDensity||0],"line-progress":[q,[],e=>e.globals.lineProgress||0],"sky-radial-progress":[q,[],e=>e.globals.skyRadialProgress||0],accumulated:[P,[],e=>void 0===e.globals.accumulated?null:e.globals.accumulated],"+":[q,Qt(q),(e,t)=>{let o=0;for(const r of t)o+=r.evaluate(e);return o}],"*":[q,Qt(q),(e,t)=>{let o=1;for(const r of t)o*=r.evaluate(e);return o}],"-":{type:q,overloads:[[[q,q],(e,[t,o])=>t.evaluate(e)-o.evaluate(e)],[[q],(e,[t])=>-t.evaluate(e)]]},"/":[q,[q,q],(e,[t,o])=>t.evaluate(e)/o.evaluate(e)],"%":[q,[q,q],(e,[t,o])=>t.evaluate(e)%o.evaluate(e)],ln2:[q,[],()=>Math.LN2],pi:[q,[],()=>Math.PI],e:[q,[],()=>Math.E],"^":[q,[q,q],(e,[t,o])=>Math.pow(t.evaluate(e),o.evaluate(e))],sqrt:[q,[q],(e,[t])=>Math.sqrt(t.evaluate(e))],log10:[q,[q],(e,[t])=>Math.log(t.evaluate(e))/Math.LN10],ln:[q,[q],(e,[t])=>Math.log(t.evaluate(e))],log2:[q,[q],(e,[t])=>Math.log(t.evaluate(e))/Math.LN2],sin:[q,[q],(e,[t])=>Math.sin(t.evaluate(e))],cos:[q,[q],(e,[t])=>Math.cos(t.evaluate(e))],tan:[q,[q],(e,[t])=>Math.tan(t.evaluate(e))],asin:[q,[q],(e,[t])=>Math.asin(t.evaluate(e))],acos:[q,[q],(e,[t])=>Math.acos(t.evaluate(e))],atan:[q,[q],(e,[t])=>Math.atan(t.evaluate(e))],min:[q,Qt(q),(e,t)=>Math.min(...t.map((t=>t.evaluate(e))))],max:[q,Qt(q),(e,t)=>Math.max(...t.map((t=>t.evaluate(e))))],abs:[q,[q],(e,[t])=>Math.abs(t.evaluate(e))],round:[q,[q],(e,[t])=>{const o=t.evaluate(e);return o<0?-Math.round(-o):Math.round(o)}],floor:[q,[q],(e,[t])=>Math.floor(t.evaluate(e))],ceil:[q,[q],(e,[t])=>Math.ceil(t.evaluate(e))],"filter-==":[D,[N,P],(e,[t,o])=>e.properties()[t.value]===o.value],"filter-id-==":[D,[P],(e,[t])=>e.id()===t.value],"filter-type-==":[D,[N],(e,[t])=>e.geometryType()===t.value],"filter-<":[D,[N,P],(e,[t,o])=>{const r=e.properties()[t.value],i=o.value;return typeof r==typeof i&&r{const o=e.id(),r=t.value;return typeof o==typeof r&&o":[D,[N,P],(e,[t,o])=>{const r=e.properties()[t.value],i=o.value;return typeof r==typeof i&&r>i}],"filter-id->":[D,[P],(e,[t])=>{const o=e.id(),r=t.value;return typeof o==typeof r&&o>r}],"filter-<=":[D,[N,P],(e,[t,o])=>{const r=e.properties()[t.value],i=o.value;return typeof r==typeof i&&r<=i}],"filter-id-<=":[D,[P],(e,[t])=>{const o=e.id(),r=t.value;return typeof o==typeof r&&o<=r}],"filter->=":[D,[N,P],(e,[t,o])=>{const r=e.properties()[t.value],i=o.value;return typeof r==typeof i&&r>=i}],"filter-id->=":[D,[P],(e,[t])=>{const o=e.id(),r=t.value;return typeof o==typeof r&&o>=r}],"filter-has":[D,[P],(e,[t])=>t.value in e.properties()],"filter-has-id":[D,[],e=>null!==e.id()&&void 0!==e.id()],"filter-type-in":[D,[B(N)],(e,[t])=>t.value.indexOf(e.geometryType())>=0],"filter-id-in":[D,[B(P)],(e,[t])=>t.value.indexOf(e.id())>=0],"filter-in-small":[D,[N,B(P)],(e,[t,o])=>o.value.indexOf(e.properties()[t.value])>=0],"filter-in-large":[D,[N,B(P)],(e,[t,o])=>function(e,t,o,r){for(;o<=r;){const i=o+r>>1;if(t[i]===e)return!0;t[i]>e?r=i-1:o=i+1}return!1}(e.properties()[t.value],o.value,0,o.value.length-1)],all:{type:D,overloads:[[[D,D],(e,[t,o])=>t.evaluate(e)&&o.evaluate(e)],[Qt(D),(e,t)=>{for(const o of t)if(!o.evaluate(e))return!1;return!0}]]},any:{type:D,overloads:[[[D,D],(e,[t,o])=>t.evaluate(e)||o.evaluate(e)],[Qt(D),(e,t)=>{for(const o of t)if(o.evaluate(e))return!0;return!1}]]},"!":[D,[D],(e,[t])=>!t.evaluate(e)],"is-supported-script":[D,[N],(e,[t])=>{const o=e.globals&&e.globals.isSupportedScript;return!o||o(t.evaluate(e))}],upcase:[N,[N],(e,[t])=>t.evaluate(e).toUpperCase()],downcase:[N,[N],(e,[t])=>t.evaluate(e).toLowerCase()],concat:[N,Qt(P),(e,t)=>t.map((t=>ne(t.evaluate(e)))).join("")],"resolved-locale":[N,[F],(e,[t])=>t.evaluate(e).resolvedLocale()]});var eo=Zt;function to(e){return{result:"success",value:e}}function oo(e){return{result:"error",value:e}}function ro(e){return!!e.expression&&e.expression.interpolated}function io(e){return e instanceof Number?"number":e instanceof String?"string":e instanceof Boolean?"boolean":Array.isArray(e)?"array":null===e?"null":typeof e}function no(e){return"object"==typeof e&&null!==e&&!Array.isArray(e)}function ao(e){return e}function so(e,t){const o="color"===t.type,r=e.stops&&"object"==typeof e.stops[0][0],i=r||void 0!==e.property,n=r||!i,a=e.type||(ro(t)?"exponential":"interval");if(o&&((e=C({},e)).stops&&(e.stops=e.stops.map((e=>[e[0],Y.parse(e[1])]))),e.default?e.default=Y.parse(e.default):e.default=Y.parse(t.default)),e.colorSpace&&"rgb"!==e.colorSpace&&!bt[e.colorSpace])throw new Error(`Unknown color space: ${e.colorSpace}`);let s,l,u;if("exponential"===a)s=po;else if("interval"===a)s=co;else if("categorical"===a){s=uo,l=Object.create(null);for(const t of e.stops)l[t[0]]=t[1];u=typeof e.stops[0][0]}else{if("identity"!==a)throw new Error(`Unknown function type "${a}"`);s=ho}if(r){const o={},r=[];for(let t=0;te[0])),evaluate:({zoom:o},r)=>po({stops:i,base:e.base},t,o).evaluate(o,r)}}if(n){const o="exponential"===a?{name:"exponential",base:void 0!==e.base?e.base:1}:null;return{kind:"camera",interpolationType:o,interpolationFactor:wt.interpolationFactor.bind(void 0,o),zoomStops:e.stops.map((e=>e[0])),evaluate:({zoom:o})=>s(e,t,o,l,u)}}return{kind:"source",evaluate(o,r){const i=r&&r.properties?r.properties[e.property]:void 0;return void 0===i?lo(e.default,t.default):s(e,t,i,l,u)}}}function lo(e,t,o){return void 0!==e?e:void 0!==t?t:void 0!==o?o:void 0}function uo(e,t,o,r,i){return lo(typeof o===i?r[o]:void 0,e.default,t.default)}function co(e,t,o){if("number"!==io(o))return lo(e.default,t.default);const r=e.stops.length;if(1===r)return e.stops[0][1];if(o<=e.stops[0][0])return e.stops[0][1];if(o>=e.stops[r-1][0])return e.stops[r-1][1];const i=Ze(e.stops.map((e=>e[0])),o);return e.stops[i][1]}function po(e,t,o){const r=void 0!==e.base?e.base:1;if("number"!==io(o))return lo(e.default,t.default);const i=e.stops.length;if(1===i)return e.stops[0][1];if(o<=e.stops[0][0])return e.stops[0][1];if(o>=e.stops[i-1][0])return e.stops[i-1][1];const n=Ze(e.stops.map((e=>e[0])),o),a=function(e,t,o,r){const i=r-o,n=e-o;return 0===i?0:1===t?n/i:(Math.pow(t,n)-1)/(Math.pow(t,i)-1)}(o,r,e.stops[n][0],e.stops[n+1][0]),s=e.stops[n][1],l=e.stops[n+1][1];let u=tt[t.type]||ao;if(e.colorSpace&&"rgb"!==e.colorSpace){const t=bt[e.colorSpace];u=(e,o)=>t.reverse(t.interpolate(t.forward(e),t.forward(o),a))}return"function"==typeof s.evaluate?{evaluate(...e){const t=s.evaluate.apply(void 0,e),o=l.evaluate.apply(void 0,e);if(void 0!==t&&void 0!==o)return u(t,o,a)}}:u(s,l,a)}function ho(e,t,o){return"color"===t.type?o=Y.parse(o):"formatted"===t.type?o=ee.fromString(o.toString()):"resolvedImage"===t.type?o=te.fromString(o.toString()):io(o)===t.type||"enum"===t.type&&t.values[o]||(o=void 0),lo(o,e.default,t.default)}class fo{constructor(e,t){var o;this.expression=e,this._warningHistory={},this._evaluator=new be,this._defaultValue=t?"color"===(o=t).type&&(no(o.default)||Array.isArray(o.default))?new Y(0,0,0,0):"color"===o.type?Y.parse(o.default)||null:void 0===o.default?null:o.default:null,this._enumValues=t&&"enum"===t.type?t.values:null}evaluateWithoutErrorHandling(e,t,o,r,i,n,a,s){return this._evaluator.globals=e,this._evaluator.feature=t,this._evaluator.featureState=o,this._evaluator.canonical=r||null,this._evaluator.availableImages=i||null,this._evaluator.formattedSection=n,this._evaluator.featureTileCoord=a||null,this._evaluator.featureDistanceData=s||null,this.expression.evaluate(this._evaluator)}evaluate(e,t,o,r,i,n,a,s){this._evaluator.globals=e,this._evaluator.feature=t||null,this._evaluator.featureState=o||null,this._evaluator.canonical=r||null,this._evaluator.availableImages=i||null,this._evaluator.formattedSection=n||null,this._evaluator.featureTileCoord=a||null,this._evaluator.featureDistanceData=s||null;try{const e=this.expression.evaluate(this._evaluator);if(null==e||"number"==typeof e&&e!=e)return this._defaultValue;if(this._enumValues&&!(e in this._enumValues))throw new le(`Expected value to be one of ${Object.keys(this._enumValues).map((e=>JSON.stringify(e))).join(", ")}, but found ${JSON.stringify(e)} instead.`);return e}catch(e){return this._warningHistory[e.message]||(this._warningHistory[e.message]=!0,"undefined"!=typeof console&&console.warn(e.message)),this._defaultValue}}}function mo(e){return Array.isArray(e)&&e.length>0&&"string"==typeof e[0]&&e[0]in eo}function yo(e,t){const o=new He(eo,[],t?function(e){const t={color:L,string:N,number:q,enum:N,boolean:D,formatted:$,resolvedImage:U};return"array"===e.type?B(t[e.value]||P,e.length):t[e.type]}(t):void 0),r=o.parse(e,void 0,void 0,void 0,t&&"string"===t.type?{typeAnnotation:"coerce"}:void 0);return r?to(new fo(r,t)):oo(o.errors)}class go{constructor(e,t){this.kind=e,this._styleExpression=t,this.isStateDependent="constant"!==e&&!Ue(t.expression)}evaluateWithoutErrorHandling(e,t,o,r,i,n){return this._styleExpression.evaluateWithoutErrorHandling(e,t,o,r,i,n)}evaluate(e,t,o,r,i,n){return this._styleExpression.evaluate(e,t,o,r,i,n)}}class bo{constructor(e,t,o,r){this.kind=e,this.zoomStops=o,this._styleExpression=t,this.isStateDependent="camera"!==e&&!Ue(t.expression),this.interpolationType=r}evaluateWithoutErrorHandling(e,t,o,r,i,n){return this._styleExpression.evaluateWithoutErrorHandling(e,t,o,r,i,n)}evaluate(e,t,o,r,i,n){return this._styleExpression.evaluate(e,t,o,r,i,n)}interpolationFactor(e,t,o){return this.interpolationType?wt.interpolationFactor(this.interpolationType,e,t,o):0}}function vo(e,t){if("error"===(e=yo(e,t)).result)return e;const o=e.value.expression,r=$e(o);if(!r&&("data-driven"!==(i=t)["property-type"]&&"cross-faded-data-driven"!==i["property-type"]))return oo([new S("","data expressions not supported")]);var i;const n=Be(o,["zoom","pitch","distance-from-center"]);if(!n&&!function(e){return!!e.expression&&e.expression.parameters.indexOf("zoom")>-1}(t))return oo([new S("","zoom expressions not supported")]);const a=wo(o);if(!a&&!n)return oo([new S("",'"zoom" expression may only be used as input to a top-level "step" or "interpolate" expression.')]);if(a instanceof S)return oo([a]);if(a instanceof wt&&!ro(t))return oo([new S("",'"interpolate" expressions cannot be used with this property')]);if(!a)return to(new go(r?"constant":"source",e.value));const s=a instanceof wt?a.interpolation:void 0;return to(new bo(r?"camera":"composite",e.value,a.labels,s))}class xo{constructor(e,t){this._parameters=e,this._specification=t,C(this,so(this._parameters,this._specification))}static deserialize(e){return new xo(e._parameters,e._specification)}static serialize(e){return{_parameters:e._parameters,_specification:e._specification}}}function wo(e){let t=null;if(e instanceof zt)t=wo(e.result);else if(e instanceof jt){for(const o of e.args)if(t=wo(o),t)break}else(e instanceof Ye||e instanceof wt)&&e.input instanceof xe&&"zoom"===e.input.name&&(t=e);return t instanceof S||e.eachChild((e=>{const o=wo(e);o instanceof S?t=o:!t&&o?t=new S("",'"zoom" expression may only be used as input to a top-level "step" or "interpolate" expression.'):t&&o&&t!==o&&(t=new S("",'Only one zoom-based "step" or "interpolate" subexpression may be used in an expression.'))})),t}function ko(e){return"object"==typeof e?["literal",e]:e}function jo(e){switch(e.colorSpace){case"hcl":return"interpolate-hcl";case"lab":return"interpolate-lab";default:return"interpolate"}}function To(e,t){const o=ko(function(e,t){return void 0!==e?e:void 0!==t?t:void 0}(e.default,t.default));return void 0===o&&"resolvedImage"===t.type?"":o}function zo(e,t,o){const r=Co(e,t),i=["get",e.property];if("categorical"===r&&"boolean"==typeof o[0][0]){const r=["case"];for(const e of o)r.push(["==",i,e[0]],e[1]);return r.push(To(e,t)),r}if("categorical"===r){const r=["match",i];for(const e of o)Ao(r,e[0],e[1],!1);return r.push(To(e,t)),r}if("interval"===r){const t=["step",["number",i]];for(const e of o)Ao(t,e[0],e[1],!0);return _o(t),void 0===e.default?t:["case",["==",["typeof",i],"number"],t,ko(e.default)]}if("exponential"===r){const t=void 0!==e.base?e.base:1,r=[jo(e),1===t?["linear"]:["exponential",t],["number",i]];for(const e of o)Ao(r,e[0],e[1],!1);return void 0===e.default?r:["case",["==",["typeof",i],"number"],r,ko(e.default)]}throw new Error(`Unknown property function type ${r}`)}function _o(e){"step"===e[0]&&3===e.length&&(e.push(0),e.push(e[3]))}function Ao(e,t,o,r){e.length>3&&t===e[e.length-2]||(r&&2===e.length||e.push(t),e.push(o))}function Co(e,t){return e.type?e.type:t.expression.interpolated?"exponential":"interval"}function Eo(e){const t=["concat"],o=/{([^{}]+)}/g;let r=0;for(let i=o.exec(e);null!==i;i=o.exec(e)){const n=e.slice(r,o.lastIndex-i[0].length);r=o.lastIndex,n.length>0&&t.push(n),t.push(["get",i[1]])}if(1===t.length)return e;if(r",">=","<","<=","to-boolean"]),n((function(e,t){var o=function(){var e=function(e,t,o,r){for(o=o||{},r=e.length;r--;o[e[r]]=t);return o},t=[1,12],o=[1,13],r=[1,9],i=[1,10],n=[1,11],a=[1,14],s=[1,15],l=[14,18,22,24],u=[18,22],c=[22,24],p={trace:function(){},yy:{},symbols_:{error:2,JSONString:3,STRING:4,JSONNumber:5,NUMBER:6,JSONNullLiteral:7,NULL:8,JSONBooleanLiteral:9,TRUE:10,FALSE:11,JSONText:12,JSONValue:13,EOF:14,JSONObject:15,JSONArray:16,"{":17,"}":18,JSONMemberList:19,JSONMember:20,":":21,",":22,"[":23,"]":24,JSONElementList:25,$accept:0,$end:1},terminals_:{2:"error",4:"STRING",6:"NUMBER",8:"NULL",10:"TRUE",11:"FALSE",14:"EOF",17:"{",18:"}",21:":",22:",",23:"[",24:"]"},productions_:[0,[3,1],[5,1],[7,1],[9,1],[9,1],[12,2],[13,1],[13,1],[13,1],[13,1],[13,1],[13,1],[15,2],[15,3],[20,3],[19,1],[19,3],[16,2],[16,3],[25,1],[25,3]],performAction:function(e,t,o,r,i,n,a){var s=n.length-1;switch(i){case 1:this.$=new String(e.replace(/\\(\\|")/g,"$1").replace(/\\n/g,"\n").replace(/\\r/g,"\r").replace(/\\t/g,"\t").replace(/\\v/g,"\v").replace(/\\f/g,"\f").replace(/\\b/g,"\b")),this.$.__line__=this._$.first_line;break;case 2:this.$=new Number(e),this.$.__line__=this._$.first_line;break;case 3:this.$=null;break;case 4:this.$=new Boolean(!0),this.$.__line__=this._$.first_line;break;case 5:this.$=new Boolean(!1),this.$.__line__=this._$.first_line;break;case 6:return this.$=n[s-1];case 13:this.$={},Object.defineProperty(this.$,"__line__",{value:this._$.first_line,enumerable:!1});break;case 14:case 19:this.$=n[s-1],Object.defineProperty(this.$,"__line__",{value:this._$.first_line,enumerable:!1});break;case 15:this.$=[n[s-2],n[s]];break;case 16:this.$={},this.$[n[s][0]]=n[s][1];break;case 17:this.$=n[s-2],n[s-2][n[s][0]]=n[s][1];break;case 18:this.$=[],Object.defineProperty(this.$,"__line__",{value:this._$.first_line,enumerable:!1});break;case 20:this.$=[n[s]];break;case 21:this.$=n[s-2],n[s-2].push(n[s])}},table:[{3:5,4:t,5:6,6:o,7:3,8:r,9:4,10:i,11:n,12:1,13:2,15:7,16:8,17:a,23:s},{1:[3]},{14:[1,16]},e(l,[2,7]),e(l,[2,8]),e(l,[2,9]),e(l,[2,10]),e(l,[2,11]),e(l,[2,12]),e(l,[2,3]),e(l,[2,4]),e(l,[2,5]),e([14,18,21,22,24],[2,1]),e(l,[2,2]),{3:20,4:t,18:[1,17],19:18,20:19},{3:5,4:t,5:6,6:o,7:3,8:r,9:4,10:i,11:n,13:23,15:7,16:8,17:a,23:s,24:[1,21],25:22},{1:[2,6]},e(l,[2,13]),{18:[1,24],22:[1,25]},e(u,[2,16]),{21:[1,26]},e(l,[2,18]),{22:[1,28],24:[1,27]},e(c,[2,20]),e(l,[2,14]),{3:20,4:t,20:29},{3:5,4:t,5:6,6:o,7:3,8:r,9:4,10:i,11:n,13:30,15:7,16:8,17:a,23:s},e(l,[2,19]),{3:5,4:t,5:6,6:o,7:3,8:r,9:4,10:i,11:n,13:31,15:7,16:8,17:a,23:s},e(u,[2,17]),e(u,[2,15]),e(c,[2,21])],defaultActions:{16:[2,6]},parseError:function(e,t){if(!t.recoverable)throw new Error(e);this.trace(e)},parse:function(e){var t=this,o=[0],r=[null],i=[],n=this.table,a="",s=0,l=0,u=2,c=1,p=i.slice.call(arguments,1),d=Object.create(this.lexer),h={yy:{}};for(var f in this.yy)Object.prototype.hasOwnProperty.call(this.yy,f)&&(h.yy[f]=this.yy[f]);d.setInput(e,h.yy),h.yy.lexer=d,h.yy.parser=this,void 0===d.yylloc&&(d.yylloc={});var m=d.yylloc;i.push(m);var y=d.options&&d.options.ranges;function g(){var e;return"number"!=typeof(e=d.lex()||c)&&(e=t.symbols_[e]||e),e}"function"==typeof h.yy.parseError?this.parseError=h.yy.parseError:this.parseError=Object.getPrototypeOf(this).parseError;for(var b,v,x,w,k,j,T,z,_={};;){if(v=o[o.length-1],this.defaultActions[v]?x=this.defaultActions[v]:(null==b&&(b=g()),x=n[v]&&n[v][b]),void 0===x||!x.length||!x[0]){var A="";for(k in z=[],n[v])this.terminals_[k]&&k>u&&z.push("'"+this.terminals_[k]+"'");A=d.showPosition?"Parse error on line "+(s+1)+":\n"+d.showPosition()+"\nExpecting "+z.join(", ")+", got '"+(this.terminals_[b]||b)+"'":"Parse error on line "+(s+1)+": Unexpected "+(b==c?"end of input":"'"+(this.terminals_[b]||b)+"'"),this.parseError(A,{text:d.match,token:this.terminals_[b]||b,line:d.yylineno,loc:m,expected:z})}if(x[0]instanceof Array&&x.length>1)throw new Error("Parse Error: multiple actions possible at state: "+v+", token: "+b);switch(x[0]){case 1:o.push(b),r.push(d.yytext),i.push(d.yylloc),o.push(x[1]),b=null,l=d.yyleng,a=d.yytext,s=d.yylineno,m=d.yylloc;break;case 2:if(j=this.productions_[x[1]][1],_.$=r[r.length-j],_._$={first_line:i[i.length-(j||1)].first_line,last_line:i[i.length-1].last_line,first_column:i[i.length-(j||1)].first_column,last_column:i[i.length-1].last_column},y&&(_._$.range=[i[i.length-(j||1)].range[0],i[i.length-1].range[1]]),void 0!==(w=this.performAction.apply(_,[a,l,s,h.yy,x[1],r,i].concat(p))))return w;j&&(o=o.slice(0,-1*j*2),r=r.slice(0,-1*j),i=i.slice(0,-1*j)),o.push(this.productions_[x[1]][0]),r.push(_.$),i.push(_._$),T=n[o[o.length-2]][o[o.length-1]],o.push(T);break;case 3:return!0}}return!0}},d=function(){var e={EOF:1,parseError:function(e,t){if(!this.yy.parser)throw new Error(e);this.yy.parser.parseError(e,t)},setInput:function(e,t){return this.yy=t||this.yy||{},this._input=e,this._more=this._backtrack=this.done=!1,this.yylineno=this.yyleng=0,this.yytext=this.matched=this.match="",this.conditionStack=["INITIAL"],this.yylloc={first_line:1,first_column:0,last_line:1,last_column:0},this.options.ranges&&(this.yylloc.range=[0,0]),this.offset=0,this},input:function(){var e=this._input[0];return this.yytext+=e,this.yyleng++,this.offset++,this.match+=e,this.matched+=e,e.match(/(?:\r\n?|\n).*/g)?(this.yylineno++,this.yylloc.last_line++):this.yylloc.last_column++,this.options.ranges&&this.yylloc.range[1]++,this._input=this._input.slice(1),e},unput:function(e){var t=e.length,o=e.split(/(?:\r\n?|\n)/g);this._input=e+this._input,this.yytext=this.yytext.substr(0,this.yytext.length-t),this.offset-=t;var r=this.match.split(/(?:\r\n?|\n)/g);this.match=this.match.substr(0,this.match.length-1),this.matched=this.matched.substr(0,this.matched.length-1),o.length-1&&(this.yylineno-=o.length-1);var i=this.yylloc.range;return this.yylloc={first_line:this.yylloc.first_line,last_line:this.yylineno+1,first_column:this.yylloc.first_column,last_column:o?(o.length===r.length?this.yylloc.first_column:0)+r[r.length-o.length].length-o[0].length:this.yylloc.first_column-t},this.options.ranges&&(this.yylloc.range=[i[0],i[0]+this.yyleng-t]),this.yyleng=this.yytext.length,this},more:function(){return this._more=!0,this},reject:function(){return this.options.backtrack_lexer?(this._backtrack=!0,this):this.parseError("Lexical error on line "+(this.yylineno+1)+". You can only invoke reject() in the lexer when the lexer is of the backtracking persuasion (options.backtrack_lexer = true).\n"+this.showPosition(),{text:"",token:null,line:this.yylineno})},less:function(e){this.unput(this.match.slice(e))},pastInput:function(){var e=this.matched.substr(0,this.matched.length-this.match.length);return(e.length>20?"...":"")+e.substr(-20).replace(/\n/g,"")},upcomingInput:function(){var e=this.match;return e.length<20&&(e+=this._input.substr(0,20-e.length)),(e.substr(0,20)+(e.length>20?"...":"")).replace(/\n/g,"")},showPosition:function(){var e=this.pastInput(),t=new Array(e.length+1).join("-");return e+this.upcomingInput()+"\n"+t+"^"},test_match:function(e,t){var o,r,i;if(this.options.backtrack_lexer&&(i={yylineno:this.yylineno,yylloc:{first_line:this.yylloc.first_line,last_line:this.last_line,first_column:this.yylloc.first_column,last_column:this.yylloc.last_column},yytext:this.yytext,match:this.match,matches:this.matches,matched:this.matched,yyleng:this.yyleng,offset:this.offset,_more:this._more,_input:this._input,yy:this.yy,conditionStack:this.conditionStack.slice(0),done:this.done},this.options.ranges&&(i.yylloc.range=this.yylloc.range.slice(0))),(r=e[0].match(/(?:\r\n?|\n).*/g))&&(this.yylineno+=r.length),this.yylloc={first_line:this.yylloc.last_line,last_line:this.yylineno+1,first_column:this.yylloc.last_column,last_column:r?r[r.length-1].length-r[r.length-1].match(/\r?\n?/)[0].length:this.yylloc.last_column+e[0].length},this.yytext+=e[0],this.match+=e[0],this.matches=e,this.yyleng=this.yytext.length,this.options.ranges&&(this.yylloc.range=[this.offset,this.offset+=this.yyleng]),this._more=!1,this._backtrack=!1,this._input=this._input.slice(e[0].length),this.matched+=e[0],o=this.performAction.call(this,this.yy,this,t,this.conditionStack[this.conditionStack.length-1]),this.done&&this._input&&(this.done=!1),o)return o;if(this._backtrack){for(var n in i)this[n]=i[n];return!1}return!1},next:function(){if(this.done)return this.EOF;var e,t,o,r;this._input||(this.done=!0),this._more||(this.yytext="",this.match="");for(var i=this._currentRules(),n=0;nt[0].length)){if(t=o,r=n,this.options.backtrack_lexer){if(!1!==(e=this.test_match(o,i[n])))return e;if(this._backtrack){t=!1;continue}return!1}if(!this.options.flex)break}return t?!1!==(e=this.test_match(t,i[r]))&&e:""===this._input?this.EOF:this.parseError("Lexical error on line "+(this.yylineno+1)+". Unrecognized text.\n"+this.showPosition(),{text:"",token:null,line:this.yylineno})},lex:function(){return this.next()||this.lex()},begin:function(e){this.conditionStack.push(e)},popState:function(){return this.conditionStack.length-1>0?this.conditionStack.pop():this.conditionStack[0]},_currentRules:function(){return this.conditionStack.length&&this.conditionStack[this.conditionStack.length-1]?this.conditions[this.conditionStack[this.conditionStack.length-1]].rules:this.conditions.INITIAL.rules},topState:function(e){return(e=this.conditionStack.length-1-Math.abs(e||0))>=0?this.conditionStack[e]:"INITIAL"},pushState:function(e){this.begin(e)},stateStackSize:function(){return this.conditionStack.length},options:{},performAction:function(e,t,o,r){switch(o){case 0:break;case 1:return 6;case 2:return t.yytext=t.yytext.substr(1,t.yyleng-2),4;case 3:return 17;case 4:return 18;case 5:return 23;case 6:return 24;case 7:return 22;case 8:return 21;case 9:return 10;case 10:return 11;case 11:return 8;case 12:return 14;case 13:return"INVALID"}},rules:[/^(?:\s+)/,/^(?:(-?([0-9]|[1-9][0-9]+))(\.[0-9]+)?([eE][-+]?[0-9]+)?\b)/,/^(?:"(?:\\[\\"bfnrt/]|\\u[a-fA-F0-9]{4}|[^\\\0-\x09\x0a-\x1f"])*")/,/^(?:\{)/,/^(?:\})/,/^(?:\[)/,/^(?:\])/,/^(?:,)/,/^(?::)/,/^(?:true\b)/,/^(?:false\b)/,/^(?:null\b)/,/^(?:$)/,/^(?:.)/],conditions:{INITIAL:{rules:[0,1,2,3,4,5,6,7,8,9,10,11,12,13],inclusive:!0}}};return e}();function h(){this.yy={}}return p.lexer=d,h.prototype=p,p.Parser=h,new h}();t.parser=o,t.Parser=o.Parser,t.parse=function(){return o.parse.apply(o,arguments)}})),new Set(["vector","raster","raster-dem"]);const So={StyleExpression:fo,isExpression:mo,isExpressionFilter:function e(t){if(!0===t||!1===t)return!0;if(!Array.isArray(t)||0===t.length)return!1;switch(t[0]){case"has":return t.length>=2&&"$id"!==t[1]&&"$type"!==t[1];case"in":return t.length>=3&&("string"!=typeof t[1]||Array.isArray(t[2]));case"!in":case"!has":case"none":return!1;case"==":case"!=":case">":case">=":case"<":case"<=":return 3!==t.length||Array.isArray(t[1])||Array.isArray(t[2]);case"any":case"all":for(const o of t.slice(1))if(!e(o)&&"boolean"!=typeof o)return!1;return!0;default:return!0}},createExpression:yo,createPropertyExpression:vo,normalizePropertyExpression:function(e,t){if(no(e))return new xo(e,t);if(mo(e)){const o=vo(e,t);if("error"===o.result)throw new Error(o.value.map((e=>`${e.key}: ${e.message}`)).join(", "));return o.value}{let o=e;return"string"==typeof e&&"color"===t.type&&(o=Y.parse(e)),{kind:"constant",evaluate:()=>o}}},ZoomConstantExpression:go,ZoomDependentExpression:bo,StylePropertyFunction:xo},Oo={convertFunction:function(e,t){let o=e.stops;if(!o)return function(e,t){const o=["get",e.property];if(void 0===e.default)return"string"===t.type?["string",o]:o;if("enum"===t.type)return["match",o,Object.keys(t.values),o,e.default];{const r=["color"===t.type?"to-color":t.type,o,ko(e.default)];return"array"===t.type&&r.splice(1,0,t.value,t.length||null),r}}(e,t);const r=o&&"object"==typeof o[0][0],i=r||void 0!==e.property,n=r||!i;return o=o.map((e=>!i&&t.tokens&&"string"==typeof e[1]?[e[0],Eo(e[1])]:[e[0],ko(e[1])])),r?function(e,t,o){const r={},i={},n=[];for(let t=0;t{e.exports=o(609)},448:(e,t,o)=>{"use strict";var r=o(867),i=o(26),n=o(372),a=o(327),s=o(97),l=o(109),u=o(985),c=o(874),p=o(648),d=o(644),h=o(205);e.exports=function(e){return new Promise((function(t,o){var f,m=e.data,y=e.headers,g=e.responseType;function b(){e.cancelToken&&e.cancelToken.unsubscribe(f),e.signal&&e.signal.removeEventListener("abort",f)}r.isFormData(m)&&r.isStandardBrowserEnv()&&delete y["Content-Type"];var v=new XMLHttpRequest;if(e.auth){var x=e.auth.username||"",w=e.auth.password?unescape(encodeURIComponent(e.auth.password)):"";y.Authorization="Basic "+btoa(x+":"+w)}var k=s(e.baseURL,e.url);function j(){if(v){var r="getAllResponseHeaders"in v?l(v.getAllResponseHeaders()):null,n={data:g&&"text"!==g&&"json"!==g?v.response:v.responseText,status:v.status,statusText:v.statusText,headers:r,config:e,request:v};i((function(e){t(e),b()}),(function(e){o(e),b()}),n),v=null}}if(v.open(e.method.toUpperCase(),a(k,e.params,e.paramsSerializer),!0),v.timeout=e.timeout,"onloadend"in v?v.onloadend=j:v.onreadystatechange=function(){v&&4===v.readyState&&(0!==v.status||v.responseURL&&0===v.responseURL.indexOf("file:"))&&setTimeout(j)},v.onabort=function(){v&&(o(new p("Request aborted",p.ECONNABORTED,e,v)),v=null)},v.onerror=function(){o(new p("Network Error",p.ERR_NETWORK,e,v,v)),v=null},v.ontimeout=function(){var t=e.timeout?"timeout of "+e.timeout+"ms exceeded":"timeout exceeded",r=e.transitional||c;e.timeoutErrorMessage&&(t=e.timeoutErrorMessage),o(new p(t,r.clarifyTimeoutError?p.ETIMEDOUT:p.ECONNABORTED,e,v)),v=null},r.isStandardBrowserEnv()){var T=(e.withCredentials||u(k))&&e.xsrfCookieName?n.read(e.xsrfCookieName):void 0;T&&(y[e.xsrfHeaderName]=T)}"setRequestHeader"in v&&r.forEach(y,(function(e,t){void 0===m&&"content-type"===t.toLowerCase()?delete y[t]:v.setRequestHeader(t,e)})),r.isUndefined(e.withCredentials)||(v.withCredentials=!!e.withCredentials),g&&"json"!==g&&(v.responseType=e.responseType),"function"==typeof e.onDownloadProgress&&v.addEventListener("progress",e.onDownloadProgress),"function"==typeof e.onUploadProgress&&v.upload&&v.upload.addEventListener("progress",e.onUploadProgress),(e.cancelToken||e.signal)&&(f=function(e){v&&(o(!e||e&&e.type?new d:e),v.abort(),v=null)},e.cancelToken&&e.cancelToken.subscribe(f),e.signal&&(e.signal.aborted?f():e.signal.addEventListener("abort",f))),m||(m=null);var z=h(k);z&&-1===["http","https","file"].indexOf(z)?o(new p("Unsupported protocol "+z+":",p.ERR_BAD_REQUEST,e)):v.send(m)}))}},609:(e,t,o)=>{"use strict";var r=o(867),i=o(849),n=o(321),a=o(185),s=function e(t){var o=new n(t),s=i(n.prototype.request,o);return r.extend(s,n.prototype,o),r.extend(s,o),s.create=function(o){return e(a(t,o))},s}(o(546));s.Axios=n,s.CanceledError=o(644),s.CancelToken=o(972),s.isCancel=o(502),s.VERSION=o(288).version,s.toFormData=o(675),s.AxiosError=o(648),s.Cancel=s.CanceledError,s.all=function(e){return Promise.all(e)},s.spread=o(713),s.isAxiosError=o(268),e.exports=s,e.exports.default=s},972:(e,t,o)=>{"use strict";var r=o(644);function i(e){if("function"!=typeof e)throw new TypeError("executor must be a function.");var t;this.promise=new Promise((function(e){t=e}));var o=this;this.promise.then((function(e){if(o._listeners){var t,r=o._listeners.length;for(t=0;t{"use strict";var r=o(648);function i(e){r.call(this,null==e?"canceled":e,r.ERR_CANCELED),this.name="CanceledError"}o(867).inherits(i,r,{__CANCEL__:!0}),e.exports=i},502:e=>{"use strict";e.exports=function(e){return!(!e||!e.__CANCEL__)}},321:(e,t,o)=>{"use strict";var r=o(867),i=o(327),n=o(782),a=o(572),s=o(185),l=o(97),u=o(875),c=u.validators;function p(e){this.defaults=e,this.interceptors={request:new n,response:new n}}p.prototype.request=function(e,t){"string"==typeof e?(t=t||{}).url=e:t=e||{},(t=s(this.defaults,t)).method?t.method=t.method.toLowerCase():this.defaults.method?t.method=this.defaults.method.toLowerCase():t.method="get";var o=t.transitional;void 0!==o&&u.assertOptions(o,{silentJSONParsing:c.transitional(c.boolean),forcedJSONParsing:c.transitional(c.boolean),clarifyTimeoutError:c.transitional(c.boolean)},!1);var r=[],i=!0;this.interceptors.request.forEach((function(e){"function"==typeof e.runWhen&&!1===e.runWhen(t)||(i=i&&e.synchronous,r.unshift(e.fulfilled,e.rejected))}));var n,l=[];if(this.interceptors.response.forEach((function(e){l.push(e.fulfilled,e.rejected)})),!i){var p=[a,void 0];for(Array.prototype.unshift.apply(p,r),p=p.concat(l),n=Promise.resolve(t);p.length;)n=n.then(p.shift(),p.shift());return n}for(var d=t;r.length;){var h=r.shift(),f=r.shift();try{d=h(d)}catch(e){f(e);break}}try{n=a(d)}catch(e){return Promise.reject(e)}for(;l.length;)n=n.then(l.shift(),l.shift());return n},p.prototype.getUri=function(e){e=s(this.defaults,e);var t=l(e.baseURL,e.url);return i(t,e.params,e.paramsSerializer)},r.forEach(["delete","get","head","options"],(function(e){p.prototype[e]=function(t,o){return this.request(s(o||{},{method:e,url:t,data:(o||{}).data}))}})),r.forEach(["post","put","patch"],(function(e){function t(t){return function(o,r,i){return this.request(s(i||{},{method:e,headers:t?{"Content-Type":"multipart/form-data"}:{},url:o,data:r}))}}p.prototype[e]=t(),p.prototype[e+"Form"]=t(!0)})),e.exports=p},648:(e,t,o)=>{"use strict";var r=o(867);function i(e,t,o,r,i){Error.call(this),this.message=e,this.name="AxiosError",t&&(this.code=t),o&&(this.config=o),r&&(this.request=r),i&&(this.response=i)}r.inherits(i,Error,{toJSON:function(){return{message:this.message,name:this.name,description:this.description,number:this.number,fileName:this.fileName,lineNumber:this.lineNumber,columnNumber:this.columnNumber,stack:this.stack,config:this.config,code:this.code,status:this.response&&this.response.status?this.response.status:null}}});var n=i.prototype,a={};["ERR_BAD_OPTION_VALUE","ERR_BAD_OPTION","ECONNABORTED","ETIMEDOUT","ERR_NETWORK","ERR_FR_TOO_MANY_REDIRECTS","ERR_DEPRECATED","ERR_BAD_RESPONSE","ERR_BAD_REQUEST","ERR_CANCELED"].forEach((function(e){a[e]={value:e}})),Object.defineProperties(i,a),Object.defineProperty(n,"isAxiosError",{value:!0}),i.from=function(e,t,o,a,s,l){var u=Object.create(n);return r.toFlatObject(e,u,(function(e){return e!==Error.prototype})),i.call(u,e.message,t,o,a,s),u.name=e.name,l&&Object.assign(u,l),u},e.exports=i},782:(e,t,o)=>{"use strict";var r=o(867);function i(){this.handlers=[]}i.prototype.use=function(e,t,o){return this.handlers.push({fulfilled:e,rejected:t,synchronous:!!o&&o.synchronous,runWhen:o?o.runWhen:null}),this.handlers.length-1},i.prototype.eject=function(e){this.handlers[e]&&(this.handlers[e]=null)},i.prototype.forEach=function(e){r.forEach(this.handlers,(function(t){null!==t&&e(t)}))},e.exports=i},97:(e,t,o)=>{"use strict";var r=o(793),i=o(303);e.exports=function(e,t){return e&&!r(t)?i(e,t):t}},572:(e,t,o)=>{"use strict";var r=o(867),i=o(527),n=o(502),a=o(546),s=o(644);function l(e){if(e.cancelToken&&e.cancelToken.throwIfRequested(),e.signal&&e.signal.aborted)throw new s}e.exports=function(e){return l(e),e.headers=e.headers||{},e.data=i.call(e,e.data,e.headers,e.transformRequest),e.headers=r.merge(e.headers.common||{},e.headers[e.method]||{},e.headers),r.forEach(["delete","get","head","post","put","patch","common"],(function(t){delete e.headers[t]})),(e.adapter||a.adapter)(e).then((function(t){return l(e),t.data=i.call(e,t.data,t.headers,e.transformResponse),t}),(function(t){return n(t)||(l(e),t&&t.response&&(t.response.data=i.call(e,t.response.data,t.response.headers,e.transformResponse))),Promise.reject(t)}))}},185:(e,t,o)=>{"use strict";var r=o(867);e.exports=function(e,t){t=t||{};var o={};function i(e,t){return r.isPlainObject(e)&&r.isPlainObject(t)?r.merge(e,t):r.isPlainObject(t)?r.merge({},t):r.isArray(t)?t.slice():t}function n(o){return r.isUndefined(t[o])?r.isUndefined(e[o])?void 0:i(void 0,e[o]):i(e[o],t[o])}function a(e){if(!r.isUndefined(t[e]))return i(void 0,t[e])}function s(o){return r.isUndefined(t[o])?r.isUndefined(e[o])?void 0:i(void 0,e[o]):i(void 0,t[o])}function l(o){return o in t?i(e[o],t[o]):o in e?i(void 0,e[o]):void 0}var u={url:a,method:a,data:a,baseURL:s,transformRequest:s,transformResponse:s,paramsSerializer:s,timeout:s,timeoutMessage:s,withCredentials:s,adapter:s,responseType:s,xsrfCookieName:s,xsrfHeaderName:s,onUploadProgress:s,onDownloadProgress:s,decompress:s,maxContentLength:s,maxBodyLength:s,beforeRedirect:s,transport:s,httpAgent:s,httpsAgent:s,cancelToken:s,socketPath:s,responseEncoding:s,validateStatus:l};return r.forEach(Object.keys(e).concat(Object.keys(t)),(function(e){var t=u[e]||n,i=t(e);r.isUndefined(i)&&t!==l||(o[e]=i)})),o}},26:(e,t,o)=>{"use strict";var r=o(648);e.exports=function(e,t,o){var i=o.config.validateStatus;o.status&&i&&!i(o.status)?t(new r("Request failed with status code "+o.status,[r.ERR_BAD_REQUEST,r.ERR_BAD_RESPONSE][Math.floor(o.status/100)-4],o.config,o.request,o)):e(o)}},527:(e,t,o)=>{"use strict";var r=o(867),i=o(546);e.exports=function(e,t,o){var n=this||i;return r.forEach(o,(function(o){e=o.call(n,e,t)})),e}},546:(e,t,o)=>{"use strict";var r=o(867),i=o(16),n=o(648),a=o(874),s=o(675),l={"Content-Type":"application/x-www-form-urlencoded"};function u(e,t){!r.isUndefined(e)&&r.isUndefined(e["Content-Type"])&&(e["Content-Type"]=t)}var c,p={transitional:a,adapter:(("undefined"!=typeof XMLHttpRequest||"undefined"!=typeof process&&"[object process]"===Object.prototype.toString.call(process))&&(c=o(448)),c),transformRequest:[function(e,t){if(i(t,"Accept"),i(t,"Content-Type"),r.isFormData(e)||r.isArrayBuffer(e)||r.isBuffer(e)||r.isStream(e)||r.isFile(e)||r.isBlob(e))return e;if(r.isArrayBufferView(e))return e.buffer;if(r.isURLSearchParams(e))return u(t,"application/x-www-form-urlencoded;charset=utf-8"),e.toString();var o,n=r.isObject(e),a=t&&t["Content-Type"];if((o=r.isFileList(e))||n&&"multipart/form-data"===a){var l=this.env&&this.env.FormData;return s(o?{"files[]":e}:e,l&&new l)}return n||"application/json"===a?(u(t,"application/json"),function(e,t,o){if(r.isString(e))try{return(0,JSON.parse)(e),r.trim(e)}catch(e){if("SyntaxError"!==e.name)throw e}return(0,JSON.stringify)(e)}(e)):e}],transformResponse:[function(e){var t=this.transitional||p.transitional,o=t&&t.silentJSONParsing,i=t&&t.forcedJSONParsing,a=!o&&"json"===this.responseType;if(a||i&&r.isString(e)&&e.length)try{return JSON.parse(e)}catch(e){if(a){if("SyntaxError"===e.name)throw n.from(e,n.ERR_BAD_RESPONSE,this,null,this.response);throw e}}return e}],timeout:0,xsrfCookieName:"XSRF-TOKEN",xsrfHeaderName:"X-XSRF-TOKEN",maxContentLength:-1,maxBodyLength:-1,env:{FormData:o(623)},validateStatus:function(e){return e>=200&&e<300},headers:{common:{Accept:"application/json, text/plain, */*"}}};r.forEach(["delete","get","head"],(function(e){p.headers[e]={}})),r.forEach(["post","put","patch"],(function(e){p.headers[e]=r.merge(l)})),e.exports=p},874:e=>{"use strict";e.exports={silentJSONParsing:!0,forcedJSONParsing:!0,clarifyTimeoutError:!1}},288:e=>{e.exports={version:"0.27.2"}},849:e=>{"use strict";e.exports=function(e,t){return function(){for(var o=new Array(arguments.length),r=0;r{"use strict";var r=o(867);function i(e){return encodeURIComponent(e).replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}e.exports=function(e,t,o){if(!t)return e;var n;if(o)n=o(t);else if(r.isURLSearchParams(t))n=t.toString();else{var a=[];r.forEach(t,(function(e,t){null!=e&&(r.isArray(e)?t+="[]":e=[e],r.forEach(e,(function(e){r.isDate(e)?e=e.toISOString():r.isObject(e)&&(e=JSON.stringify(e)),a.push(i(t)+"="+i(e))})))})),n=a.join("&")}if(n){var s=e.indexOf("#");-1!==s&&(e=e.slice(0,s)),e+=(-1===e.indexOf("?")?"?":"&")+n}return e}},303:e=>{"use strict";e.exports=function(e,t){return t?e.replace(/\/+$/,"")+"/"+t.replace(/^\/+/,""):e}},372:(e,t,o)=>{"use strict";var r=o(867);e.exports=r.isStandardBrowserEnv()?{write:function(e,t,o,i,n,a){var s=[];s.push(e+"="+encodeURIComponent(t)),r.isNumber(o)&&s.push("expires="+new Date(o).toGMTString()),r.isString(i)&&s.push("path="+i),r.isString(n)&&s.push("domain="+n),!0===a&&s.push("secure"),document.cookie=s.join("; ")},read:function(e){var t=document.cookie.match(new RegExp("(^|;\\s*)("+e+")=([^;]*)"));return t?decodeURIComponent(t[3]):null},remove:function(e){this.write(e,"",Date.now()-864e5)}}:{write:function(){},read:function(){return null},remove:function(){}}},793:e=>{"use strict";e.exports=function(e){return/^([a-z][a-z\d+\-.]*:)?\/\//i.test(e)}},268:(e,t,o)=>{"use strict";var r=o(867);e.exports=function(e){return r.isObject(e)&&!0===e.isAxiosError}},985:(e,t,o)=>{"use strict";var r=o(867);e.exports=r.isStandardBrowserEnv()?function(){var e,t=/(msie|trident)/i.test(navigator.userAgent),o=document.createElement("a");function i(e){var r=e;return t&&(o.setAttribute("href",r),r=o.href),o.setAttribute("href",r),{href:o.href,protocol:o.protocol?o.protocol.replace(/:$/,""):"",host:o.host,search:o.search?o.search.replace(/^\?/,""):"",hash:o.hash?o.hash.replace(/^#/,""):"",hostname:o.hostname,port:o.port,pathname:"/"===o.pathname.charAt(0)?o.pathname:"/"+o.pathname}}return e=i(window.location.href),function(t){var o=r.isString(t)?i(t):t;return o.protocol===e.protocol&&o.host===e.host}}():function(){return!0}},16:(e,t,o)=>{"use strict";var r=o(867);e.exports=function(e,t){r.forEach(e,(function(o,r){r!==t&&r.toUpperCase()===t.toUpperCase()&&(e[t]=o,delete e[r])}))}},623:e=>{e.exports=null},109:(e,t,o)=>{"use strict";var r=o(867),i=["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"];e.exports=function(e){var t,o,n,a={};return e?(r.forEach(e.split("\n"),(function(e){if(n=e.indexOf(":"),t=r.trim(e.substr(0,n)).toLowerCase(),o=r.trim(e.substr(n+1)),t){if(a[t]&&i.indexOf(t)>=0)return;a[t]="set-cookie"===t?(a[t]?a[t]:[]).concat([o]):a[t]?a[t]+", "+o:o}})),a):a}},205:e=>{"use strict";e.exports=function(e){var t=/^([-+\w]{1,25})(:?\/\/|:)/.exec(e);return t&&t[1]||""}},713:e=>{"use strict";e.exports=function(e){return function(t){return e.apply(null,t)}}},675:(e,t,o)=>{"use strict";var r=o(867);e.exports=function(e,t){t=t||new FormData;var o=[];function i(e){return null===e?"":r.isDate(e)?e.toISOString():r.isArrayBuffer(e)||r.isTypedArray(e)?"function"==typeof Blob?new Blob([e]):Buffer.from(e):e}return function e(n,a){if(r.isPlainObject(n)||r.isArray(n)){if(-1!==o.indexOf(n))throw Error("Circular reference detected in "+a);o.push(n),r.forEach(n,(function(o,n){if(!r.isUndefined(o)){var s,l=a?a+"."+n:n;if(o&&!a&&"object"==typeof o)if(r.endsWith(n,"{}"))o=JSON.stringify(o);else if(r.endsWith(n,"[]")&&(s=r.toArray(o)))return void s.forEach((function(e){!r.isUndefined(e)&&t.append(l,i(e))}));e(o,l)}})),o.pop()}else t.append(a,i(n))}(e),t}},875:(e,t,o)=>{"use strict";var r=o(288).version,i=o(648),n={};["object","boolean","number","function","string","symbol"].forEach((function(e,t){n[e]=function(o){return typeof o===e||"a"+(t<1?"n ":" ")+e}}));var a={};n.transitional=function(e,t,o){function n(e,t){return"[Axios v"+r+"] Transitional option '"+e+"'"+t+(o?". "+o:"")}return function(o,r,s){if(!1===e)throw new i(n(r," has been removed"+(t?" in "+t:"")),i.ERR_DEPRECATED);return t&&!a[r]&&(a[r]=!0,console.warn(n(r," has been deprecated since v"+t+" and will be removed in the near future"))),!e||e(o,r,s)}},e.exports={assertOptions:function(e,t,o){if("object"!=typeof e)throw new i("options must be an object",i.ERR_BAD_OPTION_VALUE);for(var r=Object.keys(e),n=r.length;n-- >0;){var a=r[n],s=t[a];if(s){var l=e[a],u=void 0===l||s(l,a,e);if(!0!==u)throw new i("option "+a+" must be "+u,i.ERR_BAD_OPTION_VALUE)}else if(!0!==o)throw new i("Unknown option "+a,i.ERR_BAD_OPTION)}},validators:n}},867:(e,t,o)=>{"use strict";var r,i=o(849),n=Object.prototype.toString,a=(r=Object.create(null),function(e){var t=n.call(e);return r[t]||(r[t]=t.slice(8,-1).toLowerCase())});function s(e){return e=e.toLowerCase(),function(t){return a(t)===e}}function l(e){return Array.isArray(e)}function u(e){return void 0===e}var c=s("ArrayBuffer");function p(e){return null!==e&&"object"==typeof e}function d(e){if("object"!==a(e))return!1;var t=Object.getPrototypeOf(e);return null===t||t===Object.prototype}var h=s("Date"),f=s("File"),m=s("Blob"),y=s("FileList");function g(e){return"[object Function]"===n.call(e)}var b=s("URLSearchParams");function v(e,t){if(null!=e)if("object"!=typeof e&&(e=[e]),l(e))for(var o=0,r=e.length;o0;)a[n=r[i]]||(t[n]=e[n],a[n]=!0);e=Object.getPrototypeOf(e)}while(e&&(!o||o(e,t))&&e!==Object.prototype);return t},kindOf:a,kindOfTest:s,endsWith:function(e,t,o){e=String(e),(void 0===o||o>e.length)&&(o=e.length),o-=t.length;var r=e.indexOf(t,o);return-1!==r&&r===o},toArray:function(e){if(!e)return null;var t=e.length;if(u(t))return null;for(var o=new Array(t);t-- >0;)o[t]=e[t];return o},isTypedArray:w,isFileList:y}},620:function(e,t,o){"use strict";var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0}),t.MapboxLegendControl=void 0;var i=o(770);Object.defineProperty(t,"MapboxLegendControl",{enumerable:!0,get:function(){return r(i).default}})},770:function(e,t,o){"use strict";var r=this&&this.__awaiter||function(e,t,o,r){return new(o||(o=Promise))((function(i,n){function a(e){try{l(r.next(e))}catch(e){n(e)}}function s(e){try{l(r.throw(e))}catch(e){n(e)}}function l(e){var t;e.done?i(e.value):(t=e.value,t instanceof o?t:new o((function(e){e(t)}))).then(a,s)}l((r=r.apply(e,t||[])).next())}))},i=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0});const n=o(640),a=i(o(335)),s=i(o(669));t.default=class{constructor(e,t){this.uncheckedLayers={},this.options={showDefault:!0,showCheckbox:!0,reverseOrder:!0,onlyRendered:!0,accesstoken:void 0,title:void 0},this.sprite={image:HTMLImageElement,json:JSON},this.targets=e,t&&(this.options=Object.assign(this.options,t)),this.onlyRendered=this.options.onlyRendered,this.onDocumentClick=this.onDocumentClick.bind(this)}getDefaultPosition(){return"top-right"}changeLayerVisibility(e,t){var o,r;t?(this.uncheckedLayers[e]&&delete this.uncheckedLayers[e],null===(o=this.map)||void 0===o||o.setLayoutProperty(e,"visibility","visible")):(this.uncheckedLayers[e]=e,null===(r=this.map)||void 0===r||r.setLayoutProperty(e,"visibility","none"));const i=document.getElementsByName(e);for(let e in i)"number"!=typeof i[e]&&(i[e].checked=t)}createLayerCheckbox(e){var t;if(!this.options.showCheckbox)return;const o=this,r=document.createElement("TD");r.className="legend-table-td";const i=document.createElement("input");i.setAttribute("type","checkbox"),i.setAttribute("name",e.id),i.setAttribute("value",e.id);const n=null===(t=this.map)||void 0===t?void 0:t.getLayoutProperty(e.id,"visibility");if(n){let t=!0;switch(n){case"none":t=!1;break;case"visible":t=!0,i.checked=!0}o.changeLayerVisibility(e.id,t)}else i.checked=!0;return i.addEventListener("click",(function(e){var t,r;const i=null===(t=e.target)||void 0===t?void 0:t.value,n=null===(r=e.target)||void 0===r?void 0:r.checked;o.changeLayerVisibility(i,n)})),r.appendChild(i),r}getLayerLegend(e){const t=this.map,o=null==t?void 0:t.getZoom(),r=this.sprite;let i=(0,a.default)({sprite:r,zoom:o,layer:e});var n=document.createElement("TR");const s=this.createLayerCheckbox(e);s&&n.appendChild(s);var l=document.createElement("TD");if(l.className="legend-table-td",i)switch(i.element){case"div":if(i.attributes.style.backgroundImage&&!["url(undefined)","url(null)"].includes(i.attributes.style.backgroundImage)){var u=document.createElement("img");u.src=i.attributes.style.backgroundImage.replace("url(","").replace(")",""),u.alt=e.id,u.style.cssText="height: 17px;",l.appendChild(u)}l.style.backgroundColor=i.attributes.style.backgroundColor,l.style.backgroundPosition=i.attributes.style.backgroundPosition,l.style.backgroundSize=i.attributes.style.backgroundSize,l.style.backgroundRepeat=i.attributes.style.backgroundRepeat,l.style.opacity=i.attributes.style.opacity;break;case"svg":let t=document.createElementNS("http://www.w3.org/2000/svg","svg");t.style.cssText="height: 17px;",t.setAttributeNS(null,"version","1.1"),Object.keys(i.attributes).forEach((e=>{t.setAttribute(e,i.attributes[e]);let o=document.createElementNS("http://www.w3.org/2000/svg","g");i.children.forEach((e=>{var t=document.createElementNS("http://www.w3.org/2000/svg",e.element);Object.keys(e.attributes).forEach((o=>{t.setAttributeNS(null,o,e.attributes[o])})),o.appendChild(t)})),t.appendChild(o)})),document.createElement("label").textContent=this.targets&&this.targets[e.id]?this.targets[e.id]:e.id,l.appendChild(t);break;default:return void console.log(i.element)}else{const t=document.createElementNS("http://www.w3.org/2000/svg","svg"),o=document.createElementNS("http://www.w3.org/2000/svg","path"),r=document.createElementNS("http://www.w3.org/2000/svg","path");t.setAttribute("fill","none"),t.setAttribute("viewBox","0 0 24 24"),t.setAttribute("stroke","black"),t.classList.add("post-icon"),o.setAttribute("d","M21,0H3A3,3,0,0,0,0,3V21a3,3,0,0,0,3,3H21a3,3,0,0,0,3-3V3A3,3,0,0,0,21,0ZM3,2H21a1,1,0,0,1,1,1V15.86L14.18,9.35a5.06,5.06,0,0,0-6.39-.06L2,13.92V3A1,1,0,0,1,3,2ZM21,22H3a1,1,0,0,1-1-1V16.48l7-5.63a3.06,3.06,0,0,1,3.86,0L22,18.47V21A1,1,0,0,1,21,22Z"),o.setAttribute("stroke-linecap","round"),o.setAttribute("stroke-linejoin","round"),o.setAttribute("stroke-width","2"),r.setAttribute("d","M18,9a3,3,0,1,0-3-3A3,3,0,0,0,18,9Zm0-4a1,1,0,1,1-1,1A1,1,0,0,1,18,5Z"),r.setAttribute("stroke-linecap","round"),r.setAttribute("stroke-linejoin","round"),r.setAttribute("stroke-width","2"),t.appendChild(o),t.appendChild(r),document.createElement("label").textContent=this.targets&&this.targets[e.id]?this.targets[e.id]:e.id,l.appendChild(t)}var c=document.createElement("TD");c.className="legend-table-td";let p=document.createElement("label");return p.textContent=this.targets&&this.targets[e.id]?this.targets[e.id]:e.id,c.appendChild(p),n.appendChild(l),n.appendChild(c),n}updateLegendControl(){const e=this.map,t={};if(e){const o=e.queryRenderedFeatures();for(let e of o)t[e.layer.id]=e.layer}let o=null==e?void 0:e.getStyle().layers;if(o){for(this.legendTable||(this.legendTable=document.createElement("TABLE"),this.legendTable.className="legend-table",this.legendContainer.appendChild(this.legendTable));this.legendTable.firstChild;)this.legendTable.removeChild(this.legendTable.firstChild);this.options.reverseOrder&&(o=o.reverse()),o.forEach((e=>{if(t[e.id]&&this.uncheckedLayers[e.id]?delete this.uncheckedLayers[e.id]:this.uncheckedLayers[e.id]&&(t[e.id]=e),void 0===this.targets||this.targets&&0===Object.keys(this.targets).length||this.targets&&Object.keys(this.targets).map((e=>e)).includes(e.id)){if(this.onlyRendered&&!t[e.id])return;const o=this.getLayerLegend(e);if(!o)return;this.legendTable.appendChild(o)}}))}}onAdd(e){this.map=e,this.controlContainer=document.createElement("div"),this.controlContainer.classList.add("mapboxgl-ctrl"),this.controlContainer.classList.add("mapboxgl-ctrl-group"),this.legendContainer=document.createElement("div"),this.legendContainer.classList.add("mapboxgl-legend-list"),this.legendButton=document.createElement("button"),this.legendButton.classList.add("mapboxgl-ctrl-icon"),this.legendButton.classList.add("mapboxgl-legend-switcher"),this.legendButton.addEventListener("click",(()=>{this.legendButton.style.display="none",this.legendContainer.style.display="block"})),document.addEventListener("click",this.onDocumentClick),this.controlContainer.appendChild(this.legendButton),this.controlContainer.appendChild(this.legendContainer),this.closeButton=document.createElement("button"),this.closeButton.textContent="x",this.closeButton.classList.add("mapboxgl-legend-close-button"),this.closeButton.addEventListener("click",(()=>{this.legendButton.style.display="block",this.legendContainer.style.display="none"})),this.legendContainer.appendChild(this.closeButton);const t=document.createElement("label");t.classList.add("mapboxgl-legend-title-label"),t.textContent=this.options.title||"Legend",this.legendContainer.appendChild(t),this.legendContainer.appendChild(document.createElement("br"));const o=document.createElement("input");o.setAttribute("type","checkbox");const i="mapboxgl-legend-onlyrendered-checkbox-"+100*Math.random();o.setAttribute("id",i),o.classList.add("mapboxgl-legend-onlyRendered-checkbox"),o.checked=this.onlyRendered;const a=this;o.addEventListener("click",(function(e){var t;const o=null===(t=e.target)||void 0===t?void 0:t.checked;a.onlyRendered=!!o,a.updateLegendControl()})),this.legendContainer.appendChild(o);const s=document.createElement("label");s.classList.add("mapboxgl-legend-onlyRendered-label"),s.textContent="Only rendered",s.htmlFor=i,this.legendContainer.appendChild(s),this.legendContainer.appendChild(document.createElement("br")),this.map.on("moveend",(e=>{this.updateLegendControl()}));const l=()=>r(this,void 0,void 0,(function*(){if(e.loaded()){let t=e.getStyle().sprite,o="";t&&t.includes("mapbox://")&&(t=t.replace(/mapbox:\/\//g,n.baseApiUrl).replace(/sprites/g,"/styles/v1"),t=`${t}/sprite`,o=`?access_token=${this.options.accesstoken||n.accessToken}`);const r=Promise.all([this.loadImage(`${t}@2x.png${o}`),this.loadJson(`${t}.json${o}`)]);yield r.then((([e,t])=>{this.setSprite(e,t)})),this.updateLegendControl(),e.off("idle",l)}}));return this.map.on("idle",l),this.options&&1==this.options.showDefault&&(this.legendContainer.style.display="block",this.legendButton.style.display="none"),this.controlContainer}onRemove(){this.controlContainer&&this.controlContainer.parentNode&&this.map&&this.legendButton&&(this.legendButton.removeEventListener("click",this.onDocumentClick),this.controlContainer.parentNode.removeChild(this.controlContainer),document.removeEventListener("click",this.onDocumentClick),this.map=void 0)}redraw(){this.updateLegendControl()}onDocumentClick(e){this.controlContainer&&!this.controlContainer.contains(e.target)&&this.legendContainer&&this.legendButton&&this.options&&!0!==this.options.showDefault&&(this.legendContainer.style.display="none",this.legendButton.style.display="block")}setSprite(e,t){this.sprite={image:e,json:t}}loadImage(e){let t=!1;const o=new Promise(((o,r)=>{const i=new Image;i.crossOrigin="Anonymous",i.onload=()=>{t||o(i)},i.onerror=e=>{t||r(e)},i.src=e}));return o.cancel=()=>{t=!0},o}loadJson(e){return s.default.get(e,{responseType:"json"}).then((e=>e.data))}}},640:t=>{"use strict";t.exports=e}},o={};function r(e){var i=o[e];if(void 0!==i)return i.exports;var n=o[e]={exports:{}};return t[e].call(n.exports,n,n.exports,r),n.exports}return r.d=(e,t)=>{for(var o in t)r.o(t,o)&&!r.o(e,o)&&Object.defineProperty(e,o,{enumerable:!0,get:t[o]})},r.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),r.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},r(620)})())); \ No newline at end of file diff --git a/src/ckanext-mappreview/ckanext/mappreview/assets/js/vendor/mapbox-gl.js b/src/ckanext-mappreview/ckanext/mappreview/assets/js/vendor/mapbox-gl.js new file mode 100644 index 00000000..129c9969 --- /dev/null +++ b/src/ckanext-mappreview/ckanext/mappreview/assets/js/vendor/mapbox-gl.js @@ -0,0 +1,105 @@ +!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t():"function"==typeof define&&define.amd?define(t):(e="undefined"!=typeof globalThis?globalThis:e||self).mapboxgl=t()}(this,function(){"use strict";var a,n,o;function e(e,t){var i,r;a?n?(i="self.onerror = function() { console.error('An error occurred while parsing the WebWorker bundle. This is most likely due to improper transpilation by Babel; please see https://docs.mapbox.com/mapbox-gl-js/guides/install/#transpiling'); }; var sharedChunk = {}; ("+a+")(sharedChunk); ("+n+")(sharedChunk); self.onerror = null;",a(r={}),o=t(r),"undefined"!=typeof window&&window&&window.URL&&window.URL.createObjectURL&&(o.workerUrl=window.URL.createObjectURL(new Blob([i],{type:"text/javascript"})))):n=t:a=t}return e(0,function(Te){var P="3.6.0";let z;const o={API_URL:"https://api.mapbox.com",get API_URL_REGEX(){if(null==z){var t=/^((https?:)?\/\/)?([^\/]+\.)?mapbox\.c(n|om)(\/|\?|$)/i;try{z=null!=process.env.API_URL_REGEX?new RegExp(process.env.API_URL_REGEX):t}catch(e){z=t}}return z},get API_TILEJSON_REGEX(){return/^((https?:)?\/\/)?([^\/]+\.)?mapbox\.c(n|om)(\/v[0-9]*\/.*\.json.*$)/i},get API_SPRITE_REGEX(){return/^((https?:)?\/\/)?([^\/]+\.)?mapbox\.c(n|om)(\/styles\/v[0-9]*\/)(.*\/sprite.*\..*$)/i},get API_FONTS_REGEX(){return/^((https?:)?\/\/)?([^\/]+\.)?mapbox\.c(n|om)(\/fonts\/v[0-9]*\/)(.*\.pbf.*$)/i},get API_STYLE_REGEX(){return/^((https?:)?\/\/)?([^\/]+\.)?mapbox\.c(n|om)(\/styles\/v[0-9]*\/)(.*$)/i},get API_CDN_URL_REGEX(){return/^((https?:)?\/\/)?api\.mapbox\.c(n|om)(\/mapbox-gl-js\/)(.*$)/i},get EVENTS_URL(){if(!o.API_URL)return null;try{var e=new URL(o.API_URL);return"api.mapbox.cn"===e.hostname?"https://events.mapbox.cn/events/v2":"api.mapbox.com"===e.hostname?"https://events.mapbox.com/events/v2":null}catch(e){return null}},SESSION_PATH:"/map-sessions/v1",FEEDBACK_URL:"https://apps.mapbox.com/feedback",TILE_URL_VERSION:"v4",RASTER_URL_PREFIX:"raster/v1",RASTERARRAYS_URL_PREFIX:"rasterarrays/v1",REQUIRE_ACCESS_TOKEN:!0,ACCESS_TOKEN:null,DEFAULT_STYLE:"mapbox://styles/mapbox/standard",MAX_PARALLEL_IMAGE_REQUESTS:16,DRACO_URL:"https://api.mapbox.com/mapbox-gl-js/draco_decoder_gltf_v1.5.6.wasm",MESHOPT_URL:"https://api.mapbox.com/mapbox-gl-js/meshopt_base_v0.20.wasm",MESHOPT_SIMD_URL:"https://api.mapbox.com/mapbox-gl-js/meshopt_simd_v0.20.wasm",GLYPHS_URL:"mapbox://fonts/mapbox/{fontstack}/{range}.pbf",TILES3D_URL_PREFIX:"3dtiles/v1"};function L(e){return o.API_URL_REGEX.test(e)}function k(e){return 0===e.indexOf("mapbox:")}function O(e){return o.API_CDN_URL_REGEX.test(e)}function B(e){return o.API_SPRITE_REGEX.test(e)}function F(e){return o.API_STYLE_REGEX.test(e)&&!B(e)}const N={create:"create",load:"load",fullLoad:"fullLoad"},V={mark(e){performance.mark(e)},measure(e,t,i){performance.measure(e,t,i)}};function U(e){const t=e.name.split("?")[0];return O(t)&&t.includes("mapbox-gl.js")?"javascript":O(t)&&t.includes("mapbox-gl.css")?"css":(e=t,o.API_FONTS_REGEX.test(e)?"fontRange":B(t)?"sprite":F(t)?"style":(e=t,o.API_TILEJSON_REGEX.test(e)?"tilejson":"other"))}function j(e){return e&&e.__esModule&&Object.prototype.hasOwnProperty.call(e,"default")?e.default:e}var $={},Z={},W=(Object.defineProperty(Z,"__esModule",{value:!0}),Z.setMatrixArrayType=function(e){Z.ARRAY_TYPE=H=e},Z.toRadian=function(e){return e*X},Z.equals=function(e,t){return Math.abs(e-t)<=W*Math.max(1,Math.abs(e),Math.abs(t))},Z.RANDOM=Z.ARRAY_TYPE=Z.EPSILON=void 0,1e-6),H=(Z.EPSILON=W,"undefined"!=typeof Float32Array?Float32Array:Array),e=(Z.ARRAY_TYPE=H,Math.random),X=(Z.RANDOM=e,Math.PI/180),e=(Math.hypot||(Math.hypot=function(){for(var e=0,t=arguments.length;t--;)e+=arguments[t]*arguments[t];return Math.sqrt(e)}),{});function Y(e){return(Y="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}Object.defineProperty(e,"__esModule",{value:!0}),e.create=function(){var e=new J.ARRAY_TYPE(4);return J.ARRAY_TYPE!=Float32Array&&(e[1]=0,e[2]=0),e[0]=1,e[3]=1,e},e.clone=function(e){var t=new J.ARRAY_TYPE(4);return t[0]=e[0],t[1]=e[1],t[2]=e[2],t[3]=e[3],t},e.copy=function(e,t){return e[0]=t[0],e[1]=t[1],e[2]=t[2],e[3]=t[3],e},e.identity=function(e){return e[0]=1,e[1]=0,e[2]=0,e[3]=1,e},e.fromValues=function(e,t,i,r){var a=new J.ARRAY_TYPE(4);return a[0]=e,a[1]=t,a[2]=i,a[3]=r,a},e.set=function(e,t,i,r,a){return e[0]=t,e[1]=i,e[2]=r,e[3]=a,e},e.transpose=function(e,t){var i;return e===t?(i=t[1],e[1]=t[2],e[2]=i):(e[0]=t[0],e[1]=t[2],e[2]=t[1],e[3]=t[3]),e},e.invert=function(e,t){var i=t[0],r=t[1],a=t[2],t=t[3],n=i*t-a*r;return n?(e[0]=t*(n=1/n),e[1]=-r*n,e[2]=-a*n,e[3]=i*n,e):null},e.adjoint=function(e,t){var i=t[0];return e[0]=t[3],e[1]=-t[1],e[2]=-t[2],e[3]=i,e},e.determinant=function(e){return e[0]*e[3]-e[2]*e[1]},e.multiply=Q,e.rotate=function(e,t,i){var r=t[0],a=t[1],n=t[2],t=t[3],o=Math.sin(i),i=Math.cos(i);return e[0]=r*i+n*o,e[1]=a*i+t*o,e[2]=r*-o+n*i,e[3]=a*-o+t*i,e},e.scale=function(e,t,i){var r=t[1],a=t[2],n=t[3],o=i[0],i=i[1];return e[0]=t[0]*o,e[1]=r*o,e[2]=a*i,e[3]=n*i,e},e.fromRotation=function(e,t){var i=Math.sin(t),t=Math.cos(t);return e[0]=t,e[1]=i,e[2]=-i,e[3]=t,e},e.fromScaling=function(e,t){return e[0]=t[0],e[1]=0,e[2]=0,e[3]=t[1],e},e.str=function(e){return"mat2("+e[0]+", "+e[1]+", "+e[2]+", "+e[3]+")"},e.frob=function(e){return Math.hypot(e[0],e[1],e[2],e[3])},e.LDU=function(e,t,i,r){return e[2]=r[2]/r[0],i[0]=r[0],i[1]=r[1],i[3]=r[3]-e[2]*i[1],[e,t,i]},e.add=function(e,t,i){return e[0]=t[0]+i[0],e[1]=t[1]+i[1],e[2]=t[2]+i[2],e[3]=t[3]+i[3],e},e.subtract=ee,e.exactEquals=function(e,t){return e[0]===t[0]&&e[1]===t[1]&&e[2]===t[2]&&e[3]===t[3]},e.equals=function(e,t){var i=e[0],r=e[1],a=e[2],e=e[3],n=t[0],o=t[1],s=t[2],t=t[3];return Math.abs(i-n)<=J.EPSILON*Math.max(1,Math.abs(i),Math.abs(n))&&Math.abs(r-o)<=J.EPSILON*Math.max(1,Math.abs(r),Math.abs(o))&&Math.abs(a-s)<=J.EPSILON*Math.max(1,Math.abs(a),Math.abs(s))&&Math.abs(e-t)<=J.EPSILON*Math.max(1,Math.abs(e),Math.abs(t))},e.multiplyScalar=function(e,t,i){return e[0]=t[0]*i,e[1]=t[1]*i,e[2]=t[2]*i,e[3]=t[3]*i,e},e.multiplyScalarAndAdd=function(e,t,i,r){return e[0]=t[0]+i[0]*r,e[1]=t[1]+i[1]*r,e[2]=t[2]+i[2]*r,e[3]=t[3]+i[3]*r,e},e.sub=e.mul=void 0;var J=function(e){if(e&&e.__esModule)return e;if(null===e||"object"!==Y(e)&&"function"!=typeof e)return{default:e};var t=K(void 0);if(t&&t.has(e))return t.get(e);var i,r,a={},n=Object.defineProperty&&Object.getOwnPropertyDescriptor;for(i in e)"default"!==i&&Object.prototype.hasOwnProperty.call(e,i)&&((r=n?Object.getOwnPropertyDescriptor(e,i):null)&&(r.get||r.set)?Object.defineProperty(a,i,r):a[i]=e[i]);return a.default=e,t&&t.set(e,a),a}(Z);function K(e){if("function"!=typeof WeakMap)return null;var t=new WeakMap,i=new WeakMap;return(K=function(e){return e?i:t})(e)}function Q(e,t,i){var r=t[0],a=t[1],n=t[2],t=t[3],o=i[0],s=i[1],l=i[2],i=i[3];return e[0]=r*o+n*s,e[1]=a*o+t*s,e[2]=r*l+n*i,e[3]=a*l+t*i,e}function ee(e,t,i){return e[0]=t[0]-i[0],e[1]=t[1]-i[1],e[2]=t[2]-i[2],e[3]=t[3]-i[3],e}e.mul=Q,e.sub=ee;var t={};function te(e){return(te="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}Object.defineProperty(t,"__esModule",{value:!0}),t.create=function(){var e=new ie.ARRAY_TYPE(6);return ie.ARRAY_TYPE!=Float32Array&&(e[1]=0,e[2]=0,e[4]=0,e[5]=0),e[0]=1,e[3]=1,e},t.clone=function(e){var t=new ie.ARRAY_TYPE(6);return t[0]=e[0],t[1]=e[1],t[2]=e[2],t[3]=e[3],t[4]=e[4],t[5]=e[5],t},t.copy=function(e,t){return e[0]=t[0],e[1]=t[1],e[2]=t[2],e[3]=t[3],e[4]=t[4],e[5]=t[5],e},t.identity=function(e){return e[0]=1,e[1]=0,e[2]=0,e[3]=1,e[4]=0,e[5]=0,e},t.fromValues=function(e,t,i,r,a,n){var o=new ie.ARRAY_TYPE(6);return o[0]=e,o[1]=t,o[2]=i,o[3]=r,o[4]=a,o[5]=n,o},t.set=function(e,t,i,r,a,n,o){return e[0]=t,e[1]=i,e[2]=r,e[3]=a,e[4]=n,e[5]=o,e},t.invert=function(e,t){var i=t[0],r=t[1],a=t[2],n=t[3],o=t[4],t=t[5],s=i*n-r*a;return s?(e[0]=n*(s=1/s),e[1]=-r*s,e[2]=-a*s,e[3]=i*s,e[4]=(a*t-n*o)*s,e[5]=(r*o-i*t)*s,e):null},t.determinant=function(e){return e[0]*e[3]-e[1]*e[2]},t.multiply=ae,t.rotate=function(e,t,i){var r=t[0],a=t[1],n=t[2],o=t[3],s=t[4],t=t[5],l=Math.sin(i),i=Math.cos(i);return e[0]=r*i+n*l,e[1]=a*i+o*l,e[2]=r*-l+n*i,e[3]=a*-l+o*i,e[4]=s,e[5]=t,e},t.scale=function(e,t,i){var r=t[1],a=t[2],n=t[3],o=t[4],s=t[5],l=i[0],i=i[1];return e[0]=t[0]*l,e[1]=r*l,e[2]=a*i,e[3]=n*i,e[4]=o,e[5]=s,e},t.translate=function(e,t,i){var r=t[0],a=t[1],n=t[2],o=t[3],s=t[4],t=t[5],l=i[0],i=i[1];return e[0]=r,e[1]=a,e[2]=n,e[3]=o,e[4]=r*l+n*i+s,e[5]=a*l+o*i+t,e},t.fromRotation=function(e,t){var i=Math.sin(t),t=Math.cos(t);return e[0]=t,e[1]=i,e[2]=-i,e[3]=t,e[4]=0,e[5]=0,e},t.fromScaling=function(e,t){return e[0]=t[0],e[1]=0,e[2]=0,e[3]=t[1],e[4]=0,e[5]=0,e},t.fromTranslation=function(e,t){return e[0]=1,e[1]=0,e[2]=0,e[3]=1,e[4]=t[0],e[5]=t[1],e},t.str=function(e){return"mat2d("+e[0]+", "+e[1]+", "+e[2]+", "+e[3]+", "+e[4]+", "+e[5]+")"},t.frob=function(e){return Math.hypot(e[0],e[1],e[2],e[3],e[4],e[5],1)},t.add=function(e,t,i){return e[0]=t[0]+i[0],e[1]=t[1]+i[1],e[2]=t[2]+i[2],e[3]=t[3]+i[3],e[4]=t[4]+i[4],e[5]=t[5]+i[5],e},t.subtract=ne,t.multiplyScalar=function(e,t,i){return e[0]=t[0]*i,e[1]=t[1]*i,e[2]=t[2]*i,e[3]=t[3]*i,e[4]=t[4]*i,e[5]=t[5]*i,e},t.multiplyScalarAndAdd=function(e,t,i,r){return e[0]=t[0]+i[0]*r,e[1]=t[1]+i[1]*r,e[2]=t[2]+i[2]*r,e[3]=t[3]+i[3]*r,e[4]=t[4]+i[4]*r,e[5]=t[5]+i[5]*r,e},t.exactEquals=function(e,t){return e[0]===t[0]&&e[1]===t[1]&&e[2]===t[2]&&e[3]===t[3]&&e[4]===t[4]&&e[5]===t[5]},t.equals=function(e,t){var i=e[0],r=e[1],a=e[2],n=e[3],o=e[4],e=e[5],s=t[0],l=t[1],c=t[2],h=t[3],u=t[4],t=t[5];return Math.abs(i-s)<=ie.EPSILON*Math.max(1,Math.abs(i),Math.abs(s))&&Math.abs(r-l)<=ie.EPSILON*Math.max(1,Math.abs(r),Math.abs(l))&&Math.abs(a-c)<=ie.EPSILON*Math.max(1,Math.abs(a),Math.abs(c))&&Math.abs(n-h)<=ie.EPSILON*Math.max(1,Math.abs(n),Math.abs(h))&&Math.abs(o-u)<=ie.EPSILON*Math.max(1,Math.abs(o),Math.abs(u))&&Math.abs(e-t)<=ie.EPSILON*Math.max(1,Math.abs(e),Math.abs(t))},t.sub=t.mul=void 0;var ie=function(e){if(e&&e.__esModule)return e;if(null===e||"object"!==te(e)&&"function"!=typeof e)return{default:e};var t=re(void 0);if(t&&t.has(e))return t.get(e);var i,r,a={},n=Object.defineProperty&&Object.getOwnPropertyDescriptor;for(i in e)"default"!==i&&Object.prototype.hasOwnProperty.call(e,i)&&((r=n?Object.getOwnPropertyDescriptor(e,i):null)&&(r.get||r.set)?Object.defineProperty(a,i,r):a[i]=e[i]);return a.default=e,t&&t.set(e,a),a}(Z);function re(e){if("function"!=typeof WeakMap)return null;var t=new WeakMap,i=new WeakMap;return(re=function(e){return e?i:t})(e)}function ae(e,t,i){var r=t[0],a=t[1],n=t[2],o=t[3],s=t[4],t=t[5],l=i[0],c=i[1],h=i[2],u=i[3],d=i[4],i=i[5];return e[0]=r*l+n*c,e[1]=a*l+o*c,e[2]=r*h+n*u,e[3]=a*h+o*u,e[4]=r*d+n*i+s,e[5]=a*d+o*i+t,e}function ne(e,t,i){return e[0]=t[0]-i[0],e[1]=t[1]-i[1],e[2]=t[2]-i[2],e[3]=t[3]-i[3],e[4]=t[4]-i[4],e[5]=t[5]-i[5],e}t.mul=ae,t.sub=ne;var i={};function oe(e){return(oe="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}Object.defineProperty(i,"__esModule",{value:!0}),i.create=function(){var e=new se.ARRAY_TYPE(9);return se.ARRAY_TYPE!=Float32Array&&(e[1]=0,e[2]=0,e[3]=0,e[5]=0,e[6]=0,e[7]=0),e[0]=1,e[4]=1,e[8]=1,e},i.fromMat4=function(e,t){return e[0]=t[0],e[1]=t[1],e[2]=t[2],e[3]=t[4],e[4]=t[5],e[5]=t[6],e[6]=t[8],e[7]=t[9],e[8]=t[10],e},i.clone=function(e){var t=new se.ARRAY_TYPE(9);return t[0]=e[0],t[1]=e[1],t[2]=e[2],t[3]=e[3],t[4]=e[4],t[5]=e[5],t[6]=e[6],t[7]=e[7],t[8]=e[8],t},i.copy=function(e,t){return e[0]=t[0],e[1]=t[1],e[2]=t[2],e[3]=t[3],e[4]=t[4],e[5]=t[5],e[6]=t[6],e[7]=t[7],e[8]=t[8],e},i.fromValues=function(e,t,i,r,a,n,o,s,l){var c=new se.ARRAY_TYPE(9);return c[0]=e,c[1]=t,c[2]=i,c[3]=r,c[4]=a,c[5]=n,c[6]=o,c[7]=s,c[8]=l,c},i.set=function(e,t,i,r,a,n,o,s,l,c){return e[0]=t,e[1]=i,e[2]=r,e[3]=a,e[4]=n,e[5]=o,e[6]=s,e[7]=l,e[8]=c,e},i.identity=function(e){return e[0]=1,e[1]=0,e[2]=0,e[3]=0,e[4]=1,e[5]=0,e[6]=0,e[7]=0,e[8]=1,e},i.transpose=function(e,t){var i,r,a;return e===t?(i=t[1],r=t[2],a=t[5],e[1]=t[3],e[2]=t[6],e[3]=i,e[5]=t[7],e[6]=r,e[7]=a):(e[0]=t[0],e[1]=t[3],e[2]=t[6],e[3]=t[1],e[4]=t[4],e[5]=t[7],e[6]=t[2],e[7]=t[5],e[8]=t[8]),e},i.invert=function(e,t){var i=t[0],r=t[1],a=t[2],n=t[3],o=t[4],s=t[5],l=t[6],c=t[7],t=t[8],h=t*o-s*c,u=-t*n+s*l,d=c*n-o*l,p=i*h+r*u+a*d;return p?(e[0]=h*(p=1/p),e[1]=(-t*r+a*c)*p,e[2]=(s*r-a*o)*p,e[3]=u*p,e[4]=(t*i-a*l)*p,e[5]=(-s*i+a*n)*p,e[6]=d*p,e[7]=(-c*i+r*l)*p,e[8]=(o*i-r*n)*p,e):null},i.adjoint=function(e,t){var i=t[0],r=t[1],a=t[2],n=t[3],o=t[4],s=t[5],l=t[6],c=t[7],t=t[8];return e[0]=o*t-s*c,e[1]=a*c-r*t,e[2]=r*s-a*o,e[3]=s*l-n*t,e[4]=i*t-a*l,e[5]=a*n-i*s,e[6]=n*c-o*l,e[7]=r*l-i*c,e[8]=i*o-r*n,e},i.determinant=function(e){var t=e[3],i=e[4],r=e[5],a=e[6],n=e[7],o=e[8];return e[0]*(o*i-r*n)+e[1]*(-o*t+r*a)+e[2]*(n*t-i*a)},i.multiply=ce,i.translate=function(e,t,i){var r=t[0],a=t[1],n=t[2],o=t[3],s=t[4],l=t[5],c=t[6],h=t[7],t=t[8],u=i[0],i=i[1];return e[0]=r,e[1]=a,e[2]=n,e[3]=o,e[4]=s,e[5]=l,e[6]=u*r+i*o+c,e[7]=u*a+i*s+h,e[8]=u*n+i*l+t,e},i.rotate=function(e,t,i){var r=t[0],a=t[1],n=t[2],o=t[3],s=t[4],l=t[5],c=t[6],h=t[7],t=t[8],u=Math.sin(i),i=Math.cos(i);return e[0]=i*r+u*o,e[1]=i*a+u*s,e[2]=i*n+u*l,e[3]=i*o-u*r,e[4]=i*s-u*a,e[5]=i*l-u*n,e[6]=c,e[7]=h,e[8]=t,e},i.scale=function(e,t,i){var r=i[0],i=i[1];return e[0]=r*t[0],e[1]=r*t[1],e[2]=r*t[2],e[3]=i*t[3],e[4]=i*t[4],e[5]=i*t[5],e[6]=t[6],e[7]=t[7],e[8]=t[8],e},i.fromTranslation=function(e,t){return e[0]=1,e[1]=0,e[2]=0,e[3]=0,e[4]=1,e[5]=0,e[6]=t[0],e[7]=t[1],e[8]=1,e},i.fromRotation=function(e,t){var i=Math.sin(t),t=Math.cos(t);return e[0]=t,e[1]=i,e[2]=0,e[3]=-i,e[4]=t,e[5]=0,e[6]=0,e[7]=0,e[8]=1,e},i.fromScaling=function(e,t){return e[0]=t[0],e[1]=0,e[2]=0,e[3]=0,e[4]=t[1],e[5]=0,e[6]=0,e[7]=0,e[8]=1,e},i.fromMat2d=function(e,t){return e[0]=t[0],e[1]=t[1],e[2]=0,e[3]=t[2],e[4]=t[3],e[5]=0,e[6]=t[4],e[7]=t[5],e[8]=1,e},i.fromQuat=function(e,t){var i=t[0],r=t[1],a=t[2],t=t[3],n=i+i,o=r+r,s=a+a,i=i*n,l=r*n,r=r*o,c=a*n,h=a*o,a=a*s,n=t*n,o=t*o,t=t*s;return e[0]=1-r-a,e[3]=l-t,e[6]=c+o,e[1]=l+t,e[4]=1-i-a,e[7]=h-n,e[2]=c-o,e[5]=h+n,e[8]=1-i-r,e},i.normalFromMat4=function(e,t){var i=t[0],r=t[1],a=t[2],n=t[3],o=t[4],s=t[5],l=t[6],c=t[7],h=t[8],u=t[9],d=t[10],p=t[11],f=t[12],m=t[13],_=t[14],t=t[15],g=i*s-r*o,y=i*l-a*o,x=i*c-n*o,v=r*l-a*s,b=r*c-n*s,w=a*c-n*l,T=h*m-u*f,E=h*_-d*f,h=h*t-p*f,S=u*_-d*m,u=u*t-p*m,d=d*t-p*_,p=g*d-y*u+x*S+v*h-b*E+w*T;return p?(e[0]=(s*d-l*u+c*S)*(p=1/p),e[1]=(l*h-o*d-c*E)*p,e[2]=(o*u-s*h+c*T)*p,e[3]=(a*u-r*d-n*S)*p,e[4]=(i*d-a*h+n*E)*p,e[5]=(r*h-i*u-n*T)*p,e[6]=(m*w-_*b+t*v)*p,e[7]=(_*x-f*w-t*y)*p,e[8]=(f*b-m*x+t*g)*p,e):null},i.projection=function(e,t,i){return e[0]=2/t,e[1]=0,e[2]=0,e[3]=0,e[4]=-2/i,e[5]=0,e[6]=-1,e[7]=1,e[8]=1,e},i.str=function(e){return"mat3("+e[0]+", "+e[1]+", "+e[2]+", "+e[3]+", "+e[4]+", "+e[5]+", "+e[6]+", "+e[7]+", "+e[8]+")"},i.frob=function(e){return Math.hypot(e[0],e[1],e[2],e[3],e[4],e[5],e[6],e[7],e[8])},i.add=function(e,t,i){return e[0]=t[0]+i[0],e[1]=t[1]+i[1],e[2]=t[2]+i[2],e[3]=t[3]+i[3],e[4]=t[4]+i[4],e[5]=t[5]+i[5],e[6]=t[6]+i[6],e[7]=t[7]+i[7],e[8]=t[8]+i[8],e},i.subtract=he,i.multiplyScalar=function(e,t,i){return e[0]=t[0]*i,e[1]=t[1]*i,e[2]=t[2]*i,e[3]=t[3]*i,e[4]=t[4]*i,e[5]=t[5]*i,e[6]=t[6]*i,e[7]=t[7]*i,e[8]=t[8]*i,e},i.multiplyScalarAndAdd=function(e,t,i,r){return e[0]=t[0]+i[0]*r,e[1]=t[1]+i[1]*r,e[2]=t[2]+i[2]*r,e[3]=t[3]+i[3]*r,e[4]=t[4]+i[4]*r,e[5]=t[5]+i[5]*r,e[6]=t[6]+i[6]*r,e[7]=t[7]+i[7]*r,e[8]=t[8]+i[8]*r,e},i.exactEquals=function(e,t){return e[0]===t[0]&&e[1]===t[1]&&e[2]===t[2]&&e[3]===t[3]&&e[4]===t[4]&&e[5]===t[5]&&e[6]===t[6]&&e[7]===t[7]&&e[8]===t[8]},i.equals=function(e,t){var i=e[0],r=e[1],a=e[2],n=e[3],o=e[4],s=e[5],l=e[6],c=e[7],e=e[8],h=t[0],u=t[1],d=t[2],p=t[3],f=t[4],m=t[5],_=t[6],g=t[7],t=t[8];return Math.abs(i-h)<=se.EPSILON*Math.max(1,Math.abs(i),Math.abs(h))&&Math.abs(r-u)<=se.EPSILON*Math.max(1,Math.abs(r),Math.abs(u))&&Math.abs(a-d)<=se.EPSILON*Math.max(1,Math.abs(a),Math.abs(d))&&Math.abs(n-p)<=se.EPSILON*Math.max(1,Math.abs(n),Math.abs(p))&&Math.abs(o-f)<=se.EPSILON*Math.max(1,Math.abs(o),Math.abs(f))&&Math.abs(s-m)<=se.EPSILON*Math.max(1,Math.abs(s),Math.abs(m))&&Math.abs(l-_)<=se.EPSILON*Math.max(1,Math.abs(l),Math.abs(_))&&Math.abs(c-g)<=se.EPSILON*Math.max(1,Math.abs(c),Math.abs(g))&&Math.abs(e-t)<=se.EPSILON*Math.max(1,Math.abs(e),Math.abs(t))},i.sub=i.mul=void 0;var se=function(e){if(e&&e.__esModule)return e;if(null===e||"object"!==oe(e)&&"function"!=typeof e)return{default:e};var t=le(void 0);if(t&&t.has(e))return t.get(e);var i,r,a={},n=Object.defineProperty&&Object.getOwnPropertyDescriptor;for(i in e)"default"!==i&&Object.prototype.hasOwnProperty.call(e,i)&&((r=n?Object.getOwnPropertyDescriptor(e,i):null)&&(r.get||r.set)?Object.defineProperty(a,i,r):a[i]=e[i]);return a.default=e,t&&t.set(e,a),a}(Z);function le(e){if("function"!=typeof WeakMap)return null;var t=new WeakMap,i=new WeakMap;return(le=function(e){return e?i:t})(e)}function ce(e,t,i){var r=t[0],a=t[1],n=t[2],o=t[3],s=t[4],l=t[5],c=t[6],h=t[7],t=t[8],u=i[0],d=i[1],p=i[2],f=i[3],m=i[4],_=i[5],g=i[6],y=i[7],i=i[8];return e[0]=u*r+d*o+p*c,e[1]=u*a+d*s+p*h,e[2]=u*n+d*l+p*t,e[3]=f*r+m*o+_*c,e[4]=f*a+m*s+_*h,e[5]=f*n+m*l+_*t,e[6]=g*r+y*o+i*c,e[7]=g*a+y*s+i*h,e[8]=g*n+y*l+i*t,e}function he(e,t,i){return e[0]=t[0]-i[0],e[1]=t[1]-i[1],e[2]=t[2]-i[2],e[3]=t[3]-i[3],e[4]=t[4]-i[4],e[5]=t[5]-i[5],e[6]=t[6]-i[6],e[7]=t[7]-i[7],e[8]=t[8]-i[8],e}i.mul=ce,i.sub=he;var r={};function de(e){return(de="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}Object.defineProperty(r,"__esModule",{value:!0}),r.create=function(){var e=new D.ARRAY_TYPE(16);return D.ARRAY_TYPE!=Float32Array&&(e[1]=0,e[2]=0,e[3]=0,e[4]=0,e[6]=0,e[7]=0,e[8]=0,e[9]=0,e[11]=0,e[12]=0,e[13]=0,e[14]=0),e[0]=1,e[5]=1,e[10]=1,e[15]=1,e},r.clone=function(e){var t=new D.ARRAY_TYPE(16);return t[0]=e[0],t[1]=e[1],t[2]=e[2],t[3]=e[3],t[4]=e[4],t[5]=e[5],t[6]=e[6],t[7]=e[7],t[8]=e[8],t[9]=e[9],t[10]=e[10],t[11]=e[11],t[12]=e[12],t[13]=e[13],t[14]=e[14],t[15]=e[15],t},r.copy=function(e,t){return e[0]=t[0],e[1]=t[1],e[2]=t[2],e[3]=t[3],e[4]=t[4],e[5]=t[5],e[6]=t[6],e[7]=t[7],e[8]=t[8],e[9]=t[9],e[10]=t[10],e[11]=t[11],e[12]=t[12],e[13]=t[13],e[14]=t[14],e[15]=t[15],e},r.fromValues=function(e,t,i,r,a,n,o,s,l,c,h,u,d,p,f,m){var _=new D.ARRAY_TYPE(16);return _[0]=e,_[1]=t,_[2]=i,_[3]=r,_[4]=a,_[5]=n,_[6]=o,_[7]=s,_[8]=l,_[9]=c,_[10]=h,_[11]=u,_[12]=d,_[13]=p,_[14]=f,_[15]=m,_},r.set=function(e,t,i,r,a,n,o,s,l,c,h,u,d,p,f,m,_){return e[0]=t,e[1]=i,e[2]=r,e[3]=a,e[4]=n,e[5]=o,e[6]=s,e[7]=l,e[8]=c,e[9]=h,e[10]=u,e[11]=d,e[12]=p,e[13]=f,e[14]=m,e[15]=_,e},r.identity=fe,r.transpose=function(e,t){var i,r,a,n,o,s;return e===t?(i=t[1],r=t[2],a=t[3],n=t[6],o=t[7],s=t[11],e[1]=t[4],e[2]=t[8],e[3]=t[12],e[4]=i,e[6]=t[9],e[7]=t[13],e[8]=r,e[9]=n,e[11]=t[14],e[12]=a,e[13]=o,e[14]=s):(e[0]=t[0],e[1]=t[4],e[2]=t[8],e[3]=t[12],e[4]=t[1],e[5]=t[5],e[6]=t[9],e[7]=t[13],e[8]=t[2],e[9]=t[6],e[10]=t[10],e[11]=t[14],e[12]=t[3],e[13]=t[7],e[14]=t[11],e[15]=t[15]),e},r.invert=function(e,t){var i=t[0],r=t[1],a=t[2],n=t[3],o=t[4],s=t[5],l=t[6],c=t[7],h=t[8],u=t[9],d=t[10],p=t[11],f=t[12],m=t[13],_=t[14],t=t[15],g=i*s-r*o,y=i*l-a*o,x=i*c-n*o,v=r*l-a*s,b=r*c-n*s,w=a*c-n*l,T=h*m-u*f,E=h*_-d*f,S=h*t-p*f,M=u*_-d*m,I=u*t-p*m,A=d*t-p*_,C=g*A-y*I+x*M+v*S-b*E+w*T;return C?(e[0]=(s*A-l*I+c*M)*(C=1/C),e[1]=(a*I-r*A-n*M)*C,e[2]=(m*w-_*b+t*v)*C,e[3]=(d*b-u*w-p*v)*C,e[4]=(l*S-o*A-c*E)*C,e[5]=(i*A-a*S+n*E)*C,e[6]=(_*x-f*w-t*y)*C,e[7]=(h*w-d*x+p*y)*C,e[8]=(o*I-s*S+c*T)*C,e[9]=(r*S-i*I-n*T)*C,e[10]=(f*b-m*x+t*g)*C,e[11]=(u*x-h*b-p*g)*C,e[12]=(s*E-o*M-l*T)*C,e[13]=(i*M-r*E+a*T)*C,e[14]=(m*y-f*v-_*g)*C,e[15]=(h*v-u*y+d*g)*C,e):null},r.adjoint=function(e,t){var i=t[0],r=t[1],a=t[2],n=t[3],o=t[4],s=t[5],l=t[6],c=t[7],h=t[8],u=t[9],d=t[10],p=t[11],f=t[12],m=t[13],_=t[14],t=t[15];return e[0]=s*(d*t-p*_)-u*(l*t-c*_)+m*(l*p-c*d),e[1]=-(r*(d*t-p*_)-u*(a*t-n*_)+m*(a*p-n*d)),e[2]=r*(l*t-c*_)-s*(a*t-n*_)+m*(a*c-n*l),e[3]=-(r*(l*p-c*d)-s*(a*p-n*d)+u*(a*c-n*l)),e[4]=-(o*(d*t-p*_)-h*(l*t-c*_)+f*(l*p-c*d)),e[5]=i*(d*t-p*_)-h*(a*t-n*_)+f*(a*p-n*d),e[6]=-(i*(l*t-c*_)-o*(a*t-n*_)+f*(a*c-n*l)),e[7]=i*(l*p-c*d)-o*(a*p-n*d)+h*(a*c-n*l),e[8]=o*(u*t-p*m)-h*(s*t-c*m)+f*(s*p-c*u),e[9]=-(i*(u*t-p*m)-h*(r*t-n*m)+f*(r*p-n*u)),e[10]=i*(s*t-c*m)-o*(r*t-n*m)+f*(r*c-n*s),e[11]=-(i*(s*p-c*u)-o*(r*p-n*u)+h*(r*c-n*s)),e[12]=-(o*(u*_-d*m)-h*(s*_-l*m)+f*(s*d-l*u)),e[13]=i*(u*_-d*m)-h*(r*_-a*m)+f*(r*d-a*u),e[14]=-(i*(s*_-l*m)-o*(r*_-a*m)+f*(r*l-a*s)),e[15]=i*(s*d-l*u)-o*(r*d-a*u)+h*(r*l-a*s),e},r.determinant=function(e){var t=e[0],i=e[1],r=e[2],a=e[3],n=e[4],o=e[5],s=e[6],l=e[7],c=e[8],h=e[9],u=e[10],d=e[11],p=e[12],f=e[13],m=e[14],e=e[15];return(t*o-i*n)*(u*e-d*m)-(t*s-r*n)*(h*e-d*f)+(t*l-a*n)*(h*m-u*f)+(i*s-r*o)*(c*e-d*p)-(i*l-a*o)*(c*m-u*p)+(r*l-a*s)*(c*f-h*p)},r.multiply=me,r.translate=function(e,t,i){var r,a,n,o,s,l,c,h,u,d,p,f,m=i[0],_=i[1],i=i[2];return t===e?(e[12]=t[0]*m+t[4]*_+t[8]*i+t[12],e[13]=t[1]*m+t[5]*_+t[9]*i+t[13],e[14]=t[2]*m+t[6]*_+t[10]*i+t[14],e[15]=t[3]*m+t[7]*_+t[11]*i+t[15]):(a=t[1],n=t[2],o=t[3],s=t[4],l=t[5],c=t[6],h=t[7],u=t[8],d=t[9],p=t[10],f=t[11],e[0]=r=t[0],e[1]=a,e[2]=n,e[3]=o,e[4]=s,e[5]=l,e[6]=c,e[7]=h,e[8]=u,e[9]=d,e[10]=p,e[11]=f,e[12]=r*m+s*_+u*i+t[12],e[13]=a*m+l*_+d*i+t[13],e[14]=n*m+c*_+p*i+t[14],e[15]=o*m+h*_+f*i+t[15]),e},r.scale=function(e,t,i){var r=i[0],a=i[1],i=i[2];return e[0]=t[0]*r,e[1]=t[1]*r,e[2]=t[2]*r,e[3]=t[3]*r,e[4]=t[4]*a,e[5]=t[5]*a,e[6]=t[6]*a,e[7]=t[7]*a,e[8]=t[8]*i,e[9]=t[9]*i,e[10]=t[10]*i,e[11]=t[11]*i,e[12]=t[12],e[13]=t[13],e[14]=t[14],e[15]=t[15],e},r.rotate=function(e,t,i,r){var a,n,o,s,l,c,h,u,d,p,f,m,_,g,y,x,v,b,w,T,E=r[0],S=r[1],r=r[2],M=Math.hypot(E,S,r);return MXe.EPSILON?(e[0]=t[0]/r,e[1]=t[1]/r,e[2]=t[2]/r):(e[0]=1,e[1]=0,e[2]=0),i},a.getAngle=function(e,t){e=st(e,t);return Math.acos(2*e*e-1)},a.multiply=tt,a.rotateX=function(e,t,i){i*=.5;var r=t[0],a=t[1],n=t[2],t=t[3],o=Math.sin(i),i=Math.cos(i);return e[0]=r*i+t*o,e[1]=a*i+n*o,e[2]=n*i-a*o,e[3]=t*i-r*o,e},a.rotateY=function(e,t,i){i*=.5;var r=t[0],a=t[1],n=t[2],t=t[3],o=Math.sin(i),i=Math.cos(i);return e[0]=r*i-n*o,e[1]=a*i+t*o,e[2]=n*i+r*o,e[3]=t*i-a*o,e},a.rotateZ=function(e,t,i){i*=.5;var r=t[0],a=t[1],n=t[2],t=t[3],o=Math.sin(i),i=Math.cos(i);return e[0]=r*i+a*o,e[1]=a*i-r*o,e[2]=n*i+t*o,e[3]=t*i-n*o,e},a.calculateW=function(e,t){var i=t[0],r=t[1],t=t[2];return e[0]=i,e[1]=r,e[2]=t,e[3]=Math.sqrt(Math.abs(1-i*i-r*r-t*t)),e},a.exp=it,a.ln=rt,a.pow=function(e,t,i){return rt(e,t),ot(e,e,i),it(e,e),e},a.slerp=at,a.random=function(e){var t=Xe.RANDOM(),i=Xe.RANDOM(),r=Xe.RANDOM(),a=Math.sqrt(1-t),t=Math.sqrt(t);return e[0]=a*Math.sin(2*Math.PI*i),e[1]=a*Math.cos(2*Math.PI*i),e[2]=t*Math.sin(2*Math.PI*r),e[3]=t*Math.cos(2*Math.PI*r),e},a.invert=function(e,t){var i=t[0],r=t[1],a=t[2],t=t[3],n=i*i+r*r+a*a+t*t,n=n?1/n:0;return e[0]=-i*n,e[1]=-r*n,e[2]=-a*n,e[3]=t*n,e},a.conjugate=function(e,t){return e[0]=-t[0],e[1]=-t[1],e[2]=-t[2],e[3]=t[3],e},a.fromMat3=nt,a.fromEuler=function(e,t,i,r){var a=.5*Math.PI/180,a=(t*=a,i*=a,r*=a,Math.sin(t)),t=Math.cos(t),n=Math.sin(i),i=Math.cos(i),o=Math.sin(r),r=Math.cos(r);return e[0]=a*i*r-t*n*o,e[1]=t*n*r+a*i*o,e[2]=t*i*o-a*n*r,e[3]=t*i*r+a*n*o,e},a.str=function(e){return"quat("+e[0]+", "+e[1]+", "+e[2]+", "+e[3]+")"},a.setAxes=a.sqlerp=a.rotationTo=a.equals=a.exactEquals=a.normalize=a.sqrLen=a.squaredLength=a.len=a.length=a.lerp=a.dot=a.scale=a.mul=a.add=a.set=a.copy=a.fromValues=a.clone=void 0;var Xe=Ke(Z),l=Ke(i),Ye=Ke(n),c=Ke(s);function Je(e){if("function"!=typeof WeakMap)return null;var t=new WeakMap,i=new WeakMap;return(Je=function(e){return e?i:t})(e)}function Ke(e,t){if(e&&e.__esModule)return e;if(null===e||"object"!==He(e)&&"function"!=typeof e)return{default:e};t=Je(t);if(t&&t.has(e))return t.get(e);var i,r,a={},n=Object.defineProperty&&Object.getOwnPropertyDescriptor;for(i in e)"default"!==i&&Object.prototype.hasOwnProperty.call(e,i)&&((r=n?Object.getOwnPropertyDescriptor(e,i):null)&&(r.get||r.set)?Object.defineProperty(a,i,r):a[i]=e[i]);return a.default=e,t&&t.set(e,a),a}function Qe(){var e=new Xe.ARRAY_TYPE(4);return Xe.ARRAY_TYPE!=Float32Array&&(e[0]=0,e[1]=0,e[2]=0),e[3]=1,e}function et(e,t,i){i*=.5;var r=Math.sin(i);return e[0]=r*t[0],e[1]=r*t[1],e[2]=r*t[2],e[3]=Math.cos(i),e}function tt(e,t,i){var r=t[0],a=t[1],n=t[2],t=t[3],o=i[0],s=i[1],l=i[2],i=i[3];return e[0]=r*i+t*o+a*l-n*s,e[1]=a*i+t*s+n*o-r*l,e[2]=n*i+t*l+r*s-a*o,e[3]=t*i-r*o-a*s-n*l,e}function it(e,t){var i=t[0],r=t[1],a=t[2],t=t[3],n=Math.sqrt(i*i+r*r+a*a),t=Math.exp(t),o=0Xe.EPSILON?(o=Math.acos(o),a=Math.sin(o),n=Math.sin((1-r)*o)/a,Math.sin(r*o)/a):(n=1-r,r),e[0]=n*s+o*h,e[1]=n*l+o*u,e[2]=n*c+o*d,e[3]=n*t+o*i,e}function nt(e,t){var i,r,a,n=t[0]+t[4]+t[8];return 0t[n=0]&&(n=1),i=((n=t[8]>t[3*n+n]?2:n)+1)%3,r=(n+2)%3,a=Math.sqrt(t[3*n+n]-t[3*i+i]-t[3*r+r]+1),e[n]=.5*a,e[3]=(t[3*i+r]-t[3*r+i])*(a=.5/a),e[i]=(t[3*i+n]+t[3*n+i])*a,e[r]=(t[3*r+n]+t[3*n+r])*a),e}a.clone=c.clone,a.fromValues=c.fromValues,a.copy=c.copy,a.set=c.set,a.add=c.add,a.mul=tt;var ot=c.scale,st=(a.scale=ot,c.dot),h=(a.dot=st,a.lerp=c.lerp,c.length),h=(a.length=h,a.len=h,c.squaredLength),lt=(a.squaredLength=h,a.sqrLen=h,c.normalize);a.normalize=lt,a.exactEquals=c.exactEquals,a.equals=c.equals;var ct,ht,ut;ct=Ye.create(),ht=Ye.fromValues(1,0,0),ut=Ye.fromValues(0,1,0);a.rotationTo=function(e,t,i){var r=Ye.dot(t,i);return r<-.999999?(Ye.cross(ct,ht,t),Ye.len(ct)<1e-6&&Ye.cross(ct,ut,t),Ye.normalize(ct,ct),et(e,ct,Math.PI),e):.999999{t(e,(e,t)=>{e&&(o=e),n[i]=t,0==--a&&r(o,n)})})}function ti(e){const t=[];for(const i in e)t.push(e[i]);return t}function ii(e,...t){for(const i of t)for(const t in i)e[t]=i[t];return e}let ri=1;function ai(){return ri++}function ni(){return function e(t){return t?(t^Math.random()*(16>>t/4)).toString(16):([1e7]+-[1e3]+-4e3+-8e3+-1e11).replace(/[018]/g,e)}()}function oi(e){return e<=1?1:Math.pow(2,Math.ceil(Math.log(e)/Math.LN2))}function si(e){return e&&/^[0-9a-f]{8}-[0-9a-f]{4}-[4][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$/i.test(e)}function li(e,t){e.forEach(e=>{t[e]&&(t[e]=t[e].bind(t))})}function ci(e,t){return-1!==e.indexOf(t,e.length-t.length)}function hi(e,t,i){const r={};for(const i in e)r[i]=t.call(this,e[i],i,e);return r}function ui(e,t,i){const r={};for(const i in e)t.call(this,e[i],i,e)&&(r[i]=e[i]);return r}function di(e){return Array.isArray(e)?e.map(di):"object"==typeof e&&e?hi(e,di):e}const pi={};function fi(e){pi[e]||("undefined"!=typeof console&&console.warn(e),pi[e]=!0)}function mi(e,t,i){return(i.y-e.y)*(t.x-e.x)>(t.y-e.y)*(i.x-e.x)}function _i([e,t,i]){var r=x(t+90),a=x(i);return{x:e*Math.cos(r)*Math.sin(a),y:e*Math.sin(r)*Math.sin(a),z:e*Math.cos(a),azimuthal:t,polar:i}}function gi(){return"undefined"!=typeof WorkerGlobalScope&&"undefined"!=typeof self&&self instanceof WorkerGlobalScope}function yi(e){const n={};if(e.replace(/(?:^|(?:\s*\,\s*))([^\x00-\x20\(\)<>@\,;\:\\"\/\[\]\?\=\{\}\x7F]+)(?:\=(?:([^\x00-\x20\(\)<>@\,;\:\\"\/\[\]\?\=\{\}\x7F]+)|(?:\"((?:[^"\\]|\\.)*)\")))?/g,(e,t,i,r)=>{const a=i||r;return n[t]=!a||a.toLowerCase(),""}),n["max-age"]){const e=parseInt(n["max-age"],10);isNaN(e)?delete n["max-age"]:n["max-age"]=e}return n}let xi,vi,bi,wi,Ti,Ei,Si=null;function Mi(e){try{const t=self[e];return t.setItem("_mapbox_test_",1),t.removeItem("_mapbox_test_"),!0}catch(e){return!1}}function Ii(e,t){return[e[4*t],e[4*t+1],e[4*t+2],e[4*t+3]]}function Ai(e,t,i,r){for(;t>1;e[a]>1;e[a]<=r?t=1+a:i=a}return t}function Pi(e){return 0void 0!==wi?wi:performance.now(),setNow(e){wi=e},restoreNow(){wi=void 0},frame(e){const t=requestAnimationFrame(e);return{cancel:()=>cancelAnimationFrame(t)}},getImageData(e,t=0){var{width:i,height:r}=e;const a=(Ti=Ti||document.createElement("canvas")).getContext("2d",{willReadFrequently:!0});if(a)return(i>Ti.width||r>Ti.height)&&(Ti.width=i,Ti.height=r),a.clearRect(-t,-t,i+2*t,r+2*t),a.drawImage(e,0,0,i,r),a.getImageData(-t,-t,i+2*t,r+2*t);throw new Error("failed to create canvas 2d context")},resolveURL:e=>((vi=vi||document.createElement("a")).href=e,vi.href),get devicePixelRatio(){return window.devicePixelRatio},get prefersReducedMotion(){return!!window.matchMedia&&(bi=null==bi?window.matchMedia("(prefers-reduced-motion: reduce)"):bi).matches},hasCanvasFingerprintNoise(){if(void 0!==Ei)return Ei;if(!Di())return Ei=!1;const t=new OffscreenCanvas(85,1),i=t.getContext("2d",{willReadFrequently:!0});let r=0;for(let e=0;e{if(!n){if(e&&"SecurityError"!==e.message&&fi(e.toString()),t&&i)return f(t);const r=Date.now();fetch(u).then(e=>{if(e.ok){const o=d?e.clone():null;return f(e,o,r)}return s(new Qi(e.statusText,e.status,o.url))}).catch(e=>{"AbortError"!==e.name&&s(new Error(e.message+" "+o.url))})}},f=(t,i,r)=>{("arrayBuffer"===o.type?t.arrayBuffer():"json"===o.type?t.json():t.text()).then(e=>{n||(i&&r&&function(e,a,t){if(Gi(),Vi){var i=yi(a.headers.get("Cache-Control")||"");if(!i["no-store"]){const o={status:a.status,statusText:a.statusText,headers:new Headers};a.headers.forEach((e,t)=>o.headers.set(t,e)),i["max-age"]&&o.headers.set("Expires",new Date(t+1e3*i["max-age"]).toUTCString());i=o.headers.get("Expires");if(i&&!(new Date(i).getTime()-t<42e4)){let r=ki(e.url,{persistentParams:Ni});if(206===a.status){const a=e.headers.get("Range");if(!a)return;o.status=200,r=Li(r,{range:a})}var n=a,i=e=>{const t=new Response(200!==(i=a.status)&&404!==i&&[101,103,204,205,304].includes(i)?null:e,o);var i;Gi(),Vi&&Vi.then(e=>e.put(r,t)).catch(e=>fi(e.message))};if(void 0===Ui)try{new Response(new ReadableStream),Ui=!0}catch(n){Ui=!1}Ui?i(n.body):n.blob().then(i)}}}}(u,i,r),a=!0,s(null,e,t.headers.get("Cache-Control"),t.headers.get("Expires")))}).catch(e=>{n||s(new Error(e.message))})};return d?(l=u,c=p,Gi(),Vi?Vi.then(i=>{let r=ki(l.url,{persistentParams:Ni});var e=l.headers.get("Range");e&&(r=Li(r,{range:e})),i.match(r).then(e=>{var t=function(e){if(!e)return!1;var t=new Date(e.headers.get("Expires")||0),e=yi(e.headers.get("Cache-Control")||"");return t>Date.now()&&!e["no-cache"]}(e);i.delete(r),t&&i.put(r,e.clone()),c(null,e,t)}).catch(c)}).catch(c):c(null)):p(null,null),{cancel:()=>{n=!0,a||h.abort()}};return}if(gi()&&self.worker&&self.worker.actor)return self.worker.actor.send("getResource",e,t,void 0,!0)}var i;{var r=e,a=t;const n=new XMLHttpRequest;n.open(r.method||"GET",r.url,!0),"arrayBuffer"===r.type&&(n.responseType="arraybuffer");for(const a in r.headers)n.setRequestHeader(a,r.headers[a]);return"json"===r.type&&(n.responseType="text",n.setRequestHeader("Accept","application/json")),n.withCredentials="include"===r.credentials,n.onerror=()=>{a(new Error(n.statusText))},n.onload=()=>{if((200<=n.status&&n.status<300||0===n.status)&&null!==n.response){let e=n.response;if("json"===r.type)try{e=JSON.parse(n.response)}catch(e){return a(e)}a(null,e,n.getResponseHeader("Cache-Control"),n.getResponseHeader("Expires"))}else a(new Qi(n.statusText,n.status,r.url))},n.send(r.body),{cancel:()=>n.abort()}}}function tr(e,t){return er(ii(e,{type:"arrayBuffer"}),t)}const ir=gi()?()=>self.worker&&self.worker.referrer:()=>("blob:"===location.protocol?parent:self).location.href;const rr="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAC0lEQVQYV2NgAAIAAAUAAarVyFEAAAAASUVORK5CYII=";let ar,nr;ar=[],nr=0;function or(e,s){if($i.supported&&(e.headers||(e.headers={}),e.headers.accept="image/webp,*/*"),nr>=o.MAX_PARALLEL_IMAGE_REQUESTS){const i={requestParameters:e,callback:s,cancelled:!1,cancel(){this.cancelled=!0}};return ar.push(i),i}nr++;let i=!1;const l=()=>{if(!i)for(i=!0,nr--;ar.length&&nr{if(l(),e)s(e);else if(t)if(self.createImageBitmap)n=(e,t)=>s(e,t,i,r),e=new Blob([new Uint8Array(t)],{type:"image/png"}),createImageBitmap(e).then(e=>{n(null,e)}).catch(e=>{n(new Error(`Could not load image because of ${e.message}. Please make sure to use a supported image type such as PNG or JPEG. Note that SVGs are not supported.`))});else{e=t;var a=(e,t)=>s(e,t,i,r);const o=new Image;o.onload=()=>{a(null,o),URL.revokeObjectURL(o.src),o.onload=null,requestAnimationFrame(()=>{o.src=rr})},o.onerror=()=>a(new Error("Could not load image. Please make sure to use a supported image type such as PNG or JPEG. Note that SVGs are not supported.")),t=new Blob([new Uint8Array(e)],{type:"image/png"}),o.src=e.byteLength?URL.createObjectURL(t):rr}var n});return{cancel:()=>{t.cancel(),l()}}}const sr="NO_ACCESS_TOKEN",lr=/^(\w+):\/\/([^/?]*)(\/[^?]+)?\??(.+)?/;function cr(e){const t=e.match(lr);if(t)return{protocol:t[1],authority:t[2],path:t[3]||"/",params:t[4]?t[4].split("&"):[]};throw new Error("Unable to parse URL object")}function hr(e){var t=e.params.length?"?"+e.params.join("&"):"";return e.protocol+"://"+e.authority+e.path+t}const ur="mapbox.eventData";function dr(e){if(!e)return null;var t=e.split(".");if(!t||3!==t.length)return null;try{return JSON.parse(decodeURIComponent(atob(t[1]).split("").map(e=>"%"+("00"+e.charCodeAt(0).toString(16)).slice(-2)).join("")))}catch(e){return null}}class pr{constructor(e){this.type=e,this.anonId=null,this.eventData={},this.queue=[],this.pendingRequest=null}getStorageKey(e){var t=dr(o.ACCESS_TOKEN),t=t&&t.u?btoa(encodeURIComponent(t.u).replace(/%([0-9A-F]{2})/g,(e,t)=>String.fromCharCode(Number("0x"+t)))):o.ACCESS_TOKEN||"";return e?ur+`.${e}:`+t:ur+":"+t}fetchEventData(){const e=Mi("localStorage"),t=this.getStorageKey(),i=this.getStorageKey("uuid");if(e)try{const e=localStorage.getItem(t);e&&(this.eventData=JSON.parse(e));var r=localStorage.getItem(i);r&&(this.anonId=r)}catch(e){fi("Unable to read from LocalStorage")}}saveEventData(){var e=Mi("localStorage"),t=this.getStorageKey(),i=this.getStorageKey("uuid"),r=this.anonId;if(e&&r)try{localStorage.setItem(i,r),1<=Object.keys(this.eventData).length&&localStorage.setItem(t,JSON.stringify(this.eventData))}catch(e){fi("Unable to write to LocalStorage")}}processRequests(e){}postEvent(e,t,i,r){if(o.EVENTS_URL){const a=cr(o.EVENTS_URL);a.params.push("access_token="+(r||o.ACCESS_TOKEN||""));var e={event:this.type,created:new Date(e).toISOString()},t=t?ii(e,t):e,e={url:hr(a),headers:{"Content-Type":"text/plain"},body:JSON.stringify([t])};this.pendingRequest=(t=e,e=e=>{this.pendingRequest=null,i(e),this.saveEventData(),this.processRequests(r)},er(ii(t,{method:"POST"}),e))}}queueRequest(e,t){this.queue.push(e),this.processRequests(t)}}const fr=new class extends pr{constructor(e){super("appUserTurnstile"),this._customAccessToken=e}postTurnstileEvent(e,t){o.EVENTS_URL&&o.ACCESS_TOKEN&&Array.isArray(e)&&e.some(e=>k(e)||L(e))&&this.queueRequest(Date.now(),t)}processRequests(t){if(!this.pendingRequest&&0!==this.queue.length){this.anonId&&this.eventData.lastSuccess&&this.eventData.tokenU||this.fetchEventData();const i=dr(o.ACCESS_TOKEN),r=i?i.u:o.ACCESS_TOKEN;let e=r!==this.eventData.tokenU;si(this.anonId)||(this.anonId=ni(),e=!0);const a=this.queue.shift();if(this.eventData.lastSuccess){const t=new Date(this.eventData.lastSuccess),P=new Date(a),i=(a-this.eventData.lastSuccess)/864e5;e=e||1<=i||i<-1||t.getDate()!==P.getDate()}else e=!0;e?this.postEvent(a,{sdkIdentifier:"mapbox-gl-js",sdkVersion:P,skuId:"01","enabled.telemetry":!1,userId:this.anonId},e=>{e||(this.eventData.lastSuccess=a,this.eventData.tokenU=r)},t):this.processRequests()}}},mr=fr.postTurnstileEvent.bind(fr),_r=new class extends pr{constructor(){super("map.load"),this.success={},this.skuToken=""}postMapLoadEvent(e,t,i,r){this.skuToken=t,this.errorCb=r,o.EVENTS_URL&&(i||o.ACCESS_TOKEN?this.queueRequest({id:e,timestamp:Date.now()},i):this.errorCb(new Error(sr)))}processRequests(e){if(!this.pendingRequest&&0!==this.queue.length){const{id:t,timestamp:i}=this.queue.shift();t&&this.success[t]||(this.anonId||this.fetchEventData(),si(this.anonId)||(this.anonId=ni()),this.postEvent(i,{sdkIdentifier:"mapbox-gl-js",sdkVersion:P,skuId:"01",skuToken:this.skuToken,userId:this.anonId},e=>{e?this.errorCb(e):t&&(this.success[t]=!0)},e))}}remove(){this.errorCb=null}},gr=_r.postMapLoadEvent.bind(_r),yr=new class extends pr{constructor(){super("style.load"),this.eventIdPerMapInstanceMap=new Map,this.mapInstanceIdMap=new WeakMap}getMapInstanceId(e){let t=this.mapInstanceIdMap.get(e);return t||(t=ni(),this.mapInstanceIdMap.set(e,t)),t}getEventId(e){var t=this.eventIdPerMapInstanceMap.get(e)||0;return this.eventIdPerMapInstanceMap.set(e,t+1),t}postStyleLoadEvent(e,t){var{map:t,style:i,importedStyles:r}=t;if(o.EVENTS_URL&&(e||o.ACCESS_TOKEN)){const a=this.getMapInstanceId(t),n={mapInstanceId:a,eventId:this.getEventId(a),style:i};r.length&&(n.importedStyles=r),this.queueRequest({timestamp:Date.now(),payload:n},e)}}processRequests(e){var t,i;this.pendingRequest||0===this.queue.length||({timestamp:t,payload:i}=this.queue.shift(),this.postEvent(t,i,()=>{},e))}},xr=yr.postStyleLoadEvent.bind(yr),vr=new class extends pr{constructor(){super("gljs.performance")}postPerformanceEvent(e,t){o.EVENTS_URL&&(e||o.ACCESS_TOKEN)&&this.queueRequest({timestamp:Date.now(),performanceData:t},e)}processRequests(e){if(!this.pendingRequest&&0!==this.queue.length){var{timestamp:t,performanceData:i}=this.queue.shift(),i=function(e){const t=performance.getEntriesByType("resource"),i=performance.getEntriesByType("mark"),r=function(e){const t={};if(e)for(const r in e)if("other"!==r)for(const a of e[r]){const e=r+"ResolveRangeMin",n=r+"ResolveRangeMax",o=r+"RequestCount",s=r+"RequestCachedCount";t[e]=Math.min(t[e]||1/0,a.startTime),t[n]=Math.max(t[n]||-1/0,a.responseEnd);var i=e=>{void 0===t[e]&&(t[e]=0),++t[e]};void 0!==a.transferSize&&0===a.transferSize&&i(s),i(o)}return t}(function(e,t){const i={};if(e)for(const r of e){const e=t(r);void 0===i[e]&&(i[e]=[]),i[e].push(r)}return i}(t,U)),a=window.devicePixelRatio,n=navigator.connection||navigator.mozConnection||navigator.webkitConnection,o=n?n.effectiveType:void 0,s={counters:[],metadata:[],attributes:[]},l=(e,t,i)=>{null!=i&&e.push({name:t,value:i.toString()})};for(const e in r)l(s.counters,e,r[e]);if(e.interactionRange[0]!==1/0&&e.interactionRange[1]!==-1/0&&(l(s.counters,"interactionRangeMin",e.interactionRange[0]),l(s.counters,"interactionRangeMax",e.interactionRange[1])),i)for(const e of Object.keys(N)){const P=N[e],t=i.find(e=>e.name===P);t&&l(s.counters,P,t.startTime)}return l(s.counters,"visibilityHidden",e.visibilityHidden),l(s.attributes,"style",function(e){if(e)for(const i of e){const e=i.name.split("?")[0];if(F(e)){var t=e.split("/").slice(-2);if(2===t.length)return`mapbox://styles/${t[0]}/`+t[1]}}}(t)),l(s.attributes,"terrainEnabled",e.terrainEnabled?"true":"false"),l(s.attributes,"fogEnabled",e.fogEnabled?"true":"false"),l(s.attributes,"projection",e.projection),l(s.attributes,"zoom",e.zoom),l(s.metadata,"devicePixelRatio",a),l(s.metadata,"connectionEffectiveType",o),l(s.metadata,"navigatorUserAgent",navigator.userAgent),l(s.metadata,"screenWidth",window.screen.width),l(s.metadata,"screenHeight",window.screen.height),l(s.metadata,"windowWidth",window.innerWidth),l(s.metadata,"windowHeight",window.innerHeight),l(s.metadata,"mapWidth",e.width/a),l(s.metadata,"mapHeight",e.height/a),l(s.metadata,"webglRenderer",e.renderer),l(s.metadata,"webglVendor",e.vendor),l(s.metadata,"sdkVersion",P),l(s.metadata,"sdkIdentifier","mapbox-gl-js"),s}(i);for(const e of i.metadata);for(const e of i.counters);for(const e of i.attributes);this.postEvent(t,i,()=>{},e)}}},br=vr.postPerformanceEvent.bind(vr),wr=new class extends pr{constructor(){super("map.auth"),this.success={},this.skuToken=""}getSession(e,t,i,r){if(o.API_URL&&o.SESSION_PATH){const n=cr(o.API_URL+o.SESSION_PATH);n.params.push("sku="+(t||"")),n.params.push("access_token="+(r||o.ACCESS_TOKEN||""));var a,t={url:hr(n),headers:{"Content-Type":"text/plain"}};this.pendingRequest=(t=t,a=e=>{this.pendingRequest=null,i(e),this.saveEventData(),this.processRequests(r)},er(ii(t,{method:"GET"}),a))}}getSessionAPI(e,t,i,r){this.skuToken=t,this.errorCb=r,o.SESSION_PATH&&o.API_URL&&(i||o.ACCESS_TOKEN?this.queueRequest({id:e,timestamp:Date.now()},i):this.errorCb(new Error(sr)))}processRequests(e){if(!this.pendingRequest&&0!==this.queue.length){const{id:t,timestamp:i}=this.queue.shift();t&&this.success[t]||this.getSession(i,this.skuToken,e=>{e?this.errorCb(e):t&&(this.success[t]=!0)},e)}}remove(){this.errorCb=null}},Tr=wr.getSessionAPI.bind(wr),Er=new Set;function Sr(e,t){for(var i,r,a,n=e.length-(i=3&e.length),o=t,s=3432918353,l=461845907,c=0;c>>16)*s&65535)<<16)&4294967295)<<15|a>>>17))*l+(((a>>>16)*l&65535)<<16)&4294967295)<<13|o>>>19))+((5*(o>>>16)&65535)<<16)&4294967295))+((58964+(r>>>16)&65535)<<16);switch(a=0,i){case 3:a^=(255&e.charCodeAt(c+2))<<16;case 2:a^=(255&e.charCodeAt(c+1))<<8;case 1:o^=a=(65535&(a=(a=(65535&(a^=255&e.charCodeAt(c)))*s+(((a>>>16)*s&65535)<<16)&4294967295)<<15|a>>>17))*l+(((a>>>16)*l&65535)<<16)&4294967295}return o=2246822507*(65535&(o=(o^=e.length)^o>>>16))+((2246822507*(o>>>16)&65535)<<16)&4294967295,((o=3266489909*(65535&(o^=o>>>13))+((3266489909*(o>>>16)&65535)<<16)&4294967295)^o>>>16)>>>0}var i={exports:{}},l={exports:function(e,t){for(var i,r=e.length,a=t^r,n=0;4<=r;)i=1540483477*(65535&(i=255&e.charCodeAt(n)|(255&e.charCodeAt(++n))<<8|(255&e.charCodeAt(++n))<<16|(255&e.charCodeAt(++n))<<24))+((1540483477*(i>>>16)&65535)<<16),a=1540483477*(65535&a)+((1540483477*(a>>>16)&65535)<<16)^1540483477*(65535&(i^=i>>>24))+((1540483477*(i>>>16)&65535)<<16),r-=4,++n;switch(r){case 3:a^=(255&e.charCodeAt(n+2))<<16;case 2:a^=(255&e.charCodeAt(n+1))<<8;case 1:a=1540483477*(65535&(a^=255&e.charCodeAt(n)))+((1540483477*(a>>>16)&65535)<<16)}return((a=1540483477*(65535&(a^=a>>>13))+((1540483477*(a>>>16)&65535)<<16))^a>>>15)>>>0}}.exports,Mr=(i.exports=Sr,i.exports.murmur3=Sr,i.exports.murmur2=l,j(i.exports));class Ir{constructor(e,...t){ii(this,t[0]||{}),this.type=e}}class Ar extends Ir{constructor(e,t={}){super("error",ii({error:e},t))}}function Cr(e,t,i){i[e]&&-1!==i[e].indexOf(t)||(i[e]=i[e]||[],i[e].push(t))}function Pr(e,t,i){i&&i[e]&&(-1!==(t=i[e].indexOf(t))&&i[e].splice(t,1))}class zr{on(e,t){return this._listeners=this._listeners||{},Cr(e,t,this._listeners),this}off(e,t){return Pr(e,t,this._listeners),Pr(e,t,this._oneTimeListeners),this}once(t,e){return e?(this._oneTimeListeners=this._oneTimeListeners||{},Cr(t,e,this._oneTimeListeners),this):new Promise(e=>this.once(t,e))}fire(e,t){const i="string"==typeof e?new Ir(e,t):e,r=i.type;if(this.listens(r)){const e=(i.target=this)._listeners&&this._listeners[r]?this._listeners[r].slice():[];for(const t of e)t.call(this,i);const t=this._oneTimeListeners&&this._oneTimeListeners[r]?this._oneTimeListeners[r].slice():[];for(const e of t)Pr(r,e,this._oneTimeListeners),e.call(this,i);const a=this._eventedParent;a&&(ii(i,"function"==typeof this._eventedParentData?this._eventedParentData():this._eventedParentData),a.fire(i))}else i instanceof Ar&&console.error(i.error);return this}listens(e){return!!(this._listeners&&this._listeners[e]&&0>4|(3840&t)>>8,240&t|(240&t)>>4,15&t|(15&t)<<4,1]:null:7===e.length&&0<=(t=parseInt(e.substr(1),16))&&t<=16777215?[(16711680&t)>>16,(65280&t)>>8,255&t,1]:null;var t=e.indexOf("("),i=e.indexOf(")");if(-1!==t&&i+1===e.length){var r=e.substr(0,t),a=e.substr(t+1,i-(t+1)).split(","),n=1;switch(r){case"rgba":if(4!==a.length)return null;n=kr(a.pop());case"rgb":return 3!==a.length?null:[Lr(a[0]),Lr(a[1]),Lr(a[2]),n];case"hsla":if(4!==a.length)return null;n=kr(a.pop());case"hsl":if(3!==a.length)return null;var o=(parseFloat(a[0])%360+360)%360/360,s=kr(a[1]),l=kr(a[2]),s=l<=.5?l*(s+1):l+s-l*s,l=2*l-s;return[Rr(255*Or(l,s,o+1/3)),Rr(255*Or(l,s,o)),Rr(255*Or(l,s,o-1/3)),n];default:return null}}return null}}catch(Te){}class g{constructor(e,t,i,r=1){this.r=e,this.g=t,this.b=i,this.a=r}static parse(e){if(e)return e instanceof g?e:"string"==typeof e&&(e=Te.G(e))?new g(e[0]/255*e[3],e[1]/255*e[3],e[2]/255*e[3],e[3]):void 0}toString(){var[e,t,i,r]=0===this.a?[0,0,0,0]:[255*this.r/this.a,255*this.g/this.a,255*this.b/this.a,this.a];return`rgba(${Math.round(e)},${Math.round(t)},${Math.round(i)},${r})`}toRenderColor(e){var{r:t,g:i,b:r,a}=this;return new Br(e,t,i,r,a)}}class Br{constructor(e,t,i,r,a){if(e){var n=e.image.height,o=n*n,s=(t=0===a?0:t/a*(n-1),i=0===a?0:i/a*(n-1),r=0===a?0:r/a*(n-1),Math.floor(t)),l=Math.floor(i),c=Math.floor(r),h=Math.ceil(t),u=Math.ceil(i),d=Math.ceil(r),p=t-s,f=i-l,m=r-c,e=e.image.data,_=4*(s+l*o+c*n),g=4*(s+l*o+d*n),y=4*(s+u*o+c*n),s=4*(s+u*o+d*n),x=4*(h+l*o+c*n),l=4*(h+l*o+d*n),c=4*(h+u*o+c*n),h=4*(h+u*o+d*n);if(_<0||h>=e.length)throw new Error("out of range");this.r=b(b(b(e[_],e[g],m),b(e[y],e[s],m),f),b(b(e[x],e[l],m),b(e[c],e[h],m),f),p)/255*a,this.g=b(b(b(e[1+_],e[1+g],m),b(e[1+y],e[1+s],m),f),b(b(e[1+x],e[1+l],m),b(e[1+c],e[1+h],m),f),p)/255*a,this.b=b(b(b(e[2+_],e[2+g],m),b(e[2+y],e[2+s],m),f),b(b(e[2+x],e[2+l],m),b(e[2+c],e[2+h],m),f),p)/255*a,this.a=a}else this.r=t,this.g=i,this.b=r,this.a=a}toArray(){var{r:e,g:t,b:i,a:r}=this;return 0===r?[0,0,0,0]:[255*e/r,255*t/r,255*i/r,r]}toArray01(){var{r:e,g:t,b:i,a:r}=this;return 0===r?[0,0,0,0]:[e/r,t/r,i/r,r]}toArray01Scaled(e){var{r:t,g:i,b:r,a}=this;return 0===a?[0,0,0]:[t/a*e,i/a*e,r/a*e]}toArray01PremultipliedAlpha(){var{r:e,g:t,b:i,a:r}=this;return[e,t,i,r]}toArray01Linear(){var{r:e,g:t,b:i,a:r}=this;return 0===r?[0,0,0,0]:[Math.pow(e/r,2.2),Math.pow(t/r,2.2),Math.pow(i/r,2.2),r]}}function b(e,t,i){return e*(1-i)+t*i}function Fr(e,i,r){return e.map((e,t)=>b(e,i[t],r))}g.black=new g(0,0,0,1),g.white=new g(1,1,1,1),g.transparent=new g(0,0,0,0),g.red=new g(1,0,0,1),g.blue=new g(0,0,1,1);var Nr=Object.freeze({__proto__:null,array:Fr,color:function(e,t,i){return new g(b(e.r,t.r,i),b(e.g,t.g,i),b(e.b,t.b,i),b(e.a,t.a,i))},number:b});function Vr(e,...t){for(const i of t)for(const t in i)e[t]=i[t];return e}class Ur extends Error{constructor(e,t){super(t),this.message=t,this.key=e}}class jr{constructor(e,t=[]){this.parent=e,this.bindings={};for(const[e,i]of t)this.bindings[e]=i}concat(e){return new jr(this,e)}get(e){if(this.bindings[e])return this.bindings[e];if(this.parent)return this.parent.get(e);throw new Error(e+" not found in scope.")}has(e){return!!this.bindings[e]||!!this.parent&&this.parent.has(e)}}const Gr={kind:"null"},u={kind:"number"},d={kind:"string"},p={kind:"boolean"},qr={kind:"color"},$r={kind:"object"},f={kind:"value"},Zr={kind:"collator"},Wr={kind:"formatted"},Hr={kind:"resolvedImage"};function Xr(e,t){return{kind:"array",itemType:e,N:t}}function Yr(e){var t;return"array"===e.kind?(t=Yr(e.itemType),"number"==typeof e.N?`array<${t}, ${e.N}>`:"value"===e.itemType.kind?"array":`array<${t}>`):e.kind}const Jr=[Gr,u,d,p,qr,Wr,$r,Xr(f),Hr];function Kr(e,t){if("error"===t.kind)return null;if("array"===e.kind){if("array"===t.kind&&(0===t.N&&"value"===t.itemType.kind||!Kr(e.itemType,t.itemType))&&("number"!=typeof e.N||e.N===t.N))return null}else{if(e.kind===t.kind)return null;if("value"===e.kind)for(const e of Jr)if(!Kr(e,t))return null}return`Expected ${Yr(e)} but found ${Yr(t)} instead.`}function Qr(t,e){return e.some(e=>e.kind===t.kind)}function ea(t,e){return e.some(e=>"null"===e?null===t:"array"===e?Array.isArray(t):"object"===e?t&&!Array.isArray(t)&&"object"==typeof t:e===typeof t)}class ta{constructor(e,t,i){this.sensitivity=e?t?"variant":"case":t?"accent":"base",this.locale=i,this.collator=new Intl.Collator(this.locale||[],{sensitivity:this.sensitivity,usage:"search"})}compare(e,t){return this.collator.compare(e,t)}resolvedLocale(){return new Intl.Collator(this.locale||[]).resolvedOptions().locale}}class ia{constructor(e,t,i,r,a){this.text=e.normalize?e.normalize():e,this.image=t,this.scale=i,this.fontStack=r,this.textColor=a}}class ra{constructor(e){this.sections=e}static fromString(e){return new ra([new ia(e,null,null,null,null)])}isEmpty(){return 0===this.sections.length||!this.sections.some(e=>0!==e.text.length||e.image&&0!==e.image.namePrimary.length)}static factory(e){return e instanceof ra?e:ra.fromString(e)}toString(){return 0===this.sections.length?"":this.sections.map(e=>e.text).join("")}serialize(){const e=["format"];for(const t of this.sections)if(t.image)e.push(["image",t.image.namePrimary]);else{e.push(t.text);const i={};t.fontStack&&(i["text-font"]=["literal",t.fontStack.split(",")]),t.scale&&(i["font-scale"]=t.scale),t.textColor&&(i["text-color"]=["rgba"].concat(t.textColor.toRenderColor(null).toArray())),e.push(i)}return e}}class aa{constructor(e){this.namePrimary=e.namePrimary,e.nameSecondary&&(this.nameSecondary=e.nameSecondary),this.available=e.available}toString(){return this.nameSecondary?`[${this.namePrimary},${this.nameSecondary}]`:this.namePrimary}static fromString(e,t){return e?new aa({namePrimary:e,nameSecondary:t,available:!1}):null}serialize(){return this.nameSecondary?["image",this.namePrimary,this.nameSecondary]:["image",this.namePrimary]}}function na(e,t,i,r){return"number"==typeof e&&0<=e&&e<=255&&"number"==typeof t&&0<=t&&t<=255&&"number"==typeof i&&0<=i&&i<=255?void 0===r||"number"==typeof r&&0<=r&&r<=1?null:`Invalid rgba value [${[e,t,i,r].join(", ")}]: 'a' must be between 0 and 1.`:`Invalid rgba value [${("number"==typeof r?[e,t,i,r]:[e,t,i]).join(", ")}]: 'r', 'g', and 'b' must be between 0 and 255.`}function oa(e){if(null===e)return 1;if("string"==typeof e)return 1;if("boolean"==typeof e)return 1;if("number"==typeof e)return 1;if(e instanceof g)return 1;if(e instanceof ta)return 1;if(e instanceof ra)return 1;if(e instanceof aa)return 1;if(Array.isArray(e)){for(const t of e)if(!oa(t))return;return 1}if("object"==typeof e){for(const i in e)if(!oa(e[i]))return;return 1}}function sa(t){if(null===t)return Gr;if("string"==typeof t)return d;if("boolean"==typeof t)return p;if("number"==typeof t)return u;if(t instanceof g)return qr;if(t instanceof ta)return Zr;if(t instanceof ra)return Wr;if(t instanceof aa)return Hr;if(Array.isArray(t)){var i=t.length;let e;for(const r of t){const t=sa(r);if(e){if(e===t)continue;e=f;break}e=t}return Xr(e||f,i)}return $r}function la(e){var t=typeof e;return null===e?"":"string"==t||"number"==t||"boolean"==t?String(e):e instanceof g||e instanceof ra||e instanceof aa?e.toString():JSON.stringify(e)}class ca{constructor(e,t){this.type=e,this.value=t}static parse(e,t){if(2!==e.length)return t.error(`'literal' expression requires exactly one argument, but found ${e.length-1} instead.`);if(!oa(e[1]))return t.error("invalid value");e=e[1];let i=sa(e);t=t.expectedType;return"array"!==i.kind||0!==i.N||!t||"array"!==t.kind||"number"==typeof t.N&&0!==t.N||(i=t),new ca(i,e)}evaluate(){return this.value}eachChild(){}outputDefined(){return!0}serialize(){return"array"===this.type.kind||"object"===this.type.kind?["literal",this.value]:this.value instanceof g?["rgba"].concat(this.value.toRenderColor(null).toArray()):this.value instanceof ra?this.value.serialize():this.value}}class ha{constructor(e){this.name="ExpressionEvaluationError",this.message=e}toJSON(){return this.message}}const ua={string:d,number:u,boolean:p,object:$r};class da{constructor(e,t){this.type=e,this.args=t}static parse(i,r){if(i.length<2)return r.error("Expected at least one argument.");let a,n=1;var e=i[0];if("array"===e){let e,t;if(2e.outputDefined())}serialize(){const e=this.type,t=[e.kind];var i;return"array"!==e.kind||"string"!==(i=e.itemType).kind&&"number"!==i.kind&&"boolean"!==i.kind||(t.push(i.kind),("number"==typeof(i=e.N)||1e.serialize()))}}class pa{constructor(e){this.type=Wr,this.sections=e}static parse(t,r){if(t.length<2)return r.error("Expected at least one argument.");var e=t[1];if(!Array.isArray(e)&&"object"==typeof e)return r.error("First argument must be an image or text section.");const a=[];let n=!1;for(let e=1;e<=t.length-1;++e){var o=t[e];if(n&&"object"==typeof o&&!Array.isArray(o)){n=!1;let e=null;if(o["font-scale"]&&!(e=r.parse(o["font-scale"],1,u)))return null;let t=null;if(o["text-font"]&&!(t=r.parse(o["text-font"],1,Xr(d))))return null;let i=null;if(o["text-color"]&&!(i=r.parse(o["text-color"],1,qr)))return null;const s=a[a.length-1];s.scale=e,s.font=t,s.textColor=i}else{o=r.parse(t[e],1,f);if(!o)return null;var i=o.type.kind;if("string"!==i&&"value"!==i&&"null"!==i&&"resolvedImage"!==i)return r.error("Formatted text type must be 'string', 'value', 'image' or 'null'.");n=!0,a.push({content:o,scale:null,font:null,textColor:null})}}return new pa(a)}evaluate(i){return new ra(this.sections.map(e=>{var t=e.content.evaluate(i);return sa(t)===Hr?new ia("",t,null,null,null):new ia(la(t),null,e.scale?e.scale.evaluate(i):null,e.font?e.font.evaluate(i).join(","):null,e.textColor?e.textColor.evaluate(i):null)}))}eachChild(e){for(const t of this.sections)e(t.content),t.scale&&e(t.scale),t.font&&e(t.font),t.textColor&&e(t.textColor)}outputDefined(){return!1}serialize(){const e=["format"];for(const t of this.sections){e.push(t.content.serialize());const i={};t.scale&&(i["font-scale"]=t.scale.serialize()),t.font&&(i["text-font"]=t.font.serialize()),t.textColor&&(i["text-color"]=t.textColor.serialize()),e.push(i)}return e}}class fa{constructor(e,t){this.type=Hr,this.inputPrimary=e,this.inputSecondary=t}static parse(e,t){if(e.length<2)return t.error("Expected two or more arguments.");var i=t.parse(e[1],1,d);if(!i)return t.error("No image name provided.");if(2===e.length)return new fa(i);e=t.parse(e[2],1,d);return e?new fa(i,e):t.error("Secondary image variant is not a string.")}evaluate(e){const t=aa.fromString(this.inputPrimary.evaluate(e),this.inputSecondary?this.inputSecondary.evaluate(e):void 0);return t&&e.availableImages&&(t.available=-1e.evaluate(i)):la(this.args[0].evaluate(i));{let e=null;for(const n of this.args){if(null===(e=n.evaluate(i)))return 0;var t=Number(e);if(!isNaN(t))return t}throw new ha(`Could not convert ${JSON.stringify(e)} to number.`)}}eachChild(e){this.args.forEach(e)}outputDefined(){return this.args.every(e=>e.outputDefined())}serialize(){if("formatted"===this.type.kind)return new pa([{content:this.args[0],scale:null,font:null,textColor:null}]).serialize();if("resolvedImage"===this.type.kind)return new fa(this.args[0]).serialize();const t="array"===this.type.kind?[]:["to-"+this.type.kind];return this.eachChild(e=>{t.push(e.serialize())}),t}}const ya=["Unknown","Point","LineString","Polygon"];class xa{constructor(e,t){this.globals=null,this.feature=null,this.featureState=null,this.formattedSection=null,this._parseColorCache={},this.availableImages=null,this.canonical=null,this.featureTileCoord=null,this.featureDistanceData=null,this.scope=e,this.options=t}id(){return this.feature&&void 0!==this.feature.id?this.feature.id:null}geometryType(){return this.feature?"number"==typeof this.feature.type?ya[this.feature.type]:this.feature.type:null}geometry(){return this.feature&&"geometry"in this.feature?this.feature.geometry:null}canonicalID(){return this.canonical}properties(){return this.feature&&this.feature.properties||{}}measureLight(e){return this.globals.brightness||0}distanceFromCenter(){var e,t,i,r;return this.featureTileCoord&&this.featureDistanceData?(e=this.featureDistanceData.center,t=this.featureDistanceData.scale,{x:i,y:r}=this.featureTileCoord,this.featureDistanceData.bearing[0]*(i*t-e[0])+this.featureDistanceData.bearing[1]*(r*t-e[1])):0}parseColor(e){let t=this._parseColorCache[e];return t=t||(this._parseColorCache[e]=g.parse(e))}getConfig(e){return this.options?this.options.get(e):null}}class va{constructor(e,t,i,r,a){this.name=e,this.type=t,this._evaluate=i,this.args=r,this._overloadIndex=a}evaluate(e){if(!this._evaluate){const e=va.definitions[this.name];this._evaluate=Array.isArray(e)?e[2]:e.overloads[this._overloadIndex][1]}return this._evaluate(e,this.args)}eachChild(e){this.args.forEach(e)}outputDefined(){return!1}serialize(){return[this.name].concat(this.args.map(e=>e.serialize()))}static parse(i,r){const a=i[0],n=va.definitions[a];if(!n)return r.error(`Unknown expression "${a}". If you wanted a literal array, use ["literal", [...]].`,0);const o=Array.isArray(n)?n[0]:n.type,s=Array.isArray(n)?[[n[1],n[2]]]:n.overloads,l=[];let c=null,e=-1;for(const[n,h]of s)if(!Array.isArray(n)||n.length===i.length-1){l.push(n),e++,c=new En(r.registry,r.path,null,r.scope,void 0,r._scope,r.options);const s=[];let t=!1;for(let e=1;ee)).map(ba).join(" | "),n=[];for(let e=1;e=t[2]||e[1]<=t[1]||e[3]>=t[3])}function Ia(r,i,a=!1){let n=!1;for(let e=0,t=i.length;er[1]!=l[1]>r[1]&&r[0]<(l[0]-s[0])*(r[1]-s[1])/(l[1]-s[1])+s[0]&&(n=!n)}}var c,h,u,d;return n}function Aa(e,t,i,r){var a=r[0]-i[0],r=r[1]-i[1],e=(e[0]-i[0])*r-a*(e[1]-i[1]),r=(t[0]-i[0])*r-a*(t[1]-i[1]);return 0r[2]){const i=.5*a;let e=t[0]-r[0]>i?-a:r[0]-t[0]>i?a:0;0===e&&(e=t[0]-r[2]>i?-a:r[2]-t[0]>i?a:0),t[0]+=e}Sa(i,t)}function ka(e,t,i,r){const a=Math.pow(2,r.z)*Pa,n=[r.x*Pa,r.y*Pa],o=[];if(!e)return o;for(const r of e)for(const e of r){const r=[e.x+n[0],e.y+n[1]];La(r,t,i,a),o.push(r)}return o}function Oa(e,t,i,r){const a=Math.pow(2,r.z)*Pa,n=[r.x*Pa,r.y*Pa],o=[];if(!e)return o;for(const i of e){const e=[];for(const r of i){const i=[r.x+n[0],r.y+n[1]];Sa(t,i),e.push(i)}o.push(e)}if(t[2]-t[0]<=a/2){(r=t)[0]=r[1]=1/0,r[2]=r[3]=-1/0;for(const e of o)for(const r of e)La(r,t,i,a)}return o}class Ba{constructor(e,t){this.type=p,this.geojson=e,this.geometries=t}static parse(e,t){if(2!==e.length)return t.error(`'within' expression requires exactly one argument, but found ${e.length-1} instead.`);if(oa(e[1])){const t=e[1];if("FeatureCollection"===t.type)for(let e=0;ei)return qa(a,n,(i-(r-o))/o)}return t[t.length-1]}pointToSegmentDistance(e,t,i){let[r,a]=t,n=$a(i[0]-r)*this.kx,o=(i[1]-a)*this.ky;if(0!==n||0!==o){const t=($a(e[0]-r)*this.kx*n+(e[1]-a)*this.ky*o)/(n*n+o*o);1a.index||r.index===a.index&&r.t>a.t){const e=r;r=a,a=e}const n=[r.point],o=r.index+1,s=a.index;!Ga(i[o],n[0])&&o<=s&&n.push(i[o]);for(let e=o+1;e<=s;e++)n.push(i[e]);return Ga(i[s],a.point)||n.push(a.point),n}lineSliceAlong(t,i,r){let a=0;const n=[];for(let e=0;et&&0===n.length&&n.push(qa(o,s,(t-(a-l))/l)),a>=i)return n.push(qa(o,s,(i-(a-l))/l)),n;a>t&&n.push(s)}return n}bufferPoint(e,t){var i=t/this.ky,t=t/this.kx;return[e[0]-t,e[1]-i,e[0]+t,e[1]+i]}bufferBBox(e,t){var i=t/this.ky,t=t/this.kx;return[e[0]-t,e[1]-i,e[2]+t,e[3]+i]}insideBBox(e,t){return 0<=$a(e[0]-t[0])&&$a(e[0]-t[2])<=0&&e[1]>=t[1]&&e[1]<=t[3]}}function Ga(e,t){return e[0]===t[0]&&e[1]===t[1]}function qa(e,t,i){var r=$a(t[0]-e[0]);return[e[0]+r*i,e[1]+(t[1]-e[1])*i]}function $a(e){for(;e<-180;)e+=360;for(;180e>1)-1;0<=e;e--)this._down(e)}push(e){this.data.push(e),this._up(this.length++)}pop(){var e,t;if(0!==this.length)return e=this.data[0],t=this.data.pop(),0<--this.length&&(this.data[0]=t,this._down(0)),e}peek(){return this.data[0]}_up(e){const{data:t,compare:i}=this,r=t[e];for(;0>1,n=t[a];if(0<=i(r,n))break;t[e]=n,e=a}t[e]=r}_down(t){const{data:i,compare:r}=this,e=this.length>>1,a=i[t];for(;t=e[0]&&e[1]e[1])return[null,null];var i=Ja(e);if(t){if(2===i)return[e,null];const t=Math.floor(i/2);return[[e[0],e[0]+t],[e[0]+t,e[1]]]}{if(1===i)return[e,null];const t=Math.floor(i/2)-1;return[[e[0],e[0]+t],[e[0]+t+1,e[1]]]}}function en(t,i){var r=[1/0,1/0,-1/0,-1/0];if(!Ka(i,t.length))return r;for(let e=i[0];e<=i[1];++e)Sa(r,t[e]);return r}function tn(i){var r=[1/0,1/0,-1/0,-1/0];for(let t=0;tt[2]&&(r=e[0]-t[2]),e[1]>t[3]&&(a=e[1]-t[3]),e[3]=n)){var c=a.range1;if(Ja(c)<=s){if(!Ka(c,t.length))return NaN;if(e){const e=function(a,n,t,o){if(!Ka(n,a.length))return NaN;for(let e=n[0];e<=n[1];++e)if(Ia(a[e],t,!0))return 0;let s=1/0;for(let r=n[0];r=o)){var h=n.range1,u=n.range2;if(Ja(h)<=l&&Ja(u)<=c){if(!Ka(h,e.length)||!Ka(u,i.length))return NaN;if(t&&r?o=Math.min(o,function(i,e,r,a,n){if(!Ka(e,i.length)||!Ka(a,r.length))return NaN;let o=1/0;for(let t=e[0];t=n)&&(n=Math.min(n,un(e,t,a,!0,r,n)),0===n))return n;return n}function pn(e,t,i,r,a=1/0){let n=a;var o=en(e,[0,e.length-1]);for(const a of i)if(!(n!==1/0&&rn(o,tn(a),r)>=n)){const i=hn(e,t,a,r,n);if(isNaN(i))return i;if(0===(n=Math.min(n,i)))return n}return n}function fn(e){return"Point"===e||"MultiPoint"===e||"LineString"===e||"MultiLineString"===e||"Polygon"===e||"MultiPolygon"===e}class mn{constructor(e,t){this.type=u,this.geojson=e,this.geometries=t}static parse(e,t){if(2!==e.length)return t.error(`'distance' expression requires either one argument, but found ' ${e.length-1} instead.`);if(oa(e[1])){const t=e[1];if("FeatureCollection"===t.type){for(let e=0;e=o)return o;if(Ma(s,i)){if(ln(e,t))return 0}else if(ln(t,e))return 0;let l=o;for(const o of e)for(let r=0,e=o.length,a=e-1;r"number"==typeof e?gn(e,o,s,l):e))),void 0!==a&&void 0!==h&&n&&!n.includes(h)&&(h=c,r&&(h=_n(r,h))),h=r&&r!==this.type||void 0!==h&&sa(h)!==this.type?_n(this.type.kind,h):h}eachChild(){}outputDefined(){return!1}serialize(){const e=["config",this.key];return this.scope&&e.concat(this.key),e}}function xn(e){if(e instanceof va){if("get"===e.name&&1===e.args.length)return!1;if("feature-state"===e.name)return!1;if("has"===e.name&&1===e.args.length)return!1;if("properties"===e.name||"geometry-type"===e.name||"id"===e.name)return!1;if(/^filter-/.test(e.name))return!1}if(e instanceof Ba)return!1;if(e instanceof mn)return!1;let t=!0;return e.eachChild(e=>{t&&!xn(e)&&(t=!1)}),t}function vn(e){if(e instanceof va&&"feature-state"===e.name)return!1;let t=!0;return e.eachChild(e=>{t&&!vn(e)&&(t=!1)}),t}function bn(e){if(e instanceof yn)return new Set([e.key]);let t=new Set;return e.eachChild(e=>{t=new Set([...t,...bn(e)])}),t}function wn(e,t){if(e instanceof va&&0<=t.indexOf(e.name))return!1;let i=!0;return e.eachChild(e=>{i&&!wn(e,t)&&(i=!1)}),i}class Tn{constructor(e,t){this.type=t.type,this.name=e,this.boundExpression=t}static parse(e,t){if(2!==e.length||"string"!=typeof e[1])return t.error("'var' expression requires exactly one string literal argument.");e=e[1];return t.scope.has(e)?new Tn(e,t.scope.get(e)):t.error(`Unknown variable "${e}". Make sure "${e}" has been bound in an enclosing "let" expression before using it.`,1)}evaluate(e){return this.boundExpression.evaluate(e)}eachChild(){}outputDefined(){return!1}serialize(){return["var",this.name]}}var En=class Ry{constructor(e,t=[],i,r=new jr,a=[],n,o){this.registry=e,this.path=t,this.key=t.map(e=>`[${e}]`).join(""),this.scope=r,this.errors=a,this.expectedType=i,this._scope=n,this.options=o}parse(e,t,i,r,a={}){return(t||i?this.concat(t,i,r):this)._parse(e,a)}_parse(t,i){function r(e,t,i){return"assert"===i?new da(t,[e]):"coerce"===i?new ga(t,[e]):e}if(null!==t&&"string"!=typeof t&&"boolean"!=typeof t&&"number"!=typeof t||(t=["literal",t]),Array.isArray(t)){if(0===t.length)return this.error('Expected an array with at least one element. If you wanted a literal array, use ["literal", []].');const a="string"==typeof t[0]?this.registry[t[0]]:void 0;if(a){let e=a.parse(t,this);if(!e)return null;if(this.expectedType){const t=this.expectedType,n=e.type;if("string"!==t.kind&&"number"!==t.kind&&"boolean"!==t.kind&&"object"!==t.kind&&"array"!==t.kind||"value"!==n.kind)if("color"!==t.kind&&"formatted"!==t.kind&&"resolvedImage"!==t.kind||"value"!==n.kind&&"string"!==n.kind){if(this.checkSubtype(t,n))return null}else e=r(e,t,i.typeAnnotation||"coerce");else e=r(e,t,i.typeAnnotation||"assert")}if(!(e instanceof ca)&&"resolvedImage"!==e.type.kind&&function t(e){if(e instanceof Tn)return t(e.boundExpression);if(e instanceof va&&"error"===e.name)return!1;if(e instanceof wa)return!1;if(e instanceof Ba)return!1;if(e instanceof mn)return!1;if(e instanceof yn)return!1;const i=e instanceof ga||e instanceof da;let r=!0;return e.eachChild(e=>{r=i?r&&t(e):r&&e instanceof ca}),!!r&&xn(e)&&wn(e,["zoom","heatmap-density","line-progress","raster-value","sky-radial-progress","accumulated","is-supported-script","pitch","distance-from-center","measure-light","raster-particle-speed"])}(e)){const t=new xa(this._scope,this.options);try{e=new ca(e.type,e.evaluate(t))}catch(t){return this.error(t.message),null}}return e}return ga.parse(["to-array",t],this)}return this.error(void 0===t?"'undefined' value invalid. Use null instead.":"object"==typeof t?'Bare objects invalid. Use ["literal", {...}] instead.':`Expected an array, but found ${typeof t} instead.`)}concat(e,t,i){return e="number"==typeof e?this.path.concat(e):this.path,i=i?this.scope.concat(i):this.scope,new Ry(this.registry,e,t||null,i,this.errors,this._scope,this.options)}error(e,...t){t=""+this.key+t.map(e=>`[${e}]`).join(""),this.errors.push(new Ur(t,e))}checkSubtype(e,t){return(e=Kr(e,t))&&this.error(e),e}};function Sn(e,t){var i=e.length-1;let r,a,n=0,o=i,s;for(;n<=o;)if(r=e[s=Math.floor((n+o)/2)],a=e[s+1],r<=t){if(s===i||t=n)return i.error('Input/output pairs for "step" expressions must be arranged with input values in strictly ascending order.',s);s=i.parse(o,l,a);if(!s)return null;a=a||s.type,r.push([n,s])}return new Mn(a,e,r)}evaluate(e){const t=this.labels,i=this.outputs;if(1===t.length)return i[0].evaluate(e);var r=this.input.evaluate(e);if(r<=t[0])return i[0].evaluate(e);var a=t.length;return(r>=t[a-1]?i[a-1]:i[Sn(t,r)]).evaluate(e)}eachChild(e){e(this.input);for(const t of this.outputs)e(t)}outputDefined(){return this.outputs.every(e=>e.outputDefined())}serialize(){const t=["step",this.input.serialize()];for(let e=0;ePn?Math.pow(e,1/3):e/Cn+In}function Ln(e){return e>An?e*e*e:Cn*(e-In)}function kn(e){return 255*(e<=.0031308?12.92*e:1.055*Math.pow(e,1/2.4)-.055)}function On(e){return(e/=255)<=.04045?e/12.92:Math.pow((e+.055)/1.055,2.4)}function Bn(e){var t=On(e.r),i=On(e.g),r=On(e.b),a=Rn((.4124564*t+.3575761*i+.1804375*r)/.95047),n=Rn(.2126729*t+.7151522*i+.072175*r);return{l:116*n-16,a:500*(a-n),b:200*(n-Rn((.0193339*t+.119192*i+.9503041*r)/1.08883)),alpha:e.a}}function Fn(e){let t=(e.l+16)/116,i=isNaN(e.a)?t:t+e.a/500,r=isNaN(e.b)?t:t-e.b/200;return t=+Ln(t),i=.95047*Ln(i),r=1.08883*Ln(r),new g(kn(3.2404542*i-1.5371385*t-.4985314*r),kn(-.969266*i+1.8760108*t+.041556*r),kn(.0556434*i-.2040259*t+1.0572252*r),e.alpha)}const Nn={forward:Bn,reverse:Fn,interpolate:function(e,t,i){return{l:b(e.l,t.l,i),a:b(e.a,t.a,i),b:b(e.b,t.b,i),alpha:b(e.alpha,t.alpha,i)}}},Vn={forward:function(e){var{l:t,a:i,b:r}=Bn(e),a=Math.atan2(r,i)*Dn;return{h:a<0?360+a:a,c:Math.sqrt(i*i+r*r),l:t,alpha:e.a}},reverse:function(e){var t=e.h*zn,i=e.c;return Fn({l:e.l,a:Math.cos(t)*i,b:Math.sin(t)*i,alpha:e.alpha})},interpolate:function(e,t,i){return{h:(r=e.h,a=t.h,r+i*(180<(a-=r)||a<-180?a-360*Math.round(a/360):a)),c:b(e.c,t.c,i),l:b(e.l,t.l,i),alpha:b(e.alpha,t.alpha,i)};var r,a}};var Un=Object.freeze({__proto__:null,hcl:Vn,lab:Nn});class jn{constructor(e,t,i,r,a){this.type=e,this.operator=t,this.interpolation=i,this.input=r,this.labels=[],this.outputs=[];for(const[e,t]of a)this.labels.push(e),this.outputs.push(t)}static interpolationFactor(e,t,i,r){let a=0;return"exponential"===e.name?a=Gn(t,e.base,i,r):"linear"===e.name?a=Gn(t,1,i,r):"cubic-bezier"===e.name&&(e=e.controlPoints,a=new Gt(e[0],e[1],e[2],e[3]).solve(Gn(t,1,i,r))),a}static parse(e,t){let[i,r,a,...n]=e;if(!Array.isArray(r)||0===r.length)return t.error("Expected an interpolation type expression.",1);if("linear"===r[0])r={name:"linear"};else if("exponential"===r[0]){const e=r[1];if("number"!=typeof e)return t.error("Exponential interpolation requires a numeric base.",1,1);r={name:"exponential",base:e}}else{if("cubic-bezier"!==r[0])return t.error("Unknown interpolation type "+String(r[0]),1,0);{const e=r.slice(1);if(4!==e.length||e.some(e=>"number"!=typeof e||e<0||1=i)return t.error('Input/output pairs for "interpolate" expressions must be arranged with input values in strictly ascending order.',a);var l=t.parse(r,c,s);if(!l)return null;s=s||l.type,o.push([i,l])}return"number"===s.kind||"color"===s.kind||"array"===s.kind&&"number"===s.itemType.kind&&"number"==typeof s.N?new jn(s,i,r,a,o):t.error(`Type ${Yr(s)} is not interpolatable.`)}evaluate(e){const t=this.labels,i=this.outputs;if(1===t.length)return i[0].evaluate(e);var r=this.input.evaluate(e);if(r<=t[0])return i[0].evaluate(e);var a=t.length;if(r>=t[a-1])return i[a-1].evaluate(e);var a=Sn(t,r),r=jn.interpolationFactor(this.interpolation,r,t[a],t[a+1]),n=i[a].evaluate(e),a=i[a+1].evaluate(e);return"interpolate"===this.operator?Nr[this.type.kind.toLowerCase()](n,a,r):"interpolate-hcl"===this.operator?Vn.reverse(Vn.interpolate(Vn.forward(n),Vn.forward(a),r)):Nn.reverse(Nn.interpolate(Nn.forward(n),Nn.forward(a),r))}eachChild(e){e(this.input);for(const t of this.outputs)e(t)}outputDefined(){return this.outputs.every(e=>e.outputDefined())}serialize(){var e="linear"===this.interpolation.name?["linear"]:"exponential"===this.interpolation.name?1===this.interpolation.base?["linear"]:["exponential",this.interpolation.base]:["cubic-bezier"].concat(this.interpolation.controlPoints);const t=[this.operator,e,this.input.serialize()];for(let e=0;eKr(r,e.type));return new qn(e?f:i,a)}evaluate(e){let t,i=null,r=0;for(const a of this.args){if(r++,(i=a.evaluate(e))&&i instanceof aa&&!i.available&&(t=t||i,i=null,r===this.args.length))return t;if(null!==i)break}return i}eachChild(e){this.args.forEach(e)}outputDefined(){return this.args.every(e=>e.outputDefined())}serialize(){const t=["coalesce"];return this.eachChild(e=>{t.push(e.serialize())}),t}}class $n{constructor(e,t){this.type=t.type,this.bindings=[].concat(e),this.result=t}evaluate(e){return this.result.evaluate(e)}eachChild(e){for(const t of this.bindings)e(t[1]);e(this.result)}static parse(t,i){if(t.length<4)return i.error(`Expected at least 3 arguments, but found ${t.length-1} instead.`);const r=[];for(let e=1;e{t.push(e.serialize())}),t}}}c=Hn("==",function(e,t,i){return t===i},Wn),n=Hn("!=",function(e,t,i){return t!==i},function(e,t,i,r){return!Wn(0,t,i,r)}),r=Hn("<",function(e,t,i){return t",function(e,t,i){return i>>15,1|t);return(((e=e+Math.imul(e^e>>>7,61|e)^e)^e>>>14)>>>0)/4294967296}}const Yn={"==":c,"!=":n,">":s,"<":r,">=":Hn(">=",function(e,t,i){return i<=t},function(e,t,i,r){return 0<=r.compare(t,i)}),"<=":$,array:da,at:class Ly{constructor(e,t,i){this.type=e,this.index=t,this.input=i}static parse(e,t){if(3!==e.length)return t.error(`Expected 2 arguments, but found ${e.length-1} instead.`);var i=t.parse(e[1],1,u),e=t.parse(e[2],2,Xr(t.expectedType||f));return i&&e?new Ly(e.type.itemType,i,e):null}evaluate(e){var t=this.index.evaluate(e),e=this.input.evaluate(e);if(t<0)throw new ha(`Array index out of bounds: ${t} < 0.`);if(t>=e.length)throw new ha(`Array index out of bounds: ${t} > ${e.length-1}.`);if(t!==Math.floor(t))throw new ha(`Array index must be an integer, but found ${t} instead.`);return e[t]}eachChild(e){e(this.index),e(this.input)}outputDefined(){return!1}serialize(){return["at",this.index.serialize(),this.input.serialize()]}},boolean:da,case:class ky{constructor(e,t,i){this.type=e,this.branches=t,this.otherwise=i}static parse(t,i){if(t.length<4)return i.error(`Expected at least 3 arguments, but found only ${t.length-1}.`);if(t.length%2!=0)return i.error("Expected an odd number of arguments.");let r;i.expectedType&&"value"!==i.expectedType.kind&&(r=i.expectedType);const a=[];for(let e=1;ee.outputDefined())&&this.otherwise.outputDefined()}serialize(){const t=["case"];return this.eachChild(e=>{t.push(e.serialize())}),t}},coalesce:qn,collator:wa,format:pa,image:fa,in:class Oy{constructor(e,t){this.type=p,this.needle=e,this.haystack=t}static parse(e,t){if(3!==e.length)return t.error(`Expected 2 arguments, but found ${e.length-1} instead.`);var i=t.parse(e[1],1,f),e=t.parse(e[2],2,f);return i&&e?Qr(i.type,[p,d,u,Gr,f])?new Oy(i,e):t.error(`Expected first argument to be of type boolean, string, number or null, but found ${Yr(i.type)} instead`):null}evaluate(e){const t=this.needle.evaluate(e),i=this.haystack.evaluate(e);if(null==i)return!1;if(!ea(t,["boolean","string","number","null"]))throw new ha(`Expected first argument to be of type boolean, string, number or null, but found ${Yr(sa(t))} instead.`);if(ea(i,["string","array"]))return 0<=i.indexOf(t);throw new ha(`Expected second argument to be of type array or string, but found ${Yr(sa(i))} instead.`)}eachChild(e){e(this.needle),e(this.haystack)}outputDefined(){return!0}serialize(){return["in",this.needle.serialize(),this.haystack.serialize()]}},"index-of":class By{constructor(e,t,i){this.type=u,this.needle=e,this.haystack=t,this.fromIndex=i}static parse(e,t){if(e.length<=2||5<=e.length)return t.error(`Expected 3 or 4 arguments, but found ${e.length-1} instead.`);var i=t.parse(e[1],1,f),r=t.parse(e[2],2,f);return i&&r?Qr(i.type,[p,d,u,Gr,f])?4===e.length?(e=t.parse(e[3],3,u))?new By(i,r,e):null:new By(i,r):t.error(`Expected first argument to be of type boolean, string, number or null, but found ${Yr(i.type)} instead`):null}evaluate(e){const t=this.needle.evaluate(e),i=this.haystack.evaluate(e);if(!ea(t,["boolean","string","number","null"]))throw new ha(`Expected first argument to be of type boolean, string, number or null, but found ${Yr(sa(t))} instead.`);if(ea(i,["string","array"]))return this.fromIndex?(e=this.fromIndex.evaluate(e),i.indexOf(t,e)):i.indexOf(t);throw new ha(`Expected second argument to be of type array or string, but found ${Yr(sa(i))} instead.`)}eachChild(e){e(this.needle),e(this.haystack),this.fromIndex&&e(this.fromIndex)}outputDefined(){return!1}serialize(){var e;return null!=this.fromIndex&&void 0!==this.fromIndex?(e=this.fromIndex.serialize(),["index-of",this.needle.serialize(),this.haystack.serialize(),e]):["index-of",this.needle.serialize(),this.haystack.serialize()]}},interpolate:jn,"interpolate-hcl":jn,"interpolate-lab":jn,length:class Fy{constructor(e){this.type=u,this.input=e}static parse(e,t){return 2!==e.length?t.error(`Expected 1 argument, but found ${e.length-1} instead.`):(e=t.parse(e[1],1))?"array"!==e.type.kind&&"string"!==e.type.kind&&"value"!==e.type.kind?t.error(`Expected argument of type string or array, but found ${Yr(e.type)} instead.`):new Fy(e):null}evaluate(e){if("string"==typeof(e=this.input.evaluate(e)))return e.length;if(Array.isArray(e))return e.length;throw new ha(`Expected value to be of type string or array, but found ${Yr(sa(e))} instead.`)}eachChild(e){e(this.input)}outputDefined(){return!1}serialize(){const t=["length"];return this.eachChild(e=>{t.push(e.serialize())}),t}},let:$n,literal:ca,match:class Ny{constructor(e,t,i,r,a,n){this.inputType=e,this.type=t,this.input=i,this.cases=r,this.outputs=a,this.otherwise=n}static parse(i,r){if(i.length<5)return r.error(`Expected at least 4 arguments, but found only ${i.length-1}.`);if(i.length%2!=1)return r.error("Expected an even number of arguments.");let a,n;r.expectedType&&"value"!==r.expectedType.kind&&(n=r.expectedType);const o={},s=[];for(let t=2;tNumber.MAX_SAFE_INTEGER)return c.error(`Branch labels must be integers no larger than ${Number.MAX_SAFE_INTEGER}.`);if("number"==typeof i&&Math.floor(i)!==i)return c.error("Numeric branch labels must be integer values.");if(a){if(c.checkSubtype(a,sa(i)))return null}else a=sa(i);if(void 0!==o[String(i)])return c.error("Branch labels must be unique.");o[String(i)]=s.length}if(!(l=r.parse(l,t,n)))return null;n=n||l.type,s.push(l)}var e=r.parse(i[1],1,f);if(!e)return null;var t=r.parse(i[i.length-1],i.length-1,n);return!t||"value"!==e.type.kind&&r.concat(1).checkSubtype(a,e.type)?null:new Ny(a,n,e,o,s,t)}evaluate(e){var t=this.input.evaluate(e);return(sa(t)===this.inputType&&this.outputs[this.cases[t]]||this.otherwise).evaluate(e)}eachChild(e){e(this.input),this.outputs.forEach(e),e(this.otherwise)}outputDefined(){return this.outputs.every(e=>e.outputDefined())&&this.otherwise.outputDefined()}serialize(){const e=["match",this.input.serialize()],t=Object.keys(this.cases).sort(),i=[],r={};for(const e of t){const t=r[this.cases[e]];void 0===t?(r[this.cases[e]]=i.length,i.push([this.cases[e],[e]])):i[t][1].push(e)}var a=e=>"number"===this.inputType.kind?Number(e):e;for(const[t,r]of i)e.push(1===r.length?a(r[0]):r.map(a)),e.push(this.outputs[t].serialize());return e.push(this.otherwise.serialize()),e}},number:da,"number-format":class Vy{constructor(e,t,i,r,a,n){this.type=d,this.number=e,this.locale=t,this.currency=i,this.unit=r,this.minFractionDigits=a,this.maxFractionDigits=n}static parse(e,t){if(3!==e.length)return t.error("Expected two arguments.");var i=t.parse(e[1],1,u);if(!i)return null;if("object"!=typeof(e=e[2])||Array.isArray(e))return t.error("NumberFormat options argument must be an object.");let r=null;if(e.locale&&!(r=t.parse(e.locale,1,d)))return null;let a=null;if(e.currency&&!(a=t.parse(e.currency,1,d)))return null;let n=null;if(e.unit&&!(n=t.parse(e.unit,1,d)))return null;let o=null;if(e["min-fraction-digits"]&&!(o=t.parse(e["min-fraction-digits"],1,u)))return null;let s=null;return e["max-fraction-digits"]&&!(s=t.parse(e["max-fraction-digits"],1,u))?null:new Vy(i,r,a,n,o,s)}evaluate(e){return new Intl.NumberFormat(this.locale?this.locale.evaluate(e):[],{style:(this.currency?"currency":this.unit&&"unit")||"decimal",currency:this.currency?this.currency.evaluate(e):void 0,unit:this.unit?this.unit.evaluate(e):void 0,minimumFractionDigits:this.minFractionDigits?this.minFractionDigits.evaluate(e):void 0,maximumFractionDigits:this.maxFractionDigits?this.maxFractionDigits.evaluate(e):void 0}).format(this.number.evaluate(e))}eachChild(e){e(this.number),this.locale&&e(this.locale),this.currency&&e(this.currency),this.unit&&e(this.unit),this.minFractionDigits&&e(this.minFractionDigits),this.maxFractionDigits&&e(this.maxFractionDigits)}outputDefined(){return!1}serialize(){const e={};return this.locale&&(e.locale=this.locale.serialize()),this.currency&&(e.currency=this.currency.serialize()),this.unit&&(e.unit=this.unit.serialize()),this.minFractionDigits&&(e["min-fraction-digits"]=this.minFractionDigits.serialize()),this.maxFractionDigits&&(e["max-fraction-digits"]=this.maxFractionDigits.serialize()),["number-format",this.number.serialize(),e]}},object:da,slice:class Uy{constructor(e,t,i,r){this.type=e,this.input=t,this.beginIndex=i,this.endIndex=r}static parse(e,t){if(e.length<=2||5<=e.length)return t.error(`Expected 3 or 4 arguments, but found ${e.length-1} instead.`);var i=t.parse(e[1],1,f),r=t.parse(e[2],2,u);return i&&r?Qr(i.type,[Xr(f),d,f])?4===e.length?(e=t.parse(e[3],3,u))?new Uy(i.type,i,r,e):null:new Uy(i.type,i,r):t.error(`Expected first argument to be of type array or string, but found ${Yr(i.type)} instead`):null}evaluate(e){const t=this.input.evaluate(e),i=this.beginIndex.evaluate(e);if(ea(t,["string","array"]))return this.endIndex?(e=this.endIndex.evaluate(e),t.slice(i,e)):t.slice(i);throw new ha(`Expected first argument to be of type array or string, but found ${Yr(sa(t))} instead.`)}eachChild(e){e(this.input),e(this.beginIndex),this.endIndex&&e(this.endIndex)}outputDefined(){return!1}serialize(){var e;return null!=this.endIndex&&void 0!==this.endIndex?(e=this.endIndex.serialize(),["slice",this.input.serialize(),this.beginIndex.serialize(),e]):["slice",this.input.serialize(),this.beginIndex.serialize()]}},step:Mn,string:da,"to-boolean":ga,"to-color":ga,"to-number":ga,"to-string":ga,var:Tn,within:Ba,distance:mn,config:yn};function Jn(e,[t,i,r,a]){t=t.evaluate(e),i=i.evaluate(e),r=r.evaluate(e);a=a?a.evaluate(e):1,e=na(t,i,r,a);if(e)throw new ha(e);return new g(t/255*a,i/255*a,r/255*a,a)}function Kn(e,[t,i,r,a]){t=t.evaluate(e),i=i.evaluate(e),r=r.evaluate(e);var n,a=a?a.evaluate(e):1,o=(e=i,n=r,o=a,"number"==typeof(s=t)&&0<=s&&s<=360?"number"==typeof e&&0<=e&&e<=100&&"number"==typeof n&&0<=n&&n<=100?void 0===o||"number"==typeof o&&0<=o&&o<=1?null:`Invalid hsla value [${[s,e,n,o].join(", ")}]: 'a' must be between 0 and 1.`:`Invalid hsla value [${("number"==typeof o?[s,e,n,o]:[s,e,n]).join(", ")}]: 's', and 'l' must be between 0 and 100.`:`Invalid hsla value [${("number"==typeof o?[s,e,n,o]:[s,e,n]).join(", ")}]: 'h' must be between 0 and 360.`);if(o)throw new ha(o);var s=`hsla(${t}, ${i}%, ${r}%, ${a})`,e=g.parse(s);if(e)return e;throw new ha("Failed to parse HSLA color: "+s)}function Qn(e,t){t=t[e];return void 0===t?null:t}function eo(e){return{type:e}}function to(e){return{result:"success",value:e}}function io(e){return{result:"error",value:e}}function ro(e,t){return!!e&&!!e.parameters&&-1=e.stops[t-1][0])return e.stops[t-1][1];t=Sn(e.stops.map(e=>e[0]),i);return e.stops[t][1]}function fo(e,i,t){var r=void 0!==e.base?e.base:1;if("number"!==ma(t))return ho(e.default,i.default);var a,n=e.stops.length;if(1===n)return e.stops[0][1];if(t<=e.stops[0][0])return e.stops[0][1];if(t>=e.stops[n-1][0])return e.stops[n-1][1];const o=Sn(e.stops.map(e=>e[0]),t),s=(n=t,t=r,r=e.stops[o][0],a=e.stops[o+1][0]-r,n-=r,0==a?0:1===t?n/a:(Math.pow(t,n)-1)/(Math.pow(t,a)-1)),l=e.stops[o][1],c=e.stops[o+1][1];let h=Nr[i.type]||co;if(e.colorSpace&&"rgb"!==e.colorSpace){const i=Un[e.colorSpace];h=(e,t)=>i.reverse(i.interpolate(i.forward(e),i.forward(t),s))}return"function"==typeof l.evaluate?{evaluate(...e){var t=l.evaluate.apply(void 0,e),e=c.evaluate.apply(void 0,e);if(void 0!==t&&void 0!==e)return h(t,e,s)}}:h(l,c,s)}function mo(e,t,i){return"color"===t.type?i=g.parse(i):"formatted"===t.type?i=ra.fromString(i.toString()):"resolvedImage"===t.type?i=aa.fromString(i.toString()):ma(i)===t.type||"enum"===t.type&&t.values[i]||(i=void 0),ho(i,e.default,t.default)}va.register(Yn,{error:[{kind:"error"},[d],(e,[t])=>{throw new ha(t.evaluate(e))}],typeof:[d,[f],(e,[t])=>Yr(sa(t.evaluate(e)))],"to-rgba":[Xr(u,4),[qr],(e,[t])=>t.evaluate(e).toRenderColor(null).toArray()],rgb:[qr,[u,u,u],Jn],rgba:[qr,[u,u,u,u],Jn],hsl:[qr,[u,u,u],Kn],hsla:[qr,[u,u,u,u],Kn],has:{type:p,overloads:[[[d],(e,[t])=>t.evaluate(e)in e.properties()],[[d,$r],(e,[t,i])=>t.evaluate(e)in i.evaluate(e)]]},get:{type:f,overloads:[[[d],(e,[t])=>Qn(t.evaluate(e),e.properties())],[[d,$r],(e,[t,i])=>Qn(t.evaluate(e),i.evaluate(e))]]},"feature-state":[f,[d],(e,[t])=>Qn(t.evaluate(e),e.featureState||{})],properties:[$r,[],e=>e.properties()],"geometry-type":[d,[],e=>e.geometryType()],id:[f,[],e=>e.id()],zoom:[u,[],e=>e.globals.zoom],pitch:[u,[],e=>e.globals.pitch||0],"distance-from-center":[u,[],e=>e.distanceFromCenter()],"measure-light":[u,[d],(e,[t])=>e.measureLight(t.evaluate(e))],"heatmap-density":[u,[],e=>e.globals.heatmapDensity||0],"line-progress":[u,[],e=>e.globals.lineProgress||0],"raster-value":[u,[],e=>e.globals.rasterValue||0],"raster-particle-speed":[u,[],e=>e.globals.rasterParticleSpeed||0],"sky-radial-progress":[u,[],e=>e.globals.skyRadialProgress||0],accumulated:[f,[],e=>void 0===e.globals.accumulated?null:e.globals.accumulated],"+":[u,eo(u),(e,t)=>{let i=0;for(const r of t)i+=r.evaluate(e);return i}],"*":[u,eo(u),(e,t)=>{let i=1;for(const r of t)i*=r.evaluate(e);return i}],"-":{type:u,overloads:[[[u,u],(e,[t,i])=>t.evaluate(e)-i.evaluate(e)],[[u],(e,[t])=>-t.evaluate(e)]]},"/":[u,[u,u],(e,[t,i])=>t.evaluate(e)/i.evaluate(e)],"%":[u,[u,u],(e,[t,i])=>t.evaluate(e)%i.evaluate(e)],ln2:[u,[],()=>Math.LN2],pi:[u,[],()=>Math.PI],e:[u,[],()=>Math.E],"^":[u,[u,u],(e,[t,i])=>Math.pow(t.evaluate(e),i.evaluate(e))],sqrt:[u,[u],(e,[t])=>Math.sqrt(t.evaluate(e))],log10:[u,[u],(e,[t])=>Math.log(t.evaluate(e))/Math.LN10],ln:[u,[u],(e,[t])=>Math.log(t.evaluate(e))],log2:[u,[u],(e,[t])=>Math.log(t.evaluate(e))/Math.LN2],sin:[u,[u],(e,[t])=>Math.sin(t.evaluate(e))],cos:[u,[u],(e,[t])=>Math.cos(t.evaluate(e))],tan:[u,[u],(e,[t])=>Math.tan(t.evaluate(e))],asin:[u,[u],(e,[t])=>Math.asin(t.evaluate(e))],acos:[u,[u],(e,[t])=>Math.acos(t.evaluate(e))],atan:[u,[u],(e,[t])=>Math.atan(t.evaluate(e))],min:[u,eo(u),(t,e)=>Math.min(...e.map(e=>e.evaluate(t)))],max:[u,eo(u),(t,e)=>Math.max(...e.map(e=>e.evaluate(t)))],abs:[u,[u],(e,[t])=>Math.abs(t.evaluate(e))],round:[u,[u],(e,[t])=>{t=t.evaluate(e);return t<0?-Math.round(-t):Math.round(t)}],floor:[u,[u],(e,[t])=>Math.floor(t.evaluate(e))],ceil:[u,[u],(e,[t])=>Math.ceil(t.evaluate(e))],"filter-==":[p,[d,f],(e,[t,i])=>e.properties()[t.value]===i.value],"filter-id-==":[p,[f],(e,[t])=>e.id()===t.value],"filter-type-==":[p,[d],(e,[t])=>e.geometryType()===t.value],"filter-<":[p,[d,f],(e,[t,i])=>{e=e.properties()[t.value],t=i.value;return typeof e==typeof t&&e{e=e.id(),t=t.value;return typeof e==typeof t&&e":[p,[d,f],(e,[t,i])=>{e=e.properties()[t.value],t=i.value;return typeof e==typeof t&&t":[p,[f],(e,[t])=>{e=e.id(),t=t.value;return typeof e==typeof t&&t{e=e.properties()[t.value],t=i.value;return typeof e==typeof t&&e<=t}],"filter-id-<=":[p,[f],(e,[t])=>{e=e.id(),t=t.value;return typeof e==typeof t&&e<=t}],"filter->=":[p,[d,f],(e,[t,i])=>{e=e.properties()[t.value],t=i.value;return typeof e==typeof t&&t<=e}],"filter-id->=":[p,[f],(e,[t])=>{e=e.id(),t=t.value;return typeof e==typeof t&&t<=e}],"filter-has":[p,[f],(e,[t])=>t.value in e.properties()],"filter-has-id":[p,[],e=>null!==e.id()&&void 0!==e.id()],"filter-type-in":[p,[Xr(d)],(e,[t])=>0<=t.value.indexOf(e.geometryType())],"filter-id-in":[p,[Xr(f)],(e,[t])=>0<=t.value.indexOf(e.id())],"filter-in-small":[p,[d,Xr(f)],(e,[t,i])=>0<=i.value.indexOf(e.properties()[t.value])],"filter-in-large":[p,[d,Xr(f)],(e,[t,i])=>{for(var r=e.properties()[t.value],a=i.value,n=0,o=i.value.length-1;n<=o;){var s=n+o>>1;if(a[s]===r)return!0;a[s]>r?o=s-1:n=1+s}return!1}],all:{type:p,overloads:[[[p,p],(e,[t,i])=>t.evaluate(e)&&i.evaluate(e)],[eo(p),(e,t)=>{for(const i of t)if(!i.evaluate(e))return!1;return!0}]]},any:{type:p,overloads:[[[p,p],(e,[t,i])=>t.evaluate(e)||i.evaluate(e)],[eo(p),(e,t)=>{for(const i of t)if(i.evaluate(e))return!0;return!1}]]},"!":[p,[p],(e,[t])=>!t.evaluate(e)],"is-supported-script":[p,[d],(e,[t])=>{const i=e.globals&&e.globals.isSupportedScript;return!i||i(t.evaluate(e))}],upcase:[d,[d],(e,[t])=>t.evaluate(e).toUpperCase()],downcase:[d,[d],(e,[t])=>t.evaluate(e).toLowerCase()],concat:[d,eo(f),(t,e)=>e.map(e=>la(e.evaluate(t))).join("")],"resolved-locale":[d,[Zr],(e,[t])=>t.evaluate(e).resolvedLocale()],random:[u,[u,u,f],(t,e)=>{var[e,i,r]=e.map(e=>e.evaluate(t));if(iJSON.stringify(e)).join(", ")}, but found ${JSON.stringify(e)} instead.`)}catch(e){return this._warningHistory[e.message]||(this._warningHistory[e.message]=!0,"undefined"!=typeof console&&console.warn(`Failed to evaluate expression "${JSON.stringify(this.expression.serialize())}". `+e.message)),this._defaultValue}}}function go(e){return Array.isArray(e)&&0{const t=i(e);t instanceof Ur?r=t:r&&t&&r!==t&&(r=new Ur("",'Only one zoom-based "step" or "interpolate" subexpression may be used in an expression.'))}),r}(i);return i||a||o?i instanceof Ur?io([i]):i instanceof jn&&!so(t)?io([new Ur("",'"interpolate" expressions cannot be used with this property')]):to(i?new vo(r?"camera":"composite",e.value,i.labels,i instanceof jn?i.interpolation:void 0,n):new xo(r?"constant":"source",e.value,n)):io([new Ur("",'"zoom" expression may only be used as input to a top-level "step" or "interpolate" expression, or in the properties of atmosphere.')])}class wo{constructor(e,t){this._parameters=e,this._specification=t,Vr(this,function e(i,r){const t="color"===r.type,a=i.stops&&"object"==typeof i.stops[0][0],n=a||!(a||void 0!==i.property),o=i.type||(so(r)?"exponential":"interval");if(t&&((i=Vr({},i)).stops&&(i.stops=i.stops.map(e=>[e[0],g.parse(e[1])])),i.default=g.parse(i.default||r.default)),i.colorSpace&&"rgb"!==i.colorSpace&&!Un[i.colorSpace])throw new Error("Unknown color space: "+i.colorSpace);let s,l,c;if("exponential"===o)s=fo;else if("interval"===o)s=po;else if("categorical"===o){s=uo,l=Object.create(null);for(const r of i.stops)l[r[0]]=r[1];c=typeof i.stops[0][0]}else{if("identity"!==o)throw new Error(`Unknown function type "${o}"`);s=mo}if(a){const t={},a=[];for(let e=0;ee[0]),evaluate:({zoom:e},t)=>fo({stops:n,base:i.base},r,e).evaluate(e,t)}}if(n){const t="exponential"===o?{name:"exponential",base:void 0!==i.base?i.base:1}:null;return{kind:"camera",interpolationType:t,interpolationFactor:jn.interpolationFactor.bind(void 0,t),zoomStops:i.stops.map(e=>e[0]),evaluate:({zoom:e})=>s(i,r,e,l,c)}}return{kind:"source",evaluate(e,t){return void 0===(t=t&&t.properties?t.properties[i.property]:void 0)?ho(i.default,r.default):s(i,r,t,l,c)}}}(this._parameters,this._specification))}static deserialize(e){return new wo(e._parameters,e._specification)}static serialize(e){return{_parameters:e._parameters,_specification:e._specification}}}var t=Eo,To=3;function Eo(e,t,i){var r=this.cells=[];if(e instanceof ArrayBuffer){this.arrayBuffer=e;var a=new Int32Array(this.arrayBuffer);e=a[0],this.d=(t=a[1])+2*(i=a[2]);for(var n=0;n=h[0+d]&&r>=h[1+d])?(o[p]=!0,n.push(c[p])):o[p]=!1)}},Eo.prototype._forEachCell=function(e,t,i,r,a,n,o,s){for(var l=this._convertToCellCoord(e),c=this._convertToCellCoord(t),h=this._convertToCellCoord(i),u=this._convertToCellCoord(r),d=l;d<=h;d++)for(var p=c;p<=u;p++){var f=this.d*p+d;if((!s||s(this._convertFromCellCoord(d),this._convertFromCellCoord(p),this._convertFromCellCoord(d+1),this._convertFromCellCoord(p+1)))&&a.call(this,e,t,i,r,f,n,o,s))return}},Eo.prototype._convertFromCellCoord=function(e){return(e-this.padding)/this.scale},Eo.prototype._convertToCellCoord=function(e){return Math.max(0,Math.min(this.d-1,Math.floor(e*this.scale)+this.padding))},Eo.prototype.toArrayBuffer=function(){if(this.arrayBuffer)return this.arrayBuffer;for(var e=this.cells,t=To+this.cells.length+1+1,i=0,r=0;r128<=e&&e<=255,Arabic:e=>1536<=e&&e<=1791,"Arabic Supplement":e=>1872<=e&&e<=1919,"Arabic Extended-A":e=>2208<=e&&e<=2303,"Hangul Jamo":e=>4352<=e&&e<=4607,"Unified Canadian Aboriginal Syllabics":e=>5120<=e&&e<=5759,Khmer:e=>6016<=e&&e<=6143,"Unified Canadian Aboriginal Syllabics Extended":e=>6320<=e&&e<=6399,"General Punctuation":e=>8192<=e&&e<=8303,"Letterlike Symbols":e=>8448<=e&&e<=8527,"Number Forms":e=>8528<=e&&e<=8591,"Miscellaneous Technical":e=>8960<=e&&e<=9215,"Control Pictures":e=>9216<=e&&e<=9279,"Optical Character Recognition":e=>9280<=e&&e<=9311,"Enclosed Alphanumerics":e=>9312<=e&&e<=9471,"Geometric Shapes":e=>9632<=e&&e<=9727,"Miscellaneous Symbols":e=>9728<=e&&e<=9983,"Miscellaneous Symbols and Arrows":e=>11008<=e&&e<=11263,"CJK Radicals Supplement":e=>11904<=e&&e<=12031,"Kangxi Radicals":e=>12032<=e&&e<=12255,"Ideographic Description Characters":e=>12272<=e&&e<=12287,"CJK Symbols and Punctuation":e=>12288<=e&&e<=12351,Hiragana:e=>12352<=e&&e<=12447,Katakana:e=>12448<=e&&e<=12543,Bopomofo:e=>12544<=e&&e<=12591,"Hangul Compatibility Jamo":e=>12592<=e&&e<=12687,Kanbun:e=>12688<=e&&e<=12703,"Bopomofo Extended":e=>12704<=e&&e<=12735,"CJK Strokes":e=>12736<=e&&e<=12783,"Katakana Phonetic Extensions":e=>12784<=e&&e<=12799,"Enclosed CJK Letters and Months":e=>12800<=e&&e<=13055,"CJK Compatibility":e=>13056<=e&&e<=13311,"CJK Unified Ideographs Extension A":e=>13312<=e&&e<=19903,"Yijing Hexagram Symbols":e=>19904<=e&&e<=19967,"CJK Unified Ideographs":e=>19968<=e&&e<=40959,"Yi Syllables":e=>40960<=e&&e<=42127,"Yi Radicals":e=>42128<=e&&e<=42191,"Hangul Jamo Extended-A":e=>43360<=e&&e<=43391,"Hangul Syllables":e=>44032<=e&&e<=55215,"Hangul Jamo Extended-B":e=>55216<=e&&e<=55295,"Private Use Area":e=>57344<=e&&e<=63743,"CJK Compatibility Ideographs":e=>63744<=e&&e<=64255,"Arabic Presentation Forms-A":e=>64336<=e&&e<=65023,"Vertical Forms":e=>65040<=e&&e<=65055,"CJK Compatibility Forms":e=>65072<=e&&e<=65103,"Small Form Variants":e=>65104<=e&&e<=65135,"Arabic Presentation Forms-B":e=>65136<=e&&e<=65279,"Halfwidth and Fullwidth Forms":e=>65280<=e&&e<=65519,"CJK Unified Ideographs Extension B":e=>131072<=e&&e<=173791};function zo(e){for(const t of e)if(Ro(t.charCodeAt(0)))return!0;return!1}function Do(e){for(const i of e)if(t=i.charCodeAt(0),q.Arabic(t)||q["Arabic Supplement"](t)||q["Arabic Extended-A"](t)||q["Arabic Presentation Forms-A"](t)||q["Arabic Presentation Forms-B"](t))return;var t;return 1}function Ro(e){return 746===e||747===e||!(e<4352)&&(q["Bopomofo Extended"](e)||q.Bopomofo(e)||q["CJK Compatibility Forms"](e)&&!(65097<=e&&e<=65103)||q["CJK Compatibility Ideographs"](e)||q["CJK Compatibility"](e)||q["CJK Radicals Supplement"](e)||q["CJK Strokes"](e)||!(!q["CJK Symbols and Punctuation"](e)||12296<=e&&e<=12305||12308<=e&&e<=12319||12336===e)||q["CJK Unified Ideographs Extension A"](e)||q["CJK Unified Ideographs"](e)||q["Enclosed CJK Letters and Months"](e)||q["Hangul Compatibility Jamo"](e)||q["Hangul Jamo Extended-A"](e)||q["Hangul Jamo Extended-B"](e)||q["Hangul Jamo"](e)||q["Hangul Syllables"](e)||q.Hiragana(e)||q["Ideographic Description Characters"](e)||q.Kanbun(e)||q["Kangxi Radicals"](e)||q["Katakana Phonetic Extensions"](e)||q.Katakana(e)&&12540!==e||!(!q["Halfwidth and Fullwidth Forms"](e)||65288===e||65289===e||65293===e||65306<=e&&e<=65310||65339===e||65341===e||65343===e||65371<=e&&e<=65503||65507===e||65512<=e&&e<=65519)||!(!q["Small Form Variants"](e)||65112<=e&&e<=65118||65123<=e&&e<=65126)||q["Unified Canadian Aboriginal Syllabics"](e)||q["Unified Canadian Aboriginal Syllabics Extended"](e)||q["Vertical Forms"](e)||q["Yijing Hexagram Symbols"](e)||q["Yi Syllables"](e)||q["Yi Radicals"](e))}function Lo(e){return!(Ro(e)||(e=e,q["Latin-1 Supplement"](e)&&(167===e||169===e||174===e||177===e||188===e||189===e||190===e||215===e||247===e)||q["General Punctuation"](e)&&(8214===e||8224===e||8225===e||8240===e||8241===e||8251===e||8252===e||8258===e||8263===e||8264===e||8265===e||8273===e)||q["Letterlike Symbols"](e)||q["Number Forms"](e)||q["Miscellaneous Technical"](e)&&(8960<=e&&e<=8967||8972<=e&&e<=8991||8996<=e&&e<=9e3||9003===e||9085<=e&&e<=9114||9150<=e&&e<=9165||9167===e||9169<=e&&e<=9179||9186<=e&&e<=9215)||q["Control Pictures"](e)&&9251!==e||q["Optical Character Recognition"](e)||q["Enclosed Alphanumerics"](e)||q["Geometric Shapes"](e)||q["Miscellaneous Symbols"](e)&&!(9754<=e&&e<=9759)||q["Miscellaneous Symbols and Arrows"](e)&&(11026<=e&&e<=11055||11088<=e&&e<=11097||11192<=e&&e<=11243)||q["CJK Symbols and Punctuation"](e)||q.Katakana(e)||q["Private Use Area"](e)||q["CJK Compatibility Forms"](e)||q["Small Form Variants"](e)||q["Halfwidth and Fullwidth Forms"](e)||8734===e||8756===e||8757===e||9984<=e&&e<=10087||10102<=e&&e<=10131||65532===e||65533===e))}function ko(e){return 1424<=e&&e<=2303||q["Arabic Presentation Forms-A"](e)||q["Arabic Presentation Forms-B"](e)}const Oo="deferred",Bo="loading",Fo="loaded";let No=null,Vo="unavailable",Uo=null;function jo(e){e&&"string"==typeof e&&-1{e?jo(e):(Vo=Fo,Go())})}const Zo=new zr,Wo={applyArabicShaping:null,processBidirectionalText:null,processStyledBidirectionalText:null,isLoaded:()=>Vo===Fo||null!=Wo.applyArabicShaping,isLoading:()=>Vo===Bo,setState(e){Vo=e.pluginStatus,Uo=e.pluginURL},isParsed:()=>null!=Wo.applyArabicShaping&&null!=Wo.processBidirectionalText&&null!=Wo.processStyledBidirectionalText,getPluginURL:()=>Uo};class I{constructor(e,t){this.zoom=e,t?(this.now=t.now,this.fadeDuration=t.fadeDuration,this.transition=t.transition,this.pitch=t.pitch,this.brightness=t.brightness):(this.now=0,this.fadeDuration=0,this.transition={},this.pitch=0,this.brightness=0)}isSupportedScript(e){var t,i,r=Wo.isLoaded();for(const a of e)if(t=a.charCodeAt(0),i=r,!i&&ko(t)||2304<=t&&t<=3583||3840<=t&&t<=4255||q.Khmer(t))return!1;return!0}}class Ho{constructor(e,t,i,r){this.property=e,this.value=t,this.expression=function(t,i,e,r){if(lo(t))return new wo(t,i);if(go(t)||Array.isArray(t)&&0e.key+": "+e.message).join(", "));return a.value}{let e=t;return"string"==typeof t&&"color"===i.type&&(e=g.parse(t)),{kind:"constant",configDependencies:new Set,evaluate:()=>e}}}(void 0===t?e.specification.default:t,e.specification,i,r)}isDataDriven(){return"source"===this.expression.kind||"composite"===this.expression.kind}possiblyEvaluate(e,t,i){return this.property.possiblyEvaluate(this,e,t,i)}}class Xo{constructor(e,t,i){this.property=e,this.value=new Ho(e,void 0,t,i)}transitioned(e,t){return new Jo(this.property,this.value,t,ii({},e.transition,this.transition),e.now)}untransitioned(){return new Jo(this.property,this.value,null,{},0)}}class Yo{constructor(e,t,i){this._properties=e,this._values=Object.create(e.defaultTransitionablePropertyValues),this._scope=t,this._options=i,this.configDependencies=new Set}getValue(e){return di(this._values[e].value.value)}setValue(e,t){this._values.hasOwnProperty(e)||(this._values[e]=new Xo(this._values[e].property,this._scope,this._options)),this._values[e].value=new Ho(this._values[e].property,null===t?void 0:di(t),this._scope,this._options),this._values[e].value.expression.configDependencies&&(this.configDependencies=new Set([...this.configDependencies,...this._values[e].value.expression.configDependencies]))}setTransitionOrValue(e,t){t&&(this._options=t);const i=this._properties.properties;if(e)for(const t in e){var r=e[t];if(ci(t,"-transition")){const e=t.slice(0,-11);i[e]&&this.setTransition(e,r)}else i.hasOwnProperty(t)&&this.setValue(t,r)}}getTransition(e){return di(this._values[e].transition)}setTransition(e,t){this._values.hasOwnProperty(e)||(this._values[e]=new Xo(this._values[e].property)),this._values[e].transition=di(t)||void 0}serialize(){const e={};for(const i of Object.keys(this._values)){var t=this.getValue(i),t=(void 0!==t&&(e[i]=t),this.getTransition(i));void 0!==t&&(e[i+"-transition"]=t)}return e}transitioned(e,t){const i=new Ko(this._properties);for(const r of Object.keys(this._values))i._values[r]=this._values[r].transitioned(e,t._values[r]);return i}untransitioned(){const e=new Ko(this._properties);for(const t of Object.keys(this._values))e._values[t]=this._values[t].untransitioned();return e}}class Jo{constructor(e,t,i,r,a){var n=r.delay||0,o=r.duration||0;a=a||0,this.property=e,this.value=t,this.begin=a+n,this.end=this.begin+o,e.specification.transition&&(r.delay||r.duration)&&(this.prior=i)}possiblyEvaluate(e,t,i){const r=e.now||0,a=this.value.possiblyEvaluate(e,t,i),n=this.prior;if(n){if(r>this.end)return this.prior=null,a;if(this.value.isDataDriven())return this.prior=null,a;if(r":1,">=":1,"<":1,"<=":1,"in":1,"!in":1,"all":1,"any":1,"none":1,"has":1,"!has":1}},"geometry_type":{"type":"enum","values":{"Point":1,"LineString":1,"Polygon":1}},"function":{"expression":{"type":"expression"},"stops":{"type":"array","value":"function_stop"},"base":{"type":"number","default":1,"minimum":0},"property":{"type":"string","default":"$zoom"},"type":{"type":"enum","values":{"identity":1,"exponential":1,"interval":1,"categorical":1},"default":"exponential"},"colorSpace":{"type":"enum","values":{"rgb":1,"lab":1,"hcl":1},"default":"rgb"},"default":{"type":"*","required":false}},"function_stop":{"type":"array","minimum":0,"maximum":24,"value":["number","color"],"length":2},"expression":{"type":"array","value":"*","minimum":1},"fog":{"range":{"type":"array","default":[0.5,10],"minimum":-20,"maximum":20,"length":2,"value":"number","property-type":"data-constant","transition":true,"expression":{"interpolated":true,"parameters":["zoom","measure-light"],"relaxZoomRestriction":true}},"color":{"type":"color","property-type":"data-constant","default":"#ffffff","expression":{"interpolated":true,"parameters":["zoom","measure-light"],"relaxZoomRestriction":true},"transition":true},"high-color":{"type":"color","property-type":"data-constant","default":"#245cdf","expression":{"interpolated":true,"parameters":["zoom","measure-light"],"relaxZoomRestriction":true},"transition":true},"space-color":{"type":"color","property-type":"data-constant","default":["interpolate",["linear"],["zoom"],4,"#010b19",7,"#367ab9"],"expression":{"interpolated":true,"parameters":["zoom","measure-light"],"relaxZoomRestriction":true},"transition":true},"horizon-blend":{"type":"number","property-type":"data-constant","default":["interpolate",["linear"],["zoom"],4,0.2,7,0.1],"minimum":0,"maximum":1,"expression":{"interpolated":true,"parameters":["zoom","measure-light"],"relaxZoomRestriction":true},"transition":true},"star-intensity":{"type":"number","property-type":"data-constant","default":["interpolate",["linear"],["zoom"],5,0.35,6,0],"minimum":0,"maximum":1,"expression":{"interpolated":true,"parameters":["zoom","measure-light"],"relaxZoomRestriction":true},"transition":true},"vertical-range":{"type":"array","default":[0,0],"minimum":0,"length":2,"value":"number","property-type":"data-constant","transition":true,"expression":{"interpolated":true,"parameters":["zoom","measure-light"],"relaxZoomRestriction":true}}},"camera":{"camera-projection":{"type":"enum","values":{"perspective":1,"orthographic":1},"transition":true,"expression":{"interpolated":true,"parameters":["zoom"]},"default":"perspective","property-type":"data-constant"}},"colorTheme":{"data":{"type":"string","property-type":"data-constant","expression":{}}},"light":{"anchor":{"type":"enum","default":"viewport","values":{"map":1,"viewport":1},"property-type":"data-constant","expression":{"parameters":["zoom"]}},"position":{"type":"array","default":[1.15,210,30],"length":3,"value":"number","property-type":"data-constant","transition":true,"expression":{"interpolated":true,"parameters":["zoom"]}},"color":{"type":"color","property-type":"data-constant","default":"#ffffff","expression":{"interpolated":true,"parameters":["zoom"]},"transition":true},"intensity":{"type":"number","property-type":"data-constant","default":0.5,"minimum":0,"maximum":1,"expression":{"interpolated":true,"parameters":["zoom"]},"transition":true}},"projection":{"name":{"type":"enum","values":{"albers":1,"equalEarth":1,"equirectangular":1,"lambertConformalConic":1,"mercator":1,"naturalEarth":1,"winkelTripel":1,"globe":1},"default":"mercator","required":true},"center":{"type":"array","length":2,"value":"number","property-type":"data-constant","minimum":[-180,-90],"maximum":[180,90]},"parallels":{"type":"array","length":2,"value":"number","property-type":"data-constant","minimum":[-90,-90],"maximum":[90,90]}},"terrain":{"source":{"type":"string","required":true},"exaggeration":{"type":"number","property-type":"data-constant","default":1,"minimum":0,"maximum":1000,"expression":{"interpolated":true,"parameters":["zoom"]},"transition":true}},"paint":["paint_fill","paint_line","paint_circle","paint_heatmap","paint_fill-extrusion","paint_symbol","paint_raster","paint_raster-particle","paint_hillshade","paint_background","paint_sky","paint_model"],"paint_fill":{"fill-antialias":{"type":"boolean","default":true,"expression":{"parameters":["zoom"]},"property-type":"data-constant"},"fill-opacity":{"type":"number","default":1,"minimum":0,"maximum":1,"transition":true,"expression":{"interpolated":true,"parameters":["zoom","feature","feature-state","measure-light"]},"property-type":"data-driven"},"fill-color":{"type":"color","default":"#000000","transition":true,"expression":{"interpolated":true,"parameters":["zoom","feature","feature-state","measure-light"]},"property-type":"data-driven"},"fill-outline-color":{"type":"color","transition":true,"expression":{"interpolated":true,"parameters":["zoom","feature","feature-state","measure-light"]},"property-type":"data-driven"},"fill-translate":{"type":"array","value":"number","length":2,"default":[0,0],"transition":true,"expression":{"interpolated":true,"parameters":["zoom"]},"property-type":"data-constant"},"fill-translate-anchor":{"type":"enum","values":{"map":1,"viewport":1},"default":"map","expression":{"parameters":["zoom"]},"property-type":"data-constant"},"fill-pattern":{"type":"resolvedImage","expression":{"parameters":["zoom","feature"]},"property-type":"data-driven"},"fill-emissive-strength":{"type":"number","default":0,"minimum":0,"transition":true,"expression":{"interpolated":true,"parameters":["zoom","measure-light"]},"property-type":"data-constant"}},"paint_fill-extrusion":{"fill-extrusion-opacity":{"type":"number","default":1,"minimum":0,"maximum":1,"transition":true,"expression":{"interpolated":true,"parameters":["zoom"]},"property-type":"data-constant"},"fill-extrusion-color":{"type":"color","default":"#000000","transition":true,"expression":{"interpolated":true,"parameters":["zoom","feature","feature-state","measure-light"]},"property-type":"data-driven"},"fill-extrusion-translate":{"type":"array","value":"number","length":2,"default":[0,0],"transition":true,"expression":{"interpolated":true,"parameters":["zoom"]},"property-type":"data-constant"},"fill-extrusion-translate-anchor":{"type":"enum","values":{"map":1,"viewport":1},"default":"map","expression":{"parameters":["zoom"]},"property-type":"data-constant"},"fill-extrusion-pattern":{"type":"resolvedImage","expression":{"parameters":["zoom","feature"]},"property-type":"data-driven"},"fill-extrusion-height":{"type":"number","default":0,"minimum":0,"transition":true,"expression":{"interpolated":true,"parameters":["zoom","feature","feature-state"]},"property-type":"data-driven"},"fill-extrusion-base":{"type":"number","default":0,"minimum":0,"transition":true,"expression":{"interpolated":true,"parameters":["zoom","feature","feature-state"]},"property-type":"data-driven"},"fill-extrusion-vertical-gradient":{"type":"boolean","default":true,"expression":{"parameters":["zoom"]},"property-type":"data-constant"},"fill-extrusion-ambient-occlusion-intensity":{"property-type":"data-constant","type":"number","private":true,"default":0,"minimum":0,"maximum":1,"expression":{"interpolated":true,"parameters":["zoom"]},"transition":true},"fill-extrusion-ambient-occlusion-radius":{"property-type":"data-constant","type":"number","private":true,"default":3,"minimum":0,"expression":{"interpolated":true,"parameters":["zoom"]},"transition":true},"fill-extrusion-ambient-occlusion-wall-radius":{"property-type":"data-constant","type":"number","experimental":true,"default":3,"minimum":0,"expression":{"interpolated":true,"parameters":["zoom"]},"transition":true},"fill-extrusion-ambient-occlusion-ground-radius":{"property-type":"data-constant","type":"number","experimental":true,"default":3,"minimum":0,"expression":{"interpolated":true,"parameters":["zoom"]},"transition":true},"fill-extrusion-ambient-occlusion-ground-attenuation":{"property-type":"data-constant","type":"number","experimental":true,"default":0.69,"minimum":0,"maximum":1,"transition":true,"expression":{"interpolated":true,"parameters":["zoom"]}},"fill-extrusion-flood-light-color":{"property-type":"data-constant","type":"color","experimental":true,"default":"#ffffff","transition":true,"expression":{"interpolated":true,"parameters":["zoom","measure-light"]}},"fill-extrusion-flood-light-intensity":{"property-type":"data-constant","type":"number","experimental":true,"default":0,"minimum":0,"maximum":1,"transition":true,"expression":{"interpolated":true,"parameters":["zoom","measure-light"]}},"fill-extrusion-flood-light-wall-radius":{"property-type":"data-driven","type":"number","experimental":true,"default":0,"minimum":0,"transition":true,"expression":{"interpolated":true,"parameters":["feature","feature-state"]}},"fill-extrusion-flood-light-ground-radius":{"property-type":"data-driven","type":"number","experimental":true,"default":0,"transition":true,"expression":{"interpolated":true,"parameters":["feature","feature-state"]}},"fill-extrusion-flood-light-ground-attenuation":{"property-type":"data-constant","type":"number","experimental":true,"default":0.69,"minimum":0,"maximum":1,"transition":true,"expression":{"interpolated":true,"parameters":["zoom"]}},"fill-extrusion-vertical-scale":{"property-type":"data-constant","type":"number","experimental":true,"default":1,"minimum":0,"transition":true,"expression":{"interpolated":true,"parameters":["zoom"]}},"fill-extrusion-rounded-roof":{"property-type":"data-constant","type":"boolean","default":true,"experimental":true,"expression":{"parameters":["zoom"]}},"fill-extrusion-cutoff-fade-range":{"type":"number","default":0,"minimum":0,"maximum":1,"expression":{},"property-type":"data-constant"},"fill-extrusion-emissive-strength":{"type":"number","default":0,"minimum":0,"transition":true,"expression":{"interpolated":true,"parameters":["zoom","measure-light"]},"property-type":"data-constant"},"fill-extrusion-line-width":{"type":"number","default":0,"minimum":0,"transition":true,"expression":{"interpolated":true,"parameters":["zoom","feature","feature-state","measure-light"]},"property-type":"data-driven"},"fill-extrusion-line-alignment":{"type":"enum","values":{"inside":1,"outside":1,"center":1},"default":"center","property-type":"data-constant"}},"paint_line":{"line-opacity":{"type":"number","default":1,"minimum":0,"maximum":1,"transition":true,"expression":{"interpolated":true,"parameters":["zoom","feature","feature-state","measure-light"]},"property-type":"data-driven"},"line-color":{"type":"color","default":"#000000","transition":true,"expression":{"interpolated":true,"parameters":["zoom","feature","feature-state","measure-light"]},"property-type":"data-driven"},"line-translate":{"type":"array","value":"number","length":2,"default":[0,0],"transition":true,"expression":{"interpolated":true,"parameters":["zoom"]},"property-type":"data-constant"},"line-translate-anchor":{"type":"enum","values":{"map":1,"viewport":1},"default":"map","expression":{"parameters":["zoom"]},"property-type":"data-constant"},"line-width":{"type":"number","default":1,"minimum":0,"transition":true,"expression":{"interpolated":true,"parameters":["zoom","feature","feature-state","measure-light"]},"property-type":"data-driven"},"line-gap-width":{"type":"number","default":0,"minimum":0,"transition":true,"expression":{"interpolated":true,"parameters":["zoom","feature","feature-state","measure-light"]},"property-type":"data-driven"},"line-offset":{"type":"number","default":0,"transition":true,"expression":{"interpolated":true,"parameters":["zoom","feature","feature-state","measure-light"]},"property-type":"data-driven"},"line-blur":{"type":"number","default":0,"minimum":0,"transition":true,"expression":{"interpolated":true,"parameters":["zoom","feature","feature-state","measure-light"]},"property-type":"data-driven"},"line-dasharray":{"type":"array","value":"number","minimum":0,"expression":{"parameters":["zoom","feature"]},"property-type":"data-driven"},"line-pattern":{"type":"resolvedImage","expression":{"parameters":["zoom","feature"]},"property-type":"data-driven"},"line-gradient":{"type":"color","expression":{"interpolated":true,"parameters":["line-progress"]},"property-type":"color-ramp"},"line-trim-offset":{"type":"array","value":"number","length":2,"default":[0,0],"minimum":[0,0],"maximum":[1,1],"property-type":"constant"},"line-trim-fade-range":{"type":"array","value":"number","experimental":true,"length":2,"default":[0,0],"minimum":[0,0],"maximum":[1,1],"expression":{"interpolated":true,"parameters":["zoom","measure-light"]},"property-type":"data-constant"},"line-trim-color":{"type":"color","experimental":true,"default":"transparent","transition":true,"expression":{"interpolated":true,"parameters":["zoom","measure-light"]},"property-type":"data-constant"},"line-emissive-strength":{"type":"number","default":0,"minimum":0,"transition":true,"expression":{"interpolated":true,"parameters":["zoom","measure-light"]},"property-type":"data-constant"},"line-border-width":{"type":"number","private":true,"default":0,"minimum":0,"transition":true,"expression":{"interpolated":true,"parameters":["zoom","feature","feature-state"]},"property-type":"data-driven"},"line-border-color":{"type":"color","private":true,"default":"rgba(0, 0, 0, 0)","transition":true,"expression":{"interpolated":true,"parameters":["zoom","feature","feature-state"]},"property-type":"data-driven"},"line-occlusion-opacity":{"type":"number","default":0,"minimum":0,"maximum":1,"expression":{"interpolated":true,"parameters":["zoom"]},"transition":true,"property-type":"data-constant"}},"paint_circle":{"circle-radius":{"type":"number","default":5,"minimum":0,"transition":true,"expression":{"interpolated":true,"parameters":["zoom","feature","feature-state","measure-light"]},"property-type":"data-driven"},"circle-color":{"type":"color","default":"#000000","transition":true,"expression":{"interpolated":true,"parameters":["zoom","feature","feature-state","measure-light"]},"property-type":"data-driven"},"circle-blur":{"type":"number","default":0,"transition":true,"expression":{"interpolated":true,"parameters":["zoom","feature","feature-state","measure-light"]},"property-type":"data-driven"},"circle-opacity":{"type":"number","default":1,"minimum":0,"maximum":1,"transition":true,"expression":{"interpolated":true,"parameters":["zoom","feature","feature-state","measure-light"]},"property-type":"data-driven"},"circle-translate":{"type":"array","value":"number","length":2,"default":[0,0],"transition":true,"expression":{"interpolated":true,"parameters":["zoom"]},"property-type":"data-constant"},"circle-translate-anchor":{"type":"enum","values":{"map":1,"viewport":1},"default":"map","expression":{"parameters":["zoom"]},"property-type":"data-constant"},"circle-pitch-scale":{"type":"enum","values":{"map":1,"viewport":1},"default":"map","expression":{"parameters":["zoom"]},"property-type":"data-constant"},"circle-pitch-alignment":{"type":"enum","values":{"map":1,"viewport":1},"default":"viewport","expression":{"parameters":["zoom"]},"property-type":"data-constant"},"circle-stroke-width":{"type":"number","default":0,"minimum":0,"transition":true,"expression":{"interpolated":true,"parameters":["zoom","feature","feature-state","measure-light"]},"property-type":"data-driven"},"circle-stroke-color":{"type":"color","default":"#000000","transition":true,"expression":{"interpolated":true,"parameters":["zoom","feature","feature-state","measure-light"]},"property-type":"data-driven"},"circle-stroke-opacity":{"type":"number","default":1,"minimum":0,"maximum":1,"transition":true,"expression":{"interpolated":true,"parameters":["zoom","feature","feature-state","measure-light"]},"property-type":"data-driven"},"circle-emissive-strength":{"type":"number","default":0,"minimum":0,"transition":true,"expression":{"interpolated":true,"parameters":["zoom","measure-light"]},"property-type":"data-constant"}},"paint_heatmap":{"heatmap-radius":{"type":"number","default":30,"minimum":1,"transition":true,"expression":{"interpolated":true,"parameters":["zoom","feature","feature-state","measure-light"]},"property-type":"data-driven"},"heatmap-weight":{"type":"number","default":1,"minimum":0,"expression":{"interpolated":true,"parameters":["zoom","feature","feature-state","measure-light"]},"property-type":"data-driven"},"heatmap-intensity":{"type":"number","default":1,"minimum":0,"transition":true,"expression":{"interpolated":true,"parameters":["zoom"]},"property-type":"data-constant"},"heatmap-color":{"type":"color","default":["interpolate",["linear"],["heatmap-density"],0,"rgba(0, 0, 255, 0)",0.1,"royalblue",0.3,"cyan",0.5,"lime",0.7,"yellow",1,"red"],"expression":{"interpolated":true,"parameters":["heatmap-density"]},"property-type":"color-ramp"},"heatmap-opacity":{"type":"number","default":1,"minimum":0,"maximum":1,"transition":true,"expression":{"interpolated":true,"parameters":["zoom"]},"property-type":"data-constant"}},"paint_symbol":{"icon-opacity":{"type":"number","default":1,"minimum":0,"maximum":1,"transition":true,"expression":{"interpolated":true,"parameters":["zoom","feature","feature-state","measure-light"]},"property-type":"data-driven"},"icon-occlusion-opacity":{"type":"number","minimum":0,"maximum":1,"default":0,"transition":true,"expression":{"interpolated":true,"parameters":["zoom","feature","feature-state","measure-light"]},"property-type":"data-driven"},"icon-emissive-strength":{"type":"number","default":1,"minimum":0,"transition":true,"expression":{"interpolated":true,"parameters":["zoom","measure-light"]},"property-type":"data-driven"},"text-emissive-strength":{"type":"number","default":1,"minimum":0,"transition":true,"expression":{"interpolated":true,"parameters":["zoom","measure-light"]},"property-type":"data-driven"},"icon-color":{"type":"color","default":"#000000","transition":true,"expression":{"interpolated":true,"parameters":["zoom","feature","feature-state","measure-light"]},"property-type":"data-driven"},"icon-halo-color":{"type":"color","default":"rgba(0, 0, 0, 0)","transition":true,"expression":{"interpolated":true,"parameters":["zoom","feature","feature-state","measure-light"]},"property-type":"data-driven"},"icon-halo-width":{"type":"number","default":0,"minimum":0,"transition":true,"expression":{"interpolated":true,"parameters":["zoom","feature","feature-state","measure-light"]},"property-type":"data-driven"},"icon-halo-blur":{"type":"number","default":0,"minimum":0,"transition":true,"expression":{"interpolated":true,"parameters":["zoom","feature","feature-state","measure-light"]},"property-type":"data-driven"},"icon-translate":{"type":"array","value":"number","length":2,"default":[0,0],"transition":true,"expression":{"interpolated":true,"parameters":["zoom"]},"property-type":"data-constant"},"icon-translate-anchor":{"type":"enum","values":{"map":1,"viewport":1},"default":"map","expression":{"parameters":["zoom"]},"property-type":"data-constant"},"icon-image-cross-fade":{"type":"number","property-type":"data-driven","default":0,"minimum":0,"maximum":1,"expression":{"interpolated":true,"parameters":["zoom","feature","feature-state","measure-light"]},"transition":true},"text-opacity":{"type":"number","default":1,"minimum":0,"maximum":1,"transition":true,"expression":{"interpolated":true,"parameters":["zoom","feature","feature-state","measure-light"]},"property-type":"data-driven"},"text-occlusion-opacity":{"type":"number","minimum":0,"maximum":1,"default":0,"transition":true,"expression":{"interpolated":true,"parameters":["zoom","feature","feature-state","measure-light"]},"property-type":"data-driven"},"text-color":{"type":"color","default":"#000000","transition":true,"overridable":true,"expression":{"interpolated":true,"parameters":["zoom","feature","feature-state","measure-light"]},"property-type":"data-driven"},"text-halo-color":{"type":"color","default":"rgba(0, 0, 0, 0)","transition":true,"expression":{"interpolated":true,"parameters":["zoom","feature","feature-state","measure-light"]},"property-type":"data-driven"},"text-halo-width":{"type":"number","default":0,"minimum":0,"transition":true,"expression":{"interpolated":true,"parameters":["zoom","feature","feature-state","measure-light"]},"property-type":"data-driven"},"text-halo-blur":{"type":"number","default":0,"minimum":0,"transition":true,"expression":{"interpolated":true,"parameters":["zoom","feature","feature-state","measure-light"]},"property-type":"data-driven"},"text-translate":{"type":"array","value":"number","length":2,"default":[0,0],"transition":true,"expression":{"interpolated":true,"parameters":["zoom"]},"property-type":"data-constant"},"text-translate-anchor":{"type":"enum","values":{"map":1,"viewport":1},"default":"map","expression":{"parameters":["zoom"]},"property-type":"data-constant"},"icon-color-saturation":{"type":"number","default":0,"minimum":-1,"maximum":1,"expression":{},"property-type":"data-constant"},"icon-color-contrast":{"type":"number","default":0,"minimum":-1,"maximum":1,"expression":{},"property-type":"data-constant"},"icon-color-brightness-min":{"type":"number","default":0,"minimum":0,"maximum":1,"expression":{},"property-type":"data-constant"},"icon-color-brightness-max":{"type":"number","default":1,"minimum":0,"maximum":1,"expression":{},"property-type":"data-constant"}},"paint_raster":{"raster-opacity":{"type":"number","default":1,"minimum":0,"maximum":1,"transition":true,"expression":{"interpolated":true,"parameters":["zoom"]},"property-type":"data-constant"},"raster-color":{"type":"color","expression":{"interpolated":true,"parameters":["raster-value"]},"property-type":"color-ramp"},"raster-color-mix":{"type":"array","default":[0.2126,0.7152,0.0722,0],"length":4,"value":"number","property-type":"data-constant","transition":true,"expression":{"interpolated":true,"parameters":["zoom"]}},"raster-color-range":{"type":"array","length":2,"value":"number","property-type":"data-constant","transition":true,"expression":{"interpolated":true,"parameters":["zoom"]}},"raster-hue-rotate":{"type":"number","default":0,"period":360,"transition":true,"expression":{"interpolated":true,"parameters":["zoom"]},"property-type":"data-constant"},"raster-brightness-min":{"type":"number","default":0,"minimum":0,"maximum":1,"transition":true,"expression":{"interpolated":true,"parameters":["zoom"]},"property-type":"data-constant"},"raster-brightness-max":{"type":"number","default":1,"minimum":0,"maximum":1,"transition":true,"expression":{"interpolated":true,"parameters":["zoom"]},"property-type":"data-constant"},"raster-saturation":{"type":"number","default":0,"minimum":-1,"maximum":1,"transition":true,"expression":{"interpolated":true,"parameters":["zoom"]},"property-type":"data-constant"},"raster-contrast":{"type":"number","default":0,"minimum":-1,"maximum":1,"transition":true,"expression":{"interpolated":true,"parameters":["zoom"]},"property-type":"data-constant"},"raster-resampling":{"type":"enum","values":{"linear":1,"nearest":1},"default":"linear","expression":{"parameters":["zoom"]},"property-type":"data-constant"},"raster-fade-duration":{"type":"number","default":300,"minimum":0,"expression":{"interpolated":true,"parameters":["zoom"]},"property-type":"data-constant"},"raster-emissive-strength":{"type":"number","default":0,"minimum":0,"transition":true,"expression":{"interpolated":true,"parameters":["zoom","measure-light"]},"property-type":"data-constant"},"raster-array-band":{"type":"string","required":false,"experimental":true,"property-type":"data-constant"},"raster-elevation":{"type":"number","default":0,"minimum":0,"transition":true,"experimental":true,"expression":{"interpolated":true,"parameters":["zoom"]},"property-type":"data-constant"}},"paint_raster-particle":{"raster-particle-array-band":{"type":"string","required":false,"property-type":"data-constant"},"raster-particle-count":{"type":"number","default":512,"minimum":1,"property-type":"data-constant"},"raster-particle-color":{"type":"color","expression":{"interpolated":true,"parameters":["raster-particle-speed"]},"property-type":"color-ramp"},"raster-particle-max-speed":{"type":"number","default":1,"minimum":1,"property-type":"data-constant"},"raster-particle-speed-factor":{"type":"number","default":0.2,"minimum":0,"maximum":1,"transition":true,"expression":{"interpolated":true,"parameters":["zoom"]},"property-type":"data-constant"},"raster-particle-fade-opacity-factor":{"type":"number","default":0.98,"minimum":0,"maximum":1,"transition":true,"expression":{"interpolated":true,"parameters":["zoom"]},"property-type":"data-constant"},"raster-particle-reset-rate-factor":{"type":"number","default":0.8,"minimum":0,"maximum":1,"property-type":"data-constant"},"raster-particle-elevation":{"type":"number","default":0,"minimum":0,"transition":true,"expression":{"interpolated":true,"parameters":["zoom"]},"property-type":"data-constant"}},"paint_hillshade":{"hillshade-illumination-direction":{"type":"number","default":335,"minimum":0,"maximum":359,"expression":{"interpolated":true,"parameters":["zoom"]},"property-type":"data-constant"},"hillshade-illumination-anchor":{"type":"enum","values":{"map":1,"viewport":1},"default":"viewport","expression":{"parameters":["zoom"]},"property-type":"data-constant"},"hillshade-exaggeration":{"type":"number","default":0.5,"minimum":0,"maximum":1,"transition":true,"expression":{"interpolated":true,"parameters":["zoom"]},"property-type":"data-constant"},"hillshade-shadow-color":{"type":"color","default":"#000000","transition":true,"expression":{"interpolated":true,"parameters":["zoom","measure-light"]},"property-type":"data-constant"},"hillshade-highlight-color":{"type":"color","default":"#FFFFFF","transition":true,"expression":{"interpolated":true,"parameters":["zoom","measure-light"]},"property-type":"data-constant"},"hillshade-accent-color":{"type":"color","default":"#000000","transition":true,"expression":{"interpolated":true,"parameters":["zoom","measure-light"]},"property-type":"data-constant"},"hillshade-emissive-strength":{"type":"number","default":0,"minimum":0,"transition":true,"expression":{"interpolated":true,"parameters":["zoom","measure-light"]},"property-type":"data-constant"}},"paint_background":{"background-color":{"type":"color","default":"#000000","transition":true,"expression":{"interpolated":true,"parameters":["zoom"]},"property-type":"data-constant"},"background-pattern":{"type":"resolvedImage","expression":{"parameters":["zoom"]},"property-type":"data-constant"},"background-opacity":{"type":"number","default":1,"minimum":0,"maximum":1,"transition":true,"expression":{"interpolated":true,"parameters":["zoom"]},"property-type":"data-constant"},"background-emissive-strength":{"type":"number","default":0,"minimum":0,"transition":true,"expression":{"interpolated":true,"parameters":["zoom","measure-light"]},"property-type":"data-constant"}},"paint_sky":{"sky-type":{"type":"enum","values":{"gradient":1,"atmosphere":1},"default":"atmosphere","expression":{"parameters":["zoom"]},"property-type":"data-constant"},"sky-atmosphere-sun":{"type":"array","value":"number","length":2,"minimum":[0,0],"maximum":[360,180],"expression":{"parameters":["zoom"]},"property-type":"data-constant"},"sky-atmosphere-sun-intensity":{"type":"number","default":10,"minimum":0,"maximum":100,"property-type":"data-constant"},"sky-gradient-center":{"type":"array","value":"number","default":[0,0],"length":2,"minimum":[0,0],"maximum":[360,180],"expression":{"parameters":["zoom"]},"property-type":"data-constant"},"sky-gradient-radius":{"type":"number","default":90,"minimum":0,"maximum":180,"expression":{"parameters":["zoom"]},"property-type":"data-constant"},"sky-gradient":{"type":"color","default":["interpolate",["linear"],["sky-radial-progress"],0.8,"#87ceeb",1,"white"],"expression":{"interpolated":true,"parameters":["sky-radial-progress"]},"property-type":"color-ramp"},"sky-atmosphere-halo-color":{"type":"color","default":"white","property-type":"data-constant"},"sky-atmosphere-color":{"type":"color","default":"white","property-type":"data-constant"},"sky-opacity":{"type":"number","default":1,"minimum":0,"maximum":1,"transition":true,"expression":{"interpolated":true,"parameters":["zoom"]},"property-type":"data-constant"}},"paint_model":{"model-opacity":{"type":"number","default":1,"minimum":0,"maximum":1,"transition":true,"expression":{"interpolated":true,"parameters":["zoom"]},"property-type":"data-constant"},"model-rotation":{"type":"array","value":"number","length":3,"default":[0,0,0],"period":360,"property-type":"data-driven","expression":{"interpolated":true,"parameters":["feature","feature-state","zoom"]},"transition":true},"model-scale":{"type":"array","value":"number","length":3,"default":[1,1,1],"property-type":"data-driven","expression":{"interpolated":true,"parameters":["feature","feature-state","zoom"]},"transition":true},"model-translation":{"type":"array","value":"number","length":3,"default":[0,0,0],"property-type":"data-driven","expression":{"interpolated":true,"parameters":["feature","feature-state","zoom"]},"transition":true},"model-color":{"type":"color","default":"#ffffff","property-type":"data-driven","expression":{"interpolated":true,"parameters":["feature","feature-state","measure-light","zoom"]},"transition":true},"model-color-mix-intensity":{"type":"number","property-type":"data-driven","default":0,"minimum":0,"maximum":1,"expression":{"interpolated":true,"parameters":["feature","feature-state","measure-light"]},"transition":true},"model-type":{"type":"enum","values":{"common-3d":1,"location-indicator":1},"default":"common-3d","property-type":"data-constant"},"model-cast-shadows":{"type":"boolean","default":true,"property-type":"data-constant"},"model-receive-shadows":{"type":"boolean","default":true,"property-type":"data-constant"},"model-ambient-occlusion-intensity":{"type":"number","default":1,"minimum":0,"maximum":1,"expression":{"interpolated":true,"parameters":["zoom"]},"property-type":"data-constant","transition":true},"model-emissive-strength":{"type":"number","property-type":"data-driven","default":0,"minimum":0,"maximum":5,"expression":{"interpolated":true,"parameters":["feature","feature-state","measure-light"]},"transition":true},"model-roughness":{"type":"number","default":1,"minimum":0,"maximum":1,"property-type":"data-driven","expression":{"interpolated":true,"parameters":["feature","feature-state"]},"transition":true},"model-height-based-emissive-strength-multiplier":{"type":"array","default":[1,1,1,1,0],"length":5,"value":"number","property-type":"data-driven","expression":{"interpolated":true,"parameters":["feature","feature-state","measure-light"]},"transition":true},"model-cutoff-fade-range":{"type":"number","default":0,"minimum":0,"maximum":1,"expression":{},"property-type":"data-constant"},"model-front-cutoff":{"type":"array","private":true,"value":"number","property-type":"data-constant","expression":{"interpolated":true,"parameters":["zoom"]},"length":3,"default":[0,0,1],"minimum":[0,0,0],"maximum":[1,1,1]}},"transition":{"duration":{"type":"number","default":300,"minimum":0},"delay":{"type":"number","default":0,"minimum":0}},"property-type":{"data-driven":{"type":"property-type"},"color-ramp":{"type":"property-type"},"data-constant":{"type":"property-type"},"constant":{"type":"property-type"}},"promoteId":{"*":{"type":"string"}}}');function rs(e){return e instanceof Number||e instanceof String||e instanceof Boolean?e.valueOf():e}function as(e){if(Array.isArray(e))return e.map(as);if(e instanceof Object&&!(e instanceof Number||e instanceof String||e instanceof Boolean)){const t={};for(const i in e)t[i]=as(e[i]);return t}return rs(e)}function ns(e){if(!0===e||!1===e)return!0;if(!Array.isArray(e)||0===e.length)return!1;switch(e[0]){case"has":return 2<=e.length&&"$id"!==e[1]&&"$type"!==e[1];case"in":return 3<=e.length&&("string"!=typeof e[1]||Array.isArray(e[2]));case"!in":case"!has":case"none":return!1;case"==":case"!=":case">":case">=":case"<":case"<=":return 3!==e.length||Array.isArray(e[1])||Array.isArray(e[2]);case"any":case"all":for(const t of e.slice(1))if(!ns(t)&&"boolean"!=typeof t)return!1;return!0;default:return!0}}function os(n,e="fill"){if(null==n)return{filter:()=>!0,needGeometry:!1,needFeature:!1};var t=n=ns(n)?n:hs(n);let i=!0;try{i=function(e){if(!ss(e))return e;e=as(e);return function t(i){let r=!1;const a=[];if("case"===i[0]){for(let e=1;et(e))}(e)}(t)}catch(n){console.warn(`Failed to extract static filter. Filter will continue working, but at higher memory usage and slower framerate. +This is most likely a bug, please report this via https://github.com/mapbox/mapbox-gl-js/issues/new?assignees=&labels=&template=Bug_report.md +and paste the contents of this message in the report. +Thank you! +Filter Expression: +${JSON.stringify(t,null,2)} + `)}const r=w["filter_"+e],a=yo(i,r);if("error"===a.result)throw new Error(a.value.map(e=>e.key+": "+e.message).join(", "));e=(e,t,i)=>a.value.evaluate(e,t,{},i);let o=null,s=null;if(i!==t){const n=yo(t,r);if("error"===n.result)throw new Error(n.value.map(e=>e.key+": "+e.message).join(", "));o=(e,t,i,r,a)=>n.value.evaluate(e,t,{},i,void 0,void 0,r,a),s=!xn(n.value.expression)}return{filter:e,dynamicFilter:o||void 0,needGeometry:function t(i){if(!Array.isArray(i))return!1;if("within"===i[0]||"distance"===i[0])return!0;for(let e=1;e",">=","<","<=","to-boolean"]);function cs(e,t){return e"===i||"<="===i||">="===i?us(e[1],e[2],i):"any"===i?(t=e.slice(1),["any"].concat(t.map(hs))):"all"===i?["all"].concat(e.slice(1).map(hs)):"none"===i?["all"].concat(e.slice(1).map(hs).map(fs)):"in"===i?ds(e[1],e.slice(2)):"!in"===i?fs(ds(e[1],e.slice(2))):"has"===i?ps(e[1]):"!has"!==i||fs(ps(e[1]))}function us(e,t,i){switch(e){case"$type":return["filter-type-"+i,t];case"$id":return["filter-id-"+i,t];default:return["filter-"+i,e,t]}}function ds(e,t){if(0===t.length)return!1;switch(e){case"$type":return["filter-type-in",["literal",t]];case"$id":return["filter-id-in",["literal",t]];default:return 200typeof e!=typeof t[0])?["filter-in-large",e,["literal",t.sort(cs)]]:["filter-in-small",e,["literal",t]]}}function ps(e){switch(e){case"$type":return!0;case"$id":return["filter-has-id"];default:return["filter-has",e]}}function fs(e){return["!",e]}function ms(e,t){return t?e+""+t:e}const _s="-transition",gs=new Set(["fill","line","background","hillshade","raster"]);class ys extends zr{constructor(e,t,i,r,a){if(super(),this.id=e.id,this.fqid=ms(this.id,i),this.type=e.type,this.scope=i,this.lut=r,this.options=a,this._featureFilter={filter:()=>!0,needGeometry:!1,needFeature:!1},this._filterCompiled=!1,this.configDependencies=new Set,"custom"!==e.type&&(this.metadata=e.metadata,this.minzoom=e.minzoom,this.maxzoom=e.maxzoom,"background"!==e.type&&"sky"!==e.type&&"slot"!==e.type&&(this.source=e.source,this.sourceLayer=e["source-layer"],this.filter=e.filter),e.slot&&(this.slot=e.slot),t.layout&&(this._unevaluatedLayout=new Qo(t.layout,this.scope,a),this.configDependencies=new Set([...this.configDependencies,...this._unevaluatedLayout.configDependencies])),t.paint)){this._transitionablePaint=new Yo(t.paint,this.scope,a);for(const t in e.paint)this.setPaintProperty(t,e.paint[t]);for(const t in e.layout)this.setLayoutProperty(t,e.layout[t]);this.configDependencies=new Set([...this.configDependencies,...this._transitionablePaint.configDependencies]),this._transitioningPaint=this._transitionablePaint.untransitioned(),this.paint=new ts(t.paint)}}onAdd(e){}onRemove(e){}isDraped(e){return gs.has(this.type)}getLayoutProperty(e){return"visibility"===e?this.visibility:this._unevaluatedLayout.getValue(e)}setLayoutProperty(e,t){if("custom"===this.type&&"visibility"===e)this.visibility=t;else{const i=this._unevaluatedLayout;i._properties.properties[e]&&(i.setValue(e,t),this.configDependencies=new Set([...this.configDependencies,...i.configDependencies]),"visibility"===e&&this.possiblyEvaluateVisibility())}}possiblyEvaluateVisibility(){this.visibility=this._unevaluatedLayout._values.visibility.possiblyEvaluate({zoom:0})}getPaintProperty(e){return ci(e,_s)?this._transitionablePaint.getTransition(e.slice(0,-11)):this._transitionablePaint.getValue(e)}setPaintProperty(e,t){const i=this._transitionablePaint,r=i._properties.properties;if(ci(e,_s)){const a=e.slice(0,-11);return r[a]&&i.setTransition(a,t||void 0),!1}if(!r[e])return!1;const a=i._values[e],n=a.value.isDataDriven(),o=a.value,s=(i.setValue(e,t),this.configDependencies=new Set([...this.configDependencies,...i.configDependencies]),this._handleSpecialPaintPropertyUpdate(e),i._values[e].value),l=s.isDataDriven(),c=ci(e,"pattern")||"line-dasharray"===e;return l||n||c||this._handleOverridablePaintPropertyUpdate(e,o,s)}_handleSpecialPaintPropertyUpdate(e){}getProgramIds(){return null}getDefaultProgramParams(e,t,i){return null}_handleOverridablePaintPropertyUpdate(e,t,i){return!1}isHidden(e){return!!(this.minzoom&&e=this.maxzoom)||"none"===this.visibility}updateTransitions(e){this._transitioningPaint=this._transitionablePaint.transitioned(e,this._transitioningPaint)}hasTransition(){return this._transitioningPaint.hasTransition()}recalculate(e,t){this._unevaluatedLayout&&(this.layout=this._unevaluatedLayout.possiblyEvaluate(e,void 0,t)),this.paint=this._transitioningPaint.possiblyEvaluate(e,void 0,t)}serialize(){return ui({id:this.id,type:this.type,slot:this.slot,source:this.source,"source-layer":this.sourceLayer,metadata:this.metadata,minzoom:this.minzoom,maxzoom:this.maxzoom,filter:this.filter,layout:this._unevaluatedLayout&&this._unevaluatedLayout.serialize(),paint:this._transitionablePaint&&this._transitionablePaint.serialize()},(e,t)=>!(void 0===e||"layout"===t&&!Object.keys(e).length||"paint"===t&&!Object.keys(e).length))}is3D(){return!1}isSky(){return!1}isTileClipped(){return!1}hasOffscreenPass(){return!1}hasShadowPass(){return!1}canCastShadows(){return!1}hasLightBeamPass(){return!1}cutoffRange(){return 0}tileCoverLift(){return 0}resize(){}isStateDependent(){for(const t in this.paint._values){var e=this.paint.get(t);if(e instanceof es&&ao(e.property.specification)&&("source"===e.value.kind||"composite"===e.value.kind)&&e.value.isStateDependent)return!0}return!1}compileFilter(){this._filterCompiled||(this._featureFilter=os(this.filter),this._filterCompiled=!0)}invalidateCompiledFilter(){this._filterCompiled=!1}dynamicFilter(){return this._featureFilter.dynamicFilter}dynamicFilterNeedsFeature(){return this._featureFilter.needFeature}getLayerRenderingStats(){return this._stats}resetLayerRenderingStats(e){this._stats&&("shadow"===e.renderPass?this._stats.numRenderedVerticesInShadowPass=0:this._stats.numRenderedVerticesInTransparentPass=0)}queryRadius(e){}queryIntersectsFeature(e,t,i,r,a,n,o,s,l){}queryIntersectsMatchingFeature(e,t,i,r){}}const xs={Int8:Int8Array,Uint8:Uint8Array,Int16:Int16Array,Uint16:Uint16Array,Int32:Int32Array,Uint32:Uint32Array,Float32:Float32Array};class vs{constructor(e,t){this._structArray=e,this._pos1=t*this.size,this._pos2=this._pos1/2,this._pos4=this._pos1/4,this._pos8=this._pos1/8}}class T{constructor(){this.isTransferred=!1,this.capacity=-1,this.resize(0)}static serialize(e,t){return e._trim(),t&&(e.isTransferred=!0,t.add(e.arrayBuffer)),{length:e.length,arrayBuffer:e.arrayBuffer}}static deserialize(e){const t=Object.create(this.prototype);return t.arrayBuffer=e.arrayBuffer,t.length=e.length,t.capacity=e.arrayBuffer.byteLength/t.bytesPerElement,t._refreshViews(),t}_trim(){this.length!==this.capacity&&(this.capacity=this.length,this.arrayBuffer=this.arrayBuffer.slice(0,this.length*this.bytesPerElement),this._refreshViews())}clear(){this.length=0}resize(e){this.reserve(e),this.length=e}reserve(e){e>this.capacity&&(this.capacity=Math.max(e,Math.floor(5*this.capacity),128),this.arrayBuffer=new ArrayBuffer(this.capacity*this.bytesPerElement),e=this.uint8,this._refreshViews(),e&&this.uint8.set(e))}_refreshViews(){throw new Error("StructArray#_refreshViews() must be implemented by each concrete StructArray layout")}emplace(){throw new Error("StructArray#emplace() must be implemented by each concrete StructArray layout")}emplaceBack(){throw new Error("StructArray#emplaceBack() must be implemented by each concrete StructArray layout")}destroy(){this.int8=this.uint8=this.int16=this.uint16=this.int32=this.uint32=this.float32=null,this.arrayBuffer=null}}function E(e,a=1){let n=0,o=0;return{members:e.map(e=>{var t=xs[e.type].BYTES_PER_ELEMENT,i=n=bs(n,Math.max(a,t)),r=e.components||1;return o=Math.max(o,t),n+=t*r,{name:e.name,type:e.type,components:r,offset:i}}),size:bs(n,Math.max(o,a)),alignment:a}}function bs(e,t){return Math.ceil(e/t)*t}class ws extends T{_refreshViews(){this.uint8=new Uint8Array(this.arrayBuffer),this.int16=new Int16Array(this.arrayBuffer)}emplaceBack(e,t){var i=this.length;return this.resize(i+1),this.emplace(i,e,t)}emplace(e,t,i){var r=2*e;return this.int16[0+r]=t,this.int16[1+r]=i,e}}ws.prototype.bytesPerElement=4,m(ws,"StructArrayLayout2i4");class Ts extends T{_refreshViews(){this.uint8=new Uint8Array(this.arrayBuffer),this.int16=new Int16Array(this.arrayBuffer)}emplaceBack(e,t,i){var r=this.length;return this.resize(r+1),this.emplace(r,e,t,i)}emplace(e,t,i,r){var a=3*e;return this.int16[0+a]=t,this.int16[1+a]=i,this.int16[2+a]=r,e}}Ts.prototype.bytesPerElement=6,m(Ts,"StructArrayLayout3i6");class Es extends T{_refreshViews(){this.uint8=new Uint8Array(this.arrayBuffer),this.int16=new Int16Array(this.arrayBuffer)}emplaceBack(e,t,i,r){var a=this.length;return this.resize(a+1),this.emplace(a,e,t,i,r)}emplace(e,t,i,r,a){var n=4*e;return this.int16[0+n]=t,this.int16[1+n]=i,this.int16[2+n]=r,this.int16[3+n]=a,e}}Es.prototype.bytesPerElement=8,m(Es,"StructArrayLayout4i8");class Ss extends T{_refreshViews(){this.uint8=new Uint8Array(this.arrayBuffer),this.int16=new Int16Array(this.arrayBuffer)}emplaceBack(e,t,i,r,a){var n=this.length;return this.resize(n+1),this.emplace(n,e,t,i,r,a)}emplace(e,t,i,r,a,n){var o=5*e;return this.int16[0+o]=t,this.int16[1+o]=i,this.int16[2+o]=r,this.int16[3+o]=a,this.int16[4+o]=n,e}}Ss.prototype.bytesPerElement=10,m(Ss,"StructArrayLayout5i10");class Ms extends T{_refreshViews(){this.uint8=new Uint8Array(this.arrayBuffer),this.int16=new Int16Array(this.arrayBuffer),this.float32=new Float32Array(this.arrayBuffer)}emplaceBack(e,t,i,r,a,n,o){var s=this.length;return this.resize(s+1),this.emplace(s,e,t,i,r,a,n,o)}emplace(e,t,i,r,a,n,o,s){var l=6*e,c=12*e,h=3*e;return this.int16[0+l]=t,this.int16[1+l]=i,this.uint8[4+c]=r,this.uint8[5+c]=a,this.uint8[6+c]=n,this.uint8[7+c]=o,this.float32[2+h]=s,e}}Ms.prototype.bytesPerElement=12,m(Ms,"StructArrayLayout2i4ub1f12");class Is extends T{_refreshViews(){this.uint8=new Uint8Array(this.arrayBuffer),this.float32=new Float32Array(this.arrayBuffer)}emplaceBack(e,t,i,r){var a=this.length;return this.resize(a+1),this.emplace(a,e,t,i,r)}emplace(e,t,i,r,a){var n=4*e;return this.float32[0+n]=t,this.float32[1+n]=i,this.float32[2+n]=r,this.float32[3+n]=a,e}}Is.prototype.bytesPerElement=16,m(Is,"StructArrayLayout4f16");class As extends T{_refreshViews(){this.uint8=new Uint8Array(this.arrayBuffer),this.float32=new Float32Array(this.arrayBuffer)}emplaceBack(e,t,i){var r=this.length;return this.resize(r+1),this.emplace(r,e,t,i)}emplace(e,t,i,r){var a=3*e;return this.float32[0+a]=t,this.float32[1+a]=i,this.float32[2+a]=r,e}}As.prototype.bytesPerElement=12,m(As,"StructArrayLayout3f12");class Cs extends T{_refreshViews(){this.uint8=new Uint8Array(this.arrayBuffer),this.uint16=new Uint16Array(this.arrayBuffer),this.float32=new Float32Array(this.arrayBuffer)}emplaceBack(e,t,i,r,a){var n=this.length;return this.resize(n+1),this.emplace(n,e,t,i,r,a)}emplace(e,t,i,r,a,n){var o=6*e,s=3*e;return this.uint16[0+o]=t,this.uint16[1+o]=i,this.uint16[2+o]=r,this.uint16[3+o]=a,this.float32[2+s]=n,e}}Cs.prototype.bytesPerElement=12,m(Cs,"StructArrayLayout4ui1f12");class Ps extends T{_refreshViews(){this.uint8=new Uint8Array(this.arrayBuffer),this.uint16=new Uint16Array(this.arrayBuffer)}emplaceBack(e,t,i,r){var a=this.length;return this.resize(a+1),this.emplace(a,e,t,i,r)}emplace(e,t,i,r,a){var n=4*e;return this.uint16[0+n]=t,this.uint16[1+n]=i,this.uint16[2+n]=r,this.uint16[3+n]=a,e}}Ps.prototype.bytesPerElement=8,m(Ps,"StructArrayLayout4ui8");class zs extends T{_refreshViews(){this.uint8=new Uint8Array(this.arrayBuffer),this.int16=new Int16Array(this.arrayBuffer)}emplaceBack(e,t,i,r,a,n){var o=this.length;return this.resize(o+1),this.emplace(o,e,t,i,r,a,n)}emplace(e,t,i,r,a,n,o){var s=6*e;return this.int16[0+s]=t,this.int16[1+s]=i,this.int16[2+s]=r,this.int16[3+s]=a,this.int16[4+s]=n,this.int16[5+s]=o,e}}zs.prototype.bytesPerElement=12,m(zs,"StructArrayLayout6i12");class Ds extends T{_refreshViews(){this.uint8=new Uint8Array(this.arrayBuffer),this.int16=new Int16Array(this.arrayBuffer),this.uint16=new Uint16Array(this.arrayBuffer)}emplaceBack(e,t,i,r,a,n,o,s,l,c,h,u){var d=this.length;return this.resize(d+1),this.emplace(d,e,t,i,r,a,n,o,s,l,c,h,u)}emplace(e,t,i,r,a,n,o,s,l,c,h,u,d){var p=12*e;return this.int16[0+p]=t,this.int16[1+p]=i,this.int16[2+p]=r,this.int16[3+p]=a,this.uint16[4+p]=n,this.uint16[5+p]=o,this.uint16[6+p]=s,this.uint16[7+p]=l,this.int16[8+p]=c,this.int16[9+p]=h,this.int16[10+p]=u,this.int16[11+p]=d,e}}Ds.prototype.bytesPerElement=24,m(Ds,"StructArrayLayout4i4ui4i24");class Rs extends T{_refreshViews(){this.uint8=new Uint8Array(this.arrayBuffer),this.int16=new Int16Array(this.arrayBuffer),this.float32=new Float32Array(this.arrayBuffer)}emplaceBack(e,t,i,r,a,n){var o=this.length;return this.resize(o+1),this.emplace(o,e,t,i,r,a,n)}emplace(e,t,i,r,a,n,o){var s=10*e,l=5*e;return this.int16[0+s]=t,this.int16[1+s]=i,this.int16[2+s]=r,this.float32[2+l]=a,this.float32[3+l]=n,this.float32[4+l]=o,e}}Rs.prototype.bytesPerElement=20,m(Rs,"StructArrayLayout3i3f20");class Ls extends T{_refreshViews(){this.uint8=new Uint8Array(this.arrayBuffer),this.uint32=new Uint32Array(this.arrayBuffer)}emplaceBack(e){var t=this.length;return this.resize(t+1),this.emplace(t,e)}emplace(e,t){return this.uint32[+e+0]=t,e}}Ls.prototype.bytesPerElement=4,m(Ls,"StructArrayLayout1ul4");class ks extends T{_refreshViews(){this.uint8=new Uint8Array(this.arrayBuffer),this.uint16=new Uint16Array(this.arrayBuffer)}emplaceBack(e,t){var i=this.length;return this.resize(i+1),this.emplace(i,e,t)}emplace(e,t,i){var r=2*e;return this.uint16[0+r]=t,this.uint16[1+r]=i,e}}ks.prototype.bytesPerElement=4,m(ks,"StructArrayLayout2ui4");class Os extends T{_refreshViews(){this.uint8=new Uint8Array(this.arrayBuffer),this.int16=new Int16Array(this.arrayBuffer),this.float32=new Float32Array(this.arrayBuffer),this.uint32=new Uint32Array(this.arrayBuffer),this.uint16=new Uint16Array(this.arrayBuffer)}emplaceBack(e,t,i,r,a,n,o,s,l,c,h,u,d){var p=this.length;return this.resize(p+1),this.emplace(p,e,t,i,r,a,n,o,s,l,c,h,u,d)}emplace(e,t,i,r,a,n,o,s,l,c,h,u,d,p){var f=20*e,m=10*e;return this.int16[0+f]=t,this.int16[1+f]=i,this.int16[2+f]=r,this.int16[3+f]=a,this.int16[4+f]=n,this.float32[3+m]=o,this.float32[4+m]=s,this.float32[5+m]=l,this.float32[6+m]=c,this.int16[14+f]=h,this.uint32[8+m]=u,this.uint16[18+f]=d,this.uint16[19+f]=p,e}}Os.prototype.bytesPerElement=40,m(Os,"StructArrayLayout5i4f1i1ul2ui40");class Bs extends T{_refreshViews(){this.uint8=new Uint8Array(this.arrayBuffer),this.int16=new Int16Array(this.arrayBuffer)}emplaceBack(e,t,i,r,a,n,o){var s=this.length;return this.resize(s+1),this.emplace(s,e,t,i,r,a,n,o)}emplace(e,t,i,r,a,n,o,s){var l=8*e;return this.int16[0+l]=t,this.int16[1+l]=i,this.int16[2+l]=r,this.int16[4+l]=a,this.int16[5+l]=n,this.int16[6+l]=o,this.int16[7+l]=s,e}}Bs.prototype.bytesPerElement=16,m(Bs,"StructArrayLayout3i2i2i16");class Fs extends T{_refreshViews(){this.uint8=new Uint8Array(this.arrayBuffer),this.float32=new Float32Array(this.arrayBuffer),this.int16=new Int16Array(this.arrayBuffer)}emplaceBack(e,t,i,r,a){var n=this.length;return this.resize(n+1),this.emplace(n,e,t,i,r,a)}emplace(e,t,i,r,a,n){var o=4*e,s=8*e;return this.float32[0+o]=t,this.float32[1+o]=i,this.float32[2+o]=r,this.int16[6+s]=a,this.int16[7+s]=n,e}}Fs.prototype.bytesPerElement=16,m(Fs,"StructArrayLayout2f1f2i16");class Ns extends T{_refreshViews(){this.uint8=new Uint8Array(this.arrayBuffer),this.float32=new Float32Array(this.arrayBuffer)}emplaceBack(e,t,i,r){var a=this.length;return this.resize(a+1),this.emplace(a,e,t,i,r)}emplace(e,t,i,r,a){var n=12*e,o=3*e;return this.uint8[0+n]=t,this.uint8[1+n]=i,this.float32[1+o]=r,this.float32[2+o]=a,e}}Ns.prototype.bytesPerElement=12,m(Ns,"StructArrayLayout2ub2f12");class Vs extends T{_refreshViews(){this.uint8=new Uint8Array(this.arrayBuffer),this.uint16=new Uint16Array(this.arrayBuffer)}emplaceBack(e,t,i){var r=this.length;return this.resize(r+1),this.emplace(r,e,t,i)}emplace(e,t,i,r){var a=3*e;return this.uint16[0+a]=t,this.uint16[1+a]=i,this.uint16[2+a]=r,e}}Vs.prototype.bytesPerElement=6,m(Vs,"StructArrayLayout3ui6");class Us extends T{_refreshViews(){this.uint8=new Uint8Array(this.arrayBuffer),this.int16=new Int16Array(this.arrayBuffer),this.float32=new Float32Array(this.arrayBuffer),this.uint16=new Uint16Array(this.arrayBuffer),this.uint32=new Uint32Array(this.arrayBuffer)}emplaceBack(e,t,i,r,a,n,o,s,l,c,h,u,d,p,f,m,_,g,y,x,v){var b=this.length;return this.resize(b+1),this.emplace(b,e,t,i,r,a,n,o,s,l,c,h,u,d,p,f,m,_,g,y,x,v)}emplace(e,t,i,r,a,n,o,s,l,c,h,u,d,p,f,m,_,g,y,x,v,b){var w=30*e,T=15*e,E=60*e;return this.int16[0+w]=t,this.int16[1+w]=i,this.int16[2+w]=r,this.float32[2+T]=a,this.float32[3+T]=n,this.uint16[8+w]=o,this.uint16[9+w]=s,this.uint32[5+T]=l,this.uint32[6+T]=c,this.uint32[7+T]=h,this.uint16[16+w]=u,this.uint16[17+w]=d,this.uint16[18+w]=p,this.float32[10+T]=f,this.float32[11+T]=m,this.uint8[48+E]=_,this.uint8[49+E]=g,this.uint8[50+E]=y,this.uint32[13+T]=x,this.int16[28+w]=v,this.uint8[58+E]=b,e}}Us.prototype.bytesPerElement=60,m(Us,"StructArrayLayout3i2f2ui3ul3ui2f3ub1ul1i1ub60");class js extends T{_refreshViews(){this.uint8=new Uint8Array(this.arrayBuffer),this.float32=new Float32Array(this.arrayBuffer),this.int16=new Int16Array(this.arrayBuffer),this.uint16=new Uint16Array(this.arrayBuffer),this.uint32=new Uint32Array(this.arrayBuffer)}emplaceBack(e,t,i,r,a,n,o,s,l,c,h,u,d,p,f,m,_,g,y,x,v,b,w,T,E,S,M,I,A,C,P,z){var D=this.length;return this.resize(D+1),this.emplace(D,e,t,i,r,a,n,o,s,l,c,h,u,d,p,f,m,_,g,y,x,v,b,w,T,E,S,M,I,A,C,P,z)}emplace(e,t,i,r,a,n,o,s,l,c,h,u,d,p,f,m,_,g,y,x,v,b,w,T,E,S,M,I,A,C,P,z,D){var R=20*e,L=40*e,k=80*e;return this.float32[0+R]=t,this.float32[1+R]=i,this.int16[4+L]=r,this.int16[5+L]=a,this.int16[6+L]=n,this.int16[7+L]=o,this.int16[8+L]=s,this.int16[9+L]=l,this.int16[10+L]=c,this.int16[11+L]=h,this.int16[12+L]=u,this.uint16[13+L]=d,this.uint16[14+L]=p,this.uint16[15+L]=f,this.uint16[16+L]=m,this.uint16[17+L]=_,this.uint16[18+L]=g,this.uint16[19+L]=y,this.uint16[20+L]=x,this.uint16[21+L]=v,this.uint16[22+L]=b,this.uint16[23+L]=w,this.uint16[24+L]=T,this.uint16[25+L]=E,this.uint16[26+L]=S,this.uint16[27+L]=M,this.uint32[14+R]=I,this.float32[15+R]=A,this.float32[16+R]=C,this.float32[17+R]=P,this.float32[18+R]=z,this.uint8[76+k]=D,e}}js.prototype.bytesPerElement=80,m(js,"StructArrayLayout2f9i15ui1ul4f1ub80");class Gs extends T{_refreshViews(){this.uint8=new Uint8Array(this.arrayBuffer),this.float32=new Float32Array(this.arrayBuffer)}emplaceBack(e){var t=this.length;return this.resize(t+1),this.emplace(t,e)}emplace(e,t){return this.float32[+e+0]=t,e}}Gs.prototype.bytesPerElement=4,m(Gs,"StructArrayLayout1f4");class qs extends T{_refreshViews(){this.uint8=new Uint8Array(this.arrayBuffer),this.float32=new Float32Array(this.arrayBuffer)}emplaceBack(e,t,i,r,a){var n=this.length;return this.resize(n+1),this.emplace(n,e,t,i,r,a)}emplace(e,t,i,r,a,n){var o=5*e;return this.float32[0+o]=t,this.float32[1+o]=i,this.float32[2+o]=r,this.float32[3+o]=a,this.float32[4+o]=n,e}}qs.prototype.bytesPerElement=20,m(qs,"StructArrayLayout5f20");class $s extends T{_refreshViews(){this.uint8=new Uint8Array(this.arrayBuffer),this.float32=new Float32Array(this.arrayBuffer)}emplaceBack(e,t,i,r,a,n,o){var s=this.length;return this.resize(s+1),this.emplace(s,e,t,i,r,a,n,o)}emplace(e,t,i,r,a,n,o,s){var l=7*e;return this.float32[0+l]=t,this.float32[1+l]=i,this.float32[2+l]=r,this.float32[3+l]=a,this.float32[4+l]=n,this.float32[5+l]=o,this.float32[6+l]=s,e}}$s.prototype.bytesPerElement=28,m($s,"StructArrayLayout7f28");class Zs extends T{_refreshViews(){this.uint8=new Uint8Array(this.arrayBuffer),this.uint32=new Uint32Array(this.arrayBuffer),this.uint16=new Uint16Array(this.arrayBuffer)}emplaceBack(e,t,i,r){var a=this.length;return this.resize(a+1),this.emplace(a,e,t,i,r)}emplace(e,t,i,r,a){var n=6*e;return this.uint32[3*e+0]=t,this.uint16[2+n]=i,this.uint16[3+n]=r,this.uint16[4+n]=a,e}}Zs.prototype.bytesPerElement=12,m(Zs,"StructArrayLayout1ul3ui12");class Ws extends T{_refreshViews(){this.uint8=new Uint8Array(this.arrayBuffer),this.uint16=new Uint16Array(this.arrayBuffer)}emplaceBack(e){var t=this.length;return this.resize(t+1),this.emplace(t,e)}emplace(e,t){return this.uint16[+e+0]=t,e}}Ws.prototype.bytesPerElement=2,m(Ws,"StructArrayLayout1ui2");class Hs extends T{_refreshViews(){this.uint8=new Uint8Array(this.arrayBuffer),this.float32=new Float32Array(this.arrayBuffer)}emplaceBack(e,t){var i=this.length;return this.resize(i+1),this.emplace(i,e,t)}emplace(e,t,i){var r=2*e;return this.float32[0+r]=t,this.float32[1+r]=i,e}}Hs.prototype.bytesPerElement=8,m(Hs,"StructArrayLayout2f8");class Xs extends T{_refreshViews(){this.uint8=new Uint8Array(this.arrayBuffer),this.float32=new Float32Array(this.arrayBuffer)}emplaceBack(e,t,i,r,a,n,o,s,l,c,h,u,d,p,f,m){var _=this.length;return this.resize(_+1),this.emplace(_,e,t,i,r,a,n,o,s,l,c,h,u,d,p,f,m)}emplace(e,t,i,r,a,n,o,s,l,c,h,u,d,p,f,m,_){var g=16*e;return this.float32[0+g]=t,this.float32[1+g]=i,this.float32[2+g]=r,this.float32[3+g]=a,this.float32[4+g]=n,this.float32[5+g]=o,this.float32[6+g]=s,this.float32[7+g]=l,this.float32[8+g]=c,this.float32[9+g]=h,this.float32[10+g]=u,this.float32[11+g]=d,this.float32[12+g]=p,this.float32[13+g]=f,this.float32[14+g]=m,this.float32[15+g]=_,e}}Xs.prototype.bytesPerElement=64,m(Xs,"StructArrayLayout16f64");class Ys extends T{_refreshViews(){this.uint8=new Uint8Array(this.arrayBuffer),this.uint16=new Uint16Array(this.arrayBuffer),this.float32=new Float32Array(this.arrayBuffer)}emplaceBack(e,t,i,r,a,n,o){var s=this.length;return this.resize(s+1),this.emplace(s,e,t,i,r,a,n,o)}emplace(e,t,i,r,a,n,o,s){var l=10*e,c=5*e;return this.uint16[0+l]=t,this.uint16[1+l]=i,this.uint16[2+l]=r,this.uint16[3+l]=a,this.float32[2+c]=n,this.float32[3+c]=o,this.float32[4+c]=s,e}}Ys.prototype.bytesPerElement=20,m(Ys,"StructArrayLayout4ui3f20");class Js extends T{_refreshViews(){this.uint8=new Uint8Array(this.arrayBuffer),this.int16=new Int16Array(this.arrayBuffer)}emplaceBack(e){var t=this.length;return this.resize(t+1),this.emplace(t,e)}emplace(e,t){return this.int16[+e+0]=t,e}}Js.prototype.bytesPerElement=2,m(Js,"StructArrayLayout1i2");class Ks extends T{_refreshViews(){this.uint8=new Uint8Array(this.arrayBuffer)}emplaceBack(e){var t=this.length;return this.resize(t+1),this.emplace(t,e)}emplace(e,t){return this.uint8[+e+0]=t,e}}Ks.prototype.bytesPerElement=1,m(Ks,"StructArrayLayout1ub1");class Qs extends vs{get projectedAnchorX(){return this._structArray.int16[this._pos2+0]}get projectedAnchorY(){return this._structArray.int16[this._pos2+1]}get projectedAnchorZ(){return this._structArray.int16[this._pos2+2]}get tileAnchorX(){return this._structArray.int16[this._pos2+3]}get tileAnchorY(){return this._structArray.int16[this._pos2+4]}get x1(){return this._structArray.float32[this._pos4+3]}get y1(){return this._structArray.float32[this._pos4+4]}get x2(){return this._structArray.float32[this._pos4+5]}get y2(){return this._structArray.float32[this._pos4+6]}get padding(){return this._structArray.int16[this._pos2+14]}get featureIndex(){return this._structArray.uint32[this._pos4+8]}get sourceLayerIndex(){return this._structArray.uint16[this._pos2+18]}get bucketIndex(){return this._structArray.uint16[this._pos2+19]}}Qs.prototype.size=40;class el extends Os{get(e){return new Qs(this,e)}}m(el,"CollisionBoxArray");class tl extends vs{get projectedAnchorX(){return this._structArray.int16[this._pos2+0]}get projectedAnchorY(){return this._structArray.int16[this._pos2+1]}get projectedAnchorZ(){return this._structArray.int16[this._pos2+2]}get tileAnchorX(){return this._structArray.float32[this._pos4+2]}get tileAnchorY(){return this._structArray.float32[this._pos4+3]}get glyphStartIndex(){return this._structArray.uint16[this._pos2+8]}get numGlyphs(){return this._structArray.uint16[this._pos2+9]}get vertexStartIndex(){return this._structArray.uint32[this._pos4+5]}get lineStartIndex(){return this._structArray.uint32[this._pos4+6]}get lineLength(){return this._structArray.uint32[this._pos4+7]}get segment(){return this._structArray.uint16[this._pos2+16]}get lowerSize(){return this._structArray.uint16[this._pos2+17]}get upperSize(){return this._structArray.uint16[this._pos2+18]}get lineOffsetX(){return this._structArray.float32[this._pos4+10]}get lineOffsetY(){return this._structArray.float32[this._pos4+11]}get writingMode(){return this._structArray.uint8[this._pos1+48]}get placedOrientation(){return this._structArray.uint8[this._pos1+49]}set placedOrientation(e){this._structArray.uint8[this._pos1+49]=e}get hidden(){return this._structArray.uint8[this._pos1+50]}set hidden(e){this._structArray.uint8[this._pos1+50]=e}get crossTileID(){return this._structArray.uint32[this._pos4+13]}set crossTileID(e){this._structArray.uint32[this._pos4+13]=e}get associatedIconIndex(){return this._structArray.int16[this._pos2+28]}get flipState(){return this._structArray.uint8[this._pos1+58]}set flipState(e){this._structArray.uint8[this._pos1+58]=e}}tl.prototype.size=60;class il extends Us{get(e){return new tl(this,e)}}m(il,"PlacedSymbolArray");class rl extends vs{get tileAnchorX(){return this._structArray.float32[this._pos4+0]}get tileAnchorY(){return this._structArray.float32[this._pos4+1]}get projectedAnchorX(){return this._structArray.int16[this._pos2+4]}get projectedAnchorY(){return this._structArray.int16[this._pos2+5]}get projectedAnchorZ(){return this._structArray.int16[this._pos2+6]}get rightJustifiedTextSymbolIndex(){return this._structArray.int16[this._pos2+7]}get centerJustifiedTextSymbolIndex(){return this._structArray.int16[this._pos2+8]}get leftJustifiedTextSymbolIndex(){return this._structArray.int16[this._pos2+9]}get verticalPlacedTextSymbolIndex(){return this._structArray.int16[this._pos2+10]}get placedIconSymbolIndex(){return this._structArray.int16[this._pos2+11]}get verticalPlacedIconSymbolIndex(){return this._structArray.int16[this._pos2+12]}get key(){return this._structArray.uint16[this._pos2+13]}get textBoxStartIndex(){return this._structArray.uint16[this._pos2+14]}get textBoxEndIndex(){return this._structArray.uint16[this._pos2+15]}get verticalTextBoxStartIndex(){return this._structArray.uint16[this._pos2+16]}get verticalTextBoxEndIndex(){return this._structArray.uint16[this._pos2+17]}get iconBoxStartIndex(){return this._structArray.uint16[this._pos2+18]}get iconBoxEndIndex(){return this._structArray.uint16[this._pos2+19]}get verticalIconBoxStartIndex(){return this._structArray.uint16[this._pos2+20]}get verticalIconBoxEndIndex(){return this._structArray.uint16[this._pos2+21]}get featureIndex(){return this._structArray.uint16[this._pos2+22]}get numHorizontalGlyphVertices(){return this._structArray.uint16[this._pos2+23]}get numVerticalGlyphVertices(){return this._structArray.uint16[this._pos2+24]}get numIconVertices(){return this._structArray.uint16[this._pos2+25]}get numVerticalIconVertices(){return this._structArray.uint16[this._pos2+26]}get useRuntimeCollisionCircles(){return this._structArray.uint16[this._pos2+27]}get crossTileID(){return this._structArray.uint32[this._pos4+14]}set crossTileID(e){this._structArray.uint32[this._pos4+14]=e}get textOffset0(){return this._structArray.float32[this._pos4+15]}get textOffset1(){return this._structArray.float32[this._pos4+16]}get collisionCircleDiameter(){return this._structArray.float32[this._pos4+17]}get zOffset(){return this._structArray.float32[this._pos4+18]}set zOffset(e){this._structArray.float32[this._pos4+18]=e}get hasIconTextFit(){return this._structArray.uint8[this._pos1+76]}}rl.prototype.size=80;class al extends js{get(e){return new rl(this,e)}}m(al,"SymbolInstanceArray");class nl extends Gs{getoffsetX(e){return this.float32[+e+0]}}m(nl,"GlyphOffsetArray");class ol extends ws{getx(e){return this.int16[2*e+0]}gety(e){return this.int16[2*e+1]}}m(ol,"SymbolLineVertexArray");class sl extends vs{get featureIndex(){return this._structArray.uint32[this._pos4+0]}get sourceLayerIndex(){return this._structArray.uint16[this._pos2+2]}get bucketIndex(){return this._structArray.uint16[this._pos2+3]}get layoutVertexArrayOffset(){return this._structArray.uint16[this._pos2+4]}}sl.prototype.size=12;class ll extends Zs{get(e){return new sl(this,e)}}m(ll,"FeatureIndexArray");class cl extends ks{geta_centroid_pos0(e){return this.uint16[2*e+0]}geta_centroid_pos1(e){return this.uint16[2*e+1]}}m(cl,"FillExtrusionCentroidArray");class hl extends vs{get a_join_normal_inside_polygon0(){return this._structArray.int16[this._pos2+0]}get a_join_normal_inside_polygon1(){return this._structArray.int16[this._pos2+1]}get a_join_normal_inside_polygon2(){return this._structArray.int16[this._pos2+2]}get a_join_normal_inside_polygon3(){return this._structArray.int16[this._pos2+3]}}hl.prototype.size=8;class ul extends Es{get(e){return new hl(this,e)}}m(ul,"FillExtrusionWallArray");const dl=E([{name:"a_pos",components:2,type:"Int16"}],4),pl=E([{name:"a_pos_3",components:3,type:"Int16"},{name:"a_pos_normal_3",components:3,type:"Int16"}]);class R{constructor(e=[]){this.segments=e}_prepareSegment(e,t,i,r){let a=this.segments[this.segments.length-1];return e>R.MAX_VERTEX_ARRAY_LENGTH&&fi(`Max vertices per segment is ${R.MAX_VERTEX_ARRAY_LENGTH}: bucket requested `+e),(!a||a.vertexLength+e>R.MAX_VERTEX_ARRAY_LENGTH||a.sortKey!==r)&&(a={vertexOffset:t,primitiveOffset:i,vertexLength:0,primitiveLength:0},void 0!==r&&(a.sortKey=r),this.segments.push(a)),a}prepareSegment(e,t,i,r){return this._prepareSegment(e,t.length,i.length,r)}get(){return this.segments}destroy(){for(const e of this.segments)for(const t in e.vaos)e.vaos[t].destroy()}static simpleSegment(e,t,i,r){return new R([{vertexOffset:e,primitiveOffset:t,vertexLength:i,primitiveLength:r,vaos:{},sortKey:0}])}}function fl(e,t){return 256*(e=S(Math.floor(e),0,255))+S(Math.floor(t),0,255)}R.MAX_VERTEX_ARRAY_LENGTH=Math.pow(2,16)-1,m(R,"SegmentVector");const ml=E([{name:"a_pattern",components:4,type:"Uint16"},{name:"a_pixel_ratio",components:1,type:"Float32"}]),_l=E([{name:"a_dash",components:4,type:"Uint16"}]);class gl{constructor(){this.ids=[],this.uniqueIds=[],this.positions=[],this.indexed=!1}add(e,t,i,r){this.ids.push(yl(e)),this.positions.push(t,i,r)}eachPosition(e,t){var i=yl(e);let r=0,a=this.ids.length-1;for(;r>1;this.ids[e]>=i?a=e:r=1+e}for(;this.ids[r]===i;)t(this.positions[3*r],this.positions[3*r+1],this.positions[3*r+2]),r++}static serialize(e,t){var i=new Float64Array(e.ids),e=new Uint32Array(e.positions);return function i(r,a,n,o){for(;n>1];let e=n-1,t=o+1;for(;;){for(;e++,r[e]s;);if(e>=t)break;xl(r,e,t),xl(a,3*e,3*t),xl(a,3*e+1,3*t+1),xl(a,3*e+2,3*t+2)}t-n"u_"+e),this.type=i,this.context=r}setUniform(e,t,i,r,a){const n=r.constantOr(this.value);t.set(e,a,n instanceof g?n.toRenderColor(this.context.lut):n)}getBinding(e,t){return new("color"===this.type?Ml:wl)(e)}}class Ll{constructor(e,t){this.uniformNames=t.map(e=>"u_"+e),this.pattern=null,this.pixelRatio=1}setConstantPatternPositions(e){this.pixelRatio=e.pixelRatio||1,this.pattern=e.tl.concat(e.br)}setUniform(e,t,i,r,a){var n="u_pattern"===a||"u_dash"===a?this.pattern:"u_pixel_ratio"===a?this.pixelRatio:null;n&&t.set(e,a,n)}getBinding(e,t){return new("u_pattern"===t||"u_dash"===t?Sl:wl)(e)}}class kl{constructor(e,t,i,r){this.expression=e,this.type=i,this.maxValue=0,this.paintVertexAttributes=t.map(e=>({name:"a_"+e,type:"Float32",components:"color"===i?2:1,offset:0})),this.paintVertexArray=new r}populatePaintArray(e,t,i,r,a,n,o){var s=this.paintVertexArray.length,n=this.expression.evaluate(new I(0,{brightness:n}),t,{},a,r,o);this.paintVertexArray.resize(e),this._setPaintValue(s,e,n,this.context)}updatePaintArray(e,t,i,r,a,n,o){o=this.expression.evaluate({zoom:0,brightness:o},i,r,void 0,a);this._setPaintValue(e,t,o,this.context)}_setPaintValue(t,i,r,e){if("color"===this.type){var a=Dl(r.toRenderColor(e.lut));for(let e=t;e`u_${e}_t`),this.type=i,this.useIntegerZoom=r,this.context=a,this.maxValue=0,this.paintVertexAttributes=t.map(e=>({name:"a_"+e,type:"Float32",components:"color"===i?4:2,offset:0})),this.paintVertexArray=new n}populatePaintArray(e,t,i,r,a,n,o){var s=this.expression.evaluate(new I(this.context.zoom,{brightness:n}),t,{},a,r,o),n=this.expression.evaluate(new I(this.context.zoom+1,{brightness:n}),t,{},a,r,o),t=this.paintVertexArray.length;this.paintVertexArray.resize(e),this._setPaintValue(t,e,s,n,this.context)}updatePaintArray(e,t,i,r,a,n,o){var s=this.expression.evaluate({zoom:this.context.zoom,brightness:o},i,r,void 0,a),o=this.expression.evaluate({zoom:this.context.zoom+1,brightness:o},i,r,void 0,a);this._setPaintValue(e,t,s,o,this.context)}_setPaintValue(t,i,r,a,e){if("color"===this.type){const a=Dl(r.toRenderColor(e.lut)),n=Dl(r.toRenderColor(e.lut));for(let e=t;e!0){this.binders={},this._buffers=[],this.context=t;const r=[];for(const h in e.paint._values){var a=e.paint.get(h);if(i(h)&&(a instanceof es&&ao(a.property.specification))){n=h,o=e.type;var n=Vl[n]||[n.replace(o+"-","").replace(/-/g,"_")],o=a.value,s=a.property.specification.type,a=!!a.property.useIntegerZoom,l="line-dasharray"===h||h.endsWith("pattern"),c="line-dasharray"===h&&"constant"!==e.layout.get("line-cap").value.kind;if("constant"!==o.kind||c)if("source"===o.kind||c||l){const t=Gl(h,s,"source");this.binders[h]=l?new Bl(o,n,s,t,e.id):new kl(o,n,s,t),r.push("/a_"+h)}else{const e=Gl(h,s,"composite");this.binders[h]=new Ol(o,n,s,a,t,e),r.push("/z_"+h)}else this.binders[h]=l?new Ll(o.value,n):new Rl(o.value,n,s,t),r.push("/u_"+h)}}var n,o;this.cacheKey=r.sort().join("")}getMaxValue(e){e=this.binders[e];return e instanceof kl||e instanceof Ol?e.maxValue:0}populatePaintArrays(e,t,i,r,a,n,o){for(const s in this.binders){const l=this.binders[s];l.context=this.context,(l instanceof kl||l instanceof Ol||l instanceof Bl)&&l.populatePaintArray(e,t,i,r,a,n,o)}}setConstantPatternPositions(e){for(const t in this.binders){const i=this.binders[t];i instanceof Ll&&i.setConstantPatternPositions(e)}}updatePaintArrays(e,t,i,r,a,n,o,s){let l=!1;const c=Object.keys(e),h=0!==c.length,u=h?c:t.uniqueIds;this.context.lut=a.lut;for(const c in this.binders){const p=this.binders[c];if(p.context=this.context,(p instanceof kl||p instanceof Ol||p instanceof Bl)&&(!0===p.expression.isStateDependent||!1===p.expression.isLightConstant)){var d=a.paint.get(c);p.expression=d.value;for(const i of u){const a=e[i.toString()];t.eachPosition(i,(e,t,i)=>{e=r.feature(e);p.updatePaintArray(t,i,e,a,n,o,s)})}if(!h)for(const t of i.uniqueIds){const a=e[t.toString()];i.eachPosition(t,(e,t,i)=>{e=r.feature(e);p.updatePaintArray(t,i,e,a,n,o,s)})}l=!0}}return l}defines(){const e=[];for(const t in this.binders){const i=this.binders[t];(i instanceof Rl||i instanceof Ll)&&e.push(...i.uniformNames.map(e=>"#define HAS_UNIFORM_"+e))}return e}getBinderAttributes(){const t=[];for(const e in this.binders){var i=this.binders[e];if(i instanceof kl||i instanceof Ol||i instanceof Bl)for(let e=0;e!0){this.programConfigurations={};for(const r of e)this.programConfigurations[r.id]=new Fl(r,t,i);this.needsUpload=!1,this._featureMap=new gl,this._featureMapWithoutIds=new gl,this._bufferOffset=0,this._idlessCounter=0}populatePaintArrays(e,t,i,r,a,n,o,s){for(const i in this.programConfigurations)this.programConfigurations[i].populatePaintArrays(e,t,r,a,n,o,s);void 0!==t.id?this._featureMap.add(t.id,i,this._bufferOffset,e):(this._featureMapWithoutIds.add(this._idlessCounter,i,this._bufferOffset,e),this._idlessCounter+=1),this._bufferOffset=e,this.needsUpload=!0}updatePaintArrays(e,t,i,r,a,n){for(const o of i)this.needsUpload=this.programConfigurations[o.id].updatePaintArrays(e,this._featureMap,this._featureMapWithoutIds,t,o,r,a,n||0)||this.needsUpload}get(e){return this.programConfigurations[e]}upload(e){if(this.needsUpload){for(const t in this.programConfigurations)this.programConfigurations[t].upload(e);this.needsUpload=!1}}destroy(){for(const e in this.programConfigurations)this.programConfigurations[e].destroy()}}const Vl={"text-opacity":["opacity"],"icon-opacity":["opacity"],"text-occlusion-opacity":["occlusion_opacity"],"icon-occlusion-opacity":["occlusion_opacity"],"text-color":["fill_color"],"icon-color":["fill_color"],"text-emissive-strength":["emissive_strength"],"icon-emissive-strength":["emissive_strength"],"text-halo-color":["halo_color"],"icon-halo-color":["halo_color"],"text-halo-blur":["halo_blur"],"icon-halo-blur":["halo_blur"],"text-halo-width":["halo_width"],"icon-halo-width":["halo_width"],"line-gap-width":["gapwidth"],"line-pattern":["pattern","pixel_ratio"],"fill-pattern":["pattern","pixel_ratio"],"fill-extrusion-pattern":["pattern","pixel_ratio"],"line-dasharray":["dash"]};const Ul={"line-pattern":{source:Cs,composite:Cs},"fill-pattern":{source:Cs,composite:Cs},"fill-extrusion-pattern":{source:Cs,composite:Cs},"line-dasharray":{source:Ps,composite:Ps}},jl={color:{source:Hs,composite:Is},number:{source:Gs,composite:Hs}};function Gl(e,t,i){e=Ul[e];return e&&e[i]||jl[t][i]}m(Rl,"ConstantBinder"),m(Ll,"PatternConstantBinder"),m(kl,"SourceExpressionBinder"),m(Bl,"PatternCompositeBinder"),m(Ol,"CompositeExpressionBinder"),m(Fl,"ProgramConfiguration",{omit:["_buffers"]}),m(Nl,"ProgramConfigurationSet");const ql=ue/Math.PI/2,$l=5,Zl=6,Wl=16383,Hl=[64,32,16],Xl=-ql,Yl=ql;function Jl(e,t,i,r=ql){return i=x(i),[e*Math.sin(i)*r,-t*r,e*Math.cos(i)*r]}function Kl(e,t,i){return Jl(Math.cos(x(e)),Math.sin(x(e)),t,i)}const Ql=6371008.8,ec=2*Math.PI*Ql;class M{constructor(e,t){if(isNaN(e)||isNaN(t))throw new Error(`Invalid LngLat object: (${e}, ${t})`);if(this.lng=+e,this.lat=+t,90, lat: }, an object {lon: , lat: }, or an array of [, ]");return new M(Number("lng"in e?e.lng:e.lon),Number(e.lat))}}class tc{constructor(e,t){if(e)if(t)this.setSouthWest(e).setNorthEast(t);else if(4===e.length){const t=e;this.setSouthWest([t[0],t[1]]).setNorthEast([t[2],t[3]])}else{const t=e;this.setSouthWest(t[0]).setNorthEast(t[1])}}setNorthEast(e){return this._ne=e instanceof M?new M(e.lng,e.lat):M.convert(e),this}setSouthWest(e){return this._sw=e instanceof M?new M(e.lng,e.lat):M.convert(e),this}extend(e){const t=this._sw,i=this._ne;let r,a;if(e instanceof M)r=e,a=e;else{if(!(e instanceof tc))return Array.isArray(e)?4===e.length||e.every(Array.isArray)?this.extend(tc.convert(e)):this.extend(M.convert(e)):"object"==typeof e&&null!==e&&e.hasOwnProperty("lat")&&(e.hasOwnProperty("lon")||e.hasOwnProperty("lng"))?this.extend(M.convert(e)):this;if(r=e._sw,a=e._ne,!r||!a)return this}return t||i?(t.lng=Math.min(r.lng,t.lng),t.lat=Math.min(r.lat,t.lat),i.lng=Math.max(a.lng,i.lng),i.lat=Math.max(a.lat,i.lat)):(this._sw=new M(r.lng,r.lat),this._ne=new M(a.lng,a.lat)),this}getCenter(){return new M((this._sw.lng+this._ne.lng)/2,(this._sw.lat+this._ne.lat)/2)}getSouthWest(){return this._sw}getNorthEast(){return this._ne}getNorthWest(){return new M(this.getWest(),this.getNorth())}getSouthEast(){return new M(this.getEast(),this.getSouth())}getWest(){return this._sw.lng}getSouth(){return this._sw.lat}getEast(){return this._ne.lng}getNorth(){return this._ne.lat}toArray(){return[this._sw.toArray(),this._ne.toArray()]}toString(){return`LngLatBounds(${this._sw.toString()}, ${this._ne.toString()})`}isEmpty(){return!(this._sw&&this._ne)}contains(e){var{lng:e,lat:t}=M.convert(e);let i=this._sw.lng<=e&&e<=this._ne.lng;return this._sw.lng>this._ne.lng&&(i=this._sw.lng>=e&&e>=this._ne.lng),this._sw.lat<=t&&t<=this._ne.lat&&i}static convert(e){return!e||e instanceof tc?e:new tc(e)}}a={};function ic(e,t,i){var r=rc(256*e,256*(t=Math.pow(2,i)-t-1),i),e=rc(256*(e+1),256*(t+1),i);return r[0]+","+r[1]+","+e[0]+","+e[1]}function rc(e,t,i){i=2*Math.PI*6378137/256/Math.pow(2,i);return[e*i-2*Math.PI*6378137/2,t*i-2*Math.PI*6378137/2]}(l=a).getURL=function(e,t,i,r,a,n){return n=n||{},e+"?"+["bbox="+ic(i,r,a),"format="+(n.format||"image/png"),"service="+(n.service||"WMS"),"version="+(n.version||"1.1.1"),"request="+(n.request||"GetMap"),"srs="+(n.srs||"EPSG:3857"),"width="+(n.width||256),"height="+(n.height||256),"layers="+t].join("&")},l.getTileBBox=ic,l.getMercCoords=rc,Object.defineProperty(l,"__esModule",{value:!0});var ac=a;class nc{constructor(e,t,i){this.z=e,this.x=t,this.y=i,this.key=lc(0,e,e,t,i)}equals(e){return this.z===e.z&&this.x===e.x&&this.y===e.y}url(e,t){var i=ac.getTileBBox(this.x,this.y,this.z),r=function(t,i,r){let a,n="";for(let e=t;0this.canonical.z?new sc(e,this.wrap,this.canonical.z,this.canonical.x,this.canonical.y):new sc(e,this.wrap,e,this.canonical.x>>t,this.canonical.y>>t)}calculateScaledKey(e,t=!0){if(this.overscaledZ===e&&t)return this.key;if(e>this.canonical.z)return lc(this.wrap*+t,e,this.canonical.z,this.canonical.x,this.canonical.y);var i=this.canonical.z-e;return lc(this.wrap*+t,e,e,this.canonical.x>>i,this.canonical.y>>i)}isChildOf(e){if(e.wrap!==this.wrap)return!1;var t=this.canonical.z-e.canonical.z;return 0===e.overscaledZ||e.overscaledZ>t&&e.canonical.y===this.canonical.y>>t}children(e){if(this.overscaledZ>=e)return[new sc(this.overscaledZ+1,this.wrap,this.canonical.z,this.canonical.x,this.canonical.y)];var e=this.canonical.z+1,t=2*this.canonical.x,i=2*this.canonical.y;return[new sc(e,this.wrap,e,t,i),new sc(e,this.wrap,e,1+t,i),new sc(e,this.wrap,e,t,1+i),new sc(e,this.wrap,e,1+t,1+i)]}isLessThan(e){return this.wrape.wrap)&&(this.overscaledZe.overscaledZ)&&(this.canonical.xe.canonical.x)&&this.canonical.y{let t=e.canonical.x-1,i=e.wrap;return t<0&&(t=(1<{let t=e.canonical.x+1,i=e.wrap;return t===1<new sc(e.overscaledZ,e.wrap,e.canonical.z,e.canonical.x,(0===e.canonical.y?1<new sc(e.overscaledZ,e.wrap,e.canonical.z,e.canonical.x,e.canonical.y===(1<=c?(e(t,i,r,_,g,o,y,l,c),e(t,_,g,a,n,y,s,l,c)):t.push(s)}(s,n,o,c,h,a,l,i,r),n=c,o=h,a=l}return s}function Sc(t,i){let r=t[0];var a=[r];for(let e=1;e{var t=mc((r.x+e.x/n)/o),i=_c((r.y+e.y/n)/o),t=d.project(t,i);e.x=(t.x*c-h)*n,e.y=(t.y*c-u)*n};for(let e=0;e=n||i.y<0||i.y>=n||(p(i),t.push(i));a[e]=t}}for(const t of a)for(const r of t)e=r,s=o,l=void 0,l=Math.round(e.x*s),s=Math.round(e.y*s),e.x=S(l,Ic,Mc),e.y=S(s,Ic,Mc),(le.x+1||se.y+1)&&fi("Geometry exceeds allowed extent, reduce your vector tile buffer size");var e,s,l;return a}function Cc(e,t){return{type:e.type,id:e.id,properties:e.properties,geometry:t?Ac(e):[]}}function Pc(e,t,i,r,a){e.emplaceBack(2*t+(r+1)/2,2*i+(a+1)/2)}function zc(e,t,i){e.emplaceBack(t.x,t.y,t.z,16384*i[0],16384*i[1],16384*i[2])}class Dc{constructor(e){this.zoom=e.zoom,this.overscaling=e.overscaling,this.layers=e.layers,this.layerIds=this.layers.map(e=>e.fqid),this.index=e.index,this.hasPattern=!1,this.projection=e.projection,this.layoutVertexArray=new ws,this.indexArray=new Vs,this.segments=new R,this.programConfigurations=new Nl(e.layers,{zoom:e.zoom,lut:e.lut}),this.stateDependentLayerIds=this.layers.filter(e=>e.isStateDependent()).map(e=>e.id)}updateFootprints(e,t){}populate(e,t,i,r){const a=this.layers[0],n=[];let o=null;"circle"===a.type&&(o=a.layout.get("circle-sort-key"));for(const{feature:t,id:a,index:l,sourceLayerIndex:c}of e){const e=this.layers[0]._featureFilter.needGeometry,h=Cc(t,e);var s;this.layers[0]._featureFilter.filter(new I(this.zoom),h,i)&&(s=o?o.evaluate(h,{},i):void 0,s={id:a,properties:t.properties,type:t.type,sourceLayerIndex:c,index:l,geometry:e?h.geometry:Ac(t,i,r),patterns:{},sortKey:s},n.push(s))}o&&n.sort((e,t)=>e.sortKey-t.sortKey);let l=null;"globe"===r.projection.name&&(this.globeExtVertexArray=new zs,l=r.projection);for(const r of n){const{geometry:a,index:n,sourceLayerIndex:o}=r,u=e[n].feature;this.addFeature(r,a,n,t.availableImages,i,l,t.brightness),t.featureIndex.insert(u,a,n,o,this.index)}}update(e,t,i,r,a){var n=0!==Object.keys(e).length;n&&!this.stateDependentLayers.length||this.programConfigurations.updatePaintArrays(e,t,n?this.stateDependentLayers:this.layers,i,r,a)}isEmpty(){return 0===this.layoutVertexArray.length}uploadPending(){return!this.uploaded||this.programConfigurations.needsUpload}upload(e){this.uploaded||(this.layoutVertexBuffer=e.createVertexBuffer(this.layoutVertexArray,dl.members),this.indexBuffer=e.createIndexBuffer(this.indexArray),this.globeExtVertexArray&&(this.globeExtVertexBuffer=e.createVertexBuffer(this.globeExtVertexArray,pl.members))),this.programConfigurations.upload(e),this.uploaded=!0}destroy(){this.layoutVertexBuffer&&(this.layoutVertexBuffer.destroy(),this.indexBuffer.destroy(),this.programConfigurations.destroy(),this.segments.destroy(),this.globeExtVertexBuffer&&this.globeExtVertexBuffer.destroy())}addFeature(e,t,i,r,a,n,o){for(const i of t)for(const t of i){const i=t.x,r=t.y;if(!(i<0||i>=ue||r<0||r>=ue)){if(n){const e=n.projectTilePoint(i,r,a),t=n.upVector(a,i,r),o=this.globeExtVertexArray;zc(o,e,t),zc(o,e,t),zc(o,e,t),zc(o,e,t)}const o=this.segments.prepareSegment(4,this.layoutVertexArray,this.indexArray,e.sortKey),s=o.vertexLength;Pc(this.layoutVertexArray,i,r,-1,-1),Pc(this.layoutVertexArray,i,r,1,-1),Pc(this.layoutVertexArray,i,r,1,1),Pc(this.layoutVertexArray,i,r,-1,1),this.indexArray.emplaceBack(s,s+1,s+2),this.indexArray.emplaceBack(s,s+2,s+3),o.vertexLength+=4,o.primitiveLength+=2}}this.programConfigurations.populatePaintArrays(this.layoutVertexArray.length,e,i,{},r,a,o)}}function Rc(t,i){for(let e=0;ea.y!=s.y>a.y&&a.x<(s.x-o.x)*(a.y-o.y)/(s.y-o.y)+o.x&&(l=!l);return l}function Nc(i,r){let a=!1;for(let e=0,t=i.length-1;er.y!=o.y>r.y&&r.x<(o.x-n.x)*(r.y-n.y)/(o.y-n.y)+n.x&&(a=!a)}return a}function Vc(t,e,i,r,a){for(const n of t)if(e<=n.x&&i<=n.y&&r>=n.x&&a>=n.y)return!0;const n=[new G(e,i),new G(e,a),new G(r,a),new G(r,i)];if(2a.x&&t.x>a.x||e.ya.y&&t.y>a.y)return;r=mi(e,t,i[0]);return r!==mi(e,t,i[1])||r!==mi(e,t,i[2])||r!==mi(e,t,i[3])}(t[e],t[e+1],n))return!0;return!1}function Uc(e,t,i,r,a,n){let o=t.y-e.y,s=e.x-t.x;if(n=n||0){const e=o*o+s*s;if(0==e)return 1;const t=Math.sqrt(e);o/=t,s/=t}return!((i.x-e.x)*o+(i.y-e.y)*s-n<0||(r.x-e.x)*o+(r.y-e.y)*s-n<0||(a.x-e.x)*o+(a.y-e.y)*s-n<0)}function jc(e,t,i,r,a,n,o){return!(Uc(e,t,r,a,n,o)||Uc(t,i,r,a,n,o)||Uc(i,e,r,a,n,o)||Uc(r,a,e,t,i,o)||Uc(a,n,e,t,i,o)||Uc(n,r,e,t,i,o))}function Gc(e,t,i){var r=t.paint.get(e).value;return"constant"===r.kind?r.value:i.programConfigurations.get(t.id).getMaxValue(e)}function qc(e){return Math.sqrt(e[0]*e[0]+e[1]*e[1])}function $c(t,e,i,r,a){if(!e[0]&&!e[1])return t;const n=G.convert(e)._mult(a),o=("viewport"===i&&n._rotate(-r),[]);for(let e=0;ei[1])return 0}return 1}function Qc(t,i){let r=0;const a=[0,0,0,0];for(let e=0;et.max[e]||t.min[e]>this.max[e])return!1;return!0}intersectsAabbXY(e){return!(this.min[0]>e.max[0]||e.min[0]>this.max[0]||this.min[1]>e.max[1]||e.min[1]>this.max[1])}encapsulate(t){for(let e=0;e<3;e++)this.min[e]=Math.min(this.min[e],t.min[e]),this.max[e]=Math.max(this.max[e],t.max[e])}encapsulatePoint(t){for(let e=0;e<3;e++)this.min[e]=Math.min(this.min[e],t[e]),this.max[e]=Math.max(this.max[e],t[e])}closestPoint(e){return[Math.max(Math.min(this.max[0],e[0]),this.min[0]),Math.max(Math.min(this.max[1],e[1]),this.min[1]),Math.max(Math.min(this.max[2],e[2]),this.min[2])]}}m(A,"Aabb");const eh=E([{type:"Float32",name:"a_globe_pos",components:3},{type:"Float32",name:"a_uv",components:2}]),th=eh["members"],ih=E([{name:"a_pos_3",components:3,type:"Int16"}]);var rh=E([{name:"a_pos",type:"Int16",components:2}]);function ah(e){return e*ql/Ql}const nh=[new A([Xl,Xl,Xl],[Yl,Yl,Yl]),new A([Xl,Xl,Xl],[0,0,Yl]),new A([0,Xl,Xl],[Yl,0,Yl]),new A([Xl,0,Xl],[0,Yl,Yl]),new A([0,0,Xl],[Yl,Yl,Yl])];function oh(e,t,i,r=!0){var a=Te.$.scale([],e._camera.position,e.worldSize),t=[t,i,1,1],i=(Te.aB.transformMat4(t,t,e.pixelMatrixInverse),Te.aB.scale(t,t,1/t[3]),Te.$.sub([],t,a)),i=Te.$.normalize([],i),t=e.globeMatrix,n=[t[12],t[13],t[14]],o=Te.$.sub([],n,a),s=Te.$.length(o),l=Te.$.normalize([],o),c=e.worldSize/(2*Math.PI),l=Te.$.dot(l,i),h=Math.asin(c/s);if(hMath.abs(u))_=0<=m?1:3;else{_=0<=u?0:2;const e=[n[4]*a,n[5]*a,n[6]*a],t=-Math.sin(x(0<=u?o.getSouth():o.getNorth()))*ql;Te.$.scaleAndAdd(r,r,e,t)}var p=s[_],u=s[(_+1)%4],r=new sh(p,u,r),g=[lh(r,0)||p[0],lh(r,1)||p[1],lh(r,2)||p[2]],y=Eh(e.zoom);if(0Math.PI/2*1.01}const Ih=85*Zt,Ah=Math.cos(Ih),Ch=Math.sin(Ih),Ph=Te.ae.create(),zh=e=>{const t=[];return"map"===e.paint.get("circle-pitch-alignment")&&t.push("PITCH_WITH_MAP"),"map"===e.paint.get("circle-pitch-scale")&&t.push("SCALE_WITH_MAP"),t};function Dh(e,t,i,r,a,n,o,s,l){if(n&&e.queryGeometry.isAboveHorizon)return!1;n&&(l*=e.pixelToTileUnitsFactor);var c=e.tileID.canonical,h=i.projection.upVectorScale(c,i.center.lat,i.worldSize).metersToTile;for(const f of t)for(const t of f){const m=t.add(s),_=a&&i.elevation?i.elevation.exaggeration()*a.getElevationAt(m.x,m.y,!0):0,g=i.projection.projectTilePoint(m.x,m.y,c);if(0<_){const Te=i.projection.upVector(c,m.x,m.y);g.x+=Te[0]*h*_,g.y+=Te[1]*h*_,g.z+=Te[2]*h*_}var u=n?m:function(e,t,i,r){e=Te.aB.transformMat4([],[e,t,i,1],r);return new G(e[0]/e[3],e[1]/e[3])}(g.x,g.y,g.z,r),d=n?e.tilespaceRays.map(e=>{var t=_,i=Te.$.create();return Rh[2]=t,e.intersectsPlane(Rh,Lh,i),new G(i[0],i[1])}):e.queryGeometry.screenGeometry,p=Te.aB.transformMat4([],[g.x,g.y,g.z,1],r);if(!o&&n?l*=p[3]/i.cameraToCenterDistance:o&&!n&&(l*=i.cameraToCenterDistance/p[3]),n){const Te=_c((t.y/ue+c.y)/(1<t.width||n.height>t.height||r.x>t.width-n.width||r.y>t.height-n.height)throw new RangeError("out of range source coordinates for image copy");if(n.width>i.width||n.height>i.height||a.x>i.width-n.width||a.y>i.height-n.height)throw new RangeError("out of range destination coordinates for image copy");const h=t.data,u=i.data,d=4===o&&e;for(let e=0;e{r[a.evaluationKey]=i;i=a.expression.evaluate(r);i&&(o.data[e+t+0]=Math.floor(255*i.r/i.a),o.data[e+t+1]=Math.floor(255*i.g/i.a),o.data[e+t+2]=Math.floor(255*i.b/i.a),o.data[e+t+3]=Math.floor(255*i.a))};if(a.clips)for(let i=0,r=0;i=i.next.y&&i.next.y!==i.y){const e=i.x+(a-i.y)*(i.next.x-i.x)/(i.next.y-i.y);if(e<=r&&e>o&&(o=e,n=i.x=i.x&&i.x>=h&&r!==i.x&&tu(an.x||i.x===n.x&&(s=n,l=i,iu(s.prev,s,l.prev)<0&&iu(l.next,s,s.next)<0)))&&(n=i,d=t)}}while((i=i.next)!==c);return n}(e,t);if(!i)return t;t=lu(i,e);return Jh(t,t.next),Jh(i,i.next)}(n[e],t);return t}(r,e,i,a)),r.length>80*a){s=1/0,l=1/0;let t=-1/0,i=-1/0;for(let e=a;et&&(t=a),n>i&&(i=n)}c=0!==(c=Math.max(t-s,i-l))?32767/c:0}return Kh(i,o,a,s,l,c,0),o}function Yh(t,o,i,r,e){let a;if(e===0=o;e-=r)a=cu(e/r|0,t[e],t[e+1],a);return a&&ru(a,a.next)&&(hu(a),a=a.next),a}function Jh(e,t){if(!e)return e;t=t||e;let i,r=e;do{if(i=!1,r.steiner||!ru(r,r.next)&&0!==iu(r.prev,r,r.next))r=r.next;else{if(hu(r),(r=t=r.prev)===r.next)break;i=!0}}while(i||r!==t);return t}function Kh(t,i,r,a,n,o,s){if(t){if(!s&&o){var l=t;var c=a;var h=n;var u=o;let e=l;for(;0===e.z&&(e.z=eu(e.x,e.y,c,h,u)),e.prevZ=e.prev,e.nextZ=e.next,(e=e.next)!==l;);e.prevZ.nextZ=null,e.prevZ=null;{var d=e;let o,s=1;do{let r,a=d,n=d=null;for(o=0;a;){o++;let t=a,i=0;for(let e=0;e=g&&v&&v.z<=y;){if(x.x>=p&&x.x<=m&&x.y>=f&&x.y<=_&&x!==a&&x!==o&&tu(s,h,l,u,c,d,x.x,x.y)&&0<=iu(x.prev,x,x.next))return;if(x=x.prevZ,v.x>=p&&v.x<=m&&v.y>=f&&v.y<=_&&v!==a&&v!==o&&tu(s,h,l,u,c,d,v.x,v.y)&&0<=iu(v.prev,v,v.next))return;v=v.nextZ}for(;x&&x.z>=g;){if(x.x>=p&&x.x<=m&&x.y>=f&&x.y<=_&&x!==a&&x!==o&&tu(s,h,l,u,c,d,x.x,x.y)&&0<=iu(x.prev,x,x.next))return;x=x.prevZ}for(;v&&v.z<=y;){if(v.x>=p&&v.x<=m&&v.y>=f&&v.y<=_&&v!==a&&v!==o&&tu(s,h,l,u,c,d,v.x,v.y)&&0<=iu(v.prev,v,v.next))return;v=v.nextZ}return 1}(t,a,n,o):function(e){var t=e.prev,i=e,e=e.next;if(0<=iu(t,i,e))return;var r=t.x,a=i.x,n=e.x,o=t.y,s=i.y,l=e.y,c=r=c&&p.x<=u&&p.y>=h&&p.y<=d&&tu(r,o,a,s,n,l,p.x,p.y)&&0<=iu(p.prev,p,p.next))return;p=p.next}return 1}(t))i.push(p.i,t.i,f.i),hu(t),t=f.next,e=f.next;else if((t=f)===e){s?1===s?Kh(t=function(e,t){let i=e;do{var r=i.prev,a=i.next.next;!ru(r,a)&&au(r,i,i.next,a)&&su(r,a)&&su(a,r)&&(t.push(r.i,i.i,a.i),hu(i),hu(i.next),i=e=a),i=i.next}while(i!==e);return Jh(i)}(Jh(t),i),i,r,a,n,o,2):2===s&&function(e,t,i,r,a,n){let o=e;do{let e=o.next.next;for(;e!==o.prev;){var s;if(o.i!==e.i&&function(e,t){return e.next.i!==t.i&&e.prev.i!==t.i&&!function(e,t){let i=e;do{if(i.i!==e.i&&i.next.i!==e.i&&i.i!==t.i&&i.next.i!==t.i&&au(i,i.next,e,t))return 1}while((i=i.next)!==e)}(e,t)&&(su(e,t)&&su(t,e)&&function(e,t){let i=e,r=!1;for(var a=(e.x+t.x)/2,n=(e.y+t.y)/2;i.y>n!=i.next.y>n&&i.next.y!==i.y&&a<(i.next.x-i.x)*(n-i.y)/(i.next.y-i.y)+i.x&&(r=!r),(i=i.next)!==e;);return r}(e,t)&&(iu(e.prev,e,t.prev)||iu(e,t.prev,t))||ru(e,t)&&0=Math.min(e.x,i.x)&&t.y<=Math.max(e.y,i.y)&&t.y>=Math.min(e.y,i.y)}function ou(e){return 0e.fqid),this.index=e.index,this.hasPattern=!1,this.patternFeatures=[],this.layoutVertexArray=new ws,this.indexArray=new Vs,this.indexArray2=new ks,this.programConfigurations=new Nl(e.layers,{zoom:e.zoom,lut:e.lut}),this.segments=new R,this.segments2=new R,this.stateDependentLayerIds=this.layers.filter(e=>e.isStateDependent()).map(e=>e.id),this.projection=e.projection}updateFootprints(e,t){}populate(e,t,i,r){this.hasPattern=fu("fill",this.layers,t);const a=this.layers[0].layout.get("fill-sort-key"),n=[];for(var{feature:o,id:s,index:l,sourceLayerIndex:c}of e){const e=this.layers[0]._featureFilter.needGeometry,u=Cc(o,e);var h;this.layers[0]._featureFilter.filter(new I(this.zoom),u,i)&&(h=a?a.evaluate(u,{},i,t.availableImages):void 0,s={id:s,properties:o.properties,type:o.type,sourceLayerIndex:c,index:l,geometry:e?u.geometry:Ac(o,i,r),patterns:{},sortKey:h},n.push(s))}a&&n.sort((e,t)=>e.sortKey-t.sortKey);for(const r of n){const{geometry:a,index:n,sourceLayerIndex:d}=r;if(this.hasPattern){const e=mu("fill",this.layers,r,this.zoom,t);this.patternFeatures.push(e)}else this.addFeature(r,a,n,i,{},t.availableImages,t.brightness);t.featureIndex.insert(e[n].feature,a,n,d,this.index)}}update(e,t,i,r,a){var n=0!==Object.keys(e).length;n&&!this.stateDependentLayers.length||this.programConfigurations.updatePaintArrays(e,t,n?this.stateDependentLayers:this.layers,i,r,a)}addFeatures(e,t,i,r,a,n){for(const e of this.patternFeatures)this.addFeature(e,e.geometry,e.index,t,i,r,n)}isEmpty(){return 0===this.layoutVertexArray.length}uploadPending(){return!this.uploaded||this.programConfigurations.needsUpload}upload(e){this.uploaded||(this.layoutVertexBuffer=e.createVertexBuffer(this.layoutVertexArray,Hh),this.indexBuffer=e.createIndexBuffer(this.indexArray),this.indexBuffer2=e.createIndexBuffer(this.indexArray2)),this.programConfigurations.upload(e),this.uploaded=!0}destroy(){this.layoutVertexBuffer&&(this.layoutVertexBuffer.destroy(),this.indexBuffer.destroy(),this.indexBuffer2.destroy(),this.programConfigurations.destroy(),this.segments.destroy(),this.segments2.destroy())}addFeature(t,i,r,a,n,o=[],s){for(const t of du(i,500)){let e=0;for(const r of t)e+=r.length;const r=this.segments.prepareSegment(e,this.layoutVertexArray,this.indexArray),a=r.vertexLength,n=[],o=[];for(const i of t)if(0!==i.length){i!==t[0]&&o.push(n.length/2);const r=this.segments2.prepareSegment(i.length,this.layoutVertexArray,this.indexArray2),a=r.vertexLength;this.layoutVertexArray.emplaceBack(i[0].x,i[0].y),this.indexArray2.emplaceBack(a+i.length-1,a),n.push(i[0].x),n.push(i[0].y);for(let e=1;ee.cellIdx-t.cellIdx||e.triIdx-t.triIdx);let e=0;for(;ethis.max.x||this.min.x>e.x||e.y>this.max.y||this.min.y>e.y)){const i=wu(e.x-this.min.x,this.xScale,this.cellsX),r=wu(e.y-this.min.y,this.yScale,this.cellsY),a=this.cells[r*this.cellsX+i];if(a){this._lazyInitLookup();for(let e=0;ethis.max.x||this.min.x>i.x||e.y>this.max.y||this.min.y>i.y)){this._lazyInitLookup();const a=wu(e.x-this.min.x,this.xScale,this.cellsX),n=wu(i.x-this.min.x,this.xScale,this.cellsX),o=wu(e.y-this.min.y,this.yScale,this.cellsY),s=wu(i.y-this.min.y,this.yScale,this.cellsY);for(let t=o;t<=s;t++)for(let e=a;e<=n;e++){const a=this.cells[t*this.cellsX+e];if(a)for(let e=0;ee.fqid),this.index=e.index,this.hasPattern=!1,this.stateDependentLayerIds=this.layers.filter(e=>e.isStateDependent()).map(e=>e.id),this.footprints=[]}updateFootprints(e,t){for(const i of this.footprints)t.push({footprint:i,id:e})}populate(e,t,i,r){const a=[];for(const{feature:t,id:o,index:s,sourceLayerIndex:l}of e){const e=this.layers[0]._featureFilter.needGeometry,c=Cc(t,e);var n;this.layers[0]._featureFilter.filter(new I(this.zoom),c,i)&&(n={id:o,properties:t.properties,type:t.type,sourceLayerIndex:l,index:s,geometry:e?c.geometry:Ac(t,i,r),patterns:{}},a.push(n))}for(const r of a){const{geometry:a,index:h,sourceLayerIndex:u}=r;this.addFeature(r,a,h,i,{},t.availableImages,t.brightness),t.featureIndex.insert(e[h].feature,a,h,u,this.index)}}isEmpty(){return 0===this.footprints.length}uploadPending(){return!1}upload(e){}update(e,t,i,r,a){}destroy(){}addFeature(e,t,i,r,a,n=0,o){for(const e of du(t,2)){const t=[],i=[],r=[],a=new G(1/0,1/0),n=new G(-1/0,-1/0);for(const o of e)if(0!==o.length){o!==e[0]&&r.push(i.length/2);for(let e=0;e>3),n--,1===a||2===a)o+=e.readSVarint(),s+=e.readSVarint(),1===a&&(t&&l.push(t),t=[]),t.push(new zu(o,s));else{if(7!==a)throw new Error("unknown command "+a);t&&t.push(t[0].clone())}return t&&l.push(t),l},Du.prototype.bbox=function(){var e=this._pbf;e.pos=this._geometry;for(var t,i=e.readVarint()+e.pos,r=1,a=0,n=0,o=0,s=1/0,l=-1/0,c=1/0,h=-1/0;e.pos>3),a--,1===r||2===r)(n+=e.readSVarint())>3,t=1==r?e.readString():2==r?e.readFloat():3==r?e.readDouble():4==r?e.readVarint64():5==r?e.readVarint():6==r?e.readSVarint():7==r?e.readBoolean():null;return t}(i))}ku.prototype.feature=function(e){if(e<0||e>=this._features.length)throw new Error("feature index out of bounds");this._pbf.pos=this._features[e];e=this._pbf.readVarint()+this._pbf.pos;return new Lu(this._pbf,e,this.extent,this._keys,this._values)};var Bu=s;function Fu(e,t,i){3===e&&(e=new Bu(i,i.readVarint()+i.pos)).length&&(t[e.name]=e)}var Nu=c.VectorTile=function(e,t){this.layers=e.readFields(Fu,{},t)},r=c.VectorTileFeature=n;c.VectorTileLayer=s;class Vu extends G{constructor(e,t,i){super(e,t),this.z=i}}class Uu extends Vu{constructor(e,t,i,r){super(e,t,i),this.w=r}}function ju(t,i,r,a){const n=[],o=0===a?(e,t,i,r,a,n)=>{e.push(new G(n,i+(n-t)/(r-t)*(a-i)))}:(e,t,i,r,a,n)=>{e.push(new G(t+(n-i)/(a-i)*(r-t),n))};for(const e of t){const t=[];for(const n of e)if(!(n.length<=2)){const f=[];for(let e=0;e=t[a]&&(e=r,t=i),e[a]n&&Gu(e,t,a,n),e[a]o&&Gu(t,e,a,o)}}const $u=Number.MAX_SAFE_INTEGER;function Zu(e,t,i,r){return e.ordere===a));var a}function Wu(e,t){return e.x-t.x||e.y-t.y}function Hu(e,t){return 0===Wu(e.min,t.min)&&0===Wu(e.max,t.max)}function Xu(e,t){return!(e.min.x>t.max.x||e.max.xt.max.y||e.max.ya[i])return null}else{var c=1/o[i];let e=(r[i]-n[i])*c,t=(a[i]-n[i])*c;if(e>t){const r=e;e=t,t=r}if(e>s&&(s=e),tl)return null}return s}function rd(e,t,i,r,a,n,o,s,l,c,h){var r=r-e,a=a-t,n=n-i,o=o-e,s=s-t,l=l-i,u=h[1]*l-h[2]*s,d=h[2]*o-h[0]*l,p=h[0]*s-h[1]*o,f=r*u+a*d+n*p;if(Math.abs(f)<1e-15)return null;f=1/f,e=c[0]-e,t=c[1]-t,c=c[2]-i,i=(e*u+t*d+c*p)*f;if(i<0||1{var r=r?1:0,n=(e+1)*i-r,o=t*i,t=(t+1)*i-r;a[0]=e*i,a[1]=o,a[2]=n,a[3]=t};let o=new td(r);var s=[];for(let e=0;e=a[2])return i}}else{let r=0;for(let i=0;i=h[u[e]]&&(u.splice(e,0,i),t=!0);t||(u[r]=i),r++}}for(let e=0;e=this.dim+1||t<-1||t>=this.dim+1)throw new RangeError("out of range source coordinates for DEM data");return(t+1)*this.stride+(e+1)}static pack(e,t){const i=[0,0,0,0],r=dd.getUnpackVector(t);t=Math.floor((e+r[3])/r[2]);return i[2]=t%256,t=Math.floor(t/256),i[1]=t%256,t=Math.floor(t/256),i[0]=t,i}getPixels(){return new Uh({width:this.stride,height:this.stride},this.pixels)}backfillBorder(i,e,t){if(this.dim!==i.dim)throw new Error("dem dimension mismatch");let r=e*this.dim,a=e*this.dim+this.dim,n=t*this.dim,o=t*this.dim+this.dim;switch(e){case-1:r=a-1;break;case 1:a=r+1}switch(t){case-1:n=o-1;break;case 1:o=n+1}var s=-e*this.dim,l=-t*this.dim;for(let t=n;te.max.x&&(e.max.x=t.x,r=!0),t.ye.max.y&&(e.max.y=t.y,r=!0),((0===t.x||t.x===ue)&&t.x===i.x)!=((0===t.y||t.y===ue)&&t.y===i.y)&&this.processBorderOverlap(t,i),r&&this.checkBorderIntersection(t,i)}checkBorderIntersection(e,t){t.x<0!=e.x<0&&this.addBorderIntersection(0,b(t.y,e.y,(0-t.x)/(e.x-t.x))),t.x>ue!=e.x>ue&&this.addBorderIntersection(1,b(t.y,e.y,(ue-t.x)/(e.x-t.x))),t.y<0!=e.y<0&&this.addBorderIntersection(2,b(t.x,e.x,(0-t.y)/(e.y-t.y))),t.y>ue!=e.y>ue&&this.addBorderIntersection(3,b(t.x,e.x,(ue-t.y)/(e.y-t.y)))}addBorderIntersection(e,t){this.borders||(this.borders=[[Number.MAX_VALUE,-Number.MAX_VALUE],[Number.MAX_VALUE,-Number.MAX_VALUE],[Number.MAX_VALUE,-Number.MAX_VALUE],[Number.MAX_VALUE,-Number.MAX_VALUE]]);const i=this.borders[e];ti[1]&&(i[1]=t)}processBorderOverlap(e,t){var i;e.x===t.x?e.y!==t.y&&(i=0===e.x?0:1,this.addBorderIntersection(i,t.y),this.addBorderIntersection(i,e.y)):(i=0===e.y?2:3,this.addBorderIntersection(i,t.x),this.addBorderIntersection(i,e.x))}centroid(){return 0===this.accCount?new G(0,0):new G(Math.floor(Math.max(0,this.acc.x)/this.accCount),Math.floor(Math.max(0,this.acc.y)/this.accCount))}intersectsCount(){return this.borders?this.borders.reduce((e,t)=>e+ +(t[0]!==Number.MAX_VALUE),0):0}}function Cd(e,t){var i=e.add(t)._unit(),i=S(e.x*i.x+e.y*i.y,-1,1),i=Math.acos(i);return Math.min(4,Math.max(-4,Math.tan(i)))/4*xd*(e.x*t.y-e.y*t.x<0?-1:1)}const Pd=[e=>e.x<0,e=>e.x>ue,e=>e.y<0,e=>e.y>ue];class zd{constructor(e){this.vertexArray=new Ss,this.indexArray=new Vs,this.programConfigurations=new Nl(e.layers,{zoom:e.zoom,lut:e.lut},e=>gd.includes(e)),this._segments=new R,this.hiddenByLandmarkVertexArray=new Ks,this._segmentToGroundQuads={},this._segmentToGroundQuads[0]=[],this._segmentToRegionTriCounts={},this._segmentToRegionTriCounts[0]=[0,0,0,0,0],this.regionSegments={},this.regionSegments[4]=new R}getDefaultSegment(){return this.regionSegments[4]}hasData(){return 0!==this.vertexArray.length}addData(r,a,n,o=!1){var s=r.length;if(2e.region-t.region);for(let e=0;ee+t,0);let i=0;for(let t=0;t<=4;t++){const n=s[t];if(0!==n){let e=this.regionSegments[t];e=e||(this.regionSegments[t]=new R);var r={vertexOffset:o.vertexOffset,primitiveOffset:o.primitiveOffset+i,vertexLength:o.vertexLength,primitiveLength:n};e.get().push(r)}i+=n}for(let e=0;ee.fqid),this.index=e.index,this.hasPattern=!1,this.edgeRadius=0,this.projection=e.projection,this.activeReplacements=[],this.replacementUpdateTime=0,this.centroidData=[],this.footprintIndices=new Vs,this.footprintVertices=new ws,this.footprintSegments=[],this.layoutVertexArray=new Es,this.centroidVertexArray=new cl,this.wallVertexArray=new ul,this.indexArray=new Vs,this.programConfigurations=new Nl(e.layers,{zoom:e.zoom,lut:e.lut},e=>_d.includes(e)),this.segments=new R,this.stateDependentLayerIds=this.layers.filter(e=>e.isStateDependent()).map(e=>e.id),this.groundEffect=new zd(e),this.maxHeight=0,this.partLookup={},this.triangleSubSegments=[],this.polygonSegments=[]}updateFootprints(e,t){}populate(e,t,i,r){this.features=[],this.hasPattern=fu("fill-extrusion",this.layers,t),this.featuresOnBorder=[],this.borderFeatureIndices=[[],[],[],[]],this.borderDoneWithNeighborZ=[-1,-1,-1,-1],this.tileToMeter=wc(i),this.edgeRadius=this.layers[0].layout.get("fill-extrusion-edge-radius")/this.tileToMeter,this.wallMode=0!==this.layers[0].paint.get("fill-extrusion-line-width").constantOr(1);for(var{feature:a,id:n,index:o,sourceLayerIndex:s}of e){const e=this.layers[0]._featureFilter.needGeometry,c=Cc(a,e);if(this.layers[0]._featureFilter.filter(new I(this.zoom),c,i)){var l={id:n,sourceLayerIndex:s,index:o,geometry:e?c.geometry:Ac(a,i,r),properties:a.properties,type:a.type,patterns:{}},n=this.layoutVertexArray.length;if(this.hasPattern)this.features.push(mu("fill-extrusion",this.layers,l,this.zoom,t));else if(this.wallMode)for(const e of l.geometry)this.addFeature(l,[e],o,i,{},t.availableImages,r,t.brightness);else this.addFeature(l,l.geometry,o,i,{},t.availableImages,r,t.brightness);t.featureIndex.insert(a,l.geometry,o,s,this.index,n)}}this.sortBorders(),"mercator"===this.projection.name&&this.splitToSubtiles(),this.groundEffect.prepareBorderSegments(),this.polygonSegments.length=0}addFeatures(e,t,i,r,a,n){for(const e of this.features){var o=e["geometry"];if(this.wallMode)for(const s of o)this.addFeature(e,[s],e.index,t,i,r,a,n);else this.addFeature(e,o,e.index,t,i,r,a,n)}this.sortBorders(),"mercator"===this.projection.name&&this.splitToSubtiles()}update(e,t,i,r,a){var n=0!==Object.keys(e).length;n&&!this.stateDependentLayers.length||(n=n?this.stateDependentLayers:this.layers,this.programConfigurations.updatePaintArrays(e,t,n,i,r,a),this.groundEffect.update(e,t,n,i,r,a))}isEmpty(){return 0===this.layoutVertexArray.length}uploadPending(){return!this.uploaded||this.programConfigurations.needsUpload||this.groundEffect.programConfigurations.needsUpload}upload(e){this.uploaded||(this.layoutVertexBuffer=e.createVertexBuffer(this.layoutVertexArray,Pu),this.indexBuffer=e.createIndexBuffer(this.indexArray),this.wallVertexBuffer=e.createVertexBuffer(this.wallVertexArray,Iu.members),this.layoutVertexExtArray&&(this.layoutVertexExtBuffer=e.createVertexBuffer(this.layoutVertexExtArray,Cu.members,!0)),this.groundEffect.upload(e)),this.groundEffect.uploadPaintProperties(e),this.programConfigurations.upload(e),this.uploaded=!0}uploadCentroid(e){this.groundEffect.uploadHiddenByLandmark(e),this.needsCentroidUpdate&&(!this.centroidVertexBuffer&&0{const a=new G(e.x,e.y),n=new G(e.x,e.y);a.x-=t.x*r,a.y-=t.y*r,n.x-=t.x*Math.max(i,1),n.y-=t.y*Math.max(i,1),l.push(t),o.push(a),s.push(n)};if("miter"===(e="miter"===e&&2e<(t.length-1)/2||e===t.length-1,t=this.wallMode?[d]:du(d,500);for(let e=t.length-1;0<=e;e--){const d=t[e];(0===d.length||(i=d[0]).every(e=>e.x<=0)||i.every(e=>e.x>=ue)||i.every(e=>e.y<=0)||i.every(e=>e.y>=ue))&&t.splice(e,1)}var i;let e;if(v)e=Vd(t,a,f);else{e=[];for(const u of t)e.push({polygon:u,bounds:a})}var A,C,P,z,D,R,L=b?this.edgeRadius:0,n=0{if(0===e.length)return!1;e=e[e.length-1];return t.x===e.x&&t.y===e.y};for(const{polygon:u,bounds:d}of e){let h=0,e=0;for(const d of u)b&&!d[0].equals(d[d.length-1])&&d.push(d[0]),e+=b?d.length-1:d.length;const _=this.segments.prepareSegment((b?5:4)*e,this.layoutVertexArray,this.indexArray),g=(T.footprintSegIdx<0&&(T.footprintSegIdx=this.footprintSegments.length),T.polygonSegIdx<0&&(T.polygonSegIdx=this.polygonSegments.length),{triangleArrayOffset:this.indexArray.length,triangleCount:0,triangleSegIdx:this.segments.segments.length-1}),r=new Md;if(r.vertexOffset=this.footprintVertices.length,r.indexOffset=3*this.footprintIndices.length,r.ringIndices=[],b){const m=[],g=[];h=_.vertexLength;for(let e=0;ethis.featuresOnBorder[e].borders[i][0]-this.featuresOnBorder[t].borders[i][0])}splitToSubtiles(){const a=[];for(let t=0;tue),l=2*s+(+(o.min.x+o.max.x>ue)^s);for(let e=0;ee.triangleSegmentIdx===t.triangleSegmentIdx?e.subtile-t.subtile:e.triangleSegmentIdx-t.triangleSegmentIdx);let o=0,s=0,l=0;for(const n of a){if(n.triangleSegmentIdx!==o)break;l++}const c=a.length;for(;s!==a.length;){o=a[s].triangleSegmentIdx;let t=0,i=s,r=s;for(let e=i;e[e[0]*(1-i[0])+t[0]*i[0],e[1]*(1-i[1])+t[1]*i[1]],d=[],p=[];for(const e of this.triangleSubSegments){d[0]=e.min.x/ue,d[1]=e.min.y/ue,p[0]=e.max.x/ue,p[1]=e.max.y/ue;const t=u(c,h,d),o=u(c,h,p);if(0===new A([t[0],t[1],a],[o[0],o[1],n]).intersectsPrecise(i))l&&(r.segments.push(l),l=void 0);else{const s=e.segment;l&&l.vertexOffset!==s.vertexOffset&&(r.segments.push(l),l=void 0),l?(l.vertexLength+=s.vertexLength,l.primitiveLength+=s.primitiveLength):l={vertexOffset:s.vertexOffset,primitiveLength:s.primitiveLength,vertexLength:s.vertexLength,primitiveOffset:s.primitiveOffset,sortKey:void 0,vaos:{}}}}return l&&r.segments.push(l),r}encodeCentroid(e,t){var e=e.centroid(),t=t.span(),i=Math.min(7,Math.round(t.x*this.tileToMeter/10)),t=Math.min(7,Math.round(t.y*this.tileToMeter/10));return new G(S(e.x,1,ue-1)<<3|i,S(e.y,1,ue-1)<<3|t)}encodeBorderCentroid(e){if(!e.borders)return new G(0,0);var t=e.borders,i=Number.MAX_VALUE;if(t[0][0]!==i||t[1][0]!==i){const e=t[0][0]!==i?0:1;return new G(6|(t[0][0]!==i?0:65528),(t[e][0]+t[e][1])/2<<3|6)}{const e=t[2][0]!==i?2:3;return new G((t[e][0]+t[e][1])/2<<3|6,6|(t[2][0]!==i?0:65528))}}showCentroid(e){const t=this.centroidData[e.centroidDataIndex];t.flags&=bd,t.centroidXY.x=0,t.centroidXY.y=0,this.writeCentroidToBuffer(t)}writeCentroidToBuffer(e){this.groundEffect.updateHiddenByLandmark(e);var t=e.vertexArrayOffset,i=e.vertexCount+e.vertexArrayOffset,r=e.flags&bd?vd:e.centroidXY,e=this.centroidVertexArray.geta_centroid_pos0(t);if(this.centroidVertexArray.geta_centroid_pos1(t)!==r.y||e!==r.x){for(let e=t;er.max.x||r.min.x>i.max.x||i.min.y>r.max.y||r.min.y>i.max.y))for(let e=0;en.max.x||n.min.x>e||t>n.max.y||n.min.y>t||this.footprintContainsPoint(e,t,n)&&n&&n.height>i&&(i=n.height,this.partLookup[a]=n,r=!!(n.flags&bd));if(i!==Number.NEGATIVE_INFINITY)return{height:i,hidden:r};this.partLookup[a]=void 0}}function Rd(e,t){t=e.add(t)._unit();return e.x*t.x+e.y*t.y}function Ld(e,t,i,r,a){var n=Math.sqrt(1-r*r);return Math.min(e.dist(t)/3,t.dist(i)/3,a*n/r)}function kd(e,t,i){return e.xi[1].x&&t.x>i[1].x||e.yi[1].y&&t.y>i[1].y}function Od(e,t){return e.xt[1].x||e.yt[1].y}function Bd(e,t,i){if(e.x<0||e.x>=ue||t.x<0||t.x>=ue||i.x<0||i.x>=ue)return!1;const r=i.sub(t),a=r.perp(),n=e.sub(t);return-.866<(r.x*n.x+r.y*n.y)/Math.sqrt((r.x*r.x+r.y*r.y)*(n.x*n.x+n.y*n.y))&&a.x*n.x+a.y*n.y<0}function Fd(e,t,i){t=t?2|e:-3&e;return i?1|t:-2&t}function Nd(){var e=Math.PI/32,e=Math.tan(e),t=Ql;return t*Math.sqrt(1+2*e*e)-t}function Vd(t,i,r){const a=1<{if(0===e)return.5*(t+i);{const e=_c((r.y+t/ue)/a);return(pc(.5*(_c((r.y+i/ue)/a)+e))*a-r.y)*ue}};const f=[];if(!c.length||!u||!d)return f;const m=(e,t)=>{for(const i of e)f.push({polygon:i,bounds:t})},_=Math.ceil(Math.log2(u)),g=Math.ceil(Math.log2(d)),y=_-g,x=[];for(let e=0;eh+1?v.push({polygons:e,bounds:c,depth:h+1}):m(e,c)}if(b.length){const c=[new G(0===u?y:d.x,1===u?y:d.y),f];x.length>h+1?v.push({polygons:b,bounds:c,depth:h+1}):m(b,c)}}return f}}let Ud,jd;function Gd(e,t){return e.x*t.x+e.y*t.y}function qd(i,r){if(1===i.length){let e=0;const a=r[e++];let t;for(;!t||a.equals(t);)if(!(t=r[e++]))return 1/0;for(;ethis.height)return fi("LineAtlas out of space"),null;0===t.length&&t.push(1);let o=0;for(let e=0;ee.fqid),this.index=e.index,this.projection=e.projection,this.hasPattern=!1,this.hasZOffset=!1,this.patternFeatures=[],this.lineClipsArray=[],this.gradients={},this.layers.forEach(e=>{this.gradients[e.id]={}}),this.layoutVertexArray=new Ms,this.layoutVertexArray2=new Is,this.patternVertexArray=new As,this.indexArray=new Vs,this.programConfigurations=new Nl(e.layers,{zoom:e.zoom,lut:e.lut}),this.segments=new R,this.maxLineLength=0,this.zOffsetVertexArray=new Gs,this.stateDependentLayerIds=this.layers.filter(e=>e.isStateDependent()).map(e=>e.id),this.tessellationStep=e.tessellationStep||ue/64}updateFootprints(e,t){}populate(e,t,i,r){this.hasPattern=fu("line",this.layers,t);const a=this.layers[0].layout.get("line-sort-key"),n=this.layers[0].layout.get("line-z-offset"),o=(this.hasZOffset=!n.isConstant()||!!n.constantOr(0),[]);for(const{feature:t,id:n,index:l,sourceLayerIndex:c}of e){const e=this.layers[0]._featureFilter.needGeometry,h=Cc(t,e);var s;this.layers[0]._featureFilter.filter(new I(this.zoom),h,i)&&(s=a?a.evaluate(h,{},i):void 0,s={id:n,properties:t.properties,type:t.type,sourceLayerIndex:c,index:l,geometry:e?h.geometry:Ac(t,i,r),patterns:{},sortKey:s},o.push(s))}a&&o.sort((e,t)=>e.sortKey-t.sortKey);const{lineAtlas:l,featureIndex:c}=t,h=this.addConstantDashes(l);for(const r of o){const{geometry:a,index:n,sourceLayerIndex:o}=r;if(h&&this.addFeatureDashes(r,l),this.hasPattern){const e=mu("line",this.layers,r,this.zoom,t);this.patternFeatures.push(e)}else this.addFeature(r,a,n,i,l.positions,t.availableImages,t.brightness);c.insert(e[n].feature,a,n,o,this.index)}}addConstantDashes(e){let t=!1;for(const a of this.layers){var i=a.paint.get("line-dasharray").value,r=a.layout.get("line-cap").value;if("constant"!==i.kind||"constant"!==r.kind)t=!0;else{const t=r.value,n=i.value;n&&e.addDash(n,t)}}return t}addFeatureDashes(i,r){var a=this.zoom;for(const n of this.layers){const o=n.paint.get("line-dasharray").value,s=n.layout.get("line-cap").value;if("constant"!==o.kind||"constant"!==s.kind){let e,t;if("constant"===o.kind){if(!(e=o.value))continue}else e=o.evaluate({zoom:a},i);t="constant"===s.kind?s.value:s.evaluate({zoom:a},i),r.addDash(e,t),i.patterns[n.id]=r.getKey(e,t)}}}update(e,t,i,r,a){var n=0!==Object.keys(e).length;n&&!this.stateDependentLayers.length||this.programConfigurations.updatePaintArrays(e,t,n?this.stateDependentLayers:this.layers,i,r,a)}addFeatures(e,t,i,r,a,n){for(const e of this.patternFeatures)this.addFeature(e,e.geometry,e.index,t,i,r,n)}isEmpty(){return 0===this.layoutVertexArray.length}uploadPending(){return!this.uploaded||this.programConfigurations.needsUpload}upload(e){this.uploaded||(0!==this.layoutVertexArray2.length&&(this.layoutVertexBuffer2=e.createVertexBuffer(this.layoutVertexArray2,Xd)),0!==this.patternVertexArray.length&&(this.patternVertexBuffer=e.createVertexBuffer(this.patternVertexArray,Jd)),!this.zOffsetVertexBuffer&&0b){const c=r.dist(a);if(c>2*w){const h=r.sub(r.sub(a)._mult(w/c)._round());this.updateDistance(a,h),this.addCurrentVertex(h,o,0,0,T,l),a=h}}if(E&&"round"===e&&(I2*w){const h=r.add(n.sub(r)._mult(w/c)._round());this.updateDistance(r,h),this.addCurrentVertex(h,s,0,0,T,l),r=h}}}}}addVerticesTo(t,e,i,r,a,n,o,s,l,c){var h=(e.w-t.w)/this.tessellationStep|0;if(1i||e.yi}let pp,fp;function mp(e,t,i){return t*(ue/(e.tileSize*Math.pow(2,i-e.tileID.overscaledZ)))}function _p(e,t){return 1/mp(e,1,t.tileZoom)}function gp(e,t,i,r){return e.translatePosMatrix(r||t.tileID.projMatrix,t,i.paint.get("line-translate"),i.paint.get("line-translate-anchor"))}m(up,"LineBucket",{omit:["layers","patternFeatures","currentVertex","currentVertexIsOutside"]});const yp=e=>{const t=[];xp(e)&&t.push("RENDER_LINE_DASH"),e.paint.get("line-gradient")&&t.push("RENDER_LINE_GRADIENT");var i=e.paint.get("line-trim-offset"),i=(0===i[0]&&0===i[1]||t.push("RENDER_LINE_TRIM_OFFSET"),0!==e.paint.get("line-border-width").constantOr(1)&&t.push("RENDER_LINE_BORDER"),"none"===e.layout.get("line-join").constantOr("miter")),e=!!e.paint.get("line-pattern").constantOr(1);return i&&e&&t.push("LINE_JOIN_NONE"),t};function xp(e){e=e.paint.get("line-dasharray").value;return e.value||"constant"!==e.kind}class vp{constructor(t){this._stringToNumber={},this._numberToString=[];for(let e=0;e>1,h=-7,u=i?a-1:0,d=i?-1:1,a=e[t+u];for(u+=d,n=a&(1<<-h)-1,a>>=-h,h+=s;0>=-h,h+=r;0>1,u=23===a?Math.pow(2,-24)-Math.pow(2,-77):0,d=r?0:n-1,p=r?1:-1,n=t<0||0===t&&1/t<0?1:0;for(t=Math.abs(t),isNaN(t)||t===1/0?(s=isNaN(t)?1:0,o=c):(o=Math.floor(Math.log(t)/Math.LN2),t*(r=Math.pow(2,-o))<1&&(o--,r*=2),2<=(t+=1<=o+h?u/r:u*Math.pow(2,1-h))*r&&(o++,r/=2),c<=o+h?(s=0,o=c):1<=o+h?(s=(t*r-1)*Math.pow(2,a),o+=h):(s=t*Math.pow(2,h-1)*Math.pow(2,a),o=0));8<=a;e[i+d]=255&s,d+=p,s/=256,a-=8);for(o=o<>>0):4294967296*(t>>>0)+(e>>>0)}function Ip(e,t,i){var r=t<=16383?1:t<=2097151?2:t<=268435455?3:Math.floor(Math.log(t)/(7*Math.LN2));i.realloc(r);for(var a=i.pos-1;e<=a;a--)i.buf[a+r]=i.buf[a]}function Ap(e,t){for(var i=0;i>>8,e[i+2]=t>>>16,e[i+3]=t>>>24}function Np(e,t){return(e[t]|e[t+1]<<8|e[t+2]<<16)+(e[t+3]<<24)}C.prototype={destroy:function(){this.buf=null},readFields:function(e,t,i){for(i=i||this.length;this.pos>3,n=this.pos;this.type=7&r,e(a,t,this),this.pos===n&&this.skip(r)}return t},readMessage:function(e,t){return this.readFields(e,t,this.readVarint()+this.pos)},readFixed32:function(){var e=Bp(this.buf,this.pos);return this.pos+=4,e},readSFixed32:function(){var e=Np(this.buf,this.pos);return this.pos+=4,e},readFixed64:function(){var e=Bp(this.buf,this.pos)+Bp(this.buf,this.pos+4)*wp;return this.pos+=8,e},readSFixed64:function(){var e=Bp(this.buf,this.pos)+Np(this.buf,this.pos+4)*wp;return this.pos+=8,e},readFloat:function(){var e=bp.read(this.buf,this.pos,!0,23,4);return this.pos+=4,e},readDouble:function(){var e=bp.read(this.buf,this.pos,!0,52,8);return this.pos+=8,e},readVarint:function(e){var t=this.buf,i=127&(r=t[this.pos++]);{if(r<128)return i;if(i|=(127&(r=t[this.pos++]))<<7,r<128)return i;if(i|=(127&(r=t[this.pos++]))<<14,r<128)return i;if(i|=(127&(r=t[this.pos++]))<<21,r<128)return i;var r=i|=(15&t[this.pos])<<28;t=e;var a,e=(i=this).buf,n=(112&(a=e[i.pos++]))>>4;if(a<128)return Mp(r,n,t);if(n|=(127&(a=e[i.pos++]))<<3,a<128)return Mp(r,n,t);if(n|=(127&(a=e[i.pos++]))<<10,a<128)return Mp(r,n,t);if(n|=(127&(a=e[i.pos++]))<<17,a<128)return Mp(r,n,t);if(n|=(127&(a=e[i.pos++]))<<24,a<128)return Mp(r,n,t);if(n|=(1&(a=e[i.pos++]))<<31,a<128)return Mp(r,n,t);throw new Error("Expected varint not more than 10 bytes")}},readVarint64:function(){return this.readVarint(!0)},readSVarint:function(){var e=this.readVarint();return e%2==1?(e+1)/-2:e/2},readBoolean:function(){return Boolean(this.readVarint())},readString:function(){var e,t=this.readVarint()+this.pos,i=this.pos;if(12<=(this.pos=t)-i&&Ep)return e=this.buf,Ep.decode(e.subarray(i,t));for(var r=this.buf,a=t,n="",o=i;o>>10&1023|55296),u=56320|1023&u),n+=String.fromCharCode(u),o+=d}return n},readBytes:function(){var e=this.readVarint()+this.pos,t=this.buf.subarray(this.pos,e);return this.pos=e,t},readPackedVarint:function(e,t){if(this.type!==C.Bytes)return e.push(this.readVarint(t));var i=Sp(this);for(e=e||[];this.pos>>=7,a.buf[a.pos++]=127&r|128,r>>>=7,a.buf[a.pos++]=127&r|128,r>>>=7,a.buf[a.pos++]=127&r|128,a.buf[a.pos]=127&(r>>>=7),i=(7&(a=t))<<4,(n=n).buf[n.pos++]|=i|((a>>>=3)?128:0),a&&(n.buf[n.pos++]=127&a|((a>>>=7)?128:0),a&&(n.buf[n.pos++]=127&a|((a>>>=7)?128:0),a&&(n.buf[n.pos++]=127&a|((a>>>=7)?128:0),a&&(n.buf[n.pos++]=127&a|((a>>>=7)?128:0),a&&(n.buf[n.pos++]=127&a)))))}else this.realloc(4),this.buf[this.pos++]=127&e|(127>>=7)|(127>>=7)|(127>>7&127))))},writeSVarint:function(e){this.writeVarint(e<0?2*-e-1:2*e)},writeBoolean:function(e){this.writeVarint(Boolean(e))},writeString:function(e){e=String(e),this.realloc(4*e.length),this.pos++;var t=this.pos,e=(this.pos=function(e,t,i){for(var r,a,n=0;n>6|192:(r<65536?e[i++]=r>>12|224:(e[i++]=r>>18|240,e[i++]=r>>12&63|128),e[i++]=r>>6&63|128),e[i++]=63&r|128)}return i}(this.buf,e,this.pos),this.pos-t);128<=e&&Ip(t,e,this),this.pos=t-1,this.writeVarint(e),this.pos+=e},writeFloat:function(e){this.realloc(4),bp.write(this.buf,e,this.pos,!0,23,4),this.pos+=4},writeDouble:function(e){this.realloc(8),bp.write(this.buf,e,this.pos,!0,52,8),this.pos+=8},writeBytes:function(e){var t=e.length;this.writeVarint(t),this.realloc(t);for(var i=0;iVc(l.bufferedTilespaceGeometry,e,t,i,r));a.sort(Zp);let h=null;c.elevation&&0(a=a||Ac(e,this.tileID.canonical,n.tileTransform),t.queryIntersectsFeature(l,e,i,a,this.z,n.transform,n.pixelPosMatrix,h,r)))}}return u}loadMatchingFeature(t,e,i,r,a,n,o,s,l){const{featureIndex:c,bucketIndex:h,sourceLayerIndex:u,layoutVertexArrayOffset:d}=e,p=this.bucketLayerIDs[h];if(!r||function(t,i){for(let e=0;e{const i=r instanceof ts?r.get(t):null;return i&&i.evaluate?i.evaluate(a,n,o):i})}function Zp(e,t){return t-e}m(qp,"FeatureIndex",{omit:["rawTileData","sourceLayerCoder"]});var Wp=24;const Hp=128;function Xp(i,r){const a=r["expression"];if("constant"===a.kind)return{kind:"constant",layoutSize:a.evaluate(new I(i+1))};if("source"===a.kind)return{kind:"source"};{const{zoomStops:r,interpolationType:s}=a;let e=0;for(;e":"﹀","?":"︖","@":"@","[":"﹇","\\":"\","]":"﹈","^":"^",_:"︳","`":"`","{":"︷","|":"―","}":"︸","~":"~","¢":"¢","£":"£","¥":"¥","¦":"¦","¬":"¬","¯":" ̄","–":"︲","—":"︱","‘":"﹃","’":"﹄","“":"﹁","”":"﹂","…":"︙","‧":"・","₩":"₩","、":"︑","。":"︒","〈":"︿","〉":"﹀","《":"︽","》":"︾","「":"﹁","」":"﹂","『":"﹃","』":"﹄","【":"︻","】":"︼","〔":"︹","〕":"︺","〖":"︗","〗":"︘","!":"︕","(":"︵",")":"︶",",":"︐","-":"︲",".":"・",":":"︓",";":"︔","<":"︿",">":"﹀","?":"︖","[":"﹇","]":"﹈","_":"︳","{":"︷","|":"―","}":"︸","⦅":"︵","⦆":"︶","。":"︒","「":"﹁","」":"﹂","←":"↑","→":"↓"};const Qp=3;function ef(e,t,i){t.glyphs=[],1===e&&i.readMessage(tf,t)}function tf(e,t,i){if(3===e){const{id:e,bitmap:r,width:a,height:n,left:o,top:s,advance:l}=i.readMessage(rf,{});t.glyphs.push({id:e,bitmap:new Nh({width:a+2*Qp,height:n+2*Qp},r),metrics:{width:a,height:n,left:o,top:s,advance:l}})}else 4===e?t.ascender=i.readSVarint():5===e&&(t.descender=i.readSVarint())}function rf(e,t,i){1===e?t.id=i.readVarint():2===e?t.bitmap=i.readBytes():3===e?t.width=i.readVarint():4===e?t.height=i.readVarint():5===e?t.left=i.readSVarint():6===e?t.top=i.readSVarint():7===e&&(t.advance=i.readVarint())}const af=Qp,nf={horizontal:1,vertical:2,horizontalOnly:3};class of{constructor(){this.scale=1,this.fontStack="",this.imageName=null}static forText(e,t){const i=new of;return i.scale=e||1,i.fontStack=t,i}static forImage(e){const t=new of;return t.imageName=e,t}}class sf{constructor(){this.text="",this.sectionIndex=[],this.sections=[],this.imageSectionID=null}static fromFeature(t,i){const r=new sf;for(let e=0;e=t&&cf[this.text.charCodeAt(e)];e--)i--;this.text=this.text.substring(t,i),this.sectionIndex=this.sectionIndex.slice(t,i)}substring(e,t){const i=new sf;return i.text=this.text.substring(e,t),i.sectionIndex=this.sectionIndex.slice(e,t),i.sections=this.sections,i}toString(){return this.text}getMaxScale(){return this.sectionIndex.reduce((e,t)=>Math.max(e,this.sections[t].scale),0)}addTextSection(t,e){this.text+=t.text,this.sections.push(of.forText(t.scale,t.fontStack||e));var i=this.sections.length-1;for(let e=0;eh&&(h=S)}else{const v=w[I.fontStack];if(!v)continue;v[D]&&(r=v[D]);const T=b[I.fontStack];if(!T)continue;const S=T.glyphs[D];if(!S)continue;if(i=S.metrics,n=8203!==D?Wp:0,p){const v=void 0!==T.ascender?Math.abs(T.ascender):0,b=void 0!==T.descender?Math.abs(T.descender):0,w=(v+b)*t;l-i/2;){if(--o<0)return;s-=e[o].dist(n),n=e[o]}s+=e[o].dist(e[o+1]),o++;const l=[];let c=0;for(;sr;)c-=l.shift().angleDelta;if(c>a)return;o++,s+=t.dist(i)}return 1}function xf(t){let i=0;for(let e=0;e=o&&t.x>=o||(e.x>=o?e=new G(o,e.y+(o-e.x)/(t.x-e.x)*(t.y-e.y))._round():t.x>=o&&(t=new G(o,e.y+(o-e.x)/(t.x-e.x)*(t.y-e.y))._round()),e.y>=s&&t.y>=s||(e.y>=s?e=new G(e.x+(s-e.y)/(t.y-e.y)*(t.x-e.x),s)._round():t.y>=s&&(t=new G(e.x+(s-e.y)/(t.y-e.y)*(t.x-e.x),s)._round()),r&&e.equals(r[r.length-1])||(r=[e],l.push(r)),r.push(t)))))}}return l}function Ef(e){let t=0,i=0;for(const r of e)t+=r.w*r.h,i=Math.max(i,r.w);e.sort((e,t)=>t.h-e.h);const r=[{x:0,y:0,w:Math.max(Math.ceil(Math.sqrt(t/.95)),i),h:1/0}];let a=0,n=0;for(const t of e)for(let e=r.length-1;0<=e;e--){const i=r[e];if(!(t.w>i.w||t.h>i.h)){if(t.x=i.x,t.y=i.y,n=Math.max(n,t.y+t.h),a=Math.max(a,t.x+t.w),t.w===i.w&&t.h===i.h){const t=r.pop();et.hasImage(e,i)),t.dispatchRenderCallbacks(this.haveRenderCallbacks,i);for(const r in t.getUpdatedImages(i))this.patchUpdatedImage(this.iconPositions[r],t.getImage(r,i),e),this.patchUpdatedImage(this.patternPositions[r],t.getImage(r,i),e)}patchUpdatedImage(e,t,i){var r,a;e&&t&&e.version!==t.version&&(e.version=t.version,[e,r]=e.tl,a=!!Object.keys(this.patternPositions).length,i.update(t.data,{useMipmap:a},{x:e,y:r}))}}m(Mf,"ImagePosition"),m(If,"ImageAtlas");const Af=1e20;function Cf(t,i,r,a,n,o,s,l,c){for(let e=i;e{let o=this.entries[i],e=(o=o||(this.entries[i]={glyphs:{},requests:{},ranges:{},ascender:void 0,descender:void 0})).glyphs[a];if(void 0!==e)n(null,{stack:i,id:a,glyph:e});else{if(e=this._tinySDF(o,i,a))return o.glyphs[a]=e,void n(null,{stack:i,id:a,glyph:e});const s=Math.floor(a/256);if(65535<256*s)n(new Error("glyphs > 65535 not supported"));else if(o.ranges[s])n(null,{stack:i,id:a,glyph:e});else{let r=o.requests[s];r||(r=o.requests[s]=[],Rf.loadGlyphRange(i,s,l,this.requestManager,(e,t)=>{if(t){o.ascender=t.ascender,o.descender=t.descender;for(const e in t.glyphs)this._doesCharSupportLocalGlyph(+e)||(o.glyphs[+e]=t.glyphs[+e]);o.ranges[s]=!0}for(const i of r)i(e,t);delete o.requests[s]})),r.push((e,t)=>{e?n(e):t&&n(null,{stack:i,id:a,glyph:t.glyphs[a]||null})})}}},(e,t)=>{if(e)a(e);else if(t){const e={};for(const{stack:a,id:i,glyph:r}of t)void 0===e[a]&&(e[a]={}),void 0===e[a].glyphs&&(e[a].glyphs={}),e[a].glyphs[i]=r&&{id:r.id,bitmap:r.bitmap.clone(),metrics:r.metrics},e[a].ascender=this.entries[a].ascender,e[a].descender=this.entries[a].descender;a(null,e)}})}_doesCharSupportLocalGlyph(e){return this.localGlyphMode!==Df.none&&(this.localGlyphMode===Df.all?!!this.localFontFamily:!!this.localFontFamily&&(q["CJK Unified Ideographs"](e)||q["Hangul Syllables"](e)||q.Hiragana(e)||q.Katakana(e)||q["CJK Symbols and Punctuation"](e)||q["CJK Unified Ideographs Extension A"](e)||q["CJK Unified Ideographs Extension B"](e)))}_tinySDF(i,r,e){var a=this.localFontFamily;if(a&&this._doesCharSupportLocalGlyph(e)){let t=i.tinySDF;if(!t){let e="400";/bold/i.test(r)?e="900":/medium/i.test(r)?e="500":/light/i.test(r)&&(e="200"),(t=i.tinySDF=new Rf.TinySDF({fontFamily:a,fontWeight:e,fontSize:24*zf,buffer:3*zf,radius:8*zf})).fontWeight=e}if(this.localGlyphs[t.fontWeight][e])return this.localGlyphs[t.fontWeight][e];var r=String.fromCodePoint(e),{data:i,width:a,height:r,glyphWidth:n,glyphHeight:o,glyphLeft:s,glyphTop:l,glyphAdvance:c}=t.draw(r);return this.localGlyphs[t.fontWeight][e]={id:e,bitmap:new Nh({width:a,height:r},i),metrics:{width:n/zf,height:o/zf,left:s/zf,top:l/zf-27,advance:c/zf,localGlyph:!0}}}}}Rf.loadGlyphRange=function(e,t,i,r,a){var t=256*t,n=255+t,r=r.transformRequest(r.normalizeGlyphsURL(i).replace("{fontstack}",e).replace("{range}",t+"-"+n),Ki.Glyphs);tr(r,(e,t)=>{if(e)a(e);else if(t){const e={},i=new Vp(t).readFields(ef,{});for(const t of i.glyphs)e[t.id]=t;a(null,{glyphs:e,ascender:i.ascender,descender:i.descender})}})},Rf.TinySDF=class{constructor({fontSize:e=24,buffer:t=3,radius:i=8,cutoff:r=.25,fontFamily:a="sans-serif",fontWeight:n="normal",fontStyle:o="normal"}={}){this.buffer=t,this.cutoff=r,this.radius=i;const s=this.size=e+4*t,l=this._createCanvas(s),c=this.ctx=l.getContext("2d",{willReadFrequently:!0});c.font=o+` ${n} ${e}px `+a,c.textBaseline="alphabetic",c.textAlign="left",c.fillStyle="black",this.gridOuter=new Float64Array(s*s),this.gridInner=new Float64Array(s*s),this.f=new Float64Array(s),this.z=new Float64Array(s+1),this.v=new Uint16Array(s)}_createCanvas(e){const t=document.createElement("canvas");return t.width=t.height=e,t}draw(i){const{width:t,actualBoundingBoxAscent:r,actualBoundingBoxDescent:a,actualBoundingBoxLeft:e,actualBoundingBoxRight:n}=this.ctx.measureText(i),o=Math.ceil(r),s=Math.max(0,Math.min(this.size-this.buffer,Math.ceil(n-e))),l=Math.min(this.size-this.buffer,o+Math.ceil(a)),c=s+2*this.buffer,h=l+2*this.buffer,u=Math.max(c*h,0),d=new Uint8ClampedArray(u),p={data:d,width:c,height:h,glyphWidth:s,glyphHeight:l,glyphTop:o,glyphLeft:0,glyphAdvance:t};if(0===s||0===l)return p;const{ctx:f,buffer:m,gridInner:_,gridOuter:g}=this;f.clearRect(m,m,s,l),f.fillText(i,m,m+o);var y=f.getImageData(m,m,s,l);g.fill(Af,0,u),_.fill(0,0,u);for(let t=0;te+t[1]-t[0],I=a.reduce(o,0),A=n.reduce(o,0),s=e-I,l=r-A;let C=0,P=I,z=0,D=A,R=0,L=s,k=0,O=l;if(T.content&&t){const v=T.content;C=Of(a,0,v[0]),z=Of(n,0,v[1]),P=Of(a,v[0],v[2]),D=Of(n,v[1],v[3]),R=v[0]-C,k=v[1]-z,L=v[2]-v[0]-P,O=v[3]-v[1]-D}var c=(e,t,i,r)=>{const a=(e.stretch-C)/P*S+v.left,n=e.fixed-R-L*e.stretch/I,o=(t.stretch-z)/D*M+v.top,s=t.fixed-k-O*t.stretch/A,l=(i.stretch-C)/P*S+v.left,c=i.fixed-R-L*i.stretch/I,h=(r.stretch-z)/D*M+v.top,u=r.fixed-k-O*r.stretch/A,d=new G(a,o),p=new G(l,o),f=new G(l,h),m=new G(a,h),_=new G(n/E,s/E),g=new G(c/E,u/E),y=b*Math.PI/180;if(y){const v=Math.sin(y),b=Math.cos(y),w=[b,-v,v,b];d._matMult(w),p._matMult(w),m._matMult(w),f._matMult(w)}var e=e.stretch+e.fixed,i=i.stretch+i.fixed,t=t.stretch+t.fixed,r=r.stretch+r.fixed,x=v.imageSecondary;return{tl:d,tr:p,bl:m,br:f,texPrimary:{x:T.paddedRect.x+Lf+e,y:T.paddedRect.y+Lf+t,w:i-e,h:r-t},texSecondary:x?{x:x.paddedRect.x+Lf+e,y:x.paddedRect.y+Lf+t,w:i-e,h:r-t}:void 0,writingMode:void 0,glyphOffset:[0,0],sectionIndex:0,pixelOffsetTL:_,pixelOffsetBR:g,minFontScaleX:L/E/S,minFontScaleY:O/E/M,isSDF:w}};if(t&&(T.stretchX||T.stretchY)){const v=Bf(a,s,I),b=Bf(n,l,A);for(let e=0;er.y!=l.y>r.y&&r.x<(l.x-s.x)*(r.y-s.y)/(l.y-s.y)+s.x&&(a=!a),n=Math.min(n,Bc(r,s,l))}}return(a?1:-1)*Math.sqrt(n)}(this.p,r),this.max=this.d+this.h*Math.SQRT2}}const Vf=Number.POSITIVE_INFINITY,Uf=Math.sqrt(2);function jf(e,[t,i]){let r=0,a=0;if(i===Vf){const i=(t=t<0?0:t)/Uf;switch(e){case"top-right":case"top-left":a=i-7;break;case"bottom-right":case"bottom-left":a=7-i;break;case"bottom":a=7-t;break;case"top":a=t-7}switch(e){case"top-right":case"bottom-right":r=-i;break;case"top-left":case"bottom-left":r=i;break;case"left":r=t;break;case"right":r=-t}}else{switch(t=Math.abs(t),i=Math.abs(i),e){case"top-right":case"top-left":case"top":a=i-7;break;case"bottom-right":case"bottom-left":case"bottom":a=7-i}switch(e){case"top-right":case"bottom-right":case"right":r=-t;break;case"top-left":case"bottom-left":case"left":r=t}}return[r,a]}function Gf(e){switch(e){case"right":case"top-right":case"bottom-right":return"right";case"left":case"top-left":case"bottom-left":return"left"}return"center"}function qf(W,H,X,Y,J,K,e,t,Q,ee,te,ie,i,re,ae){let r=K.textMaxSize.evaluate(H,{},ie);void 0===r&&(r=e);const a=W.layers[0].layout,ne=a.get("icon-offset").evaluate(H,{},ie),n=Hf(X.horizontal)||X.vertical,o="globe"===i.name,s=Wp,l=e/s,c=W.tilePixelRatio*r/s,h=(e=W.overscaling,18>=1),Math.max(ue/(512*e),1)*a.get("symbol-spacing")),oe=a.get("text-padding")*W.tilePixelRatio,se=a.get("icon-padding")*W.tilePixelRatio,u=x(a.get("text-max-angle")),le="map"===a.get("text-rotation-alignment")&&"point"!==a.get("symbol-placement"),ce="map"===a.get("icon-rotation-alignment")&&"point"!==a.get("symbol-placement"),d=a.get("symbol-placement"),p=h/2;var e=a.get("icon-text-fit").evaluate(H,{},ie),f=a.get("icon-text-fit-padding").evaluate(H,{},ie),m="none"!==e;let he;!1===W.hasAnyIconTextFit&&m&&(W.hasAnyIconTextFit=!0),Y&&m&&(W.allowVerticalPlacement&&X.vertical&&(he=_f(Y,X.vertical,e,f,ne,l)),n&&(Y=_f(Y,n,e,f,ne,l)));var _=(g,y,x)=>{if(!(y.x<0||y.x>=ue||y.y<0||y.y>=ue)){let _=null;if(o){const{x:W,y:H,z:X}=i.projectTilePoint(y.x,y.y,x);_={anchor:new gf(W,H,X,0,void 0),up:i.upVector(x,y.x,y.y)}}{var v=W;var b=y;var w=_;var T=g;var E=X;var S=Y;var M=J;var I=he;var A=W.layers[0];var C=W.collisionBoxArray;var P=H.index;var z=H.sourceLayerIndex;var D=W.index;var R=oe;var L=le;var k=Q;x=se;y=ce;g=ne;var O=H;var B=K;var F=ee;var N=te;var V=ie;var U=re;var j=ae;var G=v.addToLineVertexArray(b,T);let e,t,i,r,a,n,o,s=0,l=0,c=0,h=0,u=-1,d=-1;var q={};let p=Mr("");var $=w?w.anchor:b,Z="none"!==A.layout.get("icon-text-fit").evaluate(O,{},V);let f=0,m=0;if(void 0===A._unevaluatedLayout.getValue("text-radial-offset")?[f,m]=A.layout.get("text-offset").evaluate(O,{},V).map(e=>e*Wp):(f=A.layout.get("text-radial-offset").evaluate(O,{},V)*Wp,m=Vf),v.allowVerticalPlacement&&E.vertical){const v=E.vertical;if(L)n=Yf(v),I&&(o=Yf(I));else{const w=A.layout.get("text-rotate").evaluate(O,{},V)+90;i=Xf(C,$,b,P,z,D,v,R,w,k),I&&(r=Xf(C,$,b,P,z,D,I,x,w))}}if(S){const T=A.layout.get("icon-rotate").evaluate(O,{},V),E=kf(S,T,F,Z),M=I?kf(I,T,F,Z):void 0,R=(t=Xf(C,$,b,P,z,D,S,x,T),s=4*E.length,v.iconSizeData);let e=null;"source"===R.kind?(e=[Hp*A.layout.get("icon-size").evaluate(O,{},V)])[0]>Zf&&fi(`${v.layerIds[0]}: Value for "icon-size" is >= ${$f}. Reduce your "icon-size".`):"composite"===R.kind&&(((e=[Hp*B.compositeIconSizes[0].evaluate(O,{},V),Hp*B.compositeIconSizes[1].evaluate(O,{},V)])[0]>Zf||e[1]>Zf)&&fi(`${v.layerIds[0]}: Value for "icon-size" is >= ${$f}. Reduce your "icon-size".`)),v.addSymbols(v.icon,E,e,g,y,O,!1,w,b,G.lineStartIndex,G.lineLength,-1,N,V,U,j),u=v.icon.placedSymbolArray.length-1,M&&(l=4*M.length,v.addSymbols(v.icon,M,e,g,y,O,nf.vertical,w,b,G.lineStartIndex,G.lineLength,-1,N,V,U,j),d=v.icon.placedSymbolArray.length-1)}for(const T in E.horizontal){const S=E.horizontal[T],I=(e||(p=Mr(S.text),L?a=Yf(S):e=Xf(C,$,b,P,z,D,S,R,A.layout.get("text-rotate").evaluate(O,{},V),k)),1===S.positionedLines.length);if(c+=Wf(v,w,b,S,M,A,L,O,k,G,E.vertical?nf.horizontal:nf.horizontalOnly,I?Object.keys(E.horizontal):[T],q,u,B,N,V,U),I)break}E.vertical&&(h+=Wf(v,w,b,E.vertical,M,A,L,O,k,G,nf.vertical,["vertical"],q,d,B,N,V,U));T=(e,t)=>e?Math.max(e,t):t,I=T(a,-1),I=T(n,I),F=-1<(I=T(o,I))?1:0;65535<=v.glyphOffsetArray.length&&fi("Too many glyphs being rendered in a tile. See https://github.com/mapbox/mapbox-gl-js/issues/2907"),void 0!==O.sortKey&&v.addToSortKeyRanges(v.symbolInstances.length,O.sortKey),v.symbolInstances.emplaceBack(b.x,b.y,$.x,$.y,$.z,0<=q.right?q.right:-1,0<=q.center?q.center:-1,0<=q.left?q.left:-1,0<=q.vertical?q.vertical:-1,u,d,p,void 0!==e?e:v.collisionBoxArray.length,void 0!==e?e+1:v.collisionBoxArray.length,void 0!==i?i:v.collisionBoxArray.length,void 0!==i?i+1:v.collisionBoxArray.length,void 0!==t?t:v.collisionBoxArray.length,void 0!==t?t+1:v.collisionBoxArray.length,r||v.collisionBoxArray.length,r?r+1:v.collisionBoxArray.length,P,c,h,s,l,F,0,f,m,I,0,Z?1:0)}}};if("line"===d)for(const J of Tf(H.geometry,0,0,ue,ue)){const H=wf(J,h,u,X.vertical||n,Y,s,c,W.overscaling,ue);for(const X of H)n&&function(t,e,i,r){const a=t.compareText;if(e in a){const t=a[e];for(let e=t.length-1;0<=e;e--)if(r.dist(t[e])u)return c=(u-l)/n,h=b(r.x,a.x,c),c=b(r.y,a.y,c),h=new gf(h,c,0,a.angleTo(r),e),!o||yf(t,h,s,o,i)?h:void 0;l+=n}}(W,u,X.vertical||n,Y,s,c);H&&_(W,H,ie)}}else if("Polygon"===H.type)for(const W of du(H.geometry,0)){const H=function(i,t,e=!1){let r=1/0,a=1/0,n=-1/0,o=-1/0;var s=i[0];for(let e=0;en)&&(n=t.x),(!e||t.y>o)&&(o=t.y)}var l=Math.min(n-r,o-a);let c=l/2;const h=new Za([],Ff);if(0===l)return new G(r,a);for(let t=r;tu.d||!u.d)&&(u=r,e&&console.log("found best %d after %d probes",Math.round(1e4*r.d)/1e4,d)),r.max-u.d<=t||(c=r.h/2,h.push(new Nf(r.p.x-c,r.p.y-c,c,i)),h.push(new Nf(r.p.x+c,r.p.y-c,c,i)),h.push(new Nf(r.p.x-c,r.p.y+c,c,i)),h.push(new Nf(r.p.x+c,r.p.y+c,c,i)),d+=4)}return e&&(console.log("num probes: "+d),console.log("best distance: "+u.d)),u.p}(W,16);_(W[0],new gf(H.x,H.y,0,0,void 0),ie)}else if("LineString"===H.type)for(const W of H.geometry)_(W,new gf(W[0].x,W[0].y,0,0,void 0),ie);else if("Point"===H.type)for(const W of H.geometry)for(const H of W)_([H],new gf(H.x,H.y,0,0,void 0),ie)}const $f=255,Zf=$f*Hp;function Wf(e,t,i,r,a,n,o,s,l,c,h,u,d,p,f,m,_,g){r=function(u,d,p,f,e,m,_){const g=[];if(0===u.positionedLines.length)return g;var t,y=p.layout.get("text-rotate").evaluate(e,{})*Math.PI/180,x=(p=d[0],e=d[1],0<(t=p*e)?[p,-e]:t<0?[-p,e]:0===p?[e,p]:[e,-p]);let i=Math.abs(u.top-u.bottom);for(const A of u.positionedLines)i-=A.lineOffset;var r,a,n,o,s,l=u.positionedLines.length,c=i/l;let v=u.top-d[1];for(let e=0;eZf&&fi(`${e.layerIds[0]}: Value for "text-size" is >= ${$f}. Reduce your "text-size".`):"composite"===a.kind&&((y=[Hp*f.compositeTextSizes[0].evaluate(s,{},_),Hp*f.compositeTextSizes[1].evaluate(s,{},_)])[0]>Zf||y[1]>Zf)&&fi(`${e.layerIds[0]}: Value for "text-size" is >= ${$f}. Reduce your "text-size".`),e.addSymbols(e.text,r,y,l,o,s,h,t,i,c.lineStartIndex,c.lineLength,p,m,_,g,!1);for(const t of u)d[t]=e.text.placedSymbolArray.length-1;return 4*r.length}function Hf(e){for(const t in e)return e[t];return null}function Xf(t,i,r,a,n,e,o,s,l,c){let h=o.top,u=o.bottom,d=o.left,p=o.right;o=o.collisionPadding;if(o&&(d-=o[0],h-=o[1],p+=o[2],u+=o[3]),l){const t=new G(d,h),i=new G(p,h),r=new G(d,u),a=new G(p,u),n=x(l);let e=new G(0,0);c&&(e=new G(c[0],c[1])),t._rotateAround(n,e),i._rotateAround(n,e),r._rotateAround(n,e),a._rotateAround(n,e),d=Math.min(t.x,i.x,r.x,a.x),p=Math.max(t.x,i.x,r.x,a.x),h=Math.min(t.y,i.y,r.y,a.y),u=Math.max(t.y,i.y,r.y,a.y)}return t.emplaceBack(i.x,i.y,i.z,r.x,r.y,d,h,p,u,s,a,n,e),t.length-1}function Yf(e){e.collisionPadding&&(e.top-=e.collisionPadding[1],e.bottom+=e.collisionPadding[3]);e=e.bottom-e.top;return 0m&&(_(e,l,i,r,o,s),_(l,t,o,s,a,n))}_(c,s,i,a,r,a),_(s,o,r,a,r,e),_(o,n,r,e,i,e),_(n,c,i,e,i,a),u-=m,d-=m,p+=m,f+=m;l=1/Math.max(p-u,f-d);return{scale:l,x:u*l,y:d*l,x2:p*l,y2:f*l,projection:h}}function Qf(e,{x:t,y:i},r=0){return new G(((t-r)*e.scale-e.x)*ue,(i*e.scale-e.y)*ue)}const em=Te.ae.identity(new Float32Array(16));class tm{constructor(e){this.spec=e,this.name=e.name,this.wrap=!1,this.requiresDraping=!1,this.supportsWorldCopies=!1,this.supportsTerrain=!1,this.supportsFog=!1,this.supportsFreeCamera=!1,this.zAxisUnit="meters",this.isReprojectedInTileSpace=!0,this.unsupportedLayers=["custom"],this.center=[0,0],this.range=[3.5,7]}project(e,t){return{x:0,y:0,z:0}}unproject(e,t){return new M(0,0)}projectTilePoint(e,t,i){return{x:e,y:t,z:0}}locationPoint(e,t,i=!0){return e._coordinatePoint(e.locationCoordinate(t),i)}pixelsPerMeter(e,t){return fc(1,e)*t}pixelSpaceConversion(e,t,i){return 1}farthestPixelDistance(e){return Jf(e,e.pixelsPerMeter)}pointCoordinate(e,t,i,r){var a=e.horizonLineFromTop(!1),t=new G(t,Math.max(a,i));return e.rayIntersectionCoordinate(e.pointRayIntersection(t,r))}pointCoordinate3D(e,t,i){i=new G(t,i);if(e.elevation)return e.elevation.pointCoordinate(i);{const t=this.pointCoordinate(e,i.x,i.y,0);return[t.x,t.y,t.z]}}isPointAboveHorizon(e,t){if(e.elevation&&e.elevation.visibleDemTiles.length)return!this.pointCoordinate3D(e,t.x,t.y);e=e.horizonLineFromTop();return t.yhm-1e-6&&(t=hm-1e-6),r/Math.pow(um(t),i)),a=t*Math.sin(i*e),r=r-t*Math.cos(i*e),a=.5*(a/Math.PI+.5),r=.5*(r/Math.PI+.5);return{x:a,y:this.southernCenter?r:1-r,z:0}}unproject(e,t){e=(2*e-.5)*Math.PI;var{n:i,f:r}=this,t=r-(t=(2*(1-(t=this.southernCenter?1-t:t))-.5)*Math.PI),a=Math.sign(t),n=Math.sign(i)*Math.sqrt(e*e+t*t);let o=Math.atan2(e,Math.abs(t))*a;t*i<0&&(o-=Math.PI*Math.sign(e)*a);t=S(Ht(o/i)+this.center[0],-180,180),e=S(Ht(2*Math.atan(Math.pow(r/n,1/i))-hm),-yc,yc);return new M(t,this.southernCenter?-e:e)}}class pm extends tm{constructor(e){super(e),this.wrap=!0,this.supportsWorldCopies=!0,this.supportsTerrain=!0,this.supportsFog=!0,this.supportsFreeCamera=!0,this.isReprojectedInTileSpace=!1,this.unsupportedLayers=[],this.range=null}project(e,t){return{x:dc(e),y:pc(t),z:0}}unproject(e,t){e=mc(e),t=_c(t);return new M(e,t)}}const fm=x(yc);class mm extends tm{project(e,t){var i=(t=x(t))*t,r=i*i;return{x:.5*((e=x(e))*(.8707-.131979*i+r*(r*(.003971*i-.001529*r)-.013791))/Math.PI+.5),y:1-.5*(t*(1.007226+i*(.015085+r*(.028874*i-.044475-.005916*r)))/Math.PI+1),z:0}}unproject(e,t){e=(2*e-.5)*Math.PI;let i=t=(2*(1-t)-1)*Math.PI,r=25,a,n=i*i;do{const e=(n=i*i)*n;a=(i*(1.007226+n*(.015085+e*(.028874*n-.044475-.005916*e)))-t)/(1.007226+n*(.045255+e*(.259866*n-.311325-.005916*11*e))),i=S(i-a,-fm,fm)}while(1e-6n||Math.abs(s)>n)&&0<--a);return new M(Ht(i),Ht(r))}}class ym extends tm{constructor(e){super(e),this.center=e.center||[0,0],this.parallels=e.parallels||[0,0],this.cosPhi=Math.max(.01,Math.cos(x(this.parallels[0]))),this.scale=1/(2*Math.max(Math.PI*this.cosPhi,1/this.cosPhi)),this.wrap=!0,this.supportsWorldCopies=!0}project(e,t){var{scale:i,cosPhi:r}=this;return{x:x(e)*r*i+.5,y:-Math.sin(x(t))/r*i+.5,z:0}}unproject(e,t){var{scale:i,cosPhi:r}=this,t=-(t-.5)/i,e=S(Ht((e-.5)/i)/r,-180,180),i=Math.asin(S(t*r,-1,1)),t=S(Ht(i),-yc,yc);return new M(e,t)}}class xm extends pm{constructor(e){super(e),this.requiresDraping=!0,this.supportsWorldCopies=!1,this.supportsFog=!0,this.zAxisUnit="pixels",this.unsupportedLayers=["debug"],this.range=[3,5]}projectTilePoint(e,t,i){e=_h(e,t,i),t=xh(ch(i));return Te.$.transformMat4(e,e,t),{x:e[0],y:e[1],z:e[2]}}locationPoint(e,t){var i=Kl(t.lat,t.lng),r=Te.$.normalize([],i),t=e.elevation?e.elevation.getAtPointOrZero(e.locationCoordinate(t),e._centerAltitude):e._centerAltitude,t=1/uc(0)*ue*t,r=(Te.$.scaleAndAdd(i,i,r,t),Te.ae.identity(new Float64Array(16)));return Te.ae.multiply(r,e.pixelMatrix,e.globeMatrix),Te.$.transformMat4(i,i,r),new G(i[0],i[1])}pixelsPerMeter(e,t){return 1/uc(0)*t}pixelSpaceConversion(e,t,i){var r=fc(1,e)*t,r=b(1/uc(45)*t,r,i);return this.pixelsPerMeter(e,t)/r}createTileMatrix(e,t,i){i=vh(ch(i.canonical));return Te.ae.multiply(new Float64Array(16),e.globeMatrix,i)}createInversionMatrix(e,t){var i=e["center"],t=xh(ch(t));return Te.ae.rotateY(t,t,x(i.lng)),Te.ae.rotateX(t,t,x(i.lat)),Te.ae.scale(t,t,[e._pixelsPerMercatorPixel,e._pixelsPerMercatorPixel,1]),Float32Array.from(t)}pointCoordinate(e,t,i,r){return oh(e,t,i,!0)||new Tc(0,0)}pointCoordinate3D(e,t,i){e=this.pointCoordinate(e,t,i,0);return[e.x,e.y,e.z]}isPointAboveHorizon(e,t){return!oh(e,t.x,t.y,!1)}farthestPixelDistance(e){var t=function(e,t){const i=e.cameraToCenterDistance,r=e._centerAltitude*t,a=e._camera,n=e._camera.forward(),o=Te.$.add([],Te.$.scale([],n,-i),[0,0,r]),s=e.worldSize/(2*Math.PI),l=[0,0,-s],c=e.width/e.height,h=Math.tan(e.fovAboveCenter),u=Te.$.scale([],a.up(),h),d=Te.$.scale([],a.right(),h*c),p=Te.$.normalize([],Te.$.add([],Te.$.add([],n,u),d)),f=[];let m;if(new Xc(o,p).closestPointOnSphere(l,s,f)){const t=Te.$.add([],f,l),i=Te.$.sub([],t,o);m=Math.cos(e.fovAboveCenter)*Te.$.length(i)}else{const e=Te.$.sub([],o,l),t=Te.$.sub([],l,o),i=(Te.$.normalize(t,t),Te.$.length(e)-s),r=(m=Math.sqrt(i*(i+2*s)),Math.acos(m/(s+i))-Math.acos(Te.$.dot(n,t)));m*=Math.cos(r)}return 1.01*m}(e,this.pixelsPerMeter(e.center.lat,e.worldSize)),i=Eh(e.zoom);if(0e.fqid),this.index=e.index,this.pixelRatio=e.pixelRatio,this.sourceLayerIndex=e.sourceLayerIndex,this.hasPattern=!1,this.hasRTLText=!1,this.fullyClipped=!1,this.hasAnyIconTextFit=!1,this.sortKeyRanges=[],this.collisionCircleArray=[],this.placementInvProjMatrix=Te.ae.identity([]),this.placementViewportMatrix=Te.ae.identity([]);var t=this.layers[0]._unevaluatedLayout._values;this.textSizeData=Xp(this.zoom,t["text-size"]),this.iconSizeData=Xp(this.zoom,t["icon-size"]);const i=this.layers[0].layout,r=i.get("symbol-sort-key"),a=i.get("symbol-z-order");this.canOverlap=i.get("text-allow-overlap")||i.get("icon-allow-overlap")||i.get("text-ignore-placement")||i.get("icon-ignore-placement"),this.sortFeaturesByKey="viewport-y"!==a&&void 0!==r.constantOr(1),this.sortFeaturesByY=("viewport-y"===a||"auto"===a&&!this.sortFeaturesByKey)&&this.canOverlap,this.writingModes=i.get("text-writing-mode").map(e=>nf[e]),this.stateDependentLayerIds=this.layers.filter(e=>e.isStateDependent()).map(e=>e.id),this.sourceID=e.sourceID,this.projection=e.projection,this.hasAnyZOffset=!1,this.zOffsetSortDirty=!1,this.zOffsetBuffersNeedUpload=i.get("symbol-z-elevate"),this.activeReplacements=[],this.replacementUpdateTime=0}createArrays(){this.text=new Am(new Nl(this.layers,{zoom:this.zoom,lut:this.lut},e=>/^text/.test(e))),this.icon=new Am(new Nl(this.layers,{zoom:this.zoom,lut:this.lut},e=>/^icon/.test(e))),this.glyphOffsetArray=new nl,this.lineVertexArray=new ol,this.symbolInstances=new al}calculateGlyphDependencies(t,i,e,r,a){for(let e=0;e{e=_h(e.x,e.y,a,1),t=_h(t.x,t.y,a,1);return Te.$.dot(e,t){e.text=function(e,t){t=i.layout.get("text-transform").evaluate(t,{});return"uppercase"===t?e=e.toLocaleUpperCase():"lowercase"===t&&(e=e.toLocaleLowerCase()),e=Wo.applyArabicShaping?Wo.applyArabicShaping(e):e}(e.text,t)}),e}(i,o,v))}if(p){const Te=o.getValueAndResolveTokens("icon-image",v,a,y);t=Te instanceof aa?Te:aa.fromString(Te)}if(e||t){var m=this.sortFeaturesByKey?f.evaluate(v,{},a):void 0;if(this.features.push({id:h,text:e,icon:t,index:u,sourceLayerIndex:x,geometry:v.geometry,properties:r.properties,type:bm[r.type],sortKey:m}),t&&(_[t.namePrimary]=!0,t.nameSecondary&&(_[t.nameSecondary]=!0)),e){const Te=c.evaluate(v,{},a).join(","),i="map"===s.get("text-rotation-alignment")&&"point"!==s.get("symbol-placement");this.allowVerticalPlacement=this.writingModes&&0<=this.writingModes.indexOf(nf.vertical);for(const r of e.sections)if(r.image)_[r.image.namePrimary]=!0;else{const a=zo(e.toString()),n=r.fontStack||Te,o=g[n]=g[n]||{};this.calculateGlyphDependencies(r.text,o,i,this.allowVerticalPlacement,a)}}}}}"line"===s.get("symbol-placement")&&(this.features=function(t){const a={},n={},o=[];let i=0;function r(e){o.push(t[e]),i++}function s(e,t,i){var r=n[e];return delete n[e],n[t]=r,o[r].geometry[0].pop(),o[r].geometry[0]=o[r].geometry[0].concat(i[0]),r}function l(e,t,i){var r=a[t];return delete a[t],a[e]=r,o[r].geometry[0].shift(),o[r].geometry[0]=i[0].concat(o[r].geometry[0]),r}function c(e,t,i){i=i?t[0][t[0].length-1]:t[0][0];return`${e}:${i.x}:`+i.y}for(let e=0;ee.geometry)}(this.features)),this.sortFeaturesByKey&&this.features.sort((e,t)=>e.sortKey-t.sortKey)}}update(e,t,i,r,a){var n=0!==Object.keys(e).length;n&&!this.stateDependentLayers.length||(n=n?this.stateDependentLayers:this.layers,this.text.programConfigurations.updatePaintArrays(e,t,n,i,r,a),this.icon.programConfigurations.updatePaintArrays(e,t,n,i,r,a))}updateZOffset(){const t=(t,i,r)=>{(a+=i)>t.length&&t.resize(a);for(let e=-i;e<0;e++)t.emplace(e+a,r)},i=(t,i,r)=>{(n+=i)>t.length&&t.resize(n);for(let e=-i;e<0;e++)t.emplace(e+n,r)};if(!this.zOffsetBuffersNeedUpload)return;this.zOffsetBuffersNeedUpload=!1;let a=0,n=0;for(let e=0;er[e]-r[t]||a[t]-a[e]),n}getSortedIndexesByZOffset(){if(!this.zOffsetSortDirty)return this.symbolInstanceIndexesSortedZOffset;if(!this.symbolInstanceIndexesSortedZOffset){this.symbolInstanceIndexesSortedZOffset=[];for(let e=0;ethis.symbolInstances.get(t).zOffset-this.symbolInstances.get(e).zOffset)}addToSortKeyRanges(e,t){const i=this.sortKeyRanges[this.sortKeyRanges.length-1];i&&i.sortKey===t?i.symbolInstanceEnd=e+1:this.sortKeyRanges.push({sortKey:t,symbolInstanceStart:e,symbolInstanceEnd:e+1})}sortFeatures(e){if(this.sortFeaturesByY&&this.sortedAngle!==e&&!(1>=1);){const Te=t+r>>1,F=i+a>>1;1&e?(r=t,a=i,t=n,i=o):(t=r,i=a,r=n,a=o),n=Te,o=F}const F=4*s;Rm[0+F]=t,Rm[1+F]=i,Rm[2+F]=r,Rm[3+F]=a}const Lm=new Uint16Array(2178),km=new Uint8Array(1089),Om=new Uint16Array(1089);function Bm(e){return 0===e?-.03125:32===e?.03125:0}var Fm=E([{name:"a_pos",type:"Int16",components:2},{name:"a_texture_pos",type:"Int16",components:2}]);class Nm{constructor(e,t,i,r){this.id=Nm.uniqueIdxCounter,Nm.uniqueIdxCounter++;const a=(this.context=e).gl;this.buffer=a.createBuffer(),this.dynamicDraw=Boolean(i),this.context.unbindVAO(),e.bindElementBuffer.set(this.buffer),a.bufferData(a.ELEMENT_ARRAY_BUFFER,t.arrayBuffer,this.dynamicDraw?a.DYNAMIC_DRAW:a.STATIC_DRAW),this.dynamicDraw||r||t.destroy()}bind(){this.context.bindElementBuffer.set(this.buffer)}updateData(e){this.id=Nm.uniqueIdxCounter,Nm.uniqueIdxCounter++;const t=this.context.gl;this.context.unbindVAO(),this.bind(),t.bufferSubData(t.ELEMENT_ARRAY_BUFFER,0,e.arrayBuffer)}destroy(){this.buffer&&(this.context.gl.deleteBuffer(this.buffer),delete this.buffer)}}Nm.uniqueIdxCounter=0;class Vm{constructor(e,t,i){this.func=e,this.mask=t,this.range=i}}Vm.ReadOnly=!1,Vm.ReadWrite=!0,Vm.disabled=new Vm(519,Vm.ReadOnly,[0,1]);class Um{constructor(e,t,i,r,a,n){this.test=e,this.ref=t,this.mask=i,this.fail=r,this.depthFail=a,this.pass=n}}Um.disabled=new Um({func:519,mask:0},0,0,7680,7680,7680);class jm{constructor(e,t,i,r){this.blendFunction=e,this.blendColor=t,this.mask=i,this.blendEquation=r}}jm.disabled=new jm(jm.Replace=[1,0,1,0],g.transparent,[!1,!1,!1,!1]),jm.unblended=new jm(jm.Replace,g.transparent,[!0,!0,!0,!0]),jm.alphaBlended=new jm([1,771,1,771],g.transparent,[!0,!0,!0,!0]),jm.alphaBlendedNonPremultiplied=new jm([770,771,770,771],g.transparent,[!0,!0,!0,!0]),jm.multiply=new jm([774,0,774,0],g.transparent,[!0,!0,!0,!0]);class Gm{constructor(e,t,i){this.enable=e,this.mode=t,this.frontFace=i}}Gm.disabled=new Gm(!1,1029,2305),Gm.backCCW=new Gm(!0,1029,2305),Gm.backCW=new Gm(!0,1029,2304),Gm.frontCW=new Gm(!0,1028,2304),Gm.frontCCW=new Gm(!0,1028,2305);l=E([{name:"a_index",type:"Int16",components:1}]);const qm={type:2,extent:ue,loadGeometry:()=>[[new G(0,0),new G(ue+1,0),new G(ue+1,ue+1),new G(0,ue+1),new G(0,0)]]};class $m{constructor(e,t,i,r,a){this.tileID=e,this.uid=ri++,this.uses=0,this.tileSize=t,this.tileZoom=i,this.buckets={},this.expirationTime=null,this.queryPadding=0,this.hasSymbolBuckets=!1,this.hasRTLText=!1,this.dependencies={},this.isRaster=a,r&&r.style&&(this._lastUpdatedBrightness=r.style.getBrightness()),this.expiredRequestCount=0,this.state="loading",r&&r.transform&&(this.projection=r.transform.projection)}registerFadeDuration(e){e+=this.timeAdded;et.getLayer(e)).filter(Boolean);if(0!==e.length){r.layers=e,r.stateDependentLayerIds&&(r.stateDependentLayers=r.stateDependentLayerIds.map(t=>e.filter(e=>e.id===t)[0]));for(const t of e)i[t.fqid]=r}}return i}(e.buckets,t.style),this.hasSymbolBuckets=!1;for(const e in this.buckets){const t=this.buckets[e];if(t instanceof Pm){if(this.hasSymbolBuckets=!0,!i)break;t.justReloaded=!0}}if(this.hasRTLText=!1,this.hasSymbolBuckets)for(const e in this.buckets){const t=this.buckets[e];if(t instanceof Pm&&t.hasRTLText){this.hasRTLText=!0,Wo.isLoading()||Wo.isLoaded()||"deferred"!==Vo||$o();break}}this.queryPadding=0;for(const e in this.buckets){const i=this.buckets[e],a=t.style.getOwnLayer(e);var r;a&&(r=a.queryRadius(i),this.queryPadding=Math.max(this.queryPadding,r))}e.imageAtlas&&(this.imageAtlas=e.imageAtlas),e.glyphAtlasImage&&(this.glyphAtlasImage=e.glyphAtlasImage),e.lineAtlas&&(this.lineAtlas=e.lineAtlas),this._lastUpdatedBrightness=e.brightness}else this.collisionBoxArray=new el}unloadVectorData(){if(this.hasData()){for(const e in this.buckets)this.buckets[e].destroy();this.buckets={},this.imageAtlas&&(this.imageAtlas=null),this.lineAtlas&&(this.lineAtlas=null),this.imageAtlasTexture&&this.imageAtlasTexture.destroy(),this.glyphAtlasTexture&&this.glyphAtlasTexture.destroy(),this.lineAtlasTexture&&this.lineAtlasTexture.destroy(),this._tileBoundsBuffer&&(this._tileBoundsBuffer.destroy(),this._tileBoundsIndexBuffer.destroy(),this._tileBoundsSegments.destroy(),this._tileBoundsBuffer=null),this._tileDebugBuffer&&(this._tileDebugBuffer.destroy(),this._tileDebugSegments.destroy(),this._tileDebugBuffer=null),this._tileDebugIndexBuffer&&(this._tileDebugIndexBuffer.destroy(),this._tileDebugIndexBuffer=null),this._globeTileDebugBorderBuffer&&(this._globeTileDebugBorderBuffer.destroy(),this._globeTileDebugBorderBuffer=null),this._tileDebugTextBuffer&&(this._tileDebugTextBuffer.destroy(),this._tileDebugTextSegments.destroy(),this._tileDebugTextIndexBuffer.destroy(),this._tileDebugTextBuffer=null),this._globeTileDebugTextBuffer&&(this._globeTileDebugTextBuffer.destroy(),this._globeTileDebugTextBuffer=null),this.latestFeatureIndex=null,this.state="unloaded"}}getBucket(e){return this.buckets[e.fqid]}upload(e){for(const t in this.buckets){const i=this.buckets[t];i.uploadPending()&&i.upload(e)}const t=e.gl,i=this.imageAtlas;var r;i&&!i.uploaded&&(r=!!Object.keys(i.patternPositions).length,this.imageAtlasTexture=new zm(e,i.image,t.RGBA,{useMipmap:r}),this.imageAtlas.uploaded=!0),this.glyphAtlasImage&&(this.glyphAtlasTexture=new zm(e,this.glyphAtlasImage,t.R8),this.glyphAtlasImage=null),this.lineAtlas&&!this.lineAtlas.uploaded&&(this.lineAtlasTexture=new zm(e,this.lineAtlas.image,t.R8),this.lineAtlas.uploaded=!0)}prepare(e,t,i){this.imageAtlas&&this.imageAtlasTexture&&this.imageAtlas.patchUpdatedImages(e,this.imageAtlasTexture,i),t&&this.latestFeatureIndex&&this.latestFeatureIndex.rawTileData&&(e=t.style.getBrightness(),!this._lastUpdatedBrightness&&!e||this._lastUpdatedBrightness&&e&&Math.abs(this._lastUpdatedBrightness-e)<.001||(this._lastUpdatedBrightness=e,this.updateBuckets(void 0,t)))}queryRenderedFeatures(e,t,i,r,a,n,o,s){return this.latestFeatureIndex&&(this.latestFeatureIndex.rawTileData||this.latestFeatureIndex.is3DTile)?this.latestFeatureIndex.query({tileResult:r,pixelPosMatrix:o,transform:n,params:a,tileTransform:this.tileTransform},e,t,i):{}}querySourceFeatures(t,e){const i=this.latestFeatureIndex;if(i&&i.rawTileData){const r=i.loadVTLayers(),a=e?e.sourceLayer:"",n=r._geojsonTileLayer||r[a];if(n){const o=os(e&&e.filter),{z:s,x:l,y:c}=this.tileID.canonical,h={z:s,x:l,y:c};for(let e=0;et?e=!1:i&&!(this.expirationTime>1,c=n+l>>1,h=s+c-n,t=c+a-s,d=33*n+a,p=33*l+o,f=33*c+s,m=16<=Math.hypot((Lm[2*d+0]+Lm[2*p+0])/2-Lm[2*f+0],(Lm[2*d+1]+Lm[2*p+1])/2-Lm[2*f+1]);km[f]=km[f]||(m?1:0),e<1022&&(km[f]=km[f]||km[33*(n+t>>1)+(a+h>>1)]||km[33*(l+t>>1)+(o+h>>1)])}const o=new Es,l=new Vs;let s=0;function c(e,t){var i=33*t+e;return 0===Om[i]&&(o.emplaceBack(Lm[2*i+0],Lm[2*i+1],e*ue/32,t*ue/32),Om[i]=++s),Om[i]-1}function h(e,t,i,r,a,n){const o=e+i>>1,s=t+r>>1;if(1{var n=(e-t)/(a-1),o=(r-i)/(a-1),s=f.length;for(let e=0;eh*e+t);for(let e=0;e>1|(21845&u_)<<1;h_[u_]=((65280&(d_=(61680&(d_=(52428&d_)>>2|(13107&d_)<<2))>>4|(3855&d_)<<4))>>8|(255&d_)<<8)>>1}for(var p_=function(e,t,i){for(var r=e.length,a=0,n=new r_(t);a>l]=c;return s},f_=new i_(288),u_=0;u_<144;++u_)f_[u_]=8;for(u_=144;u_<256;++u_)f_[u_]=9;for(u_=256;u_<280;++u_)f_[u_]=7;for(u_=280;u_<288;++u_)f_[u_]=8;var m_=new i_(32);for(u_=0;u_<32;++u_)m_[u_]=5;function __(e){for(var t=e[0],i=1;it&&(t=e[i]);return t}function g_(e,t,i){var r=t/8|0;return(e[r]|e[1+r]<<8)>>(7&t)&i}function y_(e,t){var i=t/8|0;return(e[i]|e[1+i]<<8|e[2+i]<<16)>>(7&t)}function x_(e,t,i){if((t=new Error(t||w_[e])).code=e,Error.captureStackTrace&&Error.captureStackTrace(t,x_),i)return t;throw t}var v_=p_(f_,9),b_=p_(m_,5),w_=["unexpected EOF","invalid block type","invalid length/literal","invalid distance","stream finished","no stream handler",,"no callback","invalid UTF-8 data","extra field too long","date not in range 1980-2099","filename too long","stream finishing","invalid zip data"],n=new i_(0),s="undefined"!=typeof TextDecoder&&new TextDecoder;try{s.decode(n,{stream:!0})}catch(Te){}const T_={gzip_data:"gzip"};class E_ extends Error{constructor(e){super(e),this.name="MRTError"}}const S_={0:"uint32",1:"uint32",2:"uint16",3:"uint8"},M_={uint32:1,uint16:2,uint8:4},I_={uint32:Uint32Array,uint16:Uint16Array,uint8:Uint8Array};let A_,C_;class P_{constructor(e=5){this.x=NaN,this.y=NaN,this.z=NaN,this.layers={},this._cacheSize=e}getLayer(e){var t=this.layers[e];if(t)return t;throw new E_(`Layer '${e}' not found`)}getHeaderLength(e){const t=new Uint8Array(e),i=new DataView(e);if(13!==t[0])throw new E_("File is not a valid MRT.");return i.getUint32(1,!0)}parseHeader(e){const t=new Uint8Array(e),i=this.getHeaderLength(e);if(t.length= ${i} but got buffer of length `+t.length);var r=new A_(t.subarray(0,i)).readFields(Zm,{header_length:0,x:0,y:0,z:0,layers:[]},void 0);if(!isNaN(this.x)&&(this.x!==r.x||this.y!==r.y||this.z!==r.z))throw new E_(`Invalid attempt to parse header ${r.z}/${r.x}/${r.y} for tile ${this.z}/${this.x}/`+this.y);this.x=r.x,this.y=r.y,this.z=r.z;for(const e of r.layers)this.layers[e.name]=new z_(e,{cacheSize:this._cacheSize});return this}createDecodingTask(e){const i=[],r=this.getLayer(e.layerName);for(var t of e.blockIndices){const n=r.dataIndex[t],o=n.first_byte-e.firstByte,s=n.last_byte-e.firstByte;var a;r._blocksInProgress.has(t)||(a={layerName:r.name,firstByte:o,lastByte:s,pixelFormat:r.pixelFormat,blockIndex:t,blockShape:[n.bands.length].concat(r.bandShape),buffer:r.buffer,codec:n.codec.codec,filters:n.filters.map(e=>e.filter)},r._blocksInProgress.add(t),i.push(a))}return new D_(i,()=>{i.forEach(e=>r._blocksInProgress.delete(e.blockIndex))},(e,t)=>{if(i.forEach(e=>r._blocksInProgress.delete(e.blockIndex)),e)throw e;t.forEach(e=>{this.getLayer(e.layerName).processDecodedData(e)})})}}class z_{constructor({version:e,name:t,units:i,tilesize:r,pixel_format:a,buffer:n,data_index:o},s){if(this.version=e,1!==this.version)throw new E_("Cannot parse raster layer encoded with MRT version "+e);this.name=t,this.units=i,this.tileSize=r,this.buffer=n,this.pixelFormat=S_[a],this.dataIndex=o,this.bandShape=[r+2*n,r+2*n,M_[this.pixelFormat]],this._decodedBlocks=new e_(s?s.cacheSize:5),this._blocksInProgress=new Set}get dimension(){return M_[this.pixelFormat]}get cacheSize(){return this._decodedBlocks.capacity}getBandList(){return this.dataIndex.map(({bands:e})=>e).flat()}processDecodedData(e){var t=e.blockIndex.toString();this._decodedBlocks.get(t)||this._decodedBlocks.put(t,e.data)}getBlockForBand(e){let t=0;switch(typeof e){case"string":for(var[i,r]of this.dataIndex.entries()){for(var[a,n]of r.bands.entries())if(n===e)return{bandIndex:t+a,blockIndex:i,blockBandIndex:a};t+=r.bands.length}break;case"number":for(var[o,s]of this.dataIndex.entries()){if(e>=t&&ethis.cacheSize)throw new E_(`Number of blocks to decode (${a.size}) exceeds cache size (${this.cacheSize}).`);return{layerName:this.name,firstByte:t,lastByte:i,blockIndices:r}}hasBand(e){e=this.getBlockForBand(e).blockIndex;return 0<=e}hasDataForBand(e){const t=this.getBlockForBand(e)["blockIndex"];return 0<=t&&!!this._decodedBlocks.get(t.toString())}getBandView(e){const{blockIndex:t,blockBandIndex:i}=this.getBlockForBand(e),r=this._decodedBlocks.get(t.toString());if(!r)throw new E_(`Data for band ${JSON.stringify(e)} of layer "${this.name}" not decoded.`);var e=this.dataIndex[t],a=this.bandShape.reduce((e,t)=>e*t,1),n=i*a,n=r.subarray(n,n+a);return{data:n,bytes:new Uint8Array(n.buffer).subarray(n.byteOffset,n.byteOffset+n.byteLength),tileSize:this.tileSize,buffer:this.buffer,pixelFormat:this.pixelFormat,dimension:this.dimension,offset:0!==e.offset?e.offset:e.deprecated_offset,scale:0!==e.scale?e.scale:e.deprecated_scale}}}P_.setPbf=function(e){A_=e};class D_{constructor(e,t,i){this.tasks=e,this._onCancel=t,this._onComplete=i,this._finalized=!1}cancel(){this._finalized||(this._onCancel(),this._finalized=!0)}complete(e,t){this._finalized||(this._onComplete(e,t),this._finalized=!0)}}P_.performDecoding=function(e,t){const l=new Uint8Array(e);return Promise.all(t.tasks.map(e=>{const{layerName:t,firstByte:i,lastByte:r,pixelFormat:u,blockShape:d,blockIndex:p,filters:f,codec:a}=e,n=l.subarray(i,r+1),o=new Uint32Array(d[0]*d[1]*d[2]);let s;if("gzip_data"!==a)throw new E_("Unhandled codec: "+a);return(s=function(e,t){if(!globalThis.DecompressionStream&&"gzip_data"===t)return Promise.resolve(((i=function(e){31==e[0]&&139==e[1]&&8==e[2]||x_(6,"invalid gzip data");var t=e[3],i=10;4&t&&(i+=2+(e[10]|e[11]<<8));for(var r=(t>>3&1)+(t>>4&1);0r.length&&x_(6,"invalid gzip data"),function(e,t,i){var r=e.length;if(!r||t.f&&!t.l)return i||new i_(0);var a=!i,n=a||2!=t.i,o=t.i;a&&(i=new i_(3*r));function s(e){var t=i.length;t>4)<16)w[E++]=S;else{var I=0,A=0;for(16==S?(A=3+g_(e,h,3),h+=2,I=w[E-1]):17==S?(A=3+g_(e,h,7),h+=3):18==S&&(A=11+g_(e,h,127),h+=7);A--;)w[E++]=I}}var g=w.subarray(0,y),C=w.subarray(y),f=__(g),m=__(C),d=p_(g,f),p=p_(C,m)}else x_(1);if(_>4;if((h+=15&I)>_){o&&x_(0);break}if(I||x_(2),z<256)i[u++]=z;else{if(256==z){P=h,d=null;break}var D,R=z-254,z=(264>4;if(z||x_(3),h+=15&z,C=c_[L],3a.length)&&(l=a.length),new i_(a.subarray(0,l))):i.subarray(0,u)}(r.subarray(i,-8),{i:2},new i_(((i=r)[(r=i.length)-4]|i[r-3]<<8|i[r-2]<<16|i[r-1]<<24)>>>0))));var i=T_[t];if(!i)throw new Error("Unhandled codec: "+t);var r=new globalThis.DecompressionStream(i);return new Response(new Blob([e]).stream().pipeThrough(r)).arrayBuffer().then(e=>new Uint8Array(e))}(n,a).then(e=>{var e=new A_(e),t=o;return e.readFields(Km,t),new I_[u](o.buffer)})).then(i=>{for(let e=f.length-1;0<=e;e--)switch(f[e]){case"delta_filter":{r=void 0;a=void 0;n=void 0;o=void 0;s=void 0;l=void 0;c=void 0;var r=i;var a=d;if(4!==a.length)throw new Error(`Expected data of dimension 4 but got ${a.length}.`);let t=a[3];for(let e=2;1<=e;e--){var n=1===e?1:0,o=2===e?1:0;for(let e=0;e>>1^-(1&h[e]);break;case"bitshuffle_filter":!function(t,e){switch(e){case"uint32":return;case"uint16":for(let e=0;e>4|(61440&i)>>8|(240&r)<<4|61440&r,t[e+1]=15&i|(3840&i)>>4|(15&r)<<8|(3840&r)<<4}return;case"uint8":for(let e=0;e>6|(192&n)>>4|(192&o)>>2|192&s,t[e+1]=(48&a)>>4|(48&n)>>2|48&o|(48&s)<<2,t[e+2]=(12&a)>>2|12&n|(12&o)<<2|(12&s)<<4,t[e+3]=3&a|(3&n)<<2|(3&o)<<4|(3&s)<<6}return;default:throw new Error(`Invalid pixel format, "${e}"`)}}(i,u);break;default:throw new E_(`Unhandled filter "${f[e]}"`)}return{layerName:t,blockIndex:p,data:i}}).catch(e=>{throw e})}))},P_.setPbf(Vp);class R_ extends $m{constructor(e,t,i,r,a){super(e,t,i,r,a),this._workQueue=[],this._fetchQueue=[],this._isHeaderLoaded=!1}setTexture(e,t){var i=t.context,r=i.gl;this.texture=this.texture||t.getTileTexture(e.width),this.texture&&this.texture instanceof zm?this.texture.update(e,{useMipmap:!1,premultiply:!1}):this.texture=new zm(i,e,r.RGBA,{useMipmap:!1,premultiply:!1})}flushQueues(){for(;this._workQueue.length;)this._workQueue.pop()();for(;this._fetchQueue.length;)this._fetchQueue.pop()()}fetchHeader(a=16384,n){const o=this._mrt=new P_(30),e=Object.assign({},this.requestParams,{headers:{Range:"bytes=0-"+(a-1)}});return this.entireBuffer=null,this.request=tr(e,(e,t,i,r)=>{if(e)n(e);else try{const e=o.getHeaderLength(t);if(e>a)this.request=this.fetchHeader(e,n);else{o.parseHeader(t),this._isHeaderLoaded=!0;let e=0;for(const a of Object.values(o.layers))e=Math.max(e,a.dataIndex[a.dataIndex.length-1].last_byte);t.byteLength>=e&&(this.entireBuffer=t),n(null,this.entireBuffer||t,i,r)}}catch(e){n(e)}}),this.request}fetchBand(i,a,n){const e=this._mrt;if(this._isHeaderLoaded&&e){const o=this.actor;if(o){let r;const s=(e,t)=>{r.complete(e,t),e?n(e):(this.updateTextureDescriptor(i,a),n(null,this.textureDescriptor&&this.textureDescriptor.img))},l=(e,t)=>{if(e)return n(e);const i=o.send("decodeRasterArray",{buffer:t,task:r},s,void 0,!0);this._workQueue.push(()=>{i&&i.cancel(),r.cancel()})},c=e.getLayer(i);if(c){if(c.hasDataForBand(a))return this.updateTextureDescriptor(i,a),void n(null,this.textureDescriptor?this.textureDescriptor.img:null);var t=c.getDataRange([a]);if(!(r=e.createDecodingTask(t))||r.tasks.length)if(this.flushQueues(),this.entireBuffer)l(null,this.entireBuffer.slice(t.firstByte,t.lastByte+1));else{const i=Object.assign({},this.requestParams,{headers:{Range:`bytes=${t.firstByte}-`+t.lastByte}}),a=tr(i,l);this._fetchQueue.push(()=>{a.cancel(),r.cancel()})}else n(null)}else n(new Error(`Unknown sourceLayer "${i}"`))}else n(new Error("Can't fetch tile band without an actor"))}else n(new Error("Tile header is not ready"))}updateNeeded(e,t){return(!this.textureDescriptor||this.textureDescriptor.band!==t||this.textureDescriptor.layer!==e)&&"errored"!==this.state}updateTextureDescriptor(e,t){if(this._mrt){const i=this._mrt.getLayer(e);if(i&&i.hasBand(t)&&i.hasDataForBand(t)){const{bytes:r,tileSize:a,buffer:n,offset:o,scale:s}=i.getBandView(t),l=a+2*n,c={data:r,width:l,height:l},h=this.texture;h&&h instanceof zm&&h.update(c,{useMipmap:!1,premultiply:!1}),this.textureDescriptor={layer:e,band:t,img:c,buffer:n,offset:o,tileSize:a,format:i.pixelFormat,mix:[s,256*s,65536*s,16777216*s]}}}}}class L_{constructor(e,t){this.max=e,this.onRemove=t,this.reset()}reset(){for(const e in this.data)for(const t of this.data[e])t.timeout&&clearTimeout(t.timeout),this.onRemove(t.value);return this.data={},this.order=[],this}add(e,t,i){var r=e.wrapped().key;void 0===this.data[r]&&(this.data[r]=[]);const a={value:t,timeout:void 0};if(void 0!==i&&(a.timeout=setTimeout(()=>{this.remove(e,a)},i)),this.data[r].push(a),this.order.push(r),this.order.length>this.max){const e=this._getAndRemoveByKey(this.order[0]);e&&this.onRemove(e)}return this}has(e){return e.wrapped().key in this.data}getAndRemove(e){return this.has(e)?this._getAndRemoveByKey(e.wrapped().key):null}_getAndRemoveByKey(e){var t=this.data[e].shift();return t.timeout&&clearTimeout(t.timeout),0===this.data[e].length&&delete this.data[e],this.order.splice(this.order.indexOf(e),1),t.value}getByKey(e){e=this.data[e];return e?e[0].value:null}get(e){return this.has(e)?this.data[e.wrapped().key][0].value:null}remove(e,t){if(!this.has(e))return this;var e=e.wrapped().key,t=void 0===t?0:this.data[e].indexOf(t),i=this.data[e][t];return this.data[e].splice(t,1),i.timeout&&clearTimeout(i.timeout),0===this.data[e].length&&delete this.data[e],this.onRemove(i.value),this.order.splice(this.order.indexOf(e),1),this}setMaxSize(e){for(this.max=e;this.order.length>this.max;){const e=this._getAndRemoveByKey(this.order[0]);e&&this.onRemove(e)}return this}filter(e){const t=[];for(const i in this.data)for(const r of this.data[i])e(r.value)||t.push(r);for(const e of t)this.remove(e.value.tileID,e)}}class k_ extends zr{constructor(e,t,i){super(),this.id=e,this._onlySymbols=i,t.on("data",e=>{"source"===e.dataType&&"metadata"===e.sourceDataType&&(this._sourceLoaded=!0),this._sourceLoaded&&!this._paused&&"source"===e.dataType&&"content"===e.sourceDataType&&(this.reload(),this.transform&&this.update(this.transform))}),t.on("error",()=>{this._sourceErrored=!0}),this._source=t,this._tiles={},this._cache=new L_(0,this._unloadTile.bind(this)),this._timers={},this._cacheTimers={},this._minTileCacheSize=t.minTileCacheSize,this._maxTileCacheSize=t.maxTileCacheSize,this._loadedParentTiles={},this.castsShadows=!1,this.tileCoverLift=0,this._coveredTiles={},this._shadowCasterTiles={},this._state=new Gp,this._isRaster="raster"===this._source.type||"raster-dem"===this._source.type||"raster-array"===this._source.type||"custom"===this._source.type&&"raster"===this._source._dataType}onAdd(e){this.map=e,this._minTileCacheSize=(void 0===this._minTileCacheSize&&e?e:this)._minTileCacheSize,this._maxTileCacheSize=(void 0===this._maxTileCacheSize&&e?e:this)._maxTileCacheSize}loaded(){if(this._sourceErrored)return!0;if(!this._sourceLoaded)return!1;if(!this._source.loaded())return!1;for(const t in this._tiles){var e=this._tiles[t];if("loaded"!==e.state&&"errored"!==e.state)return!1}return!0}getSource(){return this._source}pause(){this._paused=!0}resume(){var e;this._paused&&(e=this._shouldReloadOnResume,this._paused=!1,this._shouldReloadOnResume=!1,e&&this.reload(),this.transform&&this.update(this.transform))}_loadTile(e,t){return e.isSymbolTile=this._onlySymbols,e.isExtraShadowCaster=this._shadowCasterTiles[e.tileID.key],this._source.loadTile(e,t)}_unloadTile(e){if(this._source.unloadTile)return this._source.unloadTile(e)}_abortTile(e){if(this._source.abortTile)return this._source.abortTile(e)}serialize(){return this._source.serialize()}prepare(e){this._source.prepare&&this._source.prepare(),this._state.coalesceChanges(this._tiles,this.map?this.map.painter:null);for(const t in this._tiles){const i=this._tiles[t];i.upload(e),i.prepare(this.map.style.imageManager,this.map?this.map.painter:null,this._source.scope)}}getIds(){return ti(this._tiles).map(e=>e.tileID).sort(O_).map(e=>e.key)}getRenderableIds(e,t){const i=[];for(const r in this._tiles)this._isIdRenderable(+r,e,t)&&i.push(this._tiles[r]);return e?i.sort((e,t)=>{var e=e.tileID,t=t.tileID,i=new G(e.canonical.x,e.canonical.y)._rotate(this.transform.angle),r=new G(t.canonical.x,t.canonical.y)._rotate(this.transform.angle);return e.overscaledZ-t.overscaledZ||r.y-i.y||r.x-i.x}).map(e=>e.tileID.key):i.map(e=>e.tileID).sort(O_).map(e=>e.key)}hasRenderableParent(e){e=this.findLoadedParent(e,0);return!!e&&this._isIdRenderable(e.tileID.key)}_isIdRenderable(e,t,i){return this._tiles[e]&&this._tiles[e].hasData()&&!this._coveredTiles[e]&&(t||!this._tiles[e].holdingForFade())&&(i||!this._shadowCasterTiles[e])}reload(){if(this._paused)this._shouldReloadOnResume=!0;else{this._cache.reset();for(const e in this._tiles)"errored"!==this._tiles[e].state&&this._reloadTile(+e,"reloading")}}_reloadTile(e,t){const i=this._tiles[e];i&&("loading"!==i.state&&(i.state=t),this._loadTile(i,this._tileLoaded.bind(this,i,e,t)))}_tileLoaded(e,t,i,r){if(r){if(e.state="errored",404!==r.status)this._source.fire(new Ar(r,{tile:e}));else if(this._source.fire(new Ir("data",{dataType:"source",sourceDataType:"error",sourceId:this._source.id,tile:e})),e.tileID.key in this._loadedParentTiles)if("raster-dem"===this._source.type&&this.usedForTerrain&&this.map.painter.terrain){const e=this.map.painter.terrain;this.update(this.transform,e.getScaledDemTileSize(),!0),e.resetTileLookupCache(this.id)}else this.update(this.transform)}else e.timeAdded=Ri.now(),"expired"===i&&(e.refreshedUponExpiration=!0),this._setTileReloadTimer(t,e),"raster-dem"===this._source.type&&e.dem&&this._backfillDEM(e),this._state.initializeTileState(e,this.map?this.map.painter:null),this._source.fire(new Ir("data",{dataType:"source",tile:e,coord:e.tileID,sourceCacheId:this.id}))}_backfillDEM(t){const i=this.getRenderableIds();for(let e=0;ee)){let e=i.tileID;for(;i&&i.tileID.overscaledZ>a+1;){const r=i.tileID.scaledTo(i.tileID.overscaledZ-1);(i=this._tiles[r.key])&&i.hasData()&&(e=r)}let t=e;for(;t.overscaledZ>a;)if(r[(t=t.scaledTo(t.overscaledZ-1)).key]){n[e.key]=e;break}}}}findLoadedParent(t,i){var e;if(t.key in this._loadedParentTiles)return(e=this._loadedParentTiles[t.key])&&e.tileID.overscaledZ>=i?e:null;for(let e=t.overscaledZ-1;e>=i;e--){const i=t.scaledTo(e),r=this._getLoadedTile(i);if(r)return r}}_getLoadedTile(e){const t=this._tiles[e.key];return t&&t.hasData()?t:this._cache.getByKey((this._source.reparseOverscaled?e.wrapped():e.canonical).key)}updateCacheSize(e,t){t=t||this._source.tileSize;var i=Math.ceil(e.width/t)+1,e=Math.ceil(e.height/t)+1,t=Math.floor(i*e*5),i="number"==typeof this._minTileCacheSize?Math.max(this._minTileCacheSize,t):t,e="number"==typeof this._maxTileCacheSize?Math.min(this._maxTileCacheSize,i):i;this._cache.setMaxSize(e)}handleWrapJump(e){var t=Math.round((e-(void 0===this._prevLng?e:this._prevLng))/360);if(this._prevLng=e,t){const e={};for(const i in this._tiles){const r=this._tiles[i];r.tileID=r.tileID.unwrapTo(r.tileID.wrap+t),e[r.tileID.key]=r}this._tiles=e;for(const e in this._timers)clearTimeout(this._timers[e]),delete this._timers[e];for(const e in this._tiles)this._setTileReloadTimer(+e,this._tiles[e])}}update(t,i,r,a){if(this.transform=t,this._sourceLoaded&&!this._paused&&!this.transform.freezeTileCoverage&&(!this.usedForTerrain||r)){this.updateCacheSize(t,i),"globe"!==this.transform.projection.name&&this.handleWrapJump(this.transform.center.lng),this._shadowCasterTiles={},this._coveredTiles={};const n="batched-model"===this._source.type;let e;if(this.used||this.usedForTerrain){if(this._source.tileID)e=t.getVisibleUnwrappedCoordinates(this._source.tileID).map(e=>new sc(e.canonical.z,e.wrap,e.canonical.z,e.canonical.x,e.canonical.y));else if(0!==this.tileCoverLift){const a=t.clone();a.tileCoverLift=this.tileCoverLift,e=a.coveringTiles({tileSize:i||this._source.tileSize,minzoom:this._source.minzoom,maxzoom:this._source.maxzoom,roundZoom:this._source.roundZoom&&!r,reparseOverscaled:this._source.reparseOverscaled,isTerrainDEM:this.usedForTerrain,calculateQuadrantVisibility:n}),this._source.minzoom<=1&&"globe"===t.projection.name&&(e.push(new sc(1,0,1,0,0)),e.push(new sc(1,0,1,1,0)),e.push(new sc(1,0,1,0,1)),e.push(new sc(1,0,1,1,1)))}else if(e=t.coveringTiles({tileSize:i||this._source.tileSize,minzoom:this._source.minzoom,maxzoom:this._source.maxzoom,roundZoom:this._source.roundZoom&&!r,reparseOverscaled:this._source.reparseOverscaled,isTerrainDEM:this.usedForTerrain,calculateQuadrantVisibility:n}),this._source.hasTile){const t=this._source.hasTile.bind(this._source);e=e.filter(e=>t(e))}}else e=[];if(0a;){e=e.scaledTo(e.overscaledZ-1);const a=this._tiles[e.key];if(a&&a.hasData()&&i[e.key]){o[t]=r.tileID;break}}}}for(const i in t)o[i]||(this._coveredTiles[i]=!0,o[i]=t[i])}for(const t in o)this._tiles[t].clearFadeHold();const s=function(e,t){const i=[];for(const r in e)r in t||i.push(r);return i}(this._tiles,o);for(const t of s){const i=this._tiles[t];i.hasSymbolBuckets&&!i.holdingForFade()?i.setHoldDuration(this.map._fadeDuration):i.hasSymbolBuckets&&!i.symbolFadeFinished()||this._removeTile(+t)}this._updateLoadedParentTileCache(),this._onlySymbols&&this._source.afterUpdate&&this._source.afterUpdate()}}releaseSymbolFadeTiles(){for(const e in this._tiles)this._tiles[e].holdingForFade()&&this._removeTile(+e)}_updateRetainedTiles(e){const r={};if(0===e.length)return r;const a={},n=e.reduce((e,t)=>Math.min(e,t.overscaledZ),1/0),t=e[0].overscaledZ,o=Math.max(t-k_.maxOverzooming,this._source.minzoom),i=Math.max(t+k_.maxUnderzooming,this._source.minzoom),s={};for(const a of e){const e=this._addTile(a);r[a.key]=a,e.hasData()||n=this._source.maxzoom){const e=n.children(this._source.maxzoom)[0],a=this.getTile(e);if(a&&a.hasData()){r[e.key]=e;continue}}else{const e=n.children(this._source.maxzoom);if(r[e[0].key]&&r[e[1].key]&&r[e[2].key]&&r[e[3].key])continue}let t=i.wasRequested();for(let e=n.overscaledZ-1;e>=o;--e){const o=n.scaledTo(e);if(a[o.key])break;if(a[o.key]=!0,(i=!(i=this.getTile(o))&&t?this._addTile(o):i)&&(r[o.key]=o,t=i.wasRequested(),i.hasData()))break}}}return r}_updateLoadedParentTileCache(){this._loadedParentTiles={};for(const r in this._tiles){const a=[];let e,t=this._tiles[r].tileID;for(;0{this._reloadTile(e,"expired"),delete this._timers[e]},t))}_removeTile(e){const t=this._tiles[e];t&&(t.uses--,delete this._tiles[e],this._timers[e]&&(clearTimeout(this._timers[e]),delete this._timers[e]),0this._tiles[e].tileID),i="globe"===this.transform.projection.name;for(const e of t)e.projMatrix=this.transform.calculateProjMatrix(e.toUnwrapped()),e.expandedProjMatrix=i?this.transform.calculateProjMatrix(e.toUnwrapped(),!1,!0):e.projMatrix;return t}sortCoordinatesByDistance(e){const t=e.slice(),i=this.transform._camera.position,r=this.transform._camera.forward(),a={};for(const e of t){const t=1/(1<a[e.key]-a[t.key]),t}hasTransition(){if(this._source.hasTransition())return!0;if(B_(this._source.type))for(const t in this._tiles){var e=this._tiles[t];if(void 0!==e.fadeEndTime&&e.fadeEndTime>=Ri.now())return!0}return!1}setFeatureState(e,t,i){this._state.updateState(e=e||"_geojsonTileLayer",t,i)}removeFeatureState(e,t,i){this._state.removeFeatureState(e=e||"_geojsonTileLayer",t,i)}getFeatureState(e,t){return this._state.getState(e=e||"_geojsonTileLayer",t)}setDependencies(e,t,i){const r=this._tiles[e];r&&r.setDependencies(t,i)}reloadTilesForDependencies(t,i){for(const e in this._tiles)this._tiles[e].hasDependency(t,i)&&this._reloadTile(+e,"reloading");this._cache.filter(e=>!e.hasDependency(t,i))}_preloadTiles(e,t){if(this._sourceLoaded){const i=new Map,r=Array.isArray(e)?e:[e],a=this.map.painter.terrain,n=this.usedForTerrain&&a?a.getScaledDemTileSize():this._source.tileSize;for(const e of r){const t=e.coveringTiles({tileSize:n,minzoom:this._source.minzoom,maxzoom:this._source.maxzoom,roundZoom:this._source.roundZoom&&!this.usedForTerrain,reparseOverscaled:this._source.reparseOverscaled,isTerrainDEM:this.usedForTerrain});for(const e of t)i.set(e.key,e);this.usedForTerrain&&e.updateElevation(!1)}ei(Array.from(i.values()),(e,t)=>{const i=new $m(e,this._source.tileSize*e.overscaleFactor(),this.transform.tileZoom,this.map.painter,this._isRaster);this._loadTile(i,e=>{"raster-dem"===this._source.type&&i.dem&&this._backfillDEM(i),t(e,i)})},t)}else{const i=()=>{this._sourceLoaded&&(this._source.off("data",i),this._preloadTiles(e,t))};void this._source.on("data",i)}}}function O_(e,t){var i=Math.abs(2*e.wrap)-(e.wrap<0),r=Math.abs(2*t.wrap)-(t.wrap<0);return e.overscaledZ-t.overscaledZ||r-i||t.canonical.y-e.canonical.y||t.canonical.x-e.canonical.x}function B_(e){return"raster"===e||"image"===e||"video"===e||"custom"===e}function F_(e,t){var i=1<C_||(C_={layout:pp=pp||new v({"line-cap":new y(w.layout_line["line-cap"]),"line-join":new y(w.layout_line["line-join"]),"line-miter-limit":new _(w.layout_line["line-miter-limit"]),"line-round-limit":new _(w.layout_line["line-round-limit"]),"line-sort-key":new y(w.layout_line["line-sort-key"]),"line-z-offset":new y(w.layout_line["line-z-offset"]),visibility:new _(w.layout_line.visibility)}),paint:fp=fp||new v({"line-opacity":new y(w.paint_line["line-opacity"]),"line-color":new y(w.paint_line["line-color"]),"line-translate":new _(w.paint_line["line-translate"]),"line-translate-anchor":new _(w.paint_line["line-translate-anchor"]),"line-width":new y(w.paint_line["line-width"]),"line-gap-width":new y(w.paint_line["line-gap-width"]),"line-offset":new y(w.paint_line["line-offset"]),"line-blur":new y(w.paint_line["line-blur"]),"line-dasharray":new y(w.paint_line["line-dasharray"]),"line-pattern":new y(w.paint_line["line-pattern"]),"line-gradient":new is(w.paint_line["line-gradient"]),"line-trim-offset":new _(w.paint_line["line-trim-offset"]),"line-trim-fade-range":new _(w.paint_line["line-trim-fade-range"]),"line-trim-color":new _(w.paint_line["line-trim-color"]),"line-emissive-strength":new _(w.paint_line["line-emissive-strength"]),"line-border-width":new y(w.paint_line["line-border-width"]),"line-border-color":new y(w.paint_line["line-border-color"]),"line-occlusion-opacity":new _(w.paint_line["line-occlusion-opacity"])})});class V_ extends y{possiblyEvaluate(e,t){return t=new I(Math.floor(t.zoom),{now:t.now,fadeDuration:t.fadeDuration,transition:t.transition}),super.possiblyEvaluate(e,t)}evaluate(e,t,i,r){return t=ii({},t,{zoom:Math.floor(t.zoom)}),super.evaluate(e,t,i,r)}}let U_,j_,G_,q_;function $_(e,t){return 0q_||(q_={layout:j_=j_||new v({"symbol-placement":new _(w.layout_symbol["symbol-placement"]),"symbol-spacing":new _(w.layout_symbol["symbol-spacing"]),"symbol-avoid-edges":new _(w.layout_symbol["symbol-avoid-edges"]),"symbol-sort-key":new y(w.layout_symbol["symbol-sort-key"]),"symbol-z-order":new _(w.layout_symbol["symbol-z-order"]),"symbol-z-elevate":new _(w.layout_symbol["symbol-z-elevate"]),"icon-allow-overlap":new _(w.layout_symbol["icon-allow-overlap"]),"icon-ignore-placement":new _(w.layout_symbol["icon-ignore-placement"]),"icon-optional":new _(w.layout_symbol["icon-optional"]),"icon-rotation-alignment":new _(w.layout_symbol["icon-rotation-alignment"]),"icon-size":new y(w.layout_symbol["icon-size"]),"icon-text-fit":new y(w.layout_symbol["icon-text-fit"]),"icon-text-fit-padding":new y(w.layout_symbol["icon-text-fit-padding"]),"icon-image":new y(w.layout_symbol["icon-image"]),"icon-rotate":new y(w.layout_symbol["icon-rotate"]),"icon-padding":new _(w.layout_symbol["icon-padding"]),"icon-keep-upright":new _(w.layout_symbol["icon-keep-upright"]),"icon-offset":new y(w.layout_symbol["icon-offset"]),"icon-anchor":new y(w.layout_symbol["icon-anchor"]),"icon-pitch-alignment":new _(w.layout_symbol["icon-pitch-alignment"]),"text-pitch-alignment":new _(w.layout_symbol["text-pitch-alignment"]),"text-rotation-alignment":new _(w.layout_symbol["text-rotation-alignment"]),"text-field":new y(w.layout_symbol["text-field"]),"text-font":new y(w.layout_symbol["text-font"]),"text-size":new y(w.layout_symbol["text-size"]),"text-max-width":new y(w.layout_symbol["text-max-width"]),"text-line-height":new y(w.layout_symbol["text-line-height"]),"text-letter-spacing":new y(w.layout_symbol["text-letter-spacing"]),"text-justify":new y(w.layout_symbol["text-justify"]),"text-radial-offset":new y(w.layout_symbol["text-radial-offset"]),"text-variable-anchor":new _(w.layout_symbol["text-variable-anchor"]),"text-anchor":new y(w.layout_symbol["text-anchor"]),"text-max-angle":new _(w.layout_symbol["text-max-angle"]),"text-writing-mode":new _(w.layout_symbol["text-writing-mode"]),"text-rotate":new y(w.layout_symbol["text-rotate"]),"text-padding":new _(w.layout_symbol["text-padding"]),"text-keep-upright":new _(w.layout_symbol["text-keep-upright"]),"text-transform":new y(w.layout_symbol["text-transform"]),"text-offset":new y(w.layout_symbol["text-offset"]),"text-allow-overlap":new _(w.layout_symbol["text-allow-overlap"]),"text-ignore-placement":new _(w.layout_symbol["text-ignore-placement"]),"text-optional":new _(w.layout_symbol["text-optional"]),visibility:new _(w.layout_symbol.visibility)}),paint:G_=G_||new v({"icon-opacity":new y(w.paint_symbol["icon-opacity"]),"icon-occlusion-opacity":new y(w.paint_symbol["icon-occlusion-opacity"]),"icon-emissive-strength":new y(w.paint_symbol["icon-emissive-strength"]),"text-emissive-strength":new y(w.paint_symbol["text-emissive-strength"]),"icon-color":new y(w.paint_symbol["icon-color"]),"icon-halo-color":new y(w.paint_symbol["icon-halo-color"]),"icon-halo-width":new y(w.paint_symbol["icon-halo-width"]),"icon-halo-blur":new y(w.paint_symbol["icon-halo-blur"]),"icon-translate":new _(w.paint_symbol["icon-translate"]),"icon-translate-anchor":new _(w.paint_symbol["icon-translate-anchor"]),"icon-image-cross-fade":new y(w.paint_symbol["icon-image-cross-fade"]),"text-opacity":new y(w.paint_symbol["text-opacity"]),"text-occlusion-opacity":new y(w.paint_symbol["text-occlusion-opacity"]),"text-color":new y(w.paint_symbol["text-color"],{runtimeType:qr,getOverride:e=>e.textColor,hasOverride:e=>!!e.textColor}),"text-halo-color":new y(w.paint_symbol["text-halo-color"]),"text-halo-width":new y(w.paint_symbol["text-halo-width"]),"text-halo-blur":new y(w.paint_symbol["text-halo-blur"]),"text-translate":new _(w.paint_symbol["text-translate"]),"text-translate-anchor":new _(w.paint_symbol["text-translate-anchor"]),"icon-color-saturation":new _(w.paint_symbol["icon-color-saturation"]),"icon-color-contrast":new _(w.paint_symbol["icon-color-contrast"]),"icon-color-brightness-min":new _(w.paint_symbol["icon-color-brightness-min"]),"icon-color-brightness-max":new _(w.paint_symbol["icon-color-brightness-max"])})});class H_ extends ys{constructor(e,t,i,r){super(e,W_(),t,i,r),this._colorAdjustmentMatrix=Te.ae.identity([]),this.hasInitialOcclusionOpacityProperties=void 0!==e.paint&&("icon-occlusion-opacity"in e.paint||"text-occlusion-opacity"in e.paint)}recalculate(e,t){super.recalculate(e,t),"auto"===this.layout.get("icon-rotation-alignment")&&(this.layout._values["icon-rotation-alignment"]="point"!==this.layout.get("symbol-placement")?"map":"viewport"),"auto"===this.layout.get("text-rotation-alignment")&&(this.layout._values["text-rotation-alignment"]="point"!==this.layout.get("symbol-placement")?"map":"viewport"),"auto"===this.layout.get("text-pitch-alignment")&&(this.layout._values["text-pitch-alignment"]=this.layout.get("text-rotation-alignment")),"auto"===this.layout.get("icon-pitch-alignment")&&(this.layout._values["icon-pitch-alignment"]=this.layout.get("icon-rotation-alignment"));var i=this.layout.get("text-writing-mode");if(i){const e=[];for(const t of i)e.indexOf(t)<0&&e.push(t);this.layout._values["text-writing-mode"]=e}else this.layout._values["text-writing-mode"]="point"===this.layout.get("symbol-placement")?["horizontal"]:["horizontal","vertical"];this._setPaintOverrides()}getColorAdjustmentMatrix(e,t,i,r){return this._saturation===e&&this._contrast===t&&this._brightnessMin===i&&this._brightnessMax===r||(this._colorAdjustmentMatrix=(o=i,s=r,a=zi(e),n=Pi(t),l=Te.ae.create(),a=[c=1-2*(a/=3),a,a,0,a,c,a,0,a,a,c,0,0,0,0,1],c=.5-.5*n,s-=o,Te.ae.multiply(l,[s,0,0,0,0,s,0,0,0,0,s,0,o,o,o,1],[n,0,0,0,0,n,0,0,0,0,n,0,c,c,c,1]),Te.ae.multiply(l,l,a),l),this._saturation=e,this._contrast=t,this._brightnessMin=i,this._brightnessMax=r),this._colorAdjustmentMatrix;var a,n,o,s,l,c}getValueAndResolveTokens(e,t,i,r){const a=this.layout.get(e).evaluate(t,{},i,r),n=this._unevaluatedLayout._values[e];return n.isDataDriven()||go(n.value)||!a?a:(o=t.properties,a.replace(/{([^{}]+)}/g,(e,t)=>t in o?String(o[t]):""));var o}createBucket(e){return new Pm(e)}queryRadius(){return 0}queryIntersectsFeature(){return!1}_setPaintOverrides(){for(const r of W_().paint.overridableProperties){var e,t,i;H_.hasPaintOverride(this.layout,r)&&(e=this.paint.get(r),t=new Z_(e),t=new _o(t,e.property.specification,this.scope,this.options),i=null,i="constant"===e.value.kind||"source"===e.value.kind?new xo("source",t):new vo("composite",t,e.value.zoomStops,e.value._interpolationType),this.paint._values[r]=new es(e.property,i,e.parameters))}}_handleOverridablePaintPropertyUpdate(e,t,i){return!(!this.layout||t.isDataDriven()||i.isDataDriven())&&H_.hasPaintOverride(this.layout,e)}static hasPaintOverride(t,e){const i=t.get("text-field"),r=W_().paint.properties[e];let a=!1;const n=e=>{for(const t of e)if(r.overrides&&r.overrides.hasOverride(t))return void(a=!0)};if("constant"===i.value.kind&&i.value.value instanceof ra)n(i.value.value.sections);else if("source"===i.value.kind){const t=e=>{a||(e instanceof ca&&sa(e.value)===Wr?n(e.value.sections):e instanceof pa?n(e.sections):e.eachChild(t))},e=i.value;e._styleExpression&&t(e._styleExpression.expression)}return a}getProgramIds(){const e=0!==this.paint.get("icon-opacity").constantOr(1),t=0!==this.paint.get("text-opacity").constantOr(1),i=[];return e&&i.push("symbolIcon"),t&&i.push("symbolSDF"),i}getDefaultProgramParams(e,t,i){return{config:new Fl(this,{zoom:t,lut:i}),overrideFog:!1}}}let X_,Y_,J_,K_;function Q_(e,t,i,r,a,n,o,s){var e=[e,t,1,i,r,1,a,n,1],t=[o,s,1],i=Te.bE.adjoint([],e),[r,a,n]=Te.$.transformMat3(t,t,i);return Te.bE.multiply(e,e,[r,0,0,0,a,0,0,0,n])}function eg(e,t,i,r,a,n,o,s){e=e,t=t,i=i,r=r,a=a,n=n,o=o,s=s,l=Q_(0,0,1,0,1,1,0,1),e=Q_(e,t,i,r,a,n,o,s),t=Te.bE.adjoint([],l);var l,i=Te.bE.multiply(e,e,t);return[i[2]/i[8]/ue,i[5]/i[8]/ue]}function tg(e){return[e[0],Math.min(Math.max(e[1],-yc),yc)]}class ig extends zr{constructor(e,t,i,r){super(),this.id=e,this.dispatcher=i,this.coordinates=t.coordinates,this.type="image",this.minzoom=0,this.maxzoom=22,this.tileSize=512,this.tiles={},this._loaded=!1,this.onNorthPole=!1,this.onSouthPole=!1,this.setEventedParent(r),this.options=t,this._dirty=!1}load(i,e){if(this._loaded=e||!1,this.fire(new Ir("dataloading",{dataType:"source"})),this.url=this.options.url,!this.url)return i&&(this.coordinates=i),this._loaded=!0,void this._finishLoading();this._imageRequest=or(this.map._requestManager.transformRequest(this.url,Ki.Image),(e,t)=>{this._imageRequest=null,this._loaded=!0,e?this.fire(new Ar(e)):t&&(this.image=t instanceof HTMLImageElement?Ri.getImageData(t):t,this._dirty=!0,this.width=this.image.width,this.height=this.image.height,i&&(this.coordinates=i),this._finishLoading())})}loaded(){return this._loaded}updateImage(e){return e.url&&(this._imageRequest&&e.url!==this.options.url&&(this._imageRequest.cancel(),this._imageRequest=null),this.options.url=e.url,this.load(e.coordinates,this._loaded)),this}setTexture(e){if(e.handle instanceof WebGLTexture)return this.texture=new Dm(this.map.painter.context,e.handle),this.width=e.dimensions[0],this.height=e.dimensions[1],this._dirty=!1,this._loaded=!0,this._finishLoading(),this;throw new Error("The provided handle is not a WebGLTexture instance")}_finishLoading(){this.map&&(this.setCoordinates(this.coordinates),this.fire(new Ir("data",{dataType:"source",sourceDataType:"metadata"})))}onAdd(e){this.map=e,this.load()}onRemove(e){this._imageRequest&&(this._imageRequest.cancel(),this._imageRequest=null),!this.texture||this.texture instanceof Dm||this.texture.destroy(),this.boundsBuffer&&(this.boundsBuffer.destroy(),this.elevatedGlobeVertexBuffer&&this.elevatedGlobeVertexBuffer.destroy(),this.elevatedGlobeIndexBuffer&&this.elevatedGlobeIndexBuffer.destroy())}setCoordinates(e){if(this.coordinates=e,this._boundsArray=void 0,this._unsupportedCoords=!1,!e.length)return this;this.onNorthPole=!1,this.onSouthPole=!1;let l=e[0][1],t=e[0][1];for(const i of e)i[1]>t&&(t=i[1]),i[1]yc?this.onNorthPole=!0:i<-yc&&(this.onSouthPole=!0),!this.onNorthPole&&!this.onSouthPole){const l=e.map(Tc.fromLngLat);this.tileID=function(){let e=1/0,t=1/0,i=-1/0,r=-1/0;for(const a of l)e=Math.min(e,a.x),t=Math.min(t,a.y),i=Math.max(i,a.x),r=Math.max(r,a.y);const a=Math.max(i-e,r-t),n=Math.max(0,Math.floor(-Math.log(a)/Math.LN2)),o=Math.pow(2,n);let s=Math.floor((e+i)/2*o);return 1{e=g.projection.project(e[0],e[1]);return Qf(g,e)._round()}),w=(this.perspectiveTransform=eg(y.x,y.y,x.x,x.y,v.x,v.y,b.x,b.y),this._boundsArray=new Es),T=(w.emplaceBack(y.x,y.y,0,0),w.emplaceBack(x.x,x.y,ue,0),w.emplaceBack(b.x,b.y,0,ue),w.emplaceBack(v.x,v.y,ue,ue),this.boundsBuffer&&(this.boundsBuffer.destroy(),this.elevatedGlobeVertexBuffer&&this.elevatedGlobeVertexBuffer.destroy(),this.elevatedGlobeIndexBuffer&&this.elevatedGlobeIndexBuffer.destroy()),this.boundsBuffer=t.createVertexBuffer(w,Fm.members),this.boundsSegments=R.simpleSegment(0,0,4,2),[]),E=[tg((c=this.coordinates)[0]),tg(c[1]),tg(c[2]),tg(c[3])],[S,M,I,A]=function(t){let i=t[0][0],r=i,a=t[0][1],n=a;for(let e=1;er&&(r=t[e][0]),t[e][1]n&&(n=t[e][1]);return[i,a,r-i,n-a]}(E);{const g=new Es,[y,x,v,b]=function(t){let i=t[0].x,r=i,a=t[0].y,n=a;for(let e=1;er&&(r=t[e].x),t[e].yn&&(n=t[e].y);return[i,a,r-i,n-a]}(_),w=e=>[(e.x-y)/v,(e.y-x)/b],[E,C,P,z]=_.map(w),D=(e=E[0],i=E[1],r=C[0],a=C[1],n=P[0],o=P[1],s=z[0],l=z[1],c=Q_(0,0,1,0,1,1,0,1),e=Q_(e,i,r,a,n,o,s,l),i=Te.bE.adjoint([],e),Te.bE.multiply(c,c,i));this.elevatedGlobePerspectiveTransform=eg(E[0],E[1],C[0],C[1],P[0],P[1],z[0],z[1]);var h=(e,t)=>{T.push(e.lng);var i=Math.round((e.lng-S)/I*ue),e=Math.round((e.lat-M)/A*ue),t=w(t),t=Te.$.transformMat3([],[t[0],t[1],1],D),r=Math.round(t[0]/t[2]*ue),t=Math.round(t[1]/t[2]*ue);g.emplaceBack(i,e,r,t)},u=_[3].x-_[0].x,d=_[3].y-_[0].y,p=_[2].x-_[1].x,f=_[2].y-_[1].y;for(let e=0;e<65;e++){const t=e/64,g=[_[0].x+t*u,_[0].y+t*d],y=[_[1].x+t*p,_[1].y+t*f],x=y[0]-g[0],v=y[1]-g[1];for(let e=0;e<65;e++){const t=e/64,_={x:g[0]+x*t,y:g[1]+v*t,z:0};h(m.projection.unproject(_.x,_.y),_)}}this.elevatedGlobeVertexBuffer=t.createVertexBuffer(g,Fm.members)}{this.maxLongitudeTriangleSize=0;let a=[],n=new Vs;const _=(e,t,i)=>{n.emplaceBack(e,t,i);var e=T[e],t=T[t],i=T[i],r=Math.min(Math.min(e,t),i),e=Math.max(Math.max(e,t),i)-r;e>this.maxLongitudeTriangleSize&&(this.maxLongitudeTriangleSize=e),a.push(r+e/2)};for(let t=0;t<64;t++)for(let e=0;e<64;e++){const m=65*t+e,g=m+1,y=m+65,x=y+1;_(m,y,g),_(g,y,x)}[a,n]=function(i,t){const r=Array.from({length:i.length},(e,t)=>t),a=(r.sort((e,t)=>i[e]-i[t]),[]),n=new Vs;for(let e=0;e{a.segments.push({vertexOffset:0,primitiveOffset:e,vertexLength:i.segments[0].vertexLength,primitiveLength:t,sortKey:void 0,vaos:{}})},o=.51*this.maxLongitudeTriangleSize;if(Math.abs(t[0]-r)<=o){const e=Ci(t,0,t.length,r+o);return e!==t.length&&n(e,Ai(t,e+1,t.length,r+360-o)-e),a}r{var r=Te.$.length(e),a=Te.$.length(t),e=hh(e,t,i);return Te.$.scale(e,e,1/Te.$.length(e)*b(r,a,i))})([(e=l)[0],e[1],e[2]],[a[0],a[1],a[2]],n),o=r([e[4],e[5],e[6]],[a[4],a[5],a[6]],n),r=r([e[8],e[9],e[10]],[a[8],a[9],a[10]],n),e=hh([e[12],e[13],e[14]],[a[12],a[13],a[14]],n),[t[0],t[1],t[2],0,o[0],o[1],o[2],0,r[0],r[1],r[2],0,e[0],e[1],e[2],1]}return l}function bg(e,t,i,r){const a=A.projectAabbCorners(r,i);let n=Number.MAX_VALUE,o=-1;for(let e=0;enew G(a[e][0],a[e][1]);let l;switch(o){case 0:case 6:l=[s(1),s(5),s(4),s(7),s(3),s(2),s(1)];break;case 1:case 7:l=[s(0),s(4),s(5),s(6),s(2),s(3),s(0)];break;case 3:case 5:l=[s(1),s(0),s(4),s(7),s(6),s(2),s(1)];break;default:l=[s(1),s(5),s(6),s(7),s(3),s(0),s(1)]}if(Rc(e,l))return n}const wg=E([{name:"a_pos_3f",components:3,type:"Float32"}]),Tg=E([{name:"a_color_3f",components:3,type:"Float32"}]),Eg=E([{name:"a_color_4f",components:4,type:"Float32"}]),Sg=E([{name:"a_uv_2f",components:2,type:"Float32"}]),Mg=E([{name:"a_normal_3f",components:3,type:"Float32"}]),Ig=E([{name:"a_normal_matrix0",components:4,type:"Float32"},{name:"a_normal_matrix1",components:4,type:"Float32"},{name:"a_normal_matrix2",components:4,type:"Float32"},{name:"a_normal_matrix3",components:4,type:"Float32"}]),Ag=E([{name:"a_pbr",components:4,type:"Uint16"},{name:"a_heightBasedEmissiveStrength",components:3,type:"Float32"}]);class Cg{constructor(e,t,i,r){this.message=(e?e+": ":"")+i,r&&(this.identifier=r),null!=t&&t.__line__&&(this.line=t.__line__)}}function Pg(e,t){var i=-1===e.indexOf("://");try{return new URL(e,i&&t?"http://example.com":void 0),1}catch(e){return}}class zg{constructor(e,t){this.feature=e,this.instancedDataOffset=t,this.instancedDataCount=0,this.rotation=[0,0,0],this.scale=[1,1,1],this.translation=[0,0,0]}}class Dg{constructor(){this.instancedDataArray=new Xs,this.instancesEvaluatedElevation=[],this.features=[],this.idToFeaturesIndex={}}}class Rg{constructor(e){this.zoom=e.zoom,this.canonical=e.canonical,this.layers=e.layers,this.layerIds=this.layers.map(e=>e.fqid),this.projection=e.projection,this.index=e.index,this.hasZoomDependentProperties=this.layers[0].isZoomDependent(),this.stateDependentLayerIds=this.layers.filter(e=>e.isStateDependent()).map(e=>e.id),this.hasPattern=!1,this.instancesPerModel={},this.validForExaggeration=0,this.maxVerticalOffset=0,this.maxScale=0,this.maxHeight=0,this.lookupDim=this.zoom>this.canonical.z?256:15ue?e-ue:e;var h=Math.floor(e),u=d.float32[1+c];let t=!1;for(const a of this.activeReplacements)if(!Zu(a,n,fd.Model,o)&&!(a.min.x>h||h>a.max.x||a.min.y>u||u>a.max.y)&&(t=ed(Qu(h,u,r.canonical,a.footprintTileId.canonical),a),t))break;d.float32[c]=t?e+ue:e,l=l||t}}}return l}isEmpty(){for(const e in this.instancesPerModel)if(0!==this.instancesPerModel[e].instancedDataArray.length)return!1;return!0}uploadPending(){return!this.uploaded}upload(e){if(!this.uploaded)for(const t in this.instancesPerModel){const i=this.instancesPerModel[t];i.instancedDataArray.length<0||0===i.instancedDataArray.length||(i.instancedDataBuffer?i.instancedDataBuffer.updateData(i.instancedDataArray):i.instancedDataBuffer=e.createVertexBuffer(i.instancedDataArray,Ig.members,!0,void 0,this.instanceCount))}this.uploaded=!0}destroy(){for(const e in this.instancesPerModel){const t=this.instancesPerModel[e];0!==t.instancedDataArray.length&&t.instancedDataBuffer&&t.instancedDataBuffer.destroy()}const e=this.layers[0].modelManager;if(e&&this.modelUris)for(const i of this.modelUris)e.removeModel(i,"")}addFeature(e,t,i){const r=this.layers[0],a=r.layout.get("model-id").evaluate(i,{},this.canonical);if(!a)return fi(`modelId is not evaluated for layer ${r.id} and it is not going to get rendered.`),a;Pg(a,!1)&&!this.modelUris.includes(a)&&this.modelUris.push(a),this.instancesPerModel[a]||(this.instancesPerModel[a]=new Dg);const n=this.instancesPerModel[a],o=n.instancedDataArray,s=new zg(i,o.length);for(const e of t)for(const t of e)if(!(t.x<0||t.x>=ue||t.y<0||t.y>=ue)){const e=(this.lookupDim-1)/ue,i=this.lookupDim*(t.y*e|0)+t.x*e|0;if(this.lookup){if(0!==this.lookup[i])continue;this.lookup[i]=1}this.instanceCount++;const r=o.length;o.resize(r+1),n.instancesEvaluatedElevation.push(0),o.float32[16*r]=t.x,o.float32[16*r+1]=t.y}return s.instancedDataCount=n.instancedDataArray.length-s.instancedDataOffset,0e.dotProductWithUp-t.dotProductWithUp),r[0].corners}(i,r),o=i[a[0]],s=i[a[1]],l=i[a[2]],i=i[a[3]],a=n.getAtPointOrZero(new Tc(o[0]/t.worldSize,o[1]/t.worldSize),0),c=n.getAtPointOrZero(new Tc(s[0]/t.worldSize,s[1]/t.worldSize),0),h=n.getAtPointOrZero(new Tc(l[0]/t.worldSize,l[1]/t.worldSize),0),t=n.getAtPointOrZero(new Tc(i[0]/t.worldSize,i[1]/t.worldSize),0),u=(a+t)/2,d=(c+h)/2;return d=t.gl.NEAREST_MIPMAP_NEAREST}),e.uploaded=!0,e.image=null)}function Ng(e,t,i){if(e.meshes)for(const o of e.meshes)r=o,a=t,n=i,r.indexBuffer=a.createIndexBuffer(r.indexArray,!1,!0),r.vertexBuffer=a.createVertexBuffer(r.vertexArray,wg.members,!1,!0),r.normalArray&&(r.normalBuffer=a.createVertexBuffer(r.normalArray,Mg.members,!1,!0)),r.texcoordArray&&(r.texcoordBuffer=a.createVertexBuffer(r.texcoordArray,Sg.members,!1,!0)),r.colorArray&&(r.colorBuffer=a.createVertexBuffer(r.colorArray,(12===r.colorArray.bytesPerElement?Tg:Eg).members,!1,!0)),r.featureArray&&(r.pbrBuffer=a.createVertexBuffer(r.featureArray,Ag.members,!0)),r.segments=R.simpleSegment(0,0,r.vertexArray.length,r.indexArray.length),(r=r.material).pbrMetallicRoughness.baseColorTexture&&Fg(r.pbrMetallicRoughness.baseColorTexture,a),r.pbrMetallicRoughness.metallicRoughnessTexture&&Fg(r.pbrMetallicRoughness.metallicRoughnessTexture,a),r.normalTexture&&Fg(r.normalTexture,a),r.occlusionTexture&&Fg(r.occlusionTexture,a,n),r.emissionTexture&&Fg(r.emissionTexture,a);var r,a,n;if(e.children)for(const s of e.children)Ng(s,t,i)}function Vg(e){if(e.meshes)for(const t of e.meshes)t.indexArray.destroy(),t.vertexArray.destroy(),t.colorArray&&t.colorArray.destroy(),t.normalArray&&t.normalArray.destroy(),t.texcoordArray&&t.texcoordArray.destroy(),t.featureArray&&t.featureArray.destroy();if(e.children)for(const i of e.children)Vg(i)}function Ug(e){if(e.meshes)for(const i of e.meshes)i.vertexBuffer&&(i.vertexBuffer.destroy(),i.indexBuffer.destroy(),i.normalBuffer&&i.normalBuffer.destroy(),i.texcoordBuffer&&i.texcoordBuffer.destroy(),i.colorBuffer&&i.colorBuffer.destroy(),i.pbrBuffer&&i.pbrBuffer.destroy(),i.segments.destroy(),i.material&&((t=i.material).pbrMetallicRoughness.baseColorTexture&&t.pbrMetallicRoughness.baseColorTexture.gfxTexture&&t.pbrMetallicRoughness.baseColorTexture.gfxTexture.destroy(),t.pbrMetallicRoughness.metallicRoughnessTexture&&t.pbrMetallicRoughness.metallicRoughnessTexture.gfxTexture&&t.pbrMetallicRoughness.metallicRoughnessTexture.gfxTexture.destroy(),t.normalTexture&&t.normalTexture.gfxTexture&&t.normalTexture.gfxTexture.destroy(),t.emissionTexture&&t.emissionTexture.gfxTexture&&t.emissionTexture.gfxTexture.destroy(),t.occlusionTexture&&t.occlusionTexture.gfxTexture&&t.occlusionTexture.gfxTexture.destroy()));var t;if(e.children)for(const t of e.children)Ug(t)}class jg{constructor(e){this._callback=e,this._triggered=!1,"undefined"!=typeof MessageChannel&&(this._channel=new MessageChannel,this._channel.port2.onmessage=()=>{this._triggered=!1,this._callback()})}trigger(){this._triggered||(this._triggered=!0,this._channel?this._channel.port1.postMessage(!0):setTimeout(()=>{this._triggered=!1,this._callback()},0))}remove(){this._channel=void 0,this._callback=()=>{}}}class Gg{constructor(){this.tasks={},this.taskQueue=[],li(["process"],this),this.invoker=new jg(this.process),this.nextId=0}add(e,t){const i=this.nextId++,r=({type:a,isSymbolTile:n,zoom:o}=[t][0],o=o||0,"message"===a?0:"maybePrepare"!==a||n?"parseTile"!==a||n?"parseTile"===a&&n?300-o:"maybePrepare"===a&&n?400-o:500:200-o:100-o);var a,n,o;return 0==r?(e(),null):(this.tasks[i]={fn:e,metadata:t,priority:r,id:i},this.taskQueue.push(i),this.invoker.trigger(),{cancel:()=>{delete this.tasks[i]}})}process(){{if(this.taskQueue=this.taskQueue.filter(e=>!!this.tasks[e]),!this.taskQueue.length)return;var e=this.pick();if(null===e)return;const t=this.tasks[e];if(delete this.tasks[e],this.taskQueue.length&&this.invoker.trigger(),!t)return;t.fn()}}pick(){let t=null,i=1/0;for(let e=0;e{i&&delete this.callbacks[o],this.target.postMessage({id:o,type:"",targetMapId:r,sourceMapId:this.mapId})}}}receive(e){const t=e.data,i=t.id;if(i&&(!t.targetMapId||this.mapId===t.targetMapId))if(""===t.type){const e=this.cancelCallbacks[i];delete this.cancelCallbacks[i],e&&e.cancel()}else if(t.mustQueue||gi()){const e=this.callbacks[i],r=this.scheduler.add(()=>this.processTask(i,t),e&&e.metadata||{type:"message"});r&&(this.cancelCallbacks[i]=r)}else this.processTask(i,t)}processTask(i,e){if(delete this.cancelCallbacks[i],""===e.type){const t=this.callbacks[i];delete this.callbacks[i],t&&(e.error?t(Po(e.error)):t(null,Po(e.data)))}else{const r=new Set,a=e.hasCallback?(e,t)=>{this.target.postMessage({id:i,type:"",sourceMapId:this.mapId,error:e?Co(e):null,data:Co(t,r)},r)}:e=>{},n=Po(e.data);if(this.parent[e.type])this.parent[e.type](e.sourceMapId,n,a);else if(this.parent.getWorkerSource){const i=e.type.split(".");this.parent.getWorkerSource(e.sourceMapId,i[0],n.source,n.scope)[i[1]](n,a)}else a(new Error("Could not find function "+e.type))}}remove(){this.scheduler.remove(),this.target.removeEventListener("message",this.receive,!1)}}class $g{constructor(e,t){this.workerPool=e,this.actors=[],this.currentActor=0,this.id=ri++;var i=this.workerPool.acquire(this.id);for(let e=0;e{this.ready=!0})}broadcast(i,r,e){ei(this.actors,(e,t)=>{e.send(i,r,t)},e=e||function(){})}getActor(){return this.currentActor=(this.currentActor+1)%this.actors.length,this.actors[this.currentActor]}remove(){this.actors.forEach(e=>{e.remove()}),this.actors=[],this.workerPool.release(this.id)}}$g.Actor=qg;var Zg={workerUrl:"",workerClass:null,workerParams:void 0};function Wg(){return null!=Zg.workerClass?new Zg.workerClass:new self.Worker(Zg.workerUrl,Zg.workerParams)}const Hg="mapboxgl_preloaded_worker_pool";class Xg{constructor(){this.active={}}acquire(e){if(!this.workers)for(this.workers=[];this.workers.length{e.terminate()}),this.workers=null)}isPreloaded(){return!!this.active[Hg]}numActive(){return Object.keys(this.active).length}}let Yg;function Jg(){return Yg=Yg||new Xg}Xg.workerCount=2;let Kg,Qg,ey,ty,iy,ry=null;function ay(){return gi()&&self.worker&&self.worker.dracoUrl?self.worker.dracoUrl:Qg||o.DRACO_URL}function ny(){if(gi()&&self.worker&&self.worker.meshoptUrl)return self.worker.meshoptUrl;if(ty)return ty;var e=new Uint8Array([0,97,115,109,1,0,0,0,1,4,1,96,0,0,3,3,2,0,0,5,3,1,0,1,12,1,0,10,22,2,12,0,65,0,65,0,65,0,252,10,0,0,11,7,0,65,0,253,15,26,11]);if("object"!=typeof WebAssembly)throw new Error("WebAssembly not supported, cannot instantiate meshoptimizer");return ty=WebAssembly.validate(e)?o.MESHOPT_SIMD_URL:o.MESHOPT_URL}const oy={5120:Int8Array,5121:Uint8Array,5122:Int16Array,5123:Uint16Array,5125:Uint32Array,5126:Float32Array},sy={5120:"DT_INT8",5121:"DT_UINT8",5122:"DT_INT16",5123:"DT_UINT16",5125:"DT_UINT32",5126:"DT_FLOAT32"},ly={SCALAR:1,VEC2:2,VEC3:3,VEC4:4,MAT2:4,MAT3:9,MAT4:16};function cy(e,t,i){var r=i.json.bufferViews.length,a=i.buffers.length;t.bufferView=r,i.json.bufferViews[r]={buffer:a,byteLength:e.byteLength},i.buffers[a]=e}const hy="KHR_draco_mesh_compression";const uy="EXT_meshopt_compression";const dy=1179937895,py=new TextDecoder("utf8");function fy(e,t){return new URL(e,t).href}function my(e,t){t=e.json.bufferViews[t];return new Uint8Array(e.buffers[t.buffer],t.byteOffset||0,t.byteLength)}function _y(t,e=0,i){const v={json:null,images:[],buffers:[]};if(new Uint32Array(t,e,1)[0]===dy){const i=new Uint32Array(t,e);var r=2;const n=(i[r++]>>2)-3,b=i[r++]>>2;if(r++,v.json=JSON.parse(py.decode(i.subarray(5,5+b))),(r+=b)e.arrayBuffer()).then(e=>{t.buffers[i]=e})}(n,v,e,i)):v.buffers[e]||(v.buffers[e]=null)}s=Promise.all(t)}return s.then(()=>{const t=[],y=o&&o.includes(hy),x=o&&o.includes(uy);if(y&&t.push(function(){if(!ey)return Kg||(Kg=function(e){let w,T=null;function E(){w=new Uint8Array(T.buffer)}function t(){throw new Error("Unexpected Draco error.")}const i={a:{a:t,d:function(e,t,i){return w.copyWithin(e,t,t+i)},c:function(e){var t=w.length,i=Math.max(e>>>0,Math.ceil(1.2*t)),i=Math.ceil((i-t)/65536);try{return T.grow(i),E(),!0}catch(e){return!1}},b:t}};return(WebAssembly.instantiateStreaming?WebAssembly.instantiateStreaming(e,i):e.then(e=>e.arrayBuffer()).then(e=>WebAssembly.instantiate(e,i))).then(e=>{const{Rb:s,Qb:l,P:t,T:i,X:r,Ja:a,La:n,Qa:o,Va:c,Wa:h,eb:u,jb:d,f:p,e:f,yb:m,zb:_,Ab:g,Bb:y,Db:x,Gb:v}=e.instance.exports,b=(T=f,(()=>{let r=0,a=0,n=0,o=0;return t=>{n&&(s(o),s(r),a+=n,n=r=0),r||(a+=128,r=l(a));var e=t.length+7&-8;let i=r;e>=a&&(n=e,i=o=l(e));for(let e=0;e{ey=e,Kg=void 0})}()),x&&t.push(function(){if(!iy){const e=function(e){let d;const t=WebAssembly.instantiateStreaming(e,{}).then(e=>{(d=e.instance).exports.__wasm_call_ctors()}),p={NONE:"",OCTAHEDRAL:"meshopt_decodeFilterOct",QUATERNION:"meshopt_decodeFilterQuat",EXPONENTIAL:"meshopt_decodeFilterExp"},f={ATTRIBUTES:"meshopt_decodeVertexBuffer",TRIANGLES:"meshopt_decodeIndexBuffer",INDICES:"meshopt_decodeIndexSequence"};return{ready:t,supported:!0,decodeGltfBuffer(e,t,i,r,a,n){{var o=d;a=d.exports[f[a]],n=d.exports[p[n]];const s=o.exports.sbrk,l=t+3&-4,c=s(l*i),h=s(r.length),u=new Uint8Array(o.exports.memory.buffer);if(u.set(r,h),0===(o=a(c,t,i,h,r.length))&&n&&n(c,l,i),e.set(u.subarray(c,c+t*i)),s(c-s(0)),0!==o)throw new Error("Malformed buffer data: "+o);return}}}}(fetch(ny()));return e.ready.then(()=>{iy=e})}}()),n)for(let e=0;ee.blob()).then(e=>createImageBitmap(e)).then(e=>{t.images[i]=e});if(void 0!==e.bufferView){const r=my(t,e.bufferView),a=new Blob([r],{type:e.mimeType});return createImageBitmap(a).then(e=>{t.images[i]=e})}}(n[e],v,e,i));return(t.length?Promise.all(t):Promise.resolve()).then(()=>{if(y&&b)for(var{primitives:e}of b)for(const y of e){t=void 0;i=void 0;r=void 0;var t=y;var i=v;var r=t.extensions&&t.extensions[hy];if(r){const c=new ey.Decoder,h=my(i,r.bufferView),u=new ey.Mesh;if(!c.DecodeArrayToMesh(h,h.byteLength,u))throw new Error("Failed to decode Draco mesh");const d=i.json.accessors[t.indices],p=oy[d.componentType],f=d.count*p.BYTES_PER_ELEMENT,m=ey._malloc(f);p===Uint16Array?c.GetTrianglesUInt16Array(u,f,m):c.GetTrianglesUInt32Array(u,f,m),cy(ey.memory.buffer.slice(m,m+f),d,i),ey._free(m);for(const h of Object.keys(r.attributes)){const d=c.GetAttributeByUniqueId(u,r.attributes[h]),p=i.json.accessors[t.attributes[h]],f=sy[p.componentType],m=p.count*ly[p.type]*oy[p.componentType].BYTES_PER_ELEMENT,_=ey._malloc(m);c.GetAttributeDataArrayForAllPoints(u,d,ey[f],m,_),cy(ey.memory.buffer.slice(_,_+m),p,i),ey._free(_)}c.destroy(),u.destroy(),delete t.extensions[hy]}}if(x&&b&&w)for(const g of w)a=g,n=v,o=void 0,s=void 0,l=void 0,a.extensions&&a.extensions[uy]&&(o=a.extensions[uy],s=new Uint8Array(n.buffers[o.buffer],o.byteOffset||0,o.byteLength||0),l=new Uint8Array(o.count*o.byteStride),iy.decodeGltfBuffer(l,o.count,o.byteStride,s,o.mode,o.filter),a.buffer=n.buffers.length,a.byteOffset=0,n.buffers[a.buffer]=l.buffer,delete a.extensions[uy]);var a,n,o,s,l;return v})})}function gy(e,t){const i=e.json.bufferViews[t.bufferView],r=oy[t.componentType];return new r(e.buffers[i.buffer],(t.byteOffset||0)+(i.byteOffset||0),t.count*(i.byteStride&&i.byteStride!==ly[t.type]*r.BYTES_PER_ELEMENT?i.byteStride/r.BYTES_PER_ELEMENT:ly[t.type]))}function yy(e,r,t,a){const i=oy[r.componentType],n=function(){switch(i){case Int8Array:return 1/127;case Uint8Array:return 1/255;case Int16Array:return 1/32767;case Uint16Array:return 1/65535;default:return 1}}(),o=e.json.bufferViews[r.bufferView],s=o.byteStride?o.byteStride/i.BYTES_PER_ELEMENT:ly[r.type],l=t.float32,c=l.length/t.capacity;for(let t=0,i=0;t[e.x,e.y]),[]);return 0===n.length?null:{vertices:r,indices:n}}(_))&&(m.footprint=function(e){if(0===e.vertices.length||0===e.indices.length)return null;const t=new bu(e.vertices,e.indices,8,256),[i,r]=[t.min.clone(),t.max.clone()];return{vertices:e.vertices,indices:e.indices,grid:t,min:i,max:r}}(e))}}if(0e-t);for(let e=c.length-1;0<=e;e--)l.splice(c[e],1)}}return s}const vy=new Float32Array(262144),by=new Uint8Array(262144);const wy=["","wall","door","roof","window","lamp","logo"];class Ty{constructor(e){this.node=e,this.evaluatedRMEA=[[1,0,0,1],[1,0,0,1],[1,0,0,1],[1,0,0,1],[.4,1,0,1],[1,0,0,1],[1,0,0,1]],this.hiddenByReplacement=!1,this.evaluatedScale=[1,1,1],this.evaluatedColor=[],this.emissionHeightBasedParams=[],this.feature={type:"Point",id:e.id,geometry:[],properties:{height:function e(t){let i=0;if(t.meshes)for(const r of t.meshes)i=Math.max(i,r.aabb.max[2]);if(t.children)for(const a of t.children)i=Math.max(i,e(a));return i}(e)}},this.aabb=this._getLocalBounds()}_getLocalBounds(){if(!this.node.meshes)return new A([1/0,1/0,1/0],[-1/0,-1/0,-1/0]);if(!this.aabb){let e=0;const t=new A([1/0,1/0,1/0],[-1/0,-1/0,-1/0]);for(const i of this.node.meshes)this.node.lightMeshIndex!==e&&(i.transformedAabb=A.applyTransformFast(i.aabb,this.node.matrix),t.encapsulate(i.transformedAabb)),e++;this.aabb=t}return this.aabb}}class Ey{constructor(e,t,i,r,a,n){this.id=t,this.modelTraits|=Og.CoordinateSpaceTile,this.uploaded=!1,this.hasPattern=!1,i&&(this.modelTraits|=Og.HasMapboxMeshFeatures),r&&(this.modelTraits|=Og.HasMeshoptCompression),this.zoom=-1,this.terrainExaggeration=1,this.projection={name:"mercator"},this.replacementUpdateTime=0,this.elevationReadFromZ=255,this.brightness=a,this.dirty=!0,this.needsUpload=!1,this.nodesInfo=[];for(const t of e)this.nodesInfo.push(new Ty(t)),function e(t,i,r){if(t.meshes)for(const a of t.meshes)a.aabb.min[0]!==1/0&&r.insert(i,a.aabb.min[0],a.aabb.min[1],a.aabb.max[0],a.aabb.max[1]);if(t.children)for(const n of t.children)e(n,i,r)}(t,n.featureIndexArray.length,n.grid),n.featureIndexArray.emplaceBack(this.nodesInfo.length-1,0,n.bucketLayerIDs.length-1,0)}updateFootprints(e,t){for(const r of this.getNodesInfo()){var i=r.node;i.footprint&&t.push({footprint:i.footprint,id:e})}}update(){console.log("Update 3D model bucket")}populate(){console.log("populate 3D model bucket")}uploadPending(){return!this.uploaded||this.needsUpload}upload(e){if(this.needsUpload){const t=this.getNodesInfo();for(const i of t){const t=i.node;this.uploaded?this.updatePbrBuffer(t):Ng(t,e,!0)}for(const e of t)Vg(e.node);this.uploaded=!0,this.needsUpload=!1}}updatePbrBuffer(e){let t=!1;if(!e.meshes)return t;for(const i of e.meshes)i.pbrBuffer&&(i.pbrBuffer.updateData(i.featureArray),t=!0);return t}needsReEvaluation(e,t,i){var r=e.transform.projectionOptions,e=e.style.getBrightness(),a=this.brightness!==e;return!!(!this.uploaded||this.dirty||r.name!==this.projection.name||Sy(i.paint.get("model-color").value,a)||Sy(i.paint.get("model-color-mix-intensity").value,a)||Sy(i.paint.get("model-roughness").value,a)||Sy(i.paint.get("model-emissive-strength").value,a)||Sy(i.paint.get("model-height-based-emissive-strength-multiplier").value,a))&&(this.projection=r,this.brightness=e,!0)}evaluateScale(e,t){if(e.transform.zoom!==this.zoom){this.zoom=e.transform.zoom;const i=this.getNodesInfo(),r=this.id.canonical;for(const e of i){const i=e.feature;e.evaluatedScale=t.paint.get("model-scale").evaluate(i,{},r)}}}evaluate(t){const i=this.getNodesInfo();for(const h of i)if(h.node.meshes){const i=h.feature,e=h.node.meshes&&h.node.meshes[0].featureData,u=h.evaluatedColor[2],d=h.evaluatedRMEA[2],p=this.id.canonical;if(h.hasTranslucentParts=!1,e){for(let e=0;e>16&65535,f=c?o>>16&65535:65535&o,m=(15&f)<8?15&f:0,_=n.evaluatedRMEA[m],g=n.evaluatedColor[m],y=n.emissionHeightBasedParams[m];let t;if(i&&2==m&&l.lights&&(t=new Ys).resize(10*l.lights.length),function(t,e,i,r,a,n,o,s){let l=(61440&e|(61440&e)>>4)>>8,c=(3840&e|(3840&e)>>4)>>4,h=240&e|(240&e)>>4;0=l||(p=vy[p],(d=Math.abs(p))>r&&(i=p,r=d,a=e,n=t))}if(.1e.footprint===t.footprint)}}}getHeightAtTileCoord(t,i){const r=this.getNodesInfo(),a=[],n=[0,0,0],o=Te.ae.identity([]);for(let e=0;eh.max[0]||i>h.max[1])){if(!0===l.node.hidden)return{height:0,maxHeight:l.feature.properties.height,hidden:!1,verticalScale:l.evaluatedScale[2]};Te.ae.invert(o,l.node.matrix),n[0]=t,n[1]=i,Te.$.transformMat4(n,n,o);var s=(n[0]-c.aabb.min[0])/(c.aabb.max[0]-c.aabb.min[0])*64|0,s=64*Math.min(63,(n[1]-c.aabb.min[1])/(c.aabb.max[1]-c.aabb.min[1])*64|0)+Math.min(63,s),s=c.heightmap[s];if(!(s<0&&l.node.footprint))return l.hiddenByReplacement?void 0:{height:s,maxHeight:l.feature.properties.height,hidden:!1,verticalScale:l.evaluatedScale[2]};if(l.node.footprint.grid.query(new G(t,i),new G(t,i),a),0{e[0]=t,e[1]=i,e[2]=r,e[3]=1},w=Nd();0e.polygon).flat():r,u,h,c,o,_,d,f,n.center.lat,e.tileID.canonical),x=e.queryGeometry;{var v=g,b=y,w=x.isPointQuery()?x.screenBounds:x.screenGeometry;let t=1/0;Lc(w,b)&&(t=qd(w,b[0]));for(let e=0;e{if(U_)return U_;var e=N_();return(U_=new V_(e.paint.properties["line-width"].specification)).useIntegerZoom=!0,U_})().possiblyEvaluate(this._transitioningPaint._values["line-width"].value,e)}createBucket(e){return new up(e)}getProgramIds(){return[this.paint.get("line-pattern").constantOr(1)?"linePattern":"line"]}getDefaultProgramParams(e,t,i){var r=yp(this);return{config:new Fl(this,{zoom:t,lut:i}),defines:r,overrideFog:!1}}queryRadius(e){var t=$_(Gc("line-width",this,e),Gc("line-gap-width",this,e)),e=Gc("line-offset",this,e);return t/2+Math.abs(e)+qc(this.paint.get("line-translate"))}queryIntersectsFeature(e,t,i,r,a,n){if(e.queryGeometry.isAboveHorizon)return!1;var n=$c(e.tilespaceGeometry,this.paint.get("line-translate"),this.paint.get("line-translate-anchor"),n.angle,e.pixelToTileUnitsFactor),o=e.pixelToTileUnitsFactor/2*$_(this.paint.get("line-width").evaluate(t,i),this.paint.get("line-gap-width").evaluate(t,i)),t=this.paint.get("line-offset").evaluate(t,i),s=(t&&(r=function(t,i){const r=[],a=new G(0,0);for(let e=0;ed&&Py(i,r,n,o);ed;)t--}r[2*n+s]===d?Py(i,r,n,t):Py(i,r,++t,o),t<=a&&(n=t+1),a<=t&&(o=t-1)}}function Py(e,t,i,r){zy(e,i,r),zy(t,2*i,2*r),zy(t,2*i+1,2*r+1)}function zy(e,t,i){var r=e[t];e[t]=e[i],e[i]=r}function Dy(e,t,i,r){e-=i,i=t-r;return e*e+i*i}Te.A=vn,Te.B=wn,Te.C=g,Te.D=xn,Te.E=zr,Te.F=va,Te.H=ns,Te.I=Nm,Te.J=lo,Te.K=no,Te.L=function(e){var t=e.value;let i=[];if(!t)return i;var r=ma(t);return"string"!==r?i=i.concat([new Cg(e.key,t,`string expected, "${r}" found`)]):Pg(t,!0)||(i=i.concat([new Cg(e.key,t,`invalid url "${t}"`)])),i},Te.M=class{constructor(e,t,i,r){this.id=e,this.position=null!=t?new M(t[0],t[1]):new M(0,0),this.orientation=null!=i?i:[0,0,0],this.nodes=r,this.uploaded=!1,this.aabb=new A([1/0,1/0,1/0],[-1/0,-1/0,-1/0]),this.matrix=[]}_applyTransformations(e,t){if(Te.ae.multiply(e.matrix,t,e.matrix),e.meshes)for(const Te of e.meshes){const t=A.applyTransformFast(Te.aabb,e.matrix);this.aabb.encapsulate(t)}if(e.children)for(const Te of e.children)this._applyTransformations(Te,e.matrix)}computeBoundsAndApplyParent(){var e=Te.ae.identity([]);for(const Te of this.nodes)this._applyTransformations(Te,e)}computeModelMatrix(e,t,i,r,a,n,o=!1){Bg(this.matrix,this,e.transform,this.position,t,i,r,a,n,o)}upload(e){if(!this.uploaded){for(const t of this.nodes)Ng(t,e);for(const e of this.nodes)Vg(e);this.uploaded=!0}}destroy(){for(const e of this.nodes)Ug(e)}},Te.N=w,Te.O=Yo,Te.P=G,Te.Q=ii,Te.R=Ki,Te.S=Js,Te.T=zm,Te.U=v,Te.V=Cg,Te.W=_,Te.X=class{constructor(e){this.specification=e}possiblyEvaluate(e,t){return _i(e.expression.evaluate(t))}interpolate(e,t,i){return{x:b(e.x,t.x,i),y:b(e.y,t.y,i),z:b(e.z,t.z,i),azimuthal:b(e.azimuthal,t.azimuthal,i),polar:b(e.polar,t.polar,i)}}},Te.Y=I,Te.Z=vo,Te._=Tc,Te.a=jm,Te.a$=class jy{constructor(e,t,i,r,a){this.TL=e,this.TR=t,this.BR=i,this.BL=r,this.horizon=a}static fromInvProjectionMatrix(e,t,i){var r=[-1,1,1],a=[1,1,1],n=[1,-1,1],o=[-1,-1,1],r=Te.$.transformMat4(r,r,e),a=Te.$.transformMat4(a,a,e),n=Te.$.transformMat4(n,n,e),o=Te.$.transformMat4(o,o,e);return new jy(r,a,n,o,t/i)}},Te.a0=Kt,Te.a1=ts,Te.a2=Eh,Te.a3=b,Te.a4=ue,Te.a5=Fr,Te.a6=class{constructor(e){this.specification=e}possiblyEvaluate(e,t){var[e,t]=e.expression.evaluate(t);return{x:(e=_i([1,e,t])).x,y:e.y,z:e.z}}interpolate(e,t,i){return{x:b(e.x,t.x,i),y:b(e.y,t.y,i),z:b(e.z,t.z,i)}}},Te.a7=Al,Te.a8=bl,Te.a9=Tl,Te.aA=function(e,t,i){e[4*t+0]=i[0],e[4*t+1]=i[1],e[4*t+2]=i[2],e[4*t+3]=i[3]},Te.aC=function(e,t){var{x:i,y:r}=e.point,i=Th(i,r,e.worldSize/e._pixelsPerMercatorPixel,0,0);return Te.ae.multiply(i,i,vh(ch(t)))},Te.aE=Jp,Te.aF=nf,Te.aG=Yp,Te.aH=function(e,t,i,r,a){t=5*t+2;e.float32[t]=i,e.float32[1+t]=r,e.float32[2+t]=a},Te.aI=Mm,Te.aJ=M,Te.aK=vm,Te.aL=oc,Te.aM=class Gy{constructor(e,t){this.points=e||new Array(8).fill([0,0,0]),this.planes=t||new Array(6).fill([0,0,0,0]),this.bounds=A.fromPoints(this.points),this.projections=[],this.frustumEdges=[Te.$.sub([],this.points[2],this.points[3]),Te.$.sub([],this.points[0],this.points[3]),Te.$.sub([],this.points[4],this.points[0]),Te.$.sub([],this.points[5],this.points[1]),Te.$.sub([],this.points[6],this.points[2]),Te.$.sub([],this.points[7],this.points[3])];for(const Te of this.frustumEdges){const e=[0,-Te[2],Te[1]],t=[Te[2],0,-Te[0]];this.projections.push({axis:e,projection:Yc(this.points,this.points[0],e)}),this.projections.push({axis:t,projection:Yc(this.points,this.points[0],t)})}}static fromInvProjectionMatrix(i,r,e,a){const n=Math.pow(2,e),o=[[-1,1,-1,1],[1,1,-1,1],[1,-1,-1,1],[-1,-1,-1,1],[-1,1,1,1],[1,1,1,1],[1,-1,1,1],[-1,-1,1,1]].map(e=>{var t=1/(e=Te.aB.transformMat4([],e,i))[3]/r*n;return Te.aB.mul(e,e,[t,t,a?1/e[3]:t,t])}),t=[[0,1,2],[6,5,4],[0,3,7],[2,1,5],[3,2,6],[0,4,5]].map(e=>{const t=Te.$.sub([],o[e[0]],o[e[1]]),i=Te.$.sub([],o[e[2]],o[e[1]]),r=Te.$.normalize([],Te.$.cross([],t,i)),a=-Te.$.dot(r,o[e[1]]);return r.concat(a)}),s=[];for(let e=0;er[1]||r[0]>a[1]))return 0}return 1}containsPoint(e){for(const i of this.planes){var t=i[3];if(Te.$.dot([i[0],i[1],i[2]],e)+t<0)return!1}return!0}},Te.aN=pg,Te.aO=nc,Te.aP=ph,Te.aQ=sc,Te.aR=function(e,t,i,r,a,n,o,s,l){if("globe"===l.name)return ph(e,t,new nc(i,r,a),!1);e=Kf({z:i,x:r,y:a},l);return new A([(n+e.x/e.scale)*t,t*(e.y/e.scale),o],[(n+e.x2/e.scale)*t,t*(e.y2/e.scale),s])},Te.aS=function(t,i,e){let r=0;for(let e=0;e<2;++e)0Fi&&(e.getActor().send("enforceCacheSizeLimit",Bi),qi=0)},Te.ao=mr,Te.ap=class{constructor(e){this.entries={},this.scheduler=e}request(i,r,e,t){const a=this.entries[i]=this.entries[i]||{callbacks:[]};if(a.result){const[i,e]=a.result;return this.scheduler?this.scheduler.add(()=>{t(i,e)},r):t(i,e),()=>{}}return a.callbacks.push(t),a.cancel||(a.cancel=e((e,t)=>{a.result=[e,t];for(const i of a.callbacks)this.scheduler?this.scheduler.add(()=>{i(e,t)},r):i(e,t);setTimeout(()=>delete this.entries[i],3e3)})),()=>{a.result||(a.callbacks=a.callbacks.filter(e=>e!==t),a.callbacks.length||(a.cancel(),delete this.entries[i]))}}},Te.aq=function(t,e,n){var i=JSON.stringify(t.request);return t.data&&(this.deduped.entries[i]={result:[null,t.data]}),this.deduped.request(i,{type:"parseTile",isSymbolTile:t.isSymbolTile,zoom:t.tileZoom},a=>{const e=tr(t.request,(e,t,i,r)=>{e?a(e):t&&a(null,{vectorTile:n?void 0:new Nu(new Vp(t)),rawData:t,cacheControl:i,expires:r})});return()=>{e.cancel(),a()}},e)},Te.ar=El,Te.as=class extends vl{constructor(e){super(e),this.current=Cl}set(e,t,i){if(this.fetchUniformLocation(e,t))for(let e=0;e<9;e++)if(i[e]!==this.current[e]){this.current=i,this.gl.uniformMatrix3fv(this.location,!1,i);break}}},Te.at=Sl,Te.au=S,Te.av=Qt,Te.ax=Ii,Te.ay=fc,Te.az=_c,Te.b=R,Te.b$=i,Te.b0=function(e){var{x:t,y:i}=e.point,{lng:r,lat:a}=e._center;return Th(t,i,e.worldSize,r,a)},Te.b1=Ht,Te.b2=lc,Te.b3=$l,Te.b4=function(e){e=Math.round((e+45+360)%360/90)%4;return Xt[e]},Te.b5=45,Te.b6=uc,Te.b7=wc,Te.b8=A,Te.b9=_i,Te.bA=$m,Te.bB=Uh,Te.bC=function(e,t){return[Math.pow(e[0],2.2)*t,Math.pow(e[1],2.2)*t,Math.pow(e[2],2.2)*t]},Te.bD=mp,Te.bF=wh,Te.bG=zi,Te.bH=Pi,Te.bI=256,Te.bJ=function(e,t){var i=[0,0,0],t=xh(ch(t.canonical));return Te.$.transformMat4(i,i,t),Te.$.transformMat4(i,i,e),i},Te.bK=e=>({u_camera_to_center_distance:new wl(e),u_extrude_scale:new zl(e),u_device_pixel_ratio:new wl(e),u_matrix:new Al(e),u_inv_rot_matrix:new Al(e),u_merc_center:new Tl(e),u_tile_id:new El(e),u_zoom_transition:new wl(e),u_up_dir:new El(e),u_emissive_strength:new wl(e)}),Te.bL=e=>({u_matrix:new Al(e),u_pixels_to_tile_units:new zl(e),u_device_pixel_ratio:new wl(e),u_units_to_pixels:new Tl(e),u_dash_image:new bl(e),u_gradient_image:new bl(e),u_image_height:new wl(e),u_texsize:new Tl(e),u_tile_units_to_pixels:new wl(e),u_alpha_discard_threshold:new wl(e),u_trim_offset:new Tl(e),u_trim_fade_range:new Tl(e),u_trim_color:new Sl(e),u_emissive_strength:new wl(e)}),Te.bM=e=>({u_matrix:new Al(e),u_texsize:new Tl(e),u_pixels_to_tile_units:new zl(e),u_device_pixel_ratio:new wl(e),u_image:new bl(e),u_units_to_pixels:new Tl(e),u_tile_units_to_pixels:new wl(e),u_alpha_discard_threshold:new wl(e),u_trim_offset:new Tl(e)}),Te.bN=Fs,Te.bO=op,Te.bP=Wp,Te.bQ=t,Te.bR=jf,Te.bS=ff,Te.bT=zh,Te.bU=(e,t,i,r,a,n)=>{const o=e.transform,s="globe"===o.projection.name;let l;if("map"===n.paint.get("circle-pitch-alignment"))if(s){const e=wh(o.zoom,t.canonical)*o._pixelsPerMercatorPixel;l=Float32Array.from([e,0,0,e])}else l=o.calculatePixelsToTileUnitsMatrix(i);else l=new Float32Array([o.pixelsToGLUnits[0],0,0,o.pixelsToGLUnits[1]]);const c={u_camera_to_center_distance:e.transform.getCameraToCenterDistance(o.projection),u_matrix:e.translatePosMatrix(t.projMatrix,i,n.paint.get("circle-translate"),n.paint.get("circle-translate-anchor")),u_device_pixel_ratio:Ri.devicePixelRatio,u_extrude_scale:l,u_inv_rot_matrix:Ph,u_merc_center:[0,0],u_tile_id:[0,0,0],u_zoom_transition:0,u_up_dir:[0,0,0],u_emissive_strength:n.paint.get("circle-emissive-strength")};if(s){c.u_inv_rot_matrix=r,c.u_merc_center=a,c.u_tile_id=[t.canonical.x,t.canonical.y,1<{const o=e.transform;return{u_matrix:gp(e,t,i,r),u_texsize:t.imageAtlasTexture?t.imageAtlasTexture.size:[0,0],u_pixels_to_tile_units:o.calculatePixelsToTileUnitsMatrix(t),u_device_pixel_ratio:a,u_image:0,u_tile_units_to_pixels:_p(t,o),u_units_to_pixels:[1/o.pixelsToGLUnits[0],1/o.pixelsToGLUnits[1]],u_alpha_discard_threshold:0,u_trim_offset:n}},Te.bX=(e,t,i,r,a,n,o)=>{const s=e.transform,l=s.calculatePixelsToTileUnitsMatrix(t);return{u_matrix:gp(e,t,i,r),u_pixels_to_tile_units:l,u_device_pixel_ratio:n,u_units_to_pixels:[1/s.pixelsToGLUnits[0],1/s.pixelsToGLUnits[1]],u_dash_image:0,u_gradient_image:1,u_image_height:a,u_texsize:xp(i)&&t.lineAtlasTexture?t.lineAtlasTexture.size:[0,0],u_tile_units_to_pixels:_p(t,e.transform),u_alpha_discard_threshold:0,u_trim_offset:o,u_trim_fade_range:i.paint.get("line-trim-fade-range"),u_trim_color:i.paint.get("line-trim-color").toRenderColor(i.lut).toArray01(),u_emissive_strength:i.paint.get("line-emissive-strength")}},Te.bY=oi,Te.bZ=Zh,Te.b_=Nd,Te.ba=function(e){return[Math.pow(e[0],1/2.2),Math.pow(e[1],1/2.2),Math.pow(e[2],1/2.2)]},Te.bb=Yt,Te.bc=function(e,t,i){var i=Eh(i.zoom),r=e.style.map._antialias,t=t.options.extStandardDerivativesForceOff||e.terrain&&0{}}},Te.bq=Dm,Te.br=li,Te.bs=class{isDataAvailableAtPoint(e){const t=this._source();if(this.isUsingMockSource()||!t||e.y<0||1{var t=this.getAtTileOffset(r,e.x,e.y),e=o.upVector(r.canonical,e.x,e.y),i=o.upVectorScale(r.canonical,a,n).metersToTile;return Te.$.scale(e,e,t*i),e}}getForTilePoints(e,t,i,r){if(this.isUsingMockSource())return!1;const a=pd.create(this,e,r);return!!a&&(t.forEach(e=>{e[2]=this.exaggeration()*a.getElevationAt(e[0],e[1],i)}),!0)}getMinMaxForTile(t){if(this.isUsingMockSource())return null;var e=this.findDEMTileFor(t);if(!e||!e.dem)return null;var i=e.dem.tree,r=e.tileID,e=1<>4))throw new Error(`Got v${t} data when expected v1.`);if(!(t=Ay[15&i]))throw new Error("Unrecognized array type.");var[i]=new Uint16Array(e,2,1),[r]=new Uint32Array(e,4,1);return new qy(r,i,t,e)}constructor(e,t=64,i=Float64Array,r){if(isNaN(e)||e<0)throw new Error(`Unpexpected numItems value: ${e}.`);this.numItems=+e,this.nodeSize=Math.min(Math.max(+t,2),65535),this.ArrayType=i,this.IndexArrayType=e<65536?Uint16Array:Uint32Array;var a=Ay.indexOf(this.ArrayType),n=2*e*this.ArrayType.BYTES_PER_ELEMENT,o=e*this.IndexArrayType.BYTES_PER_ELEMENT,s=(8-o%8)%8;if(a<0)throw new Error(`Unexpected typed array class: ${i}.`);r&&r instanceof ArrayBuffer?(this.data=r,this.ids=new this.IndexArrayType(this.data,8,e),this.coords=new this.ArrayType(this.data,8+o+s,2*e),this._pos=2*e,this._finished=!0):(this.data=new ArrayBuffer(8+n+o+s),this.ids=new this.IndexArrayType(this.data,8,e),this.coords=new this.ArrayType(this.data,8+o+s,2*e),this._pos=0,this._finished=!1,new Uint8Array(this.data,0,2).set([219,16+a]),new Uint16Array(this.data,2,1)[0]=t,new Uint32Array(this.data,4,1)[0]=e)}add(e,t){var i=this._pos>>1;return this.ids[i]=i,this.coords[this._pos++]=e,this.coords[this._pos++]=t,i}finish(){var e=this._pos>>1;if(e!==this.numItems)throw new Error(`Added ${e} items when expected ${this.numItems}.`);return function e(t,i,r,a,n,o){if(!(n-a<=r)){const s=a+n>>1;Cy(t,i,s,a,n,o),e(t,i,r,a,s-1,1-o),e(t,i,r,1+s,n,1-o)}}(this.ids,this.coords,this.nodeSize,0,this.numItems-1,0),this._finished=!0,this}range(t,i,r,a){if(!this._finished)throw new Error("Data not yet indexed - call index.finish().");const{ids:n,coords:o,nodeSize:e}=this,s=[0,n.length-1,0],l=[];for(;s.length;){var c=s.pop()||0,h=s.pop()||0,u=s.pop()||0;if(h-u<=e)for(let e=u;e<=h;e++){const s=o[2*e],m=o[2*e+1];s>=t&&s<=r&&i<=m&&m<=a&&l.push(n[e])}else{var d=u+h>>1,p=o[2*d],f=o[2*d+1];t<=p&&p<=r&&i<=f&&f<=a&&l.push(n[d]),(0===c?t<=p:i<=f)&&(s.push(u),s.push(d-1),s.push(1-c)),(0===c?p<=r:f<=a)&&(s.push(1+d),s.push(h),s.push(1-c))}}return l}within(t,i,e){if(!this._finished)throw new Error("Data not yet indexed - call index.finish().");const{ids:r,coords:a,nodeSize:n}=this,o=[0,r.length-1,0],s=[],l=e*e;for(;o.length;){var c=o.pop()||0,h=o.pop()||0,u=o.pop()||0;if(h-u<=n)for(let e=u;e<=h;e++)Dy(a[2*e],a[2*e+1],t,i)<=l&&s.push(r[e]);else{var d=u+h>>1,p=a[2*d],f=a[2*d+1];Dy(p,f,t,i)<=l&&s.push(r[d]),(0===c?t-e<=p:i-e<=f)&&(o.push(u),o.push(d-1),o.push(1-c)),(0===c?p<=t+e:f<=i+e)&&(o.push(1+d),o.push(h),o.push(1-c))}}return s}},Te.cO=function(e){return e({pluginStatus:Vo,pluginURL:Uo}),Zo.on("pluginStateChange",e),e},Te.cP=Rf,Te.cQ=Df,Te.cR=ir,Te.cS=jo,Te.cT=k,Te.cU=ki,Te.cV=Mr,Te.cW=di,Te.cX=function(e){var t=e.indexOf("");return 0<=t?e.slice(0,t):e},Te.cY=function(e){return 0<=e.indexOf("")},Te.cZ=function(e){var t=e.indexOf("");return 0<=t?e.slice(t+1):""},Te.c_=function(e){const t=[],i=e.id;return void 0===i&&t.push({message:`layers.${i}: missing required property "id"`}),void 0===e.render&&t.push({message:`layers.${i}: missing required method "render"`}),e.renderingMode&&"2d"!==e.renderingMode&&"3d"!==e.renderingMode&&t.push({message:`layers.${i}: property "renderingMode" must be either "2d" or "3d"`}),t},Te.ca=As,Te.cb=qs,Te.cc=1,Te.cd=771,Te.ce=0,Te.cf=$s,Te.cg=function(e,t,i,r,a){return S((e-t)/(i-t)*(a-r)+r,r,a)},Te.ch=Xn,Te.ci=vc,Te.cj=class{constructor(e,t,i,r){this.context=e,this.format=r,this.size=i,this.texture=e.gl.createTexture();const[a,n,o]=this.size,s=e["gl"];s.bindTexture(s.TEXTURE_3D,this.texture),e.pixelStoreUnpackFlipY.set(!1),e.pixelStoreUnpack.set(1),e.pixelStoreUnpackPremultiplyAlpha.set(!1);let l=this.format,c=s.UNSIGNED_BYTE;this.format===s.DEPTH_COMPONENT&&(l=s.DEPTH_COMPONENT16,c=s.UNSIGNED_SHORT),this.format===s.R8&&(r=s.RED),this.format===s.R32F&&(c=s.FLOAT,r=s.RED),s.texImage3D(s.TEXTURE_3D,0,l,a,n,o,0,r,c,t.data)}bind(e,t){const i=this["context"],r=i["gl"];r.bindTexture(r.TEXTURE_3D,this.texture),e!==this.minFilter&&(r.texParameteri(r.TEXTURE_3D,r.TEXTURE_MAG_FILTER,e),r.texParameteri(r.TEXTURE_3D,r.TEXTURE_MIN_FILTER,e),this.minFilter=e),t!==this.wrapS&&(r.texParameteri(r.TEXTURE_3D,r.TEXTURE_WRAP_S,t),r.texParameteri(r.TEXTURE_3D,r.TEXTURE_WRAP_T,t),this.wrapS=t)}destroy(){const e=this.context["gl"];e.deleteTexture(this.texture),this.texture=null}},Te.ck=vg,Te.cl=[1,1,1],Te.cm=pd,Te.cn=Og,Te.co=ks,Te.cp=class{constructor(){this._updateTime=0,this._sourceIds=[],this._activeRegions=[],this._prevRegions=[],this._globalClipBounds={min:new G(1/0,1/0),max:new G(-1/0,-1/0)}}clear(){0({getSourceId:()=>r.cache.id,getFootprints:()=>{var e=[];for(const t of r.cache.getVisibleCoordinates()){const i=r.cache.getTile(t).buckets[r.layer];i&&i.updateFootprints(t.toUnwrapped(),e)}return e},getOrder:()=>r.order,getClipMask:()=>r.clipMask,getClipScope:()=>r.clipScope})))}_addSource(e){const t=e.getFootprints();if(0!==t.length){var i=e.getOrder(),r=e.getClipMask(),a=e.getClipScope();for(const e of t)if(e.footprint){const t=Ju(e.footprint.min,e.footprint.max,e.id);this._activeRegions.push({min:t.min,max:t.max,hiddenByOverlap:!1,priority:this._sourceIds.length,tileId:e.id,footprint:e.footprint,order:i,clipMask:r,clipScope:a})}this._sourceIds.push(e.getSourceId())}}_computeReplacement(){this._activeRegions.sort((e,t)=>e.priority-t.priority||Wu(e.min,t.min)||Wu(e.max,t.max)||e.order-t.order||e.clipMask-t.clipMask||function(e,t){var i=(e,t)=>e+t;return e.length-t.length||e.reduce(i,"").localeCompare(t.reduce(i,""))}(e.clipScope,t.clipScope));let r=this._activeRegions.length!==this._prevRegions.length;if(!r){let e=0;for(;!r&&e!==this._activeRegions.length;){var t=this._activeRegions[e],i=this._prevRegions[e];r=t.priority!==i.priority||!Hu(t,i)||t.order!==i.order||t.clipMask!==i.clipMask||!$t(t.clipScope,i.clipScope),++e}}if(r){++this._updateTime;for(const r of this._activeRegions)r.order!==$u&&(this._globalClipBounds.min.x=Math.min(this._globalClipBounds.min.x,r.min.x),this._globalClipBounds.min.y=Math.min(this._globalClipBounds.min.y,r.min.y),this._globalClipBounds.max.x=Math.max(this._globalClipBounds.max.x,r.max.x),this._globalClipBounds.max.y=Math.max(this._globalClipBounds.max.y,r.max.y));const r=e=>{var t=this._activeRegions;if(e>=t.length)return e;for(var i=t[e].priority;enew G((e.x+o.x*ue)*l-s.x*ue,(e.y+o.y*ue)*l-s.y*ue))}return Ku(r,n,t.indices,0,t.indices.length,0,0)}(r.footprint,r.tileId,n.footprint,n.tileId),r.hiddenByOverlap))break}++e}i=r(t=i)}}}}_setSources(t){[this._prevRegions,this._activeRegions]=[this._activeRegions,[]],this._sourceIds=[];for(let e=t.length-1;0<=e;e--)this._addSource(t[e]);this._computeReplacement()}},Te.cq=Es,Te.cr=Fm,Te.cs=Ws,Te.ct=class{constructor(e){this._createGrid(e),this._createPoles(e)}destroy(){this._poleIndexBuffer.destroy(),this._gridBuffer.destroy(),this._gridIndexBuffer.destroy(),this._poleNorthVertexBuffer.destroy(),this._poleSouthVertexBuffer.destroy();for(const e of this._poleSegments)e.destroy();for(const t of this._gridSegments)t.withSkirts.destroy(),t.withoutSkirts.destroy()}_fillGridMeshWithLods(e,i){const r=new ws,a=new Vs,n=[],o=e+1+2,s=i[0]+1,l=i[0]+1+(1+i.length),c=(e,t,i)=>{e=e===o-1?e-2:0===e?e:e-1;return[e+=i?24575:0,t]};for(let e=0;ee())}},Te.dE=Zg,Te.dF=ay,Te.dG=function(e){Qg=Ri.resolveURL(e),(ry=ry||new $g(Jg(),new zr)).broadcast("setDracoUrl",Qg)},Te.dH=ny,Te.dI=function(e){ty=Ri.resolveURL(e),(ry=ry||new $g(Jg(),new zr)).broadcast("setMeshoptUrl",ty)},Te.dJ=ti,Te.dK=m,Te.dL=Nh,Te.dM=zf,Te.dN=Kf,Te.dO=el,Te.dP=vp,Te.dQ=qp,Te.dR=sp,Te.dS=hi,Te.dT=If,Te.dU=Pm,Te.dV=function(r,a,n,o,s,l,c,h,u,d,p){r.createArrays(),r.tilePixelRatio=ue/(512*r.overscaling),r.compareText={},r.iconsNeedLinear=!1;const f=r.layers[0].layout,m=r.layers[0]._unevaluatedLayout._values,_={};if("composite"===r.textSizeData.kind){const{minZoom:a,maxZoom:n}=r.textSizeData;_.compositeTextSizes=[m["text-size"].possiblyEvaluate(new I(a),h),m["text-size"].possiblyEvaluate(new I(n),h)]}if("composite"===r.iconSizeData.kind){const{minZoom:a,maxZoom:n}=r.iconSizeData;_.compositeIconSizes=[m["icon-size"].possiblyEvaluate(new I(a),h),m["icon-size"].possiblyEvaluate(new I(n),h)]}_.layoutTextSize=m["text-size"].possiblyEvaluate(new I(u+1),h),_.layoutIconSize=m["icon-size"].possiblyEvaluate(new I(u+1),h),_.textMaxSize=m["text-size"].possiblyEvaluate(new I(18),h);const g="map"===f.get("text-rotation-alignment")&&"point"!==f.get("symbol-placement"),y=f.get("text-size");let x=!1;for(const a of r.features)if(a.icon&&a.icon.nameSecondary){x=!0;break}for(const l of r.features){const u=f.get("text-font").evaluate(l,{},h).join(","),m=y.evaluate(l,{},h),b=_.layoutTextSize.evaluate(l,{},h),w=(_.layoutIconSize.evaluate(l,{},h),{horizontal:{},vertical:void 0}),T=l.text;let e,i=[0,0];if(T){const o=T.toString(),c=f.get("text-letter-spacing").evaluate(l,{},h)*Wp,d=f.get("text-line-height").evaluate(l,{},h)*Wp,p=Do(o)?c:0,_=f.get("text-anchor").evaluate(l,{},h),y=f.get("text-variable-anchor");if(!y){const r=f.get("text-radial-offset").evaluate(l,{},h);i=r?jf(_,[r*Wp,Vf]):f.get("text-offset").evaluate(l,{},h).map(e=>e*Wp)}let e=g?"center":f.get("text-justify").evaluate(l,{},h);const E="point"===f.get("symbol-placement"),S=E?f.get("text-max-width").evaluate(l,{},h)*Wp:1/0,M=e=>{r.allowVerticalPlacement&&zo(o)&&(w.vertical=lf(T,a,n,s,u,S,d,_,e,p,i,nf.vertical,!0,b,m))};if(!g&&y){const r="auto"===e?y.map(e=>Gf(e)):[e];let t=!1;for(let e=0;ethis._skuTokenExpiresAt}transformRequest(e,t){return this._transformRequestFn&&this._transformRequestFn(e,t)||{url:e}}normalizeStyleURL(e,t){if(!k(e))return e;const i=cr(e);return i.params.push("sdk=js-"+P),i.path="/styles/v1"+i.path,this._makeAPIURL(i,this._customAccessToken||t)}normalizeGlyphsURL(e,t){if(!k(e))return e;const i=cr(e);return i.path="/fonts/v1"+i.path,this._makeAPIURL(i,this._customAccessToken||t)}normalizeModelURL(e,t){if(!k(e))return e;const i=cr(e);return i.path="/models/v1"+i.path,this._makeAPIURL(i,this._customAccessToken||t)}normalizeSourceURL(e,t,i,r){if(!k(e))return e;const a=cr(e);return a.path=`/v4/${a.authority}.json`,a.params.push("secure"),i&&a.params.push("language="+i),r&&a.params.push("worldview="+r),this._makeAPIURL(a,this._customAccessToken||t)}normalizeSpriteURL(e,t,i,r){const a=cr(e);return k(e)?(a.path=`/styles/v1${a.path}/sprite`+t+i,this._makeAPIURL(a,this._customAccessToken||r)):(a.path+=""+t+i,hr(a))}normalizeTileURL(e,t,i){if(this._isSkuTokenExpired()&&this._createSkuToken(),e&&!k(e))return e;const r=cr(e);r.path=r.path.replace(/(\.(png|jpg)\d*)(?=$)/,(t||i&&"raster"!==r.authority&&512===i?"@2x":"")+($i.supported?".webp":"$1")),"raster"===r.authority?r.path="/"+o.RASTER_URL_PREFIX+r.path:"rasterarrays"===r.authority?r.path="/"+o.RASTERARRAYS_URL_PREFIX+r.path:"3dtiles"===r.authority?r.path="/"+o.TILES3D_URL_PREFIX+r.path:(r.path=r.path.replace(/^.+\/v4\//,"/"),r.path="/"+o.TILE_URL_VERSION+r.path);e=this._customAccessToken||function(e){for(const t of e){const e=t.match(/^access_token=(.*)$/);if(e)return e[1]}return null}(r.params)||o.ACCESS_TOKEN;return o.REQUIRE_ACCESS_TOKEN&&e&&this._skuToken&&r.params.push("sku="+this._skuToken),this._makeAPIURL(r,e)}canonicalizeTileURL(e,t){const i=cr(e);if(!i.path.match(/^(\/v4\/|\/(raster|rasterarrays)\/v1\/)/)||!i.path.match(/\.[\w]+$/))return e;let r="mapbox://",a=(i.path.match(/^\/raster\/v1\//)?r+="raster/"+i.path.replace(`/${o.RASTER_URL_PREFIX}/`,""):i.path.match(/^\/rasterarrays\/v1\//)?r+="rasterarrays/"+i.path.replace(`/${o.RASTERARRAYS_URL_PREFIX}/`,""):r+="tiles/"+i.path.replace(`/${o.TILE_URL_VERSION}/`,""),i.params);return(a=t?a.filter(e=>!e.match(/^access_token=/)):a).length&&(r+="?"+a.join("&")),r}canonicalizeTileset(e,t){const i=!!t&&k(t),r=[];for(const t of e.tiles||[])L(t)?r.push(this.canonicalizeTileURL(t,i)):r.push(t);return r}_makeAPIURL(e,t){var i="See https://docs.mapbox.com/api/overview/#access-tokens-and-token-scopes",r=cr(o.API_URL);if(e.protocol=r.protocol,e.authority=r.authority,"http"===e.protocol){const t=e.params.indexOf("secure");0<=t&&e.params.splice(t,1)}if("/"!==r.path&&(e.path=""+r.path+e.path),!o.REQUIRE_ACCESS_TOKEN)return hr(e);if(t=t||o.ACCESS_TOKEN,!this._silenceAuthErrors){if(!t)throw new Error("An API access token is required to use Mapbox GL. "+i);if("s"===t[0])throw new Error("Use a public access token (pk.*) with Mapbox GL, not a secret access token (sk.*). "+i)}return e.params=e.params.filter(e=>-1===e.indexOf("access_token")),e.params.push("access_token="+(t||"")),hr(e)}},Te.dk=function(e,t){t?Er.add(e):Er.delete(e)},Te.dl=$i,Te.dm=br,Te.dn=Tr,Te.dp=sr,Te.dq=gr,Te.dr=xr,Te.ds=function(e){Er.delete(e)},Te.dt=wr,Te.du=_r,Te.dv=ei,Te.dw=P,Te.dx=function(e,t){Bi=e,Fi=t},Te.dy=function(e,t,i=!1){if(Vo===Oo||Vo===Bo||Vo===Fo)throw new Error("setRTLTextPlugin cannot be called multiple times.");Uo=Ri.resolveURL(e),Vo=Oo,No=t,Go(),i||$o()},Te.dz=qo,Te.e=Ri,Te.e0=r,Te.e1=c,Te.e2=e,Te.e3=$,Te.e4=j,Te.e5=tr,Te.e6=function(e){let t=0;var i,r,a,n,o;return new Uint32Array(e,0,1)[0]!==dy&&([,,r,a,n,o]=i=new Uint32Array(e,0,7),t=i.byteLength+a+n+o+n,(r!==e.byteLength||t>=e.byteLength)&&fi("Invalid b3dm header information.")),_y(e,t)},Te.e7=function(e,t){var i=xy(e);for(const e of i){for(const t of e.meshes){r=void 0;a=void 0;n=void 0;o=void 0;s=void 0;l=void 0;c=void 0;h=void 0;u=void 0;var r=t;r.heightmap=new Float32Array(4096),r.heightmap.fill(-1);var a=r.vertexArray.float32,n=r.aabb.min[0]-1,o=r.aabb.min[1]-1,s=64/(r.aabb.max[0]-n+2),l=64/(r.aabb.max[1]-o+2);for(let e=0;er.heightmap[64*u+h]&&(r.heightmap[64*u+h]=c)}}e.lights&&(e.lightMeshIndex=e.meshes.length,e.meshes.push(function(e,t){const i={};i.indexArray=new Vs,i.indexArray.reserve(4*e.length),i.vertexArray=new As,i.vertexArray.reserve(10*e.length),i.colorArray=new Is,i.vertexArray.reserve(10*e.length);let r=0;for(const n of e){const e=Math.min(10,Math.max(4,1.3*n.height))*t,o=[-n.normal[1],n.normal[0],0],s=Math.min(.29,.1*n.width/n.depth),l=n.width-2*n.depth*t*(s+.01),c=Te.$.scaleAndAdd([],n.pos,o,l/2),h=Te.$.scaleAndAdd([],n.pos,o,-l/2),u=[c[0],c[1],c[2]+n.height],d=[h[0],h[1],h[2]+n.height],p=Te.$.scaleAndAdd([],n.normal,o,s);Te.$.scale(p,p,e);var a=Te.$.scaleAndAdd([],n.normal,o,-s),a=(Te.$.scale(a,a,e),Te.$.add(p,c,p),Te.$.add(a,h,a),c[2]+=.1,h[2]+=.1,i.vertexArray.emplaceBack(p[0],p[1],p[2]),i.vertexArray.emplaceBack(a[0],a[1],a[2]),i.vertexArray.emplaceBack(c[0],c[1],c[2]),i.vertexArray.emplaceBack(h[0],h[1],h[2]),i.vertexArray.emplaceBack(u[0],u[1],u[2]),i.vertexArray.emplaceBack(d[0],d[1],d[2]),i.vertexArray.emplaceBack(c[0],c[1],c[2]),i.vertexArray.emplaceBack(h[0],h[1],h[2]),i.vertexArray.emplaceBack(p[0],p[1],p[2]),i.vertexArray.emplaceBack(a[0],a[1],a[2]),l/e/2);i.colorArray.emplaceBack(-a-s,-1,a,.8),i.colorArray.emplaceBack(a+s,-1,a,.8),i.colorArray.emplaceBack(-a,0,a,1.3),i.colorArray.emplaceBack(a,0,a,1.3),i.colorArray.emplaceBack(a+s,-.8,a,.7),i.colorArray.emplaceBack(a+s,-.8,a,.7),i.colorArray.emplaceBack(0,0,a,1.3),i.colorArray.emplaceBack(0,0,a,1.3),i.colorArray.emplaceBack(a+s,-1.2,a,.8),i.colorArray.emplaceBack(a+s,-1.2,a,.8),i.indexArray.emplaceBack(6+r,4+r,8+r),i.indexArray.emplaceBack(7+r,9+r,5+r),i.indexArray.emplaceBack(0+r,1+r,2+r),i.indexArray.emplaceBack(1+r,3+r,2+r),r+=10}const n={defined:!0,emissiveFactor:[0,0,0]},o={};return o.baseColorFactor=g.white,n.pbrMetallicRoughness=o,i.material=n,i.aabb=new A([1/0,1/0,1/0],[-1/0,-1/0,-1/0]),i}(e.lights,t)))}return i},Te.e8=Ey,Te.e9=qg,Te.ea=Wo,Te.eb=function(r){Gi(),Vi&&Vi.then(i=>{i.keys().then(t=>{for(let e=0;ee.arrayBuffer()).then(e=>_y(e,0,t))},Te.m=Mf,Te.n=class extends Cg{},Te.o=ma,Te.p=l,Te.q=Vr,Te.r=ao,Te.s=so,Te.t=oo,Te.u=rs,Te.v=go,Te.w=fi,Te.x=as,Te.y=bo,Te.z=yo}),e(0,function(y){function d(e){e=e?e.url.toString():void 0;return e?performance.getEntriesByName(e):[]}function o(e){let t="";for(const i of y.cG)t+="/"+function t(i){if("number"==typeof i||"boolean"==typeof i||"string"==typeof i||null==i)return JSON.stringify(i);if(Array.isArray(i)){let e="[";for(const r of i)e+=t(r)+",";return e+"]"}let e="{";for(const a of Object.keys(i).sort())e+=`${a}:${t(i[a])},`;return e+"}"}(e[i]);return t}class O{constructor(e){this.keyCache={},this._layers={},this._layerConfigs={},e&&this.replace(e)}replace(e,t){this._layerConfigs={},this._layers={},this.update(e,[],t)}update(i,r,e){this._options=e;for(const r of i)this._layerConfigs[r.id]=r,(this._layers[r.id]=y.c$(r,this.scope,null,this._options)).compileFilter(),this.keyCache[r.id]&&delete this.keyCache[r.id];for(const y of r)delete this.keyCache[y],delete this._layerConfigs[y],delete this._layers[y];this.familiesBySource={};const a=function(i,r){const a={};for(let t=0;tthis._layers[e.id]),r=i[0];if("none"!==r.visibility){const o=r.source||"";let e=this.familiesBySource[o];e=e||(this.familiesBySource[o]={});const a=r.sourceLayer||"_geojsonTileLayer";let t=e[a];(t=t||(e[a]=[])).push(i)}}}}const l=+y.dM;class x{constructor(e){const t={},i=[];for(const y in e){const r=e[y],a=t[y]={};for(const y in r.glyphs){const e=r.glyphs[+y];if(e&&0!==e.bitmap.width&&0!==e.bitmap.height){const t=e.metrics.localGlyph?l:1,n={x:0,y:0,w:e.bitmap.width+2*t,h:e.bitmap.height+2*t};i.push(n),a[y]=n}}}const{w:r,h:a}=y.k(i),n=new y.dL({width:r||1,height:a||1});for(const i in e){const r=e[i];for(const e in r.glyphs){const a=r.glyphs[+e];var o,s;a&&0!==a.bitmap.width&&0!==a.bitmap.height&&(o=t[i][e],s=a.metrics.localGlyph?l:1,y.dL.copy(a.bitmap,n,{x:0,y:0},{x:o.x+s,y:o.y+s},a.bitmap))}}this.image=n,this.positions=t}}y.dK(x,"GlyphAtlas");class B{constructor(e){this.tileID=new y.aQ(e.tileID.overscaledZ,e.tileID.wrap,e.tileID.canonical.z,e.tileID.canonical.x,e.tileID.canonical.y),this.tileZoom=e.tileZoom,this.uid=e.uid,this.zoom=e.zoom,this.lut=e.lut,this.canonical=e.tileID.canonical,this.pixelRatio=e.pixelRatio,this.tileSize=e.tileSize,this.source=e.source,this.scope=e.scope,this.overscaling=this.tileID.overscaleFactor(),this.showCollisionBoxes=e.showCollisionBoxes,this.collectResourceTiming=!!e.collectResourceTiming,this.promoteId=e.promoteId,this.isSymbolTile=e.isSymbolTile,this.tileTransform=y.dN(e.tileID.canonical,e.projection),this.projection=e.projection,this.brightness=e.brightness,this.extraShadowCaster=!!e.extraShadowCaster,this.tessellationStep=e.tessellationStep}parse(r,a,n,o,s){this.status="parsing",this.data=r,this.collisionBoxArray=new y.dO;const l=new y.dP(Object.keys(r.layers).sort()),c=new y.dQ(this.tileID,this.promoteId),h=(c.bucketLayerIDs=[],{}),u=new y.dR(256,256),d={featureIndex:c,iconDependencies:{},patternDependencies:{},glyphDependencies:{},lineAtlas:u,availableImages:n,brightness:this.brightness},p=a.familiesBySource[this.source];for(const a in p){const o=r.layers[a];if(o){let e=!1,t=!1,i=!1;for(const y of p[a])"symbol"===y[0].type?e=!0:t=!0,y[0].is3D()&&"model"!==y[0].type&&(i=!0);if((!this.extraShadowCaster||i)&&(!0!==this.isSymbolTile||e)&&(!1!==this.isSymbolTile||t)){1===o.version&&y.w(`Vector tile source "${this.source}" layer "${a}" does not use vector tile spec v2 and therefore may have some rendering errors.`);const f=l.encode(a),m=[];for(let e=0;e=r.maxzoom||"none"!==r.visibility&&(v(y,this.zoom,d.brightness,n),(h[r.id]=r.createBucket({index:c.bucketLayerIDs.length,layers:y,zoom:this.zoom,lut:this.lut,canonical:this.canonical,pixelRatio:this.pixelRatio,overscaling:this.overscaling,collisionBoxArray:this.collisionBoxArray,sourceLayerIndex:f,sourceID:this.source,projection:this.projection.spec,tessellationStep:this.tessellationStep})).populate(m,d,this.tileID.canonical,this.tileTransform),c.bucketLayerIDs.push(y.map(e=>e.id)))}}}}let f,m,_,g;u.trim();const e={type:"maybePrepare",isSymbolTile:this.isSymbolTile,zoom:this.zoom},i=()=>{if(f)return this.status="done",s(f);if(this.extraShadowCaster)this.status="done",s(null,{buckets:y.dJ(h).filter(e=>!e.isEmpty()),featureIndex:c,collisionBoxArray:null,glyphAtlasImage:null,lineAtlas:null,imageAtlas:null,brightness:d.brightness,glyphMap:null,iconMap:null,glyphPositions:null});else if(m&&_&&g){var e=new x(m),t=new y.dT(_,g,this.lut);for(const i in h){const s=h[i];s instanceof y.dU?(v(s.layers,this.zoom,d.brightness,n),y.dV(s,m,e.positions,_,t.iconPositions,this.showCollisionBoxes,n,this.tileID.canonical,this.tileZoom,this.projection,this.brightness)):s.hasPattern&&(s instanceof y.dW||s instanceof y.dX||s instanceof y.c0)&&(v(s.layers,this.zoom,d.brightness,n),s.addFeatures(d,this.tileID.canonical,t.patternPositions,n,this.tileTransform,this.brightness))}this.status="done",s(null,{buckets:y.dJ(h).filter(e=>!e.isEmpty()),featureIndex:c,collisionBoxArray:this.collisionBoxArray,glyphAtlasImage:e.image,lineAtlas:u,imageAtlas:t,brightness:d.brightness})}};if(!this.extraShadowCaster){const r=y.dS(d.glyphDependencies,e=>Object.keys(e).map(Number)),a=(Object.keys(r).length?o.send("getGlyphs",{uid:this.uid,stacks:r,scope:this.scope},(e,t)=>{f||(f=e,m=t,i())},void 0,!1,e):m={},Object.keys(d.iconDependencies)),n=(a.length?o.send("getImages",{icons:a,source:this.source,scope:this.scope,tileID:this.tileID,type:"icons"},(e,t)=>{f||(f=e,_=t,i())},void 0,!1,e):_={},Object.keys(d.patternDependencies));n.length?o.send("getImages",{icons:n,source:this.source,scope:this.scope,tileID:this.tileID,type:"patterns"},(e,t)=>{f||(f=e,g=t,i())},void 0,!1,e):g={}}i()}}function v(e,t,i,r){var a=new y.Y(t,{brightness:i});for(const y of e)y.recalculate(a,r)}class n extends y.E{constructor(e,t,i,r,a,n){super(),this.actor=e,this.layerIndex=t,this.availableImages=i,this.loadVectorData=a||y.aq,this.loading={},this.loaded={},this.deduped=new y.ap(e.scheduler),this.isSpriteLoaded=r,this.scheduler=e.scheduler,this.brightness=n}loadTile(o,s){const l=o.uid,c=o&&o.request,h=c&&c.collectResourceTiming,u=this.loading[l]=new B(o);u.abort=this.loadVectorData(o,(e,t)=>{var i=!this.loading[l];if(delete this.loading[l],i||e||!t)return u.status="done",i||(this.loaded[l]=u),s(e);const r=t.rawData,a={},n=(t.expires&&(a.expires=t.expires),t.cacheControl&&(a.cacheControl=t.cacheControl),u.vectorTile=t.vectorTile||new y.dY(new y.dZ(r)),()=>{u.parse(u.vectorTile,this.layerIndex,this.availableImages,this.actor,(e,t)=>{if(e||!t)return s(e);const i={};if(h){const y=d(c);0{this.scheduler?this.scheduler.add(n,{type:"parseTile",isSymbolTile:o.isSymbolTile,zoom:o.tileZoom}):n()}),this.loaded=this.loaded||{},this.loaded[l]=u})}reloadTile(e,r){var t=this.loaded,i=e.uid;if(t&&t[i]){const a=t[i];a.showCollisionBoxes=e.showCollisionBoxes,a.projection=e.projection,a.brightness=e.brightness,a.tileTransform=y.dN(e.tileID.canonical,e.projection),a.extraShadowCaster=e.extraShadowCaster,a.lut=e.lut;t=(e,t)=>{var i=a.reloadCallback;i&&(delete a.reloadCallback,a.parse(a.vectorTile,this.layerIndex,this.availableImages,this.actor,i)),r(e,t)};"parsing"===a.status?a.reloadCallback=t:"done"===a.status&&(a.vectorTile?a.parse(a.vectorTile,this.layerIndex,this.availableImages,this.actor,t):t())}else r(null,void 0)}abortTile(e,t){const i=e.uid,r=this.loading[i];r&&(r.abort&&r.abort(),delete this.loading[i]),t()}removeTile(e,t){const i=this.loaded,r=e.uid;i&&i[r]&&delete i[r],t()}}class F{loadTile(e,t){var{uid:e,encoding:i,rawImageData:r,padding:a}=e,r=ImageBitmap&&r instanceof ImageBitmap?this.getImageData(r,a):r;t(null,new y.d_(e,r,i,a<1))}getImageData(e,t){this.offscreenCanvas&&this.offscreenCanvasContext||(this.offscreenCanvas=new OffscreenCanvas(e.width,e.height),this.offscreenCanvasContext=this.offscreenCanvas.getContext("2d",{willReadFrequently:!0})),this.offscreenCanvas.width=e.width,this.offscreenCanvas.height=e.height,this.offscreenCanvasContext.drawImage(e,0,0,e.width,e.height);e=this.offscreenCanvasContext.getImageData(-t,-t,e.width+2*t,e.height+2*t);return this.offscreenCanvasContext.clearRect(0,0,this.offscreenCanvas.width,this.offscreenCanvas.height),e}}y.d$.setPbf(y.dZ);class N{decodeRasterArray({task:e,buffer:t},i){y.d$.performDecoding(t,e).then(e=>{i(null,e)},e=>{i(e)})}}const V=y.e0.prototype.toGeoJSON;let U=class{constructor(e){this._feature=e,this.extent=y.a4,this.type=e.type,this.properties=e.tags,"id"in e&&!isNaN(e.id)&&(this.id=parseInt(e.id,10))}loadGeometry(){if(1===this._feature.type){const e=[];for(const t of this._feature.geometry)e.push([new y.P(t[0],t[1])]);return e}{const i=[];for(const r of this._feature.geometry){const a=[];for(const n of r)a.push(new y.P(n[0],n[1]));i.push(a)}return i}}toGeoJSON(e,t,i){return V.call(this,e,t,i)}},j=class{constructor(e){this.layers={_geojsonTileLayer:this},this.name="_geojsonTileLayer",this.extent=y.a4,this.length=e.length,this._features=e}feature(e){return new U(this._features[e])}};const s=.015625,e=128;class G{constructor(){this.features=new Map}clear(){this.features.clear()}load(t=[],i){for(const r of t){const t=r.id;if(null!=t){let e=this.features.get(t);e&&this.updateCache(e,i),r.geometry?(e=function(e){var{id:e,geometry:t,properties:i}=e;if(t){if("GeometryCollection"===t.type)throw new Error("GeometryCollection not supported in dynamic mode.");const{type:r,coordinates:a}=t,n={id:e,type:1,geometry:[],tags:i,minX:1/0,minY:1/0,maxX:-1/0,maxY:-1/0},o=n.geometry;if("Point"===r)h(a,o,n);else if("MultiPoint"===r)for(const e of a)h(e,o,n);else if("LineString"===r)n.type=2,u(a,o,n);else if("MultiLineString"===r)n.type=2,p(a,o,n);else if("Polygon"===r)n.type=3,p(a,o,n,!0);else{if("MultiPolygon"!==r)throw new Error("Input data is not a valid GeoJSON object.");n.type=3;for(const e of a)p(e,o,n,!0)}return n}}(r),this.updateCache(e,i),this.features.set(t,e)):this.features.delete(t),this.updateCache(e,i)}}}updateCache(e,t){for(var{canonical:i,uid:r}of Object.values(t)){var{z:i,x:a,y:n}=i;c(e,Math.pow(2,i),a,n)&&delete t[r]}}getTile(e,t,i){const r=Math.pow(2,e),a=[];for(const e of this.features.values())c(e,r,t,i)&&a.push(function(e,t,i,r){var{id:e,type:a,geometry:n,tags:o}=e,s=[];if(1===a){var l=n,c=t,h=i,u=r,d=s;for(let e=0;e(n-s)/a&&r>(o-s)/a}function h([e,t],i,r){e=y.ak(e);let a=y.al(t);a=a<0?0:1=u&&i>=u||(e>=u?(t+=Math.round(f*((u-e)/p)),e=u):i>=u&&(r=t+Math.round(f*((u-e)/p)),i=u),t>=u&&r>=u||(t>=u?(e+=Math.round(p*((u-t)/f)),t=u):r>=u&&(i=e+Math.round(p*((u-t)/f)),r=u),d&&e===d[d.length-1][0]&&t===d[d.length-1][1]||(d=[[e,t]],c.push(d)),d.push([i,r])))))}}var t={exports:{}},$=y.e2,Z=y.e1.VectorTileFeature,W=i;function i(e,t){this.options=t||{},this.features=e,this.length=e.length}function r(e,t){this.id="number"==typeof e.id?e.id:void 0,this.type=e.type,this.rawGeometry=1===e.type?[e.geometry]:e.geometry,this.properties=e.tags,this.extent=t||4096}i.prototype.feature=function(e){return new r(this.features[e],this.options.extent)},r.prototype.loadGeometry=function(){var e=this.rawGeometry;this.geometry=[];for(var t=0;t>31}function Q(e,t){for(var i=e.loadGeometry(),r=e.type,a=0,n=0,o=i.length,s=0;se},re=Math.fround||(_=new Float32Array(1),e=>(_[0]=+e,_[0])),g=3,b=5,ae=6;class ne{constructor(e){this.options=Object.assign(Object.create(ie),e),this.trees=new Array(this.options.maxZoom+1),this.stride=this.options.reduce?7:6,this.clusterProps=[]}load(t){const{log:i,minZoom:r,maxZoom:a}=this.options,n=(i&&console.time("total time"),`prepare ${t.length} points`),o=(i&&console.time(n),this.points=t,[]);for(let e=0;e=r;e--){const r=+Date.now();s=this.trees[e]=this._createTree(this._cluster(s,e)),i&&console.log("z%d: %d clusters in %dms",e,s.numItems,+Date.now()-r)}return i&&console.timeEnd("total time"),this}getClusters(e,t){let i=((e[0]+180)%360+360)%360-180;var r=Math.max(-90,Math.min(90,e[1]));let a=180===e[2]?180:((e[2]+180)%360+360)%360-180;var n=Math.max(-90,Math.min(90,e[3]));if(360<=e[2]-e[0])i=-180,a=180;else if(i>a){const e=this.getClusters([i,r,180,n],t),o=this.getClusters([-180,r,a,n],t);return e.concat(o)}const o=this.trees[this._limitZoom(t)],s=o.range(w(i),T(n),w(a),T(r)),l=o.data,c=[];for(const e of s){const t=this.stride*e;c.push(1=n.length)throw new Error(r);const o=this.options.radius/(this.options.extent*Math.pow(2,i-1)),s=a.within(n[t*this.stride],n[t*this.stride+1],o),l=[];for(const t of s){const i=t*this.stride;n[4+i]===e&&l.push(1o&&(a+=c[t+b])}if(a>_&&a>=i){let e,t=s*_,i=f*_,r=-1;var d,p=(n/u<<5)+(o+1)+this.points.length;for(const s of m){const h=s*u;c[2+h]<=o||(c[2+h]=o,d=c[h+b],t+=c[h]*d,i+=c[1+h]*d,c[4+h]=p,l&&(e||(e=this._map(c,n,!0),r=this.clusterProps.length,this.clusterProps.push(e)),l(e,this._map(c,h))))}c[n+4]=p,h.push(t/a,i/a,1/0,p,-1,a),l&&h.push(r)}else{for(let e=0;e>5}_getOriginZoom(e){return(e-this.points.length)%32}_map(e,t,i){if(1>1);let o,s=r-i;var l=t[i],c=t[i+1],h=t[r],u=t[r+1];for(let e=i+3;ea)o=e,a=i;else if(i===a){const t=Math.abs(e-n);te&&(3=(a/=r)&&s=a&&_=n)){let e=[];if("Point"===t||"MultiPoint"===t){h=void 0;u=void 0;d=void 0;p=void 0;f=void 0;m=void 0;var h=i;var u=e;var d=a;var p=n;var f=o;for(let e=0;e=a&&_<=n&&D(c,f,m,i[e+2]),e=c.length-3,s&&3<=e&&(c[e]!==c[0]||c[e+1]!==c[1])&&D(c,c[0],c[1],c[2]),c.length&&r.push(c)}function de(e){const t=[];return t.size=e.size,t.start=e.start,t.end=e.end,t}function z(e,t,i,r,a,n){for(const o of e)ue(o,t,i,r,a,n,!1)}function D(e,t,i,r){e.push(t,i,r)}function pe(e,t,i,r,a,n){r=(n-t)/(r-t);return D(e,n,i+(a-i)*r,1),r}function fe(e,t,i,r,a,n){a=(n-i)/(a-i);return D(e,t+(r-t)*a,n,1),a}function me(i,r){const a=[];for(let t=0;to)&&(i.numSimplified++,s.push(t[e],t[e+1])),i.numPoints++;if(a){var l=s;a=n;let r=0;for(let e=0,t=l.length,i=t-2;e>s||h!==i>>s)continue}}if(o.source=null,0!==s.length){1>=1,c>>=1,o=this.tiles[k(s,l,c)];return o&&o.source?(1{if(e||!t)return n(e);if("object"!=typeof t)return n(new Error(`Input data given to '${a.source}' is not a valid GeoJSON object.`));{try{if(a.filter){const d=y.z(a.filter,{type:"boolean","property-type":"data-driven",overridable:!1,transition:!1});if("error"===d.result)throw new Error(d.value.map(e=>e.key+": "+e.message).join(", "));t.features=t.features.filter(e=>d.value.evaluate({zoom:0},e))}a.dynamic?("Feature"===t.type&&(t={type:"FeatureCollection",features:[t]}),a.append||(this._dynamicIndex.clear(),this.loaded={}),this._dynamicIndex.load(t.features,this.loaded),a.cluster&&(t.features=this._dynamicIndex.getFeatures())):this.loaded={},this._geoJSONIndex=a.cluster?new ne(function({superclusterOptions:e,clusterProperties:t}){if(!t||!e)return e;const i={},r={},a={accumulated:null,zoom:0},n={properties:null},o=Object.keys(t);for(const e of o){const[a,n]=t[e],o=y.z(n),s=y.z("string"==typeof a?[a,["accumulated"],["get",e]]:a);i[e]=o.value,r[e]=s.value}return e.map=e=>{n.properties=e;const t={};for(const e of o)t[e]=i[e].evaluate(a,n);return t},e.reduce=(e,t)=>{n.properties=t;for(const t of o)a.accumulated=e[t],e[t]=r[t].evaluate(a,n)},e}(a)).load(t.features):a.dynamic?this._dynamicIndex:(i=t,r=a.geojsonVtOptions,new ve(i,r))}catch(e){return n(e)}const e={};if(s){const y=d(o);y&&(e.resourceTiming={},e.resourceTiming[a.source]=JSON.parse(JSON.stringify(y)))}n(null,e)}var i,r})}reloadTile(e,t){var i=this.loaded;return i&&i[e.uid]?e.partial?t(null,void 0):super.reloadTile(e,t):this.loadTile(e,t)}loadGeoJSON(t,i){if(t.request)y.h(t.request,i);else{if("string"!=typeof t.data)return i(new Error(`Input data given to '${t.source}' is not a valid GeoJSON object.`));try{return i(null,JSON.parse(t.data))}catch(e){return i(new Error(`Input data given to '${t.source}' is not a valid GeoJSON object.`))}}}getClusterExpansionZoom(e,t){try{t(null,this._geoJSONIndex.getClusterExpansionZoom(e.clusterId))}catch(e){t(e)}}getClusterChildren(e,t){try{t(null,this._geoJSONIndex.getChildren(e.clusterId))}catch(e){t(e)}}getClusterLeaves(e,t){try{t(null,this._geoJSONIndex.getLeaves(e.clusterId,e.limit,e.offset))}catch(e){t(e)}}}class Te{constructor(e,t){this.tileID=new y.aQ(e.tileID.overscaledZ,e.tileID.wrap,e.tileID.canonical.z,e.tileID.canonical.x,e.tileID.canonical.y),this.tileZoom=e.tileZoom,this.uid=e.uid,this.zoom=e.zoom,this.canonical=e.tileID.canonical,this.pixelRatio=e.pixelRatio,this.tileSize=e.tileSize,this.source=e.source,this.overscaling=this.tileID.overscaleFactor(),this.projection=e.projection,this.brightness=t}parse(e,t,n,o){this.status="parsing";const s=new y.aQ(n.tileID.overscaledZ,n.tileID.wrap,n.tileID.canonical.z,n.tileID.canonical.x,n.tileID.canonical.y),l={},c=t.familiesBySource[n.source],h=new y.dQ(s,n.promoteId);return h.bucketLayerIDs=[],h.is3DTile=!0,y.e6(e).then(e=>{if(!e)return o(new Error("Could not parse tile"));var t=y.e7(e,1/y.b7(n.tileID.canonical)),i=e.json.extensionsUsed&&e.json.extensionsUsed.includes("MAPBOX_mesh_features")||e.json.asset.extras&&e.json.asset.extras.MAPBOX_mesh_features,r=e.json.extensionsUsed&&e.json.extensionsUsed.includes("EXT_meshopt_compression"),a=new y.Y(this.zoom,{brightness:this.brightness});for(const e in c)for(const n of c[e]){const e=n[0],o=(h.bucketLayerIDs.push(n.map(e=>e.id)),e.recalculate(a,[]),new y.e8(t,s,i,r,this.brightness,h));i||(o.needsUpload=!0),(l[e.fqid]=o).evaluate(e)}this.status="done",o(null,{buckets:l,featureIndex:h})}).catch(e=>o(new Error(e.message)))}}class Ee{constructor(e,t,i,r,a,n){this.actor=e,this.layerIndex=t,this.brightness=n,this.loading={},this.loaded={}}loadTile(r,a){const n=r.uid,o=this.loading[n]=new Te(r,this.brightness);y.e5(r.request,(e,t)=>{var i=!this.loading[n];return delete this.loading[n],i||e?(o.status="done",i||(this.loaded[n]=o),a(e)):t&&0!==t.byteLength?void o.parse(t,this.layerIndex,r,(e,t)=>{o.status="done",this.loaded=this.loaded||{},this.loaded[n]=o,e||!t?a(e):a(null,t)}):(o.status="done",this.loaded[n]=o,a())})}reloadTile(i,r){var e=this.loaded,t=i.uid;if(e&&e[t]){const a=e[t];a.projection=i.projection,a.brightness=i.brightness;"parsing"===a.status?a.reloadCallback=(e,t)=>{a.reloadCallback&&(delete a.reloadCallback,this.loadTile(i,r)),r(e,t)}:"done"===a.status&&this.loadTile(i,r)}}abortTile(e,t){e=e.uid;this.loading[e]&&delete this.loading[e],t()}removeTile(e,t){const i=this.loaded,r=e.uid;i&&i[r]&&delete i[r],t()}}class Se{constructor(e){this.self=e,this.actor=new y.e9(e,this),this.layerIndexes={},this.availableImages={},this.isSpriteLoaded={},this.projections={},this.defaultProjection=y.aK({name:"mercator"}),this.workerSourceTypes={vector:n,geojson:we,"batched-model":Ee},this.workerSources={},this.demWorkerSources={},this.self.registerWorkerSource=(e,t)=>{if(this.workerSourceTypes[e])throw new Error(`Worker source with name "${e}" already registered.`);this.workerSourceTypes[e]=t},this.self.registerRTLTextPlugin=e=>{if(y.ea.isParsed())throw new Error("RTL text plugin already registered.");y.ea.applyArabicShaping=e.applyArabicShaping,y.ea.processBidirectionalText=e.processBidirectionalText,y.ea.processStyledBidirectionalText=e.processStyledBidirectionalText}}clearCaches(e,t,i){delete this.layerIndexes[e],delete this.availableImages[e],delete this.workerSources[e],delete this.demWorkerSources[e],delete this.rasterArrayWorkerSource,i()}checkIfReady(e,t,i){i()}setReferrer(e,t){this.referrer=t}spriteLoaded(e,{scope:t,isLoaded:i}){if(this.isSpriteLoaded[e]||(this.isSpriteLoaded[e]={}),this.isSpriteLoaded[e][t]=i,this.workerSources[e]&&this.workerSources[e][t])for(const a in this.workerSources[e][t]){var r=this.workerSources[e][t][a];for(const e in r){const t=r[e];t instanceof n&&(t.isSpriteLoaded=i,t.fire(new y.g("isSpriteLoaded")))}}}setImages(e,{scope:t,images:i},r){if(this.availableImages[e]||(this.availableImages[e]={}),this.availableImages[e][t]=i,this.workerSources[e]&&this.workerSources[e][t]){for(const r in this.workerSources[e][t]){const a=this.workerSources[e][t][r];for(const e in a)a[e].availableImages=i}r()}else r()}setProjection(e,t){this.projections[e]=y.aK(t)}setBrightness(e,t,i){this.brightness=t,i()}setLayers(e,t,i){this.getLayerIndex(e,t.scope).replace(t.layers,t.options),i()}updateLayers(e,t,i){this.getLayerIndex(e,t.scope).update(t.layers,t.removedIds,t.options),i()}loadTile(e,t,i){t.projection=this.projections[e]||this.defaultProjection,this.getWorkerSource(e,t.type,t.source,t.scope).loadTile(t,i)}loadDEMTile(e,t,i){this.getDEMWorkerSource(e,t.source,t.scope).loadTile(t,i)}decodeRasterArray(e,t,i){this.getRasterArrayWorkerSource().decodeRasterArray(t,i)}reloadTile(e,t,i){t.projection=this.projections[e]||this.defaultProjection,this.getWorkerSource(e,t.type,t.source,t.scope).reloadTile(t,i)}abortTile(e,t,i){this.getWorkerSource(e,t.type,t.source,t.scope).abortTile(t,i)}removeTile(e,t,i){this.getWorkerSource(e,t.type,t.source,t.scope).removeTile(t,i)}removeSource(e,t,i){if(this.workerSources[e]&&this.workerSources[e][t.scope]&&this.workerSources[e][t.scope][t.type]&&this.workerSources[e][t.scope][t.type][t.source]){const r=this.workerSources[e][t.scope][t.type][t.source];delete this.workerSources[e][t.scope][t.type][t.source],void 0!==r.removeSource?r.removeSource(t,i):i()}}loadWorkerSource(e,t,i){try{this.self.importScripts(t.url),i()}catch(e){i(e.toString())}}syncRTLPluginState(e,t,i){try{y.ea.setState(t);const e=y.ea.getPluginURL();if(y.ea.isLoaded()&&!y.ea.isParsed()&&null!=e){this.self.importScripts(e);const t=y.ea.isParsed();i(t?void 0:new Error("RTL Text Plugin failed to import scripts from "+e),t)}}catch(e){i(e.toString())}}setDracoUrl(e,t){this.dracoUrl=t}getAvailableImages(e,t){this.availableImages[e]||(this.availableImages[e]={});let i=this.availableImages[e][t];return i=i||[]}getLayerIndex(e,t){this.layerIndexes[e]||(this.layerIndexes[e]={});let i=this.layerIndexes[e][t];return i||((i=this.layerIndexes[e][t]=new O).scope=t),i}getWorkerSource(o,e,t,i){return this.workerSources[o]||(this.workerSources[o]={}),this.workerSources[o][i]||(this.workerSources[o][i]={}),this.workerSources[o][i][e]||(this.workerSources[o][i][e]={}),this.isSpriteLoaded[o]||(this.isSpriteLoaded[o]={}),this.workerSources[o][i][e][t]||(this.workerSources[o][i][e][t]=new this.workerSourceTypes[e]({send:(e,t,i,r,a,n)=>{this.actor.send(e,t,i,o,a,n)},scheduler:this.actor.scheduler},this.getLayerIndex(o,i),this.getAvailableImages(o,i),this.isSpriteLoaded[o][i],void 0,this.brightness)),this.workerSources[o][i][e][t]}getDEMWorkerSource(e,t,i){return this.demWorkerSources[e]||(this.demWorkerSources[e]={}),this.demWorkerSources[e][i]||(this.demWorkerSources[e][i]={}),this.demWorkerSources[e][i][t]||(this.demWorkerSources[e][i][t]=new F),this.demWorkerSources[e][i][t]}getRasterArrayWorkerSource(){return this.rasterArrayWorkerSource||(this.rasterArrayWorkerSource=new N),this.rasterArrayWorkerSource}enforceCacheSizeLimit(e,t){y.eb(t)}getWorkerPerformanceMetrics(e,t,i){i(void 0,void 0)}}return"undefined"!=typeof WorkerGlobalScope&&"undefined"!=typeof self&&self instanceof WorkerGlobalScope&&(self.worker=new Se(self)),Se}),e(0,function(et){var T=M;function M(e){return e=e,!("undefined"==typeof window||"undefined"==typeof document||(!function(){if("Worker"in window&&"Blob"in window&&"URL"in window){var e,t,i=new Blob([""],{type:"text/javascript"}),i=URL.createObjectURL(i);try{t=new Worker(i),e=!0}catch(t){e=!1}return t&&t.terminate(),URL.revokeObjectURL(i),e}}()||(!function(){var e=document.createElement("canvas"),t=(e.width=e.height=1,e.getContext("2d"));if(t)return t=t.getImageData(0,0,1,1),t&&t.width===e.width}()||(void 0===I[a=e&&e.failIfMajorPerformanceCaveat]&&(I[a]=function(){r=a,t=document.createElement("canvas"),(i=Object.create(M.webGLContextAttributes)).failIfMajorPerformanceCaveat=r;var e,t,i,r=t.getContext("webgl2",i);if(!r)return!1;try{e=r.createShader(r.VERTEX_SHADER)}catch(e){return!1}return!(!e||r.isContextLost())&&(r.shaderSource(e,"void main() {}"),r.compileShader(e),!0===r.getShaderParameter(e,r.COMPILE_STATUS))}()),!I[a]||!!document.documentMode))));var a}var I={};function c(e,t,i){const r=document.createElement(e);return null!=t&&(r.className=t),i&&i.appendChild(r),r}function n(e,t,i){const r=document.createElementNS("http://www.w3.org/2000/svg",e);for(const e of Object.keys(t))r.setAttributeNS(null,e,String(t[e]));return i&&i.appendChild(r),r}M.webGLContextAttributes={antialias:!1,alpha:!0,stencil:!0,depth:!0};const e="undefined"!=typeof document?document.documentElement&&document.documentElement.style:null,t=e&&void 0!==e.userSelect?"userSelect":"WebkitUserSelect";let A;function C(){e&&t&&(A=e[t],e[t]="none")}function P(){e&&t&&(e[t]=A)}function B(e){e.preventDefault(),e.stopPropagation(),window.removeEventListener("click",B,!0)}function F(){window.addEventListener("click",B,!0),window.setTimeout(()=>{window.removeEventListener("click",B,!0)},0)}function d(e,t){var i=e.getBoundingClientRect();return U(e,i,t)}function N(t,i){const r=t.getBoundingClientRect(),a=[];for(let e=0;e{if(e){const t=et.c(e),i=new et.M(r,void 0,void 0,t);return i.computeBoundsAndApplyParent(),i}}).catch(e=>{if(e&&404===e.status)return null;this.fire(new et.f(new Error(`Could not load model ${r} from ${t}: `+e.message)))})}load(e,a){this.models[a]||(this.models[a]={});const n=Object.keys(e),t=(this.numModelsLoading[a]=(this.numModelsLoading[a]||0)+n.length,[]);for(const et of n)t.push(this.loadModel(et,e[et]));Promise.allSettled(t).then(t=>{for(let e=0;e{this.fire(new et.f(new Error("Could not load models: "+e.message)))})}isLoaded(){for(const e in this.numModelsLoading)if(0(e="array"===et.o(a.maximum)?a.maximum[t.arrayIndex]:e))return[new et.V(i,r,r+" is greater than the maximum value "+e)]}return[]}function Oe(e){const a=e.valueSpec,n=et.u(e.value.type);let o,s,l,c={};const t="categorical"!==n&&void 0===e.value.property,i=!t,h="array"===et.o(e.value.stops)&&"array"===et.o(e.value.stops[0])&&"object"===et.o(e.value.stops[0][0]),r=p({key:e.key,value:e.value,valueSpec:e.styleSpec.function,style:e.style,styleSpec:e.styleSpec,objectElementValidators:{stops:function(e){if("identity"===n)return[new et.V(e.key,e.value,'identity function may not have a "stops" property')];let t=[];var i=e.value;return t=t.concat(Le({key:e.key,value:i,valueSpec:e.valueSpec,style:e.style,styleSpec:e.styleSpec,arrayElementValidator:u})),"array"===et.o(i)&&0===i.length&&t.push(new et.V(e.key,i,"array must have at least one stop")),t},default:function(e){return f({key:e.key,value:e.value,valueSpec:a,style:e.style,styleSpec:e.styleSpec})}}});return"identity"===n&&t&&r.push(new et.V(e.key,e.value,'missing required property "property"')),"identity"===n||e.value.stops||r.push(new et.V(e.key,e.value,'missing required property "stops"')),"exponential"===n&&e.valueSpec.expression&&!et.s(e.valueSpec)&&r.push(new et.V(e.key,e.value,"exponential functions not supported")),8<=e.styleSpec.$version&&(i&&!et.r(e.valueSpec)?r.push(new et.V(e.key,e.value,"property functions not supported")):t&&!et.t(e.valueSpec)&&r.push(new et.V(e.key,e.value,"zoom functions not supported"))),"categorical"!==n&&!h||void 0!==e.value.property||r.push(new et.V(e.key,e.value,'"property" property is required')),r;function u(e){let t=[];var i=e.value,r=e.key;if("array"!==et.o(i))return[new et.V(r,i,`array expected, ${et.o(i)} found`)];if(2!==i.length)return[new et.V(r,i,`array length 2 expected, length ${i.length} found`)];if(h){if("object"!==et.o(i[0]))return[new et.V(r,i,`object expected, ${et.o(i[0])} found`)];if(void 0===i[0].zoom)return[new et.V(r,i,"object stop key must have zoom")];if(void 0===i[0].value)return[new et.V(r,i,"object stop key must have value")];const a=et.u(i[0].zoom);if("number"!=typeof a)return[new et.V(r,i[0].zoom,"stop zoom values must be numbers")];if(l&&l>a)return[new et.V(r,i[0].zoom,"stop zoom values must appear in ascending order")];a!==l&&(l=a,s=void 0,c={}),t=t.concat(p({key:r+"[0]",value:i[0],valueSpec:{zoom:{}},style:e.style,styleSpec:e.styleSpec,objectElementValidators:{zoom:ke,value:d}}))}else t=t.concat(d({key:r+"[0]",value:i[0],valueSpec:{},style:e.style,styleSpec:e.styleSpec},i));return et.v(et.x(i[1]))?t.concat([new et.V(r+"[1]",i[1],"expressions are not allowed in function stops.")]):t.concat(f({key:r+"[1]",value:i[1],valueSpec:a,style:e.style,styleSpec:e.styleSpec}))}function d(t,i){var r=et.o(t.value),e=et.u(t.value),i=null!==t.value?t.value:i;if(o){if(r!==o)return[new et.V(t.key,i,r+" stop domain type must match previous stop domain type "+o)]}else o=r;if("number"!==r&&"string"!==r&&"boolean"!==r&&"number"!=typeof e&&"string"!=typeof e&&"boolean"!=typeof e)return[new et.V(t.key,i,"stop domain value must be a number, string, or boolean")];if("number"===r||"categorical"===n)return"categorical"!==n||"number"!==r||"number"==typeof e&&isFinite(e)&&Math.floor(e)===e?"categorical"!==n&&"number"===r&&"number"==typeof e&&"number"==typeof s&&void 0!==s&&enew et.V(""+t.key+e.key,t.value,e.message));const i=e.value.expression||e.value._styleExpression.expression;if("property"===t.expressionContext&&"text-font"===t.propertyKey&&!i.outputDefined())return[new et.V(t.key,t.value,`Invalid data expression for "${t.propertyKey}". Output values must be contained as literals within the expression.`)];if("property"===t.expressionContext&&"layout"===t.propertyType&&!et.A(i))return[new et.V(t.key,t.value,'"feature-state" data expressions are not supported with layout properties.')];if("filter"===t.expressionContext)return function t(e,i){const r=new Set(["zoom","feature-state","pitch","distance-from-center"]);if(i.valueSpec&&i.valueSpec.expression)for(const et of i.valueSpec.expression.parameters)r.delete(et);if(0===r.size)return[];const a=[];return e instanceof et.F&&r.has(e.name)?[new et.V(i.key,i.value,`["${e.name}"] expression is not supported in a filter for a ${i.object.type} layer with id: `+i.object.id)]:(e.eachChild(e=>{a.push(...t(e,i))}),a)}(i,t);if(t.expressionContext&&0===t.expressionContext.indexOf("cluster")){if(!et.B(i,["zoom","feature-state"]))return[new et.V(t.key,t.value,'"zoom" and "feature-state" expressions are not supported with cluster properties.')];if("cluster-initial"===t.expressionContext&&!et.D(i))return[new et.V(t.key,t.value,"Feature data expressions are not supported with initial expression part of cluster properties.")]}return[]}function Be(e){const t=e.key,i=e.value,r=e.valueSpec,a=[];return Array.isArray(r.values)?-1===r.values.indexOf(et.u(i))&&a.push(new et.V(t,i,`expected one of [${r.values.join(", ")}], ${JSON.stringify(i)} found`)):-1===Object.keys(r.values).indexOf(et.u(i))&&a.push(new et.V(t,i,`expected one of [${Object.keys(r.values).join(", ")}], ${JSON.stringify(i)} found`)),a}function Fe(e){return et.H(et.x(e.value))?l(et.q({},e,{expressionContext:"filter",valueSpec:e.styleSpec["filter_"+(e.layerType||"fill")]})):function t(i){const r=i.value,a=i.key;if("array"!==et.o(r))return[new et.V(a,r,`array expected, ${et.o(r)} found`)];const n=i.styleSpec;let o,s=[];if(r.length<1)return[new et.V(a,r,"filter array must have at least 1 element")];switch(s=s.concat(Be({key:a+"[0]",value:r[0],valueSpec:n.filter_operator,style:i.style,styleSpec:i.styleSpec})),et.u(r[0])){case"<":case"<=":case">":case">=":2<=r.length&&"$type"===et.u(r[1])&&s.push(new et.V(a,r,`"$type" cannot be use with operator "${r[0]}"`));case"==":case"!=":3!==r.length&&s.push(new et.V(a,r,`filter array for operator "${r[0]}" must have 3 elements`));case"in":case"!in":2<=r.length&&("string"!==(o=et.o(r[1]))&&s.push(new et.V(a+"[1]",r[1],`string expected, ${o} found`)));for(let e=2;e{e in r&&i.push(new et.V(a,r[e],`"${e}" is prohibited for ref layers`))}),n.layers.forEach(e=>{et.u(e.id)===l&&(t=e)}),t?t.ref?i.push(new et.V(a,r.ref,"ref cannot reference another ref layer")):s=et.u(t.type):"string"==typeof l&&i.push(new et.V(a,r.ref,`ref layer "${l}" not found`))}else if("background"!==s&&"sky"!==s&&"slot"!==s)if(r.source){const t=n.sources&&n.sources[r.source],o=t&&et.u(t.type);t?"vector"===o&&"raster"===s?i.push(new et.V(a,r.source,`layer "${r.id}" requires a raster source`)):"raster"===o&&"raster"!==s?i.push(new et.V(a,r.source,`layer "${r.id}" requires a vector source`)):"vector"!==o||r["source-layer"]?"raster-dem"===o&&"hillshade"!==s?i.push(new et.V(a,r.source,"raster-dem source can only be used with layer type 'hillshade'.")):"raster-array"!==o||["raster","raster-particle"].includes(s)?"line"!==s||!r.paint||!r.paint["line-gradient"]&&!r.paint["line-trim-offset"]||"geojson"===o&&t.lineMetrics?"raster-particle"===s&&"raster-array"!==o&&i.push(new et.V(a,r.source,`layer "${r.id}" requires a 'raster-array' source.`)):i.push(new et.V(a,r,`layer "${r.id}" specifies a line-gradient, which requires a GeoJSON source with \`lineMetrics\` enabled.`)):i.push(new et.V(a,r.source,"raster-array source can only be used with layer type 'raster'.")):i.push(new et.V(a,r,`layer "${r.id}" must specify a "source-layer"`)):i.push(new et.V(a,r.source,`source "${r.source}" not found`))}else i.push(new et.V(a,r,'missing required property "source"'));return i=i.concat(p({key:a,value:r,valueSpec:o.layer,style:t.style,styleSpec:t.styleSpec,objectElementValidators:{"*":()=>[],type:()=>f({key:a+".type",value:r.type,valueSpec:o.layer.type,style:t.style,styleSpec:t.styleSpec,object:r,objectKey:"type"}),filter:e=>Fe(et.q({layerType:s},e)),layout:e=>p({layer:r,key:e.key,value:e.value,valueSpec:{},style:e.style,styleSpec:e.styleSpec,objectElementValidators:{"*":e=>Ue(et.q({layerType:s},e))}}),paint:e=>p({layer:r,key:e.key,value:e.value,valueSpec:{},style:e.style,styleSpec:e.styleSpec,objectElementValidators:{"*":e=>Ve(et.q({layerType:s,layer:r},e))}})}}))}function a(e){var t=e.value,e=e.key,i=et.o(t);return"string"!==i?[new et.V(e,t,`string expected, ${i} found`)]:[]}const Ge={promoteId:function({key:e,value:t}){if("string"===et.o(t))return a({key:e,value:t});{const et=[];for(const i in t)et.push(...a({key:e+"."+i,value:t[i]}));return et}}};function qe(e){const t=e.value,i=e.key,r=e.styleSpec,a=e.style;if(!t.type)return[new et.V(i,t,'"type" is required')];const n=et.u(t.type);let o=[];switch(!["vector","raster","raster-dem","raster-array"].includes(n)||t.url||t.tiles||o.push(new et.n(i,t,'Either "url" or "tiles" is required.')),n){case"vector":case"raster":case"raster-dem":case"raster-array":return o=o.concat(p({key:i,value:t,valueSpec:r["source_"+n.replace("-","_")],style:e.style,styleSpec:r,objectElementValidators:Ge}));case"geojson":if(o=p({key:i,value:t,valueSpec:r.source_geojson,style:a,styleSpec:r,objectElementValidators:Ge}),t.cluster)for(const et in t.clusterProperties){const[e,r]=t.clusterProperties[et],a="string"==typeof e?[e,["accumulated"],["get",et]]:e;o.push(...l({key:`${i}.${et}.map`,value:r,expressionContext:"cluster-map"})),o.push(...l({key:`${i}.${et}.reduce`,value:a,expressionContext:"cluster-reduce"}))}return o;case"video":return p({key:i,value:t,valueSpec:r.source_video,style:a,styleSpec:r});case"image":return p({key:i,value:t,valueSpec:r.source_image,style:a,styleSpec:r});case"canvas":return[new et.V(i,null,"Please use runtime APIs to add canvas sources, rather than including them in stylesheets.","source.canvas")];default:return Be({key:i+".type",value:t.type,valueSpec:{values:(s=r).source.reduce((e,t)=>{t=s[t];return e="enum"===t.type.type?e.concat(Object.keys(t.type.values)):e},[])},style:a,styleSpec:r})}var s}function $e(e){var t=e.value,i=e.styleSpec,r=i.light,a=e.style;let n=[];const o=et.o(t);if(void 0===t)return n;if("object"!==o)return n=n.concat([new et.V("light",t,`object expected, ${o} found`)]);for(const e in t){const o=e.match(/^(.*)-transition$/);n=n.concat(o&&r[o[1]]&&r[o[1]].transition?f({key:e,value:t[e],valueSpec:i.transition,style:a,styleSpec:i}):r[e]?f({key:e,value:t[e],valueSpec:r[e],style:a,styleSpec:i}):[new et.V(e,t[e],`unknown property "${e}"`)])}return n}function Ze(t){const i=t.value;let r=[];if(!i)return r;const e=et.o(i);if("object"!==e)return r=r.concat([new et.V("light-3d",i,`object expected, ${e} found`)]);const a=t.styleSpec,n=a["light-3d"],o=t.key,s=t.style,l=t.style.lights;for(const t of["type","id"])if(!(t in i))return r=r.concat([new et.V("light-3d",i,`missing property ${t} on light`)]),r;if(i.type&&l)for(let e=0;e[],array:Le,boolean:function(e){var t=e.value,e=e.key,i=et.o(t);return"boolean"!==i?[new et.V(e,t,`boolean expected, ${i} found`)]:[]},number:ke,color:function(e){var t=e.key,e=e.value,i=et.o(e);return"string"!==i?[new et.V(t,e,`color expected, ${i} found`)]:null===et.G(e)?[new et.V(t,e,`color expected, "${e}" found`)]:[]},enum:Be,filter:Fe,function:Oe,layer:je,object:p,source:qe,model:et.L,light:$e,"light-3d":Ze,terrain:We,fog:He,string:a,formatted:function(e){return 0===a(e).length?[]:l(e)},resolvedImage:function(e){return 0===a(e).length?[]:l(e)},projection:function(e){var t=e.value,i=e.styleSpec,r=i.projection,a=e.style;let n=[];e=et.o(t);if("object"===e)for(const et in t)n=n.concat(f({key:et,value:t[et],valueSpec:r[et],style:a,styleSpec:i}));else"string"!==e&&(n=n.concat([new et.V("projection",t,`object or string expected, ${e} found`)]));return n},import:function(e){const{value:t,styleSpec:i}=e,{data:r,...a}=t;Object.defineProperty(a,"__line__",{value:t.__line__,enumerable:!1});let n=p(et.q({},e,{value:a,valueSpec:i.import}));return""===et.u(a.id)&&n.push(new et.V(e.key+".id",a,"import id can't be an empty string")),n=r?n.concat(Je(r,i,{key:e.key+".data"})):n}};function f(e,t=!1){const i=e.value,r=e.valueSpec,a=e.styleSpec;if(r.expression&&et.J(et.u(i)))return Oe(e);if(r.expression&&et.v(et.x(i)))return l(e);if(r.type&&Xe[r.type]){const i=Xe[r.type](e);return!0===t&&0[]}})}function o(e,t=et.N){return s(Je(e,t))}const Ke=e=>s(qe(e)),Qe=e=>s($e(e)),rt=e=>s(Ze(e)),at=e=>s(We(e)),nt=e=>s(He(e)),ot=e=>s(je(e)),st=e=>s(Fe(e)),lt=e=>s(et.L(e));function s(e){return e.slice().sort((e,t)=>e.line&&t.line?e.line-t.line:0)}function ct(e,t){let i=!1;if(t&&t.length)for(const r of t)r instanceof et.n?et.w(r.message):(e.fire(new et.f(new Error(r.message))),i=!0);return i}let ht;class ut extends et.E{constructor(e,t="flat"){super(),this._transitionable=new et.O(ht=ht||new et.U({anchor:new et.W(et.N.light.anchor),position:new et.X(et.N.light.position),color:new et.W(et.N.light.color),intensity:new et.W(et.N.light.intensity)})),this.setLight(e,t),this._transitioning=this._transitionable.untransitioned()}getLight(){return this._transitionable.serialize()}setLight(e,t,i={}){this._validate(Qe,e,i)||(this._transitionable.setTransitionOrValue(e),this.id=t)}updateTransitions(e){this._transitioning=this._transitionable.transitioned(e,this._transitioning)}hasTransition(){return this._transitioning.hasTransition()}recalculate(e){this.properties=this._transitioning.possiblyEvaluate(e)}_validate(e,t,i){return(!i||!1!==i.validate)&&ct(this,e.call(o,et.Q({value:t,style:{glyphs:!0,sprite:!0},styleSpec:et.N})))}}const dt=new et.U({source:new et.W(et.N.terrain.source),exaggeration:new et.W(et.N.terrain.exaggeration)});let pt=class extends et.E{constructor(e,t,i,r){super(),this.scope=i,this._transitionable=new et.O(dt,i,r),this._transitionable.setTransitionOrValue(e,r),this._transitioning=this._transitionable.untransitioned(),this.drapeRenderMode=t}get(){return this._transitionable.serialize()}set(e,t){this._transitionable.setTransitionOrValue(e,t)}updateTransitions(e){this._transitioning=this._transitionable.transitioned(e,this._transitioning)}hasTransition(){return this._transitioning.hasTransition()}recalculate(e){this.properties=this._transitioning.possiblyEvaluate(e)}getExaggeration(e){return this._transitioning.possiblyEvaluate(new et.Y(e)).get("exaggeration")}isZoomDependent(){var e=this._transitionable._values.exaggeration;return null!=e&&null!=e.value&&null!=e.value.expression&&e.value.expression instanceof et.Z}};const ft=45,mt=65;function _t(e,t,i,r){var i=et.a0(ft,mt,i),[r,a]=gt(e,r),t=1-Math.min(1,Math.exp((t-r)/(a-r)*-6));return t*=t*t,Math.min(1,1.00747*t)*i*e.alpha}function gt(e,t){t=.5/Math.tan(.5*t);return[e.range[0]+t,e.range[1]+t]}function yt(e,t,i,r,a){t=et.$.transformMat4([],[t,i,r],a.mercatorFogMatrix);return _t(e,et.$.length(t),a.pitch,a._fov)}function xt(e,t,i,r,a,n,o){let s=Number.MAX_VALUE,l=-Number.MAX_VALUE;for(const e of[[i,r,0],[a,r,0],[a,n,0],[i,n,0]]){const i=et.$.transformMat4([],e,t),r=et.$.length(i);s=Math.min(s,r),l=Math.max(l,r)}return[_t(e,s,o.pitch,o._fov),_t(e,l,o.pitch,o._fov)]}const vt=new et.U({range:new et.W(et.N.fog.range),color:new et.W(et.N.fog.color),"high-color":new et.W(et.N.fog["high-color"]),"space-color":new et.W(et.N.fog["space-color"]),"horizon-blend":new et.W(et.N.fog["horizon-blend"]),"star-intensity":new et.W(et.N.fog["star-intensity"]),"vertical-range":new et.W(et.N.fog["vertical-range"])});class bt extends et.E{constructor(e,t,i,r){super(),this._transitionable=new et.O(vt,i,new Map(r)),this.set(e,r),this._transitioning=this._transitionable.untransitioned(),this._transform=t,this.properties=new et.a1(vt),this.scope=i}get state(){var e=this._transform,t="globe"===e.projection.name,e=et.a2(e.zoom),i=this.properties.get("range"),r=[.5,3];return{range:t?[et.a3(r[0],i[0],e),et.a3(r[1],i[1],e)]:i,horizonBlend:this.properties.get("horizon-blend"),alpha:this.properties.get("color").a}}get(){return this._transitionable.serialize()}set(e,t,i={}){if(!this._validate(nt,e,i)){const r=et.Q({},e);for(const e of Object.keys(et.N.fog))void 0===r[e]&&(r[e]=et.N.fog[e].default);this._options=r,this._transitionable.setTransitionOrValue(this._options,t)}}getOpacity(e){if(!this._transform.projection.supportsFog)return 0;var t=this.properties&&this.properties.get("color")||1;return("globe"===this._transform.projection.name?1:et.a0(ft,mt,e))*t.a}getOpacityAtLatLng(e,t){return this._transform.projection.supportsFog?(i=this.state,t=t,e=et._.fromLngLat(e),r=t.elevation?t.elevation.getAtPointOrZero(e):0,yt(i,e.x,e.y,r,t)):0;var i,r}getOpacityForTile(e){if(!this._transform.projection.supportsFog)return[1,1];e=this._transform.calculateFogTileMatrix(e.toUnwrapped());return xt(this.state,e,0,0,et.a4,et.a4,this._transform)}getOpacityForBounds(e,t,i,r,a){return this._transform.projection.supportsFog?xt(this.state,e,t,i,r,a,this._transform):[1,1]}getFovAdjustedRange(e){return this._transform.projection.supportsFog?gt(this.state,e):[0,1]}isVisibleOnFrustum(t){if(!this._transform.projection.supportsFog)return!1;const i=[4,5,6,7];for(const a of i){const i=t.points[a];let e;var r;if(e=0<=i[2]?i:(r=t.points[a-4],et.a5(r,i,r[2]/(r[2]-i[2]))),.05<=yt(this.state,e[0],e[1],0,this._transform))return!0}return!1}updateConfig(e){this._transitionable.setTransitionOrValue(this._options,new Map(e))}updateTransitions(e){this._transitioning=this._transitionable.transitioned(e,this._transitioning)}hasTransition(){return this._transitioning.hasTransition()}recalculate(e){this.properties=this._transitioning.possiblyEvaluate(e)}_validate(e,t,i){return(!i||!1!==i.validate)&&ct(this,e.call(o,et.Q({value:t,style:{glyphs:!0,sprite:!0},styleSpec:et.N})))}}class wt extends et.E{constructor(e,t,i,r){super(),this.scope=i,this._options=e,this.properties=new et.a1(t),this._transitionable=new et.O(t,i,new Map(r)),this._transitionable.setTransitionOrValue(e.properties),this._transitioning=this._transitionable.untransitioned()}updateConfig(e){this._transitionable.setTransitionOrValue(this._options.properties,new Map(e))}updateTransitions(e){this._transitioning=this._transitionable.transitioned(e,this._transitioning)}hasTransition(){return this._transitioning.hasTransition()}recalculate(e){this.properties=this._transitioning.possiblyEvaluate(e)}get(){return this._options.properties=this._transitionable.serialize(),this._options}set(e,t){this._options=e,this._transitionable.setTransitionOrValue(e.properties,t)}shadowsEnabled(){return!!this.properties&&!0===this.properties.get("cast-shadows")}}let Tt,Et;var St="\n#define EPSILON 0.0000001\n#define PI 3.141592653589793\n#ifdef RENDER_CUTOFF\nfloat cutoff_opacity(vec4 cutoff_params,float depth) {float near=cutoff_params.x;float far=cutoff_params.y;float cutoffStart=cutoff_params.z;float cutoffEnd=cutoff_params.w;float linearDepth=(depth-near)/(far-near);return clamp((linearDepth-cutoffStart)/(cutoffEnd-cutoffStart),0.0,1.0);}\n#endif",Mt="\nout vec4 glFragColor;highp float unpack_depth(highp vec4 rgba_depth)\n{const highp vec4 bit_shift=vec4(1.0/(255.0*255.0*255.0),1.0/(255.0*255.0),1.0/255.0,1.0);return dot(rgba_depth,bit_shift)*2.0-1.0;}highp vec4 pack_depth(highp float ndc_z) {highp float depth=ndc_z*0.5+0.5;const highp vec4 bit_shift=vec4(255.0*255.0*255.0,255.0*255.0,255.0,1.0);const highp vec4 bit_mask =vec4(0.0,1.0/255.0,1.0/255.0,1.0/255.0);highp vec4 res=fract(depth*bit_shift);res-=res.xxyz*bit_mask;return res;}\n#ifdef INDICATOR_CUTOUT\nuniform vec2 u_indicator_cutout_centers;uniform vec4 u_indicator_cutout_params;\n#endif\nvec4 applyCutout(vec4 color) {\n#ifdef INDICATOR_CUTOUT\nfloat holeMinOpacity=u_indicator_cutout_params.x;float holeRadius=max(u_indicator_cutout_params.y,0.0);float holeAspectRatio=u_indicator_cutout_params.z;float fadeStart=u_indicator_cutout_params.w;float distA=distance(vec2(gl_FragCoord.x,gl_FragCoord.y*holeAspectRatio),vec2(u_indicator_cutout_centers[0],u_indicator_cutout_centers[1]*holeAspectRatio));return color*min(smoothstep(fadeStart,holeRadius,distA)+holeMinOpacity,1.0);\n#else\nreturn color;\n#endif\n}\n#ifdef DEBUG_WIREFRAME\n#define HANDLE_WIREFRAME_DEBUG \\\nglFragColor=vec4(0.7,0.0,0.0,0.7); \\\ngl_FragDepth=gl_FragCoord.z-0.0001;\n#else\n#define HANDLE_WIREFRAME_DEBUG\n#endif\n#ifdef RENDER_CUTOFF\nuniform highp vec4 u_cutoff_params;in float v_cutoff_opacity;\n#endif\nvec4 textureLodCustom(sampler2D image,vec2 pos,vec2 lod_coord) {vec2 size=vec2(textureSize(image,0));vec2 dx=dFdx(lod_coord.xy*size);vec2 dy=dFdy(lod_coord.xy*size);float delta_max_sqr=max(dot(dx,dx),dot(dy,dy));float lod=0.5*log2(delta_max_sqr);return textureLod(image,pos,lod);}vec4 applyLUT(highp sampler3D lut,vec4 col) {vec3 size=vec3(textureSize(lut,0));vec3 uvw=(col.rbg*float(size-1.0)+0.5)/size;return vec4(texture(lut,uvw).rgb,col.a);}vec3 applyLUT(highp sampler3D lut,vec3 col) {return applyLUT(lut,vec4(col,1.0)).rgb;}",It="\n#define EXTENT 8192.0\n#define RAD_TO_DEG 180.0/PI\n#define DEG_TO_RAD PI/180.0\n#define GLOBE_RADIUS EXTENT/PI/2.0\nfloat wrap(float n,float min,float max) {float d=max-min;float w=mod(mod(n-min,d)+d,d)+min;return (w==min) ? max : w;}\n#ifdef PROJECTION_GLOBE_VIEW\nvec3 mercator_tile_position(mat4 matrix,vec2 tile_anchor,vec3 tile_id,vec2 mercator_center) {\n#ifndef PROJECTED_POS_ON_VIEWPORT\nfloat tiles=tile_id.z;vec2 mercator=(tile_anchor/EXTENT+tile_id.xy)/tiles;mercator-=mercator_center;mercator.x=wrap(mercator.x,-0.5,0.5);vec4 mercator_tile=vec4(mercator.xy*EXTENT,EXTENT/(2.0*PI),1.0);mercator_tile=matrix*mercator_tile;return mercator_tile.xyz;\n#else\nreturn vec3(0.0);\n#endif\n}vec3 mix_globe_mercator(vec3 globe,vec3 mercator,float t) {return mix(globe,mercator,t);}mat3 globe_mercator_surface_vectors(vec3 pos_normal,vec3 up_dir,float zoom_transition) {vec3 normal=zoom_transition==0.0 ? pos_normal : normalize(mix(pos_normal,up_dir,zoom_transition));vec3 xAxis=normalize(vec3(normal.z,0.0,-normal.x));vec3 yAxis=normalize(cross(normal,xAxis));return mat3(xAxis,yAxis,normal);}\n#endif\nvec2 unpack_float(const float packedValue) {int packedIntValue=int(packedValue);int v0=packedIntValue/256;return vec2(v0,packedIntValue-v0*256);}vec2 unpack_opacity(const float packedOpacity) {int intOpacity=int(packedOpacity)/2;return vec2(float(intOpacity)/127.0,mod(packedOpacity,2.0));}vec4 decode_color(const vec2 encodedColor) {return vec4(\nunpack_float(encodedColor[0])/255.0,unpack_float(encodedColor[1])/255.0\n);}float unpack_mix_vec2(const vec2 packedValue,const float t) {return mix(packedValue[0],packedValue[1],t);}vec4 unpack_mix_color(const vec4 packedColors,const float t) {vec4 minColor=decode_color(vec2(packedColors[0],packedColors[1]));vec4 maxColor=decode_color(vec2(packedColors[2],packedColors[3]));return mix(minColor,maxColor,t);}vec2 get_pattern_pos(const vec2 pixel_coord_upper,const vec2 pixel_coord_lower,const vec2 pattern_size,const float tile_units_to_pixels,const vec2 pos) {vec2 offset=mod(mod(mod(pixel_coord_upper,pattern_size)*256.0,pattern_size)*256.0+pixel_coord_lower,pattern_size);return (tile_units_to_pixels*pos+offset)/pattern_size;}float mercatorXfromLng(float lng) {return (180.0+lng)/360.0;}float mercatorYfromLat(float lat) {return (180.0-(RAD_TO_DEG*log(tan(PI/4.0+lat/2.0*DEG_TO_RAD))))/360.0;}vec3 latLngToECEF(vec2 latLng) {latLng=DEG_TO_RAD*latLng;float cosLat=cos(latLng[0]);float sinLat=sin(latLng[0]);float cosLng=cos(latLng[1]);float sinLng=sin(latLng[1]);float sx=cosLat*sinLng*GLOBE_RADIUS;float sy=-sinLat*GLOBE_RADIUS;float sz=cosLat*cosLng*GLOBE_RADIUS;return vec3(sx,sy,sz);}\n#ifdef RENDER_CUTOFF\nuniform vec4 u_cutoff_params;out float v_cutoff_opacity;\n#endif\nconst vec4 AWAY=vec4(-1000.0,-1000.0,-1000.0,1);const float skirtOffset=24575.0;vec3 decomposeToPosAndSkirt(vec2 posWithComposedSkirt)\n{float skirt=float(posWithComposedSkirt.x >=skirtOffset);vec2 pos=posWithComposedSkirt-vec2(skirt*skirtOffset,0.0);return vec3(pos,skirt);}",At="in highp vec3 a_pos_3f;uniform lowp mat4 u_matrix;out highp vec3 v_uv;void main() {const mat3 half_neg_pi_around_x=mat3(1.0,0.0, 0.0,0.0,0.0,-1.0,0.0,1.0, 0.0);v_uv=half_neg_pi_around_x*a_pos_3f;vec4 pos=u_matrix*vec4(a_pos_3f,1.0);gl_Position=pos.xyww;}",Ct="\n#define ELEVATION_SCALE 7.0\n#define ELEVATION_OFFSET 450.0\n#ifdef PROJECTION_GLOBE_VIEW\nuniform vec3 u_tile_tl_up;uniform vec3 u_tile_tr_up;uniform vec3 u_tile_br_up;uniform vec3 u_tile_bl_up;uniform float u_tile_up_scale;vec3 elevationVector(vec2 pos) {vec2 uv=pos/EXTENT;vec3 up=normalize(mix(\nmix(u_tile_tl_up,u_tile_tr_up,uv.xxx),mix(u_tile_bl_up,u_tile_br_up,uv.xxx),uv.yyy));return up*u_tile_up_scale;}\n#else\nvec3 elevationVector(vec2 pos) { return vec3(0,0,1); }\n#endif\n#ifdef TERRAIN\nuniform highp sampler2D u_dem;uniform highp sampler2D u_dem_prev;uniform vec2 u_dem_tl;uniform vec2 u_dem_tl_prev;uniform float u_dem_scale;uniform float u_dem_scale_prev;uniform float u_dem_size;uniform float u_dem_lerp;uniform float u_exaggeration;uniform float u_meter_to_dem;uniform mat4 u_label_plane_matrix_inv;vec4 tileUvToDemSample(vec2 uv,float dem_size,float dem_scale,vec2 dem_tl) {vec2 pos=dem_size*(uv*dem_scale+dem_tl)+1.0;vec2 f=fract(pos);return vec4((pos-f+0.5)/(dem_size+2.0),f);}float currentElevation(vec2 apos) {\n#ifdef TERRAIN_DEM_FLOAT_FORMAT\nvec2 pos=(u_dem_size*(apos/8192.0*u_dem_scale+u_dem_tl)+1.5)/(u_dem_size+2.0);return u_exaggeration*texture(u_dem,pos).r;\n#else\nfloat dd=1.0/(u_dem_size+2.0);vec4 r=tileUvToDemSample(apos/8192.0,u_dem_size,u_dem_scale,u_dem_tl);vec2 pos=r.xy;vec2 f=r.zw;float tl=texture(u_dem,pos).r;float tr=texture(u_dem,pos+vec2(dd,0)).r;float bl=texture(u_dem,pos+vec2(0,dd)).r;float br=texture(u_dem,pos+vec2(dd,dd)).r;return u_exaggeration*mix(mix(tl,tr,f.x),mix(bl,br,f.x),f.y);\n#endif\n}float prevElevation(vec2 apos) {\n#ifdef TERRAIN_DEM_FLOAT_FORMAT\nvec2 pos=(u_dem_size*(apos/8192.0*u_dem_scale_prev+u_dem_tl_prev)+1.5)/(u_dem_size+2.0);return u_exaggeration*texture(u_dem_prev,pos).r;\n#else\nfloat dd=1.0/(u_dem_size+2.0);vec4 r=tileUvToDemSample(apos/8192.0,u_dem_size,u_dem_scale_prev,u_dem_tl_prev);vec2 pos=r.xy;vec2 f=r.zw;float tl=texture(u_dem_prev,pos).r;float tr=texture(u_dem_prev,pos+vec2(dd,0)).r;float bl=texture(u_dem_prev,pos+vec2(0,dd)).r;float br=texture(u_dem_prev,pos+vec2(dd,dd)).r;return u_exaggeration*mix(mix(tl,tr,f.x),mix(bl,br,f.x),f.y);\n#endif\n}\n#ifdef TERRAIN_VERTEX_MORPHING\nfloat elevation(vec2 apos) {\n#ifdef ZERO_EXAGGERATION\nreturn 0.0;\n#endif\nfloat nextElevation=currentElevation(apos);float prevElevation=prevElevation(apos);return mix(prevElevation,nextElevation,u_dem_lerp);}\n#else\nfloat elevation(vec2 apos) {\n#ifdef ZERO_EXAGGERATION\nreturn 0.0;\n#endif\nreturn currentElevation(apos);}\n#endif\nvec4 fourSample(vec2 pos,vec2 off) {float tl=texture(u_dem,pos).r;float tr=texture(u_dem,pos+vec2(off.x,0.0)).r;float bl=texture(u_dem,pos+vec2(0.0,off.y)).r;float br=texture(u_dem,pos+off).r;return vec4(tl,tr,bl,br);}float flatElevation(vec2 pack) {vec2 apos=floor(pack/8.0);vec2 span=10.0*(pack-apos*8.0);vec2 uvTex=(apos-vec2(1.0,1.0))/8190.0;float size=u_dem_size+2.0;float dd=1.0/size;vec2 pos=u_dem_size*(uvTex*u_dem_scale+u_dem_tl)+1.0;vec2 f=fract(pos);pos=(pos-f+0.5)*dd;vec4 h=fourSample(pos,vec2(dd));float z=mix(mix(h.x,h.y,f.x),mix(h.z,h.w,f.x),f.y);vec2 w=floor(0.5*(span*u_meter_to_dem-1.0));vec2 d=dd*w;h=fourSample(pos-d,2.0*d+vec2(dd));vec4 diff=abs(h.xzxy-h.ywzw);vec2 slope=min(vec2(0.25),u_meter_to_dem*0.5*(diff.xz+diff.yw)/(2.0*w+vec2(1.0)));vec2 fix=slope*span;float base=z+max(fix.x,fix.y);return u_exaggeration*base;}float elevationFromUint16(float word) {return u_exaggeration*(word/ELEVATION_SCALE-ELEVATION_OFFSET);}\n#else\nfloat elevation(vec2 pos) { return 0.0; }\n#endif\n#ifdef DEPTH_OCCLUSION\nuniform highp sampler2D u_depth;uniform highp vec2 u_depth_size_inv;uniform highp vec2 u_depth_range_unpack;uniform highp float u_occluder_half_size;uniform highp float u_occlusion_depth_offset;\n#ifdef DEPTH_D24\nfloat unpack_depth(float depth) {return depth*u_depth_range_unpack.x+u_depth_range_unpack.y;}vec4 unpack_depth4(vec4 depth) {return depth*u_depth_range_unpack.x+vec4(u_depth_range_unpack.y);}\n#else\nhighp float unpack_depth_rgba(vec4 rgba_depth)\n{const highp vec4 bit_shift=vec4(1.0/(255.0*255.0*255.0),1.0/(255.0*255.0),1.0/255.0,1.0);return dot(rgba_depth,bit_shift)*2.0-1.0;}\n#endif\nbool isOccluded(vec4 frag) {vec3 coord=frag.xyz/frag.w;\n#ifdef DEPTH_D24\nfloat depth=unpack_depth(texture(u_depth,(coord.xy+1.0)*0.5).r);\n#else\nfloat depth=unpack_depth_rgba(texture(u_depth,(coord.xy+1.0)*0.5));\n#endif\nreturn coord.z+u_occlusion_depth_offset > depth;}highp vec4 getCornerDepths(vec2 coord) {highp vec3 df=vec3(u_occluder_half_size*u_depth_size_inv,0.0);highp vec2 uv=0.5*coord.xy+0.5;\n#ifdef DEPTH_D24\nhighp vec4 depth=vec4(\ntexture(u_depth,uv-df.xz).r,texture(u_depth,uv+df.xz).r,texture(u_depth,uv-df.zy).r,texture(u_depth,uv+df.zy).r\n);depth=unpack_depth4(depth);\n#else\nhighp vec4 depth=vec4(\nunpack_depth_rgba(texture(u_depth,uv-df.xz)),unpack_depth_rgba(texture(u_depth,uv+df.xz)),unpack_depth_rgba(texture(u_depth,uv-df.zy)),unpack_depth_rgba(texture(u_depth,uv+df.zy))\n);\n#endif\nreturn depth;}highp float occlusionFadeMultiSample(vec4 frag) {highp vec3 coord=frag.xyz/frag.w;highp vec2 uv=0.5*coord.xy+0.5;int NX=3;int NY=4;highp vec2 df=u_occluder_half_size*u_depth_size_inv;highp vec2 oneStep=2.0*u_occluder_half_size*u_depth_size_inv/vec2(NX-1,NY-1);highp float res=0.0;for (int y=0; y < NY;++y) {for (int x=0; x < NX;++x) {\n#ifdef DEPTH_D24\nhighp float depth=unpack_depth(texture(u_depth,uv-df+vec2(float(x)*oneStep.x,float(y)*oneStep.y)).r);\n#else\nhighp float depth=unpack_depth_rgba(texture(u_depth,uv-df+vec2(float(x)*oneStep.x,float(y)*oneStep.y)));\n#endif\nres+=1.0-clamp(300.0*(coord.z+u_occlusion_depth_offset-depth),0.0,1.0);}}res=clamp(2.0*res/float(NX*NY)-0.5,0.0,1.0);return res;}highp float occlusionFade(vec4 frag) {highp vec3 coord=frag.xyz/frag.w;highp vec4 depth=getCornerDepths(coord.xy);return dot(vec4(0.25),vec4(1.0)-clamp(300.0*(vec4(coord.z+u_occlusion_depth_offset)-depth),0.0,1.0));}\n#else\nbool isOccluded(vec4 frag) { return false; }highp float occlusionFade(vec4 frag) { return 1.0; }highp float occlusionFadeMultiSample(vec4 frag) { return 1.0; }\n#endif//DEPTH_OCCLUSION",Pt="#ifdef FOG\nuniform mediump vec4 u_fog_color;uniform mediump vec2 u_fog_range;uniform mediump float u_fog_horizon_blend;uniform mediump mat4 u_fog_matrix;out vec3 v_fog_pos;float fog_range(float depth) {return (depth-u_fog_range[0])/(u_fog_range[1]-u_fog_range[0]);}float fog_horizon_blending(vec3 camera_dir) {float t=max(0.0,camera_dir.z/u_fog_horizon_blend);return u_fog_color.a*exp(-3.0*t*t);}float fog_opacity(float t) {const float decay=6.0;float falloff=1.0-min(1.0,exp(-decay*t));falloff*=falloff*falloff;return u_fog_color.a*min(1.0,1.00747*falloff);}vec3 fog_position(vec3 pos) {return (u_fog_matrix*vec4(pos,1.0)).xyz;}vec3 fog_position(vec2 pos) {return fog_position(vec3(pos,0.0));}float fog(vec3 pos) {float depth=length(pos);float opacity=fog_opacity(fog_range(depth));return opacity*fog_horizon_blending(pos/depth);}\n#endif",zt="highp vec3 hash(highp vec2 p) {highp vec3 p3=fract(p.xyx*vec3(443.8975,397.2973,491.1871));p3+=dot(p3,p3.yxz+19.19);return fract((p3.xxy+p3.yzz)*p3.zyx);}vec3 dither(vec3 color,highp vec2 seed) {vec3 rnd=hash(seed)+hash(seed+0.59374)-0.5;return color+rnd/255.0;}\n#ifdef FOG\nuniform mediump vec4 u_fog_color;uniform mediump vec2 u_fog_range;uniform mediump float u_fog_horizon_blend;uniform mediump vec2 u_fog_vertical_limit;uniform mediump float u_fog_temporal_offset;in vec3 v_fog_pos;uniform highp vec3 u_frustum_tl;uniform highp vec3 u_frustum_tr;uniform highp vec3 u_frustum_br;uniform highp vec3 u_frustum_bl;uniform highp vec3 u_globe_pos;uniform highp float u_globe_radius;uniform highp vec2 u_viewport;uniform float u_globe_transition;uniform int u_is_globe;float fog_range(float depth) {return (depth-u_fog_range[0])/(u_fog_range[1]-u_fog_range[0]);}float fog_horizon_blending(vec3 camera_dir) {float t=max(0.0,camera_dir.z/u_fog_horizon_blend);return u_fog_color.a*exp(-3.0*t*t);}float fog_opacity(float t) {const float decay=6.0;float falloff=1.0-min(1.0,exp(-decay*t));falloff*=falloff*falloff;return u_fog_color.a*min(1.0,1.00747*falloff);}float globe_glow_progress() {highp vec2 uv=gl_FragCoord.xy/u_viewport;highp vec3 ray_dir=mix(\nmix(u_frustum_tl,u_frustum_tr,uv.x),mix(u_frustum_bl,u_frustum_br,uv.x),1.0-uv.y);highp vec3 dir=normalize(ray_dir);highp vec3 closest_point=dot(u_globe_pos,dir)*dir;highp float sdf=length(closest_point-u_globe_pos)/u_globe_radius;return sdf+PI*0.5;}float fog_opacity(vec3 pos) {float depth=length(pos);return fog_opacity(fog_range(depth));}vec3 fog_apply(vec3 color,vec3 pos,float opacity_limit) {float depth=length(pos);float opacity;if (u_is_globe==1) {float glow_progress=globe_glow_progress();float t=mix(glow_progress,depth,u_globe_transition);opacity=fog_opacity(fog_range(t));} else {opacity=fog_opacity(fog_range(depth));opacity*=fog_horizon_blending(pos/depth);}return mix(color,u_fog_color.rgb,min(opacity,opacity_limit));}vec3 fog_apply(vec3 color,vec3 pos) {return fog_apply(color,pos,1.0);}vec4 fog_apply_from_vert(vec4 color,float fog_opac) {float alpha=EPSILON+color.a;color.rgb=mix(color.rgb/alpha,u_fog_color.rgb,fog_opac)*alpha;return color;}vec3 fog_apply_sky_gradient(vec3 camera_ray,vec3 sky_color) {float horizon_blend=fog_horizon_blending(normalize(camera_ray));return mix(sky_color,u_fog_color.rgb,horizon_blend);}vec4 fog_apply_premultiplied(vec4 color,vec3 pos) {float alpha=EPSILON+color.a;color.rgb=fog_apply(color.rgb/alpha,pos)*alpha;return color;}vec4 fog_apply_premultiplied(vec4 color,vec3 pos,float heightMeters) {float verticalProgress=(u_fog_vertical_limit.x > 0.0 || u_fog_vertical_limit.y > 0.0) ? smoothstep(u_fog_vertical_limit.x,u_fog_vertical_limit.y,heightMeters) : 0.0;float opacityLimit=1.0-smoothstep(0.9,1.0,fog_opacity(pos));return mix(fog_apply_premultiplied(color,pos),color,min(verticalProgress,opacityLimit));}vec3 fog_dither(vec3 color) {\n#ifdef FOG_DITHERING\nvec2 dither_seed=gl_FragCoord.xy+u_fog_temporal_offset;return dither(color,dither_seed);\n#else\nreturn color;\n#endif\n}vec4 fog_dither(vec4 color) {return vec4(fog_dither(color.rgb),color.a);}\n#endif",Dt="#ifdef RASTER_ARRAY\nuniform sampler2D u_image0;uniform sampler2D u_image1;const vec4 NODATA=vec4(1);ivec4 _raTexLinearCoord(highp vec2 texCoord,highp vec2 texResolution,out highp vec2 fxy) {texCoord=texCoord*texResolution-0.5;fxy=fract(texCoord);texCoord-=fxy;return ivec4(texCoord.xxyy+vec2(1.5,0.5).xyxy);}vec2 _raTexLinearMix(highp vec2 fxy,highp vec4 colorMix,highp float colorOffset,highp vec4 t00,highp vec4 t10,highp vec4 t01,highp vec4 t11) {vec2 c00=t00==NODATA ? vec2(0) : vec2(colorOffset+dot(t00,colorMix),1);vec2 c10=t10==NODATA ? vec2(0) : vec2(colorOffset+dot(t10,colorMix),1);vec2 c01=t01==NODATA ? vec2(0) : vec2(colorOffset+dot(t01,colorMix),1);vec2 c11=t11==NODATA ? vec2(0) : vec2(colorOffset+dot(t11,colorMix),1);return mix(mix(c01,c11,fxy.x),mix(c00,c10,fxy.x),fxy.y);}vec2 raTexture2D_image0_linear(highp vec2 texCoord,highp vec2 texResolution,highp vec4 colorMix,highp float colorOffset) {vec2 fxy;ivec4 c=_raTexLinearCoord(texCoord,texResolution,fxy);return _raTexLinearMix(fxy,colorMix,colorOffset,texelFetch(u_image0,c.yz,0),texelFetch(u_image0,c.xz,0),texelFetch(u_image0,c.yw,0),texelFetch(u_image0,c.xw,0)\n);}vec2 raTexture2D_image1_linear(highp vec2 texCoord,highp vec2 texResolution,highp vec4 colorMix,highp float colorOffset) {vec2 fxy;ivec4 c=_raTexLinearCoord(texCoord,texResolution,fxy);return _raTexLinearMix(fxy,colorMix,colorOffset,texelFetch(u_image1,c.yz,0),texelFetch(u_image1,c.xz,0),texelFetch(u_image1,c.yw,0),texelFetch(u_image1,c.xw,0)\n);}vec2 raTexture2D_image0_nearest(highp vec2 texCoord,highp vec2 texResolution,highp vec4 colorMix,highp float colorOffset) {vec4 t=texelFetch(u_image0,ivec2(texCoord*texResolution),0);return t==NODATA ? vec2(0) : vec2(colorOffset+dot(t,colorMix),1);}vec2 raTexture2D_image1_nearest(highp vec2 texCoord,highp vec2 texResolution,highp vec4 colorMix,highp float colorOffset) {vec4 t=texelFetch(u_image1,ivec2(texCoord*texResolution),0);return t==NODATA ? vec2(0) : vec2(colorOffset+dot(t,colorMix),1);}\n#endif",Rt="#ifdef RASTER_ARRAY\nuniform sampler2D u_velocity;uniform mediump vec2 u_velocity_res;uniform mediump float u_max_speed;const vec4 NO_DATA=vec4(1);const vec2 INVALID_VELOCITY=vec2(-1);uniform highp vec2 u_uv_offset;uniform highp float u_data_offset;uniform highp vec2 u_data_scale;ivec4 rasterArrayLinearCoord(highp vec2 texCoord,highp vec2 texResolution,out highp vec2 fxy) {texCoord=texCoord*texResolution-0.5;fxy=fract(texCoord);texCoord-=fxy;return ivec4(texCoord.xxyy+vec2(1.5,0.5).xyxy);}highp vec2 lookup_velocity(highp vec2 uv) {uv=u_uv_offset.x+u_uv_offset.y*uv;highp vec2 fxy;ivec4 c=rasterArrayLinearCoord(uv,u_velocity_res,fxy);highp vec4 tl=texelFetch(u_velocity,c.yz,0);highp vec4 tr=texelFetch(u_velocity,c.xz,0);highp vec4 bl=texelFetch(u_velocity,c.yw,0);highp vec4 br=texelFetch(u_velocity,c.xw,0);if (tl==NO_DATA) {return INVALID_VELOCITY;}if (tr==NO_DATA) {return INVALID_VELOCITY;}if (bl==NO_DATA) {return INVALID_VELOCITY;}if (br==NO_DATA) {return INVALID_VELOCITY;}highp vec4 t=mix(mix(bl,br,fxy.x),mix(tl,tr,fxy.x),fxy.y);highp vec2 velocity=u_data_offset+vec2(dot(t.rg,u_data_scale),dot(t.ba,u_data_scale));velocity.y=-velocity.y;velocity/=max(u_max_speed,length(velocity));return velocity;}\n#endif\nuniform highp float u_particle_pos_scale;uniform highp vec2 u_particle_pos_offset;highp vec4 pack_pos_to_rgba(highp vec2 p) {highp vec2 v=(p+u_particle_pos_offset)/u_particle_pos_scale;highp vec4 r=vec4(v.x,fract(v.x*255.0),v.y,fract(v.y*255.0));return vec4(r.x-r.y/255.0,r.y,r.z-r.w/255.0,r.w);}highp vec2 unpack_pos_from_rgba(highp vec4 v) {v=floor(v*255.0+0.5)/255.0;highp vec2 p=vec2(v.x+(v.y/255.0),v.z+(v.w/255.0));return u_particle_pos_scale*p-u_particle_pos_offset;}",Lt="#ifdef RENDER_SHADOWS\nuniform mediump vec3 u_shadow_direction;uniform highp vec3 u_shadow_normal_offset;vec3 shadow_normal_offset(vec3 normal) {float tileInMeters=u_shadow_normal_offset[0];vec3 n=vec3(-normal.xy,tileInMeters*normal.z);float dotScale=min(1.0-dot(normal,u_shadow_direction),1.0)*0.5+0.5;return n*dotScale;}vec3 shadow_normal_offset_model(vec3 normal) {vec3 transformed_normal=vec3(-normal.xy,normal.z);float NDotL=dot(normalize(transformed_normal),u_shadow_direction);float dotScale=min(1.0-NDotL,1.0)*0.5+0.5;return normal*dotScale;}float shadow_normal_offset_multiplier0() {return u_shadow_normal_offset[1];}float shadow_normal_offset_multiplier1() {return u_shadow_normal_offset[2];}\n#endif//RENDER_SHADOWS",kt="#ifdef RENDER_SHADOWS\n#ifdef DEPTH_TEXTURE\nuniform highp sampler2D u_shadowmap_0;uniform highp sampler2D u_shadowmap_1;\n#else\nuniform sampler2D u_shadowmap_0;uniform sampler2D u_shadowmap_1;\n#endif\nuniform float u_shadow_intensity;uniform float u_shadow_map_resolution;uniform float u_shadow_texel_size;uniform highp vec3 u_shadow_normal_offset;uniform vec2 u_fade_range;uniform mediump vec3 u_shadow_direction;uniform highp vec3 u_shadow_bias;highp float shadow_sample_1(highp vec2 uv,highp float compare) {highp float shadow_depth;\n#ifdef DEPTH_TEXTURE\nshadow_depth=texture(u_shadowmap_1,uv).r;\n#else\nshadow_depth=unpack_depth(texture(u_shadowmap_1,uv))*0.5+0.5;\n#endif\nreturn step(shadow_depth,compare);}highp float shadow_sample_0(highp vec2 uv,highp float compare) {highp float shadow_depth;\n#ifdef DEPTH_TEXTURE\nshadow_depth=texture(u_shadowmap_0,uv).r;\n#else\nshadow_depth=unpack_depth(texture(u_shadowmap_0,uv))*0.5+0.5;\n#endif\nreturn step(shadow_depth,compare);}float shadow_occlusion_1(highp vec4 pos,highp float bias) {highp vec2 uv=pos.xy;return shadow_sample_1(uv,pos.z-bias);}float shadow_occlusion_0(highp vec4 pos,highp float bias) {highp float compare0=pos.z-bias;\n#ifdef NATIVE\nhighp vec2 uv=pos.xy;highp vec4 samples=textureGather(u_shadowmap_0,uv,0);lowp vec4 stepSamples=step(samples,vec4(compare0));\n#else\nhighp vec2 uv00=pos.xy-vec2(0.5*u_shadow_texel_size);highp vec2 uv10=uv00+vec2(u_shadow_texel_size,0.0);highp vec2 uv01=uv00+vec2(0.0,u_shadow_texel_size);highp vec2 uv11=uv01+vec2(u_shadow_texel_size,0.0);lowp vec4 stepSamples=vec4(\nshadow_sample_0(uv01,compare0),shadow_sample_0(uv11,compare0),shadow_sample_0(uv10,compare0),shadow_sample_0(uv00,compare0)\n);\n#endif\nvec2 f=fract(pos.xy*u_shadow_map_resolution-vec2(0.5));lowp vec2 lerpx=mix(stepSamples.wx,stepSamples.zy,f.xx);return mix(lerpx.x,lerpx.y,f.y);}float shadow_occlusion(highp vec4 light_view_pos0,highp vec4 light_view_pos1,float view_depth,highp float bias) {\n#ifdef SHADOWS_SINGLE_CASCADE\nlight_view_pos0.xyz=light_view_pos0.xyz/light_view_pos0.w*0.5+0.5;return shadow_occlusion_0(light_view_pos0,bias);\n#else\nlight_view_pos0.xyz/=light_view_pos0.w;light_view_pos1.xyz/=light_view_pos1.w;vec4 uv=vec4(light_view_pos0.xy,light_view_pos1.xy);vec4 abs_bounds=abs(uv);if (abs_bounds.x < 1.0 && abs_bounds.y < 1.0) {light_view_pos0.xyz=light_view_pos0.xyz*0.5+0.5;return shadow_occlusion_0(light_view_pos0,bias);}if (abs_bounds.z >=1.0 || abs_bounds.w >=1.0) {return 0.0;}light_view_pos1.xyz=light_view_pos1.xyz*0.5+0.5;float occlusion1=shadow_occlusion_1(light_view_pos1,bias);return mix(occlusion1,0.0,smoothstep(u_fade_range.x,u_fade_range.y,view_depth));\n#endif\n}highp float calculate_shadow_bias(float NDotL) {\n#ifdef NORMAL_OFFSET\nreturn 0.5*u_shadow_bias.x;\n#else\nreturn 0.5*(u_shadow_bias.x+clamp(u_shadow_bias.y*tan(acos(NDotL)),0.0,u_shadow_bias.z));\n#endif\n}float shadowed_light_factor_normal(vec3 N,highp vec4 light_view_pos0,highp vec4 light_view_pos1,float view_depth) {float NDotL=dot(N,u_shadow_direction);float bias=calculate_shadow_bias(NDotL);float occlusion=shadow_occlusion(light_view_pos0,light_view_pos1,view_depth,bias);return mix(0.0,(1.0-(u_shadow_intensity*occlusion))*NDotL,step(0.0,NDotL));}float shadowed_light_factor_normal_opacity(vec3 N,highp vec4 light_view_pos0,highp vec4 light_view_pos1,float view_depth,float shadow_opacity) {float NDotL=dot(N,u_shadow_direction);float bias=calculate_shadow_bias(NDotL);float occlusion=shadow_occlusion(light_view_pos0,light_view_pos1,view_depth,bias)*shadow_opacity;return mix(0.0,(1.0-(u_shadow_intensity*occlusion))*NDotL,step(0.0,NDotL));}float shadowed_light_factor_normal_unbiased(vec3 N,highp vec4 light_view_pos0,highp vec4 light_view_pos1,float view_depth) {float NDotL=dot(N,u_shadow_direction);float bias=0.0;float occlusion=shadow_occlusion(light_view_pos0,light_view_pos1,view_depth,bias);return mix(0.0,(1.0-(u_shadow_intensity*occlusion))*NDotL,step(0.0,NDotL));}float shadowed_light_factor(highp vec4 light_view_pos0,highp vec4 light_view_pos1,float view_depth) {float bias=0.0;float occlusion=shadow_occlusion(light_view_pos0,light_view_pos1,view_depth,bias);return 1.0-(u_shadow_intensity*occlusion);}float shadow_occlusion(float ndotl,highp vec4 light_view_pos0,highp vec4 light_view_pos1,float view_depth) {float bias=calculate_shadow_bias(ndotl);return shadow_occlusion(light_view_pos0,light_view_pos1,view_depth,bias);}\n#endif";const Ot=[],Bt=(h(St,Ot),h(It,Ot),h(Mt,Ot),{"_prelude_fog.vertex.glsl":Pt,"_prelude_terrain.vertex.glsl":Ct,"_prelude_shadow.vertex.glsl":Lt,"_prelude_fog.fragment.glsl":zt,"_prelude_shadow.fragment.glsl":kt,"_prelude_lighting.glsl":"\n#ifdef LIGHTING_3D_MODE\nuniform mediump vec3 u_lighting_ambient_color;uniform mediump vec3 u_lighting_directional_dir;uniform mediump vec3 u_lighting_directional_color;uniform mediump vec3 u_ground_radiance;float calculate_ambient_directional_factor(vec3 normal) {float NdotL=dot(normal,u_lighting_directional_dir);const float factor_reduction_max=0.3;float dir_luminance=dot(u_lighting_directional_color,vec3(0.2126,0.7152,0.0722));float directional_factor_min=1.0-factor_reduction_max*min(dir_luminance,1.0);float ambient_directional_factor=mix(directional_factor_min,1.0,min((NdotL+1.0),1.0));const float vertical_factor_min=0.92;float vertical_factor=mix(vertical_factor_min,1.0,normal.z*0.5+0.5);return vertical_factor*ambient_directional_factor;}vec3 linearProduct(vec3 srgbIn,vec3 k) {return srgbIn*pow(k,vec3(1./2.2));}vec3 apply_lighting(vec3 color,vec3 normal,float dir_factor) {float ambient_directional_factor=calculate_ambient_directional_factor(normal);vec3 ambient_contrib=ambient_directional_factor*u_lighting_ambient_color;vec3 directional_contrib=u_lighting_directional_color*dir_factor;return linearProduct(color,ambient_contrib+directional_contrib);}vec4 apply_lighting(vec4 color,vec3 normal,float dir_factor) {return vec4(apply_lighting(color.rgb,normal,dir_factor),color.a);}vec3 apply_lighting(vec3 color,vec3 normal) {float dir_factor=max(dot(normal,u_lighting_directional_dir),0.0);return apply_lighting(color.rgb,normal,dir_factor);}vec4 apply_lighting(vec4 color,vec3 normal) {float dir_factor=max(dot(normal,u_lighting_directional_dir),0.0);return vec4(apply_lighting(color.rgb,normal,dir_factor),color.a);}vec3 apply_lighting_ground(vec3 color) {return color*u_ground_radiance;}vec4 apply_lighting_ground(vec4 color) {return vec4(apply_lighting_ground(color.rgb),color.a);}float calculate_NdotL(vec3 normal) {const float ext=0.70710678118;return (clamp(dot(normal,u_lighting_directional_dir),-ext,1.0)+ext)/(1.0+ext);}vec4 apply_lighting_with_emission_ground(vec4 color,float emissive_strength) {return mix(apply_lighting_ground(color),color,emissive_strength);}vec3 compute_flood_lighting(vec3 flood_light_color,float fully_occluded_factor,float occlusion,vec3 ground_shadow_factor) {vec3 fully_occluded_color=flood_light_color*mix(ground_shadow_factor,vec3(1.0),fully_occluded_factor);float occlusion_ramp=smoothstep(0.0,0.2,1.0-occlusion);return mix(fully_occluded_color,flood_light_color,occlusion_ramp);}vec3 compute_emissive_draped(vec3 unlit_color,float fully_occluded_factor,float occlusion,vec3 ground_shadow_factor) {vec3 fully_occluded_color=unlit_color*mix(ground_shadow_factor,vec3(1.0),fully_occluded_factor);return mix(fully_occluded_color,unlit_color,1.0-occlusion);}\n#endif//LIGHTING_3D_MODE","_prelude_raster_array.glsl":Dt,"_prelude_raster_particle.glsl":Rt}),Ft={},Nt=(r("",Ct),r(zt,Pt),r(kt,Lt),r(Dt,""),r(Rt,""),r(Mt,It)),Vt=St;var Ut={background:r('#include "_prelude_fog.fragment.glsl"\n#include "_prelude_lighting.glsl"\nuniform vec4 u_color;uniform float u_opacity;\n#ifdef LIGHTING_3D_MODE\nin vec4 v_color;\n#endif\nvoid main() {vec4 out_color;\n#ifdef LIGHTING_3D_MODE\nout_color=v_color;\n#else\nout_color=u_color;\n#endif\n#ifdef FOG\nout_color=fog_dither(fog_apply_premultiplied(out_color,v_fog_pos));\n#endif\nglFragColor=out_color*u_opacity;\n#ifdef OVERDRAW_INSPECTOR\nglFragColor=vec4(1.0);\n#endif\nHANDLE_WIREFRAME_DEBUG;}','#include "_prelude_fog.vertex.glsl"\n#include "_prelude_lighting.glsl"\nin vec2 a_pos;uniform mat4 u_matrix;\n#ifdef LIGHTING_3D_MODE\nuniform mediump vec4 u_color;out vec4 v_color;uniform float u_emissive_strength;\n#endif\nvoid main() {gl_Position=u_matrix*vec4(a_pos,0,1);\n#ifdef LIGHTING_3D_MODE\nv_color=apply_lighting_with_emission_ground(u_color,u_emissive_strength);\n#endif\n#ifdef FOG\nv_fog_pos=fog_position(a_pos);\n#endif\n}'),backgroundPattern:r('#include "_prelude_fog.fragment.glsl"\n#include "_prelude_lighting.glsl"\nuniform vec2 u_pattern_tl;uniform vec2 u_pattern_br;uniform vec2 u_texsize;uniform float u_opacity;uniform float u_emissive_strength;uniform sampler2D u_image;in vec2 v_pos;void main() {vec2 imagecoord=mod(v_pos,1.0);vec2 pos=mix(u_pattern_tl/u_texsize,u_pattern_br/u_texsize,imagecoord);vec4 out_color=textureLodCustom(u_image,pos,v_pos);\n#ifdef LIGHTING_3D_MODE\nout_color=apply_lighting_with_emission_ground(out_color,u_emissive_strength);\n#endif\n#ifdef FOG\nout_color=fog_dither(fog_apply_premultiplied(out_color,v_fog_pos));\n#endif\nglFragColor=out_color*u_opacity;\n#ifdef OVERDRAW_INSPECTOR\nglFragColor=vec4(1.0);\n#endif\nHANDLE_WIREFRAME_DEBUG;}','#include "_prelude_fog.vertex.glsl"\nuniform mat4 u_matrix;uniform vec2 u_pattern_size;uniform vec2 u_pixel_coord_upper;uniform vec2 u_pixel_coord_lower;uniform float u_tile_units_to_pixels;in vec2 a_pos;out vec2 v_pos;void main() {gl_Position=u_matrix*vec4(a_pos,0,1);v_pos=get_pattern_pos(u_pixel_coord_upper,u_pixel_coord_lower,u_pattern_size,u_tile_units_to_pixels,a_pos);\n#ifdef FOG\nv_fog_pos=fog_position(a_pos);\n#endif\n}'),circle:r('#include "_prelude_fog.fragment.glsl"\n#include "_prelude_lighting.glsl"\nin vec3 v_data;in float v_visibility;\n#pragma mapbox: define highp vec4 color\n#pragma mapbox: define mediump float radius\n#pragma mapbox: define lowp float blur\n#pragma mapbox: define lowp float opacity\n#pragma mapbox: define highp vec4 stroke_color\n#pragma mapbox: define mediump float stroke_width\n#pragma mapbox: define lowp float stroke_opacity\nuniform float u_emissive_strength;void main() {\n#pragma mapbox: initialize highp vec4 color\n#pragma mapbox: initialize mediump float radius\n#pragma mapbox: initialize lowp float blur\n#pragma mapbox: initialize lowp float opacity\n#pragma mapbox: initialize highp vec4 stroke_color\n#pragma mapbox: initialize mediump float stroke_width\n#pragma mapbox: initialize lowp float stroke_opacity\nvec2 extrude=v_data.xy;float blur_positive=blur < 0.0 ? 0.0 : 1.0;lowp float antialiasblur=v_data.z;float extrude_length=length(extrude)+antialiasblur*(1.0-blur_positive);float antialiased_blur=-max(abs(blur),antialiasblur);float opacity_t=smoothstep((1.0-blur_positive)*antialiased_blur,blur_positive*antialiased_blur,extrude_length-1.0)-smoothstep(0.0,antialiasblur,extrude_length-1.0);float color_t=stroke_width < 0.01 ? 0.0 : smoothstep(\nantialiased_blur,0.0,extrude_length-radius/(radius+stroke_width)\n);vec4 out_color=mix(color*opacity,stroke_color*stroke_opacity,color_t);\n#ifdef LIGHTING_3D_MODE\nout_color=apply_lighting_with_emission_ground(out_color,u_emissive_strength);\n#endif\n#ifdef FOG\nout_color=fog_apply_premultiplied(out_color,v_fog_pos);\n#endif\nglFragColor=out_color*(v_visibility*opacity_t);\n#ifdef OVERDRAW_INSPECTOR\nglFragColor=vec4(1.0);\n#endif\n}','#include "_prelude_fog.vertex.glsl"\n#include "_prelude_terrain.vertex.glsl"\n#define NUM_VISIBILITY_RINGS 2\n#define INV_SQRT2 0.70710678\n#define ELEVATION_BIAS 0.0001\n#define NUM_SAMPLES_PER_RING 16\nuniform mat4 u_matrix;uniform mat2 u_extrude_scale;uniform lowp float u_device_pixel_ratio;uniform highp float u_camera_to_center_distance;in vec2 a_pos;\n#ifdef PROJECTION_GLOBE_VIEW\nin vec3 a_pos_3;in vec3 a_pos_normal_3;uniform mat4 u_inv_rot_matrix;uniform vec2 u_merc_center;uniform vec3 u_tile_id;uniform float u_zoom_transition;uniform vec3 u_up_dir;\n#endif\nout vec3 v_data;out float v_visibility;\n#pragma mapbox: define highp vec4 color\n#pragma mapbox: define mediump float radius\n#pragma mapbox: define lowp float blur\n#pragma mapbox: define lowp float opacity\n#pragma mapbox: define highp vec4 stroke_color\n#pragma mapbox: define mediump float stroke_width\n#pragma mapbox: define lowp float stroke_opacity\nvec2 calc_offset(vec2 extrusion,float radius,float stroke_width, float view_scale) {return extrusion*(radius+stroke_width)*u_extrude_scale*view_scale;}float cantilevered_elevation(vec2 pos,float radius,float stroke_width,float view_scale) {vec2 c1=pos+calc_offset(vec2(-1,-1),radius,stroke_width,view_scale);vec2 c2=pos+calc_offset(vec2(1,-1),radius,stroke_width,view_scale);vec2 c3=pos+calc_offset(vec2(1,1),radius,stroke_width,view_scale);vec2 c4=pos+calc_offset(vec2(-1,1),radius,stroke_width,view_scale);float h1=elevation(c1)+ELEVATION_BIAS;float h2=elevation(c2)+ELEVATION_BIAS;float h3=elevation(c3)+ELEVATION_BIAS;float h4=elevation(c4)+ELEVATION_BIAS;return max(h4,max(h3,max(h1,h2)));}float circle_elevation(vec2 pos) {\n#if defined(TERRAIN)\nreturn elevation(pos)+ELEVATION_BIAS;\n#else\nreturn 0.0;\n#endif\n}vec4 project_vertex(vec2 extrusion,vec4 world_center,vec4 projected_center,float radius,float stroke_width, float view_scale,mat3 surface_vectors) {vec2 sample_offset=calc_offset(extrusion,radius,stroke_width,view_scale);\n#ifdef PITCH_WITH_MAP\n#ifdef PROJECTION_GLOBE_VIEW\nreturn u_matrix*( world_center+vec4(sample_offset.x*surface_vectors[0]+sample_offset.y*surface_vectors[1],0) );\n#else\nreturn u_matrix*( world_center+vec4(sample_offset,0,0) );\n#endif\n#else\nreturn projected_center+vec4(sample_offset,0,0);\n#endif\n}float get_sample_step() {\n#ifdef PITCH_WITH_MAP\nreturn 2.0*PI/float(NUM_SAMPLES_PER_RING);\n#else\nreturn PI/float(NUM_SAMPLES_PER_RING);\n#endif\n}void main(void) {\n#pragma mapbox: initialize highp vec4 color\n#pragma mapbox: initialize mediump float radius\n#pragma mapbox: initialize lowp float blur\n#pragma mapbox: initialize lowp float opacity\n#pragma mapbox: initialize highp vec4 stroke_color\n#pragma mapbox: initialize mediump float stroke_width\n#pragma mapbox: initialize lowp float stroke_opacity\nvec2 extrude=vec2(mod(a_pos,2.0)*2.0-1.0);vec2 circle_center=floor(a_pos*0.5);vec4 world_center;mat3 surface_vectors;\n#ifdef PROJECTION_GLOBE_VIEW\nvec3 pos_normal_3=a_pos_normal_3/16384.0;surface_vectors=globe_mercator_surface_vectors(pos_normal_3,u_up_dir,u_zoom_transition);vec3 surface_extrusion=extrude.x*surface_vectors[0]+extrude.y*surface_vectors[1];vec3 globe_elevation=elevationVector(circle_center)*circle_elevation(circle_center);vec3 globe_pos=a_pos_3+surface_extrusion+globe_elevation;vec3 mercator_elevation=u_up_dir*u_tile_up_scale*circle_elevation(circle_center);vec3 merc_pos=mercator_tile_position(u_inv_rot_matrix,circle_center,u_tile_id,u_merc_center)+surface_extrusion+mercator_elevation;vec3 pos=mix_globe_mercator(globe_pos,merc_pos,u_zoom_transition);world_center=vec4(pos,1);\n#else \nsurface_vectors=mat3(1.0);float height=circle_elevation(circle_center);world_center=vec4(circle_center,height,1);\n#endif\nvec4 projected_center=u_matrix*world_center;float view_scale=0.0;\n#ifdef PITCH_WITH_MAP\n#ifdef SCALE_WITH_MAP\nview_scale=1.0;\n#else\nview_scale=projected_center.w/u_camera_to_center_distance;\n#endif\n#else\n#ifdef SCALE_WITH_MAP\nview_scale=u_camera_to_center_distance;\n#else\nview_scale=projected_center.w;\n#endif\n#endif\ngl_Position=project_vertex(extrude,world_center,projected_center,radius,stroke_width,view_scale,surface_vectors);float visibility=0.0;\n#ifdef TERRAIN\nfloat step=get_sample_step();vec4 occlusion_world_center;vec4 occlusion_projected_center;\n#ifdef PITCH_WITH_MAP\nfloat cantilevered_height=cantilevered_elevation(circle_center,radius,stroke_width,view_scale);occlusion_world_center=vec4(circle_center,cantilevered_height,1);occlusion_projected_center=u_matrix*occlusion_world_center;\n#else\nocclusion_world_center=world_center;occlusion_projected_center=projected_center;\n#endif\nfor(int ring=0; ring < NUM_VISIBILITY_RINGS; ring++) {float scale=(float(ring)+1.0)/float(NUM_VISIBILITY_RINGS);for(int i=0; i < NUM_SAMPLES_PER_RING; i++) {vec2 extrusion=vec2(cos(step*float(i)),-sin(step*float(i)))*scale;vec4 frag_pos=project_vertex(extrusion,occlusion_world_center,occlusion_projected_center,radius,stroke_width,view_scale,surface_vectors);visibility+=float(!isOccluded(frag_pos));}}visibility/=float(NUM_VISIBILITY_RINGS)*float(NUM_SAMPLES_PER_RING);\n#else\nvisibility=1.0;\n#endif\n#ifdef PROJECTION_GLOBE_VIEW\nvisibility=1.0;\n#endif\nv_visibility=visibility;lowp float antialiasblur=1.0/u_device_pixel_ratio/(radius+stroke_width);v_data=vec3(extrude.x,extrude.y,antialiasblur);\n#ifdef FOG\nv_fog_pos=fog_position(world_center.xyz);\n#endif\n}'),clippingMask:r("void main() {glFragColor=vec4(1.0);}","in vec2 a_pos;uniform mat4 u_matrix;void main() {gl_Position=u_matrix*vec4(a_pos,0,1);}"),heatmap:r('#include "_prelude_fog.fragment.glsl"\nuniform highp float u_intensity;in vec2 v_extrude;\n#pragma mapbox: define highp float weight\n#define GAUSS_COEF 0.3989422804014327\nvoid main() {\n#pragma mapbox: initialize highp float weight\nfloat d=-0.5*3.0*3.0*dot(v_extrude,v_extrude);float val=weight*u_intensity*GAUSS_COEF*exp(d);glFragColor=vec4(val,1.0,1.0,1.0);\n#ifdef FOG\nif (u_is_globe==0) {glFragColor.r*=pow(1.0-fog_opacity(v_fog_pos),2.0);}\n#endif\n#ifdef OVERDRAW_INSPECTOR\nglFragColor=vec4(1.0);\n#endif\nHANDLE_WIREFRAME_DEBUG;}','#include "_prelude_terrain.vertex.glsl"\n#include "_prelude_fog.vertex.glsl"\nuniform mat4 u_matrix;uniform float u_extrude_scale;uniform float u_opacity;uniform float u_intensity;in vec2 a_pos;\n#ifdef PROJECTION_GLOBE_VIEW\nin vec3 a_pos_3;in vec3 a_pos_normal_3;uniform mat4 u_inv_rot_matrix;uniform vec2 u_merc_center;uniform vec3 u_tile_id;uniform float u_zoom_transition;uniform vec3 u_up_dir;\n#endif\nout vec2 v_extrude;\n#pragma mapbox: define highp float weight\n#pragma mapbox: define mediump float radius\nconst highp float ZERO=1.0/255.0/16.0;\n#define GAUSS_COEF 0.3989422804014327\nvoid main(void) {\n#pragma mapbox: initialize highp float weight\n#pragma mapbox: initialize mediump float radius\nvec2 unscaled_extrude=vec2(mod(a_pos,2.0)*2.0-1.0);float S=sqrt(-2.0*log(ZERO/weight/u_intensity/GAUSS_COEF))/3.0;v_extrude=S*unscaled_extrude;vec2 extrude=v_extrude*radius*u_extrude_scale;vec2 tilePos=floor(a_pos*0.5);vec3 pos;\n#ifdef PROJECTION_GLOBE_VIEW\nvec3 pos_normal_3=a_pos_normal_3/16384.0;mat3 surface_vectors=globe_mercator_surface_vectors(pos_normal_3,u_up_dir,u_zoom_transition);vec3 surface_extrusion=extrude.x*surface_vectors[0]+extrude.y*surface_vectors[1];vec3 globe_elevation=elevationVector(tilePos)*elevation(tilePos);vec3 globe_pos=a_pos_3+surface_extrusion+globe_elevation;vec3 mercator_elevation=u_up_dir*u_tile_up_scale*elevation(tilePos);vec3 merc_pos=mercator_tile_position(u_inv_rot_matrix,tilePos,u_tile_id,u_merc_center)+surface_extrusion+mercator_elevation;pos=mix_globe_mercator(globe_pos,merc_pos,u_zoom_transition);\n#else\npos=vec3(tilePos+extrude,elevation(tilePos));\n#endif\ngl_Position=u_matrix*vec4(pos,1);\n#ifdef FOG\nv_fog_pos=fog_position(pos);\n#endif\n}'),heatmapTexture:r("uniform sampler2D u_image;uniform sampler2D u_color_ramp;uniform float u_opacity;in vec2 v_pos;void main() {float t=texture(u_image,v_pos).r;vec4 color=texture(u_color_ramp,vec2(t,0.5));glFragColor=color*u_opacity;\n#ifdef OVERDRAW_INSPECTOR\nglFragColor=vec4(0.0);\n#endif\nHANDLE_WIREFRAME_DEBUG;}","in vec2 a_pos;out vec2 v_pos;void main() {gl_Position=vec4(a_pos,0,1);v_pos=a_pos*0.5+0.5;}"),collisionBox:r("in float v_placed;in float v_notUsed;void main() {vec4 red =vec4(1.0,0.0,0.0,1.0);vec4 blue=vec4(0.0,0.0,1.0,0.5);glFragColor =mix(red,blue,step(0.5,v_placed))*0.5;glFragColor*=mix(1.0,0.1,step(0.5,v_notUsed));}",'#include "_prelude_terrain.vertex.glsl"\nin vec3 a_pos;in vec2 a_anchor_pos;in vec2 a_extrude;in vec2 a_placed;in vec2 a_shift;in float a_size_scale;in vec2 a_padding;in float a_z_offset;uniform mat4 u_matrix;uniform vec2 u_extrude_scale;uniform float u_camera_to_center_distance;out float v_placed;out float v_notUsed;void main() {vec4 projectedPoint=u_matrix*vec4(a_pos+elevationVector(a_anchor_pos)*(a_z_offset+elevation(a_anchor_pos)),1);highp float camera_to_anchor_distance=projectedPoint.w;highp float collision_perspective_ratio=clamp(\n0.5+0.5*(u_camera_to_center_distance/camera_to_anchor_distance),0.0,1.5);gl_Position=projectedPoint;gl_Position.xy+=(a_extrude*a_size_scale+a_shift+a_padding)*u_extrude_scale*gl_Position.w*collision_perspective_ratio;v_placed=a_placed.x;v_notUsed=a_placed.y;}'),collisionCircle:r("in float v_radius;in vec2 v_extrude;in float v_perspective_ratio;in float v_collision;void main() {float alpha=0.5*min(v_perspective_ratio,1.0);float stroke_radius=0.9*max(v_perspective_ratio,1.0);float distance_to_center=length(v_extrude);float distance_to_edge=abs(distance_to_center-v_radius);float opacity_t=smoothstep(-stroke_radius,0.0,-distance_to_edge);vec4 color=mix(vec4(0.0,0.0,1.0,0.5),vec4(1.0,0.0,0.0,1.0),v_collision);glFragColor=color*alpha*opacity_t;}","in vec2 a_pos_2f;in float a_radius;in vec2 a_flags;uniform mat4 u_matrix;uniform mat4 u_inv_matrix;uniform vec2 u_viewport_size;uniform float u_camera_to_center_distance;out float v_radius;out vec2 v_extrude;out float v_perspective_ratio;out float v_collision;vec3 toTilePosition(vec2 screenPos) {vec4 rayStart=u_inv_matrix*vec4(screenPos,-1.0,1.0);vec4 rayEnd =u_inv_matrix*vec4(screenPos, 1.0,1.0);rayStart.xyz/=rayStart.w;rayEnd.xyz /=rayEnd.w;highp float t=(0.0-rayStart.z)/(rayEnd.z-rayStart.z);return mix(rayStart.xyz,rayEnd.xyz,t);}void main() {vec2 quadCenterPos=a_pos_2f;float radius=a_radius;float collision=a_flags.x;float vertexIdx=a_flags.y;vec2 quadVertexOffset=vec2(\nmix(-1.0,1.0,float(vertexIdx >=2.0)),mix(-1.0,1.0,float(vertexIdx >=1.0 && vertexIdx <=2.0)));vec2 quadVertexExtent=quadVertexOffset*radius;vec3 tilePos=toTilePosition(quadCenterPos);vec4 clipPos=u_matrix*vec4(tilePos,1.0);highp float camera_to_anchor_distance=clipPos.w;highp float collision_perspective_ratio=clamp(\n0.5+0.5*(u_camera_to_center_distance/camera_to_anchor_distance),0.0,4.0);float padding_factor=1.2;v_radius=radius;v_extrude=quadVertexExtent*padding_factor;v_perspective_ratio=collision_perspective_ratio;v_collision=collision;gl_Position=vec4(clipPos.xyz/clipPos.w,1.0)+vec4(quadVertexExtent*padding_factor/u_viewport_size*2.0,0.0,0.0);}"),debug:r("uniform highp vec4 u_color;uniform sampler2D u_overlay;in vec2 v_uv;void main() {vec4 overlay_color=texture(u_overlay,v_uv);glFragColor=mix(u_color,overlay_color,overlay_color.a);}",'#include "_prelude_terrain.vertex.glsl"\nin vec2 a_pos;\n#ifdef PROJECTION_GLOBE_VIEW\nin vec3 a_pos_3;\n#endif\nout vec2 v_uv;uniform mat4 u_matrix;uniform float u_overlay_scale;void main() {float h=elevation(a_pos);v_uv=a_pos/8192.0;\n#ifdef PROJECTION_GLOBE_VIEW\ngl_Position=u_matrix*vec4(a_pos_3+elevationVector(a_pos)*h,1);\n#else\ngl_Position=u_matrix*vec4(a_pos*u_overlay_scale,h,1);\n#endif\n}'),fill:r('#include "_prelude_fog.fragment.glsl"\n#include "_prelude_lighting.glsl"\n#pragma mapbox: define highp vec4 color\n#pragma mapbox: define lowp float opacity\nuniform float u_emissive_strength;void main() {\n#pragma mapbox: initialize highp vec4 color\n#pragma mapbox: initialize lowp float opacity\nvec4 out_color=color;\n#ifdef LIGHTING_3D_MODE\nout_color=apply_lighting_with_emission_ground(out_color,u_emissive_strength);\n#endif\n#ifdef FOG\nout_color=fog_dither(fog_apply_premultiplied(out_color,v_fog_pos));\n#endif\nglFragColor=out_color*opacity;\n#ifdef OVERDRAW_INSPECTOR\nglFragColor=vec4(1.0);\n#endif\nHANDLE_WIREFRAME_DEBUG;}','#include "_prelude_fog.vertex.glsl"\nin vec2 a_pos;uniform mat4 u_matrix;\n#pragma mapbox: define highp vec4 color\n#pragma mapbox: define lowp float opacity\nvoid main() {\n#pragma mapbox: initialize highp vec4 color\n#pragma mapbox: initialize lowp float opacity\ngl_Position=u_matrix*vec4(a_pos,0,1);\n#ifdef FOG\nv_fog_pos=fog_position(a_pos);\n#endif\n}'),fillOutline:r('#include "_prelude_fog.fragment.glsl"\n#include "_prelude_lighting.glsl"\nin highp vec2 v_pos;uniform float u_emissive_strength;\n#pragma mapbox: define highp vec4 outline_color\n#pragma mapbox: define lowp float opacity\nvoid main() {\n#pragma mapbox: initialize highp vec4 outline_color\n#pragma mapbox: initialize lowp float opacity\nfloat dist=length(v_pos-gl_FragCoord.xy);float alpha=1.0-smoothstep(0.0,1.0,dist);vec4 out_color=outline_color;\n#ifdef LIGHTING_3D_MODE\nout_color=apply_lighting_with_emission_ground(out_color,u_emissive_strength);\n#endif\n#ifdef FOG\nout_color=fog_dither(fog_apply_premultiplied(out_color,v_fog_pos));\n#endif\nglFragColor=out_color*(alpha*opacity);\n#ifdef OVERDRAW_INSPECTOR\nglFragColor=vec4(1.0);\n#endif\nHANDLE_WIREFRAME_DEBUG;}','#include "_prelude_fog.vertex.glsl"\nin vec2 a_pos;uniform mat4 u_matrix;uniform vec2 u_world;out highp vec2 v_pos;\n#pragma mapbox: define highp vec4 outline_color\n#pragma mapbox: define lowp float opacity\nvoid main() {\n#pragma mapbox: initialize highp vec4 outline_color\n#pragma mapbox: initialize lowp float opacity\ngl_Position=u_matrix*vec4(a_pos,0,1);v_pos=(gl_Position.xy/gl_Position.w+1.0)/2.0*u_world;\n#ifdef FOG\nv_fog_pos=fog_position(a_pos);\n#endif\n}'),fillOutlinePattern:r('#include "_prelude_fog.fragment.glsl"\n#include "_prelude_lighting.glsl"\nuniform vec2 u_texsize;uniform sampler2D u_image;uniform float u_emissive_strength;in highp vec2 v_pos;in highp vec2 v_pos_world;\n#pragma mapbox: define lowp float opacity\n#pragma mapbox: define lowp vec4 pattern\nvoid main() {\n#pragma mapbox: initialize lowp float opacity\n#pragma mapbox: initialize mediump vec4 pattern\nvec2 pattern_tl=pattern.xy;vec2 pattern_br=pattern.zw;vec2 imagecoord=mod(v_pos,1.0);vec2 pos=mix(pattern_tl/u_texsize,pattern_br/u_texsize,imagecoord);vec2 lod_pos=mix(pattern_tl/u_texsize,pattern_br/u_texsize,v_pos);float dist=length(v_pos_world-gl_FragCoord.xy);float alpha=1.0-smoothstep(0.0,1.0,dist);vec4 out_color=textureLodCustom(u_image,pos,lod_pos);\n#ifdef LIGHTING_3D_MODE\nout_color=apply_lighting_with_emission_ground(out_color,u_emissive_strength);\n#endif\n#ifdef FOG\nout_color=fog_dither(fog_apply_premultiplied(out_color,v_fog_pos));\n#endif\nglFragColor=out_color*(alpha*opacity);\n#ifdef OVERDRAW_INSPECTOR\nglFragColor=vec4(1.0);\n#endif\nHANDLE_WIREFRAME_DEBUG;}','#include "_prelude_fog.vertex.glsl"\nuniform mat4 u_matrix;uniform vec2 u_world;uniform vec2 u_pixel_coord_upper;uniform vec2 u_pixel_coord_lower;uniform float u_tile_units_to_pixels;in vec2 a_pos;out highp vec2 v_pos;out highp vec2 v_pos_world;\n#pragma mapbox: define lowp float opacity\n#pragma mapbox: define lowp vec4 pattern\n#pragma mapbox: define lowp float pixel_ratio\nvoid main() {\n#pragma mapbox: initialize lowp float opacity\n#pragma mapbox: initialize mediump vec4 pattern\n#pragma mapbox: initialize lowp float pixel_ratio\nvec2 pattern_tl=pattern.xy;vec2 pattern_br=pattern.zw;gl_Position=u_matrix*vec4(a_pos,0,1);vec2 display_size=(pattern_br-pattern_tl)/pixel_ratio;v_pos=get_pattern_pos(u_pixel_coord_upper,u_pixel_coord_lower,display_size,u_tile_units_to_pixels,a_pos);v_pos_world=(gl_Position.xy/gl_Position.w+1.0)/2.0*u_world;\n#ifdef FOG\nv_fog_pos=fog_position(a_pos);\n#endif\n}'),fillPattern:r('#include "_prelude_fog.fragment.glsl"\n#include "_prelude_lighting.glsl"\nuniform vec2 u_texsize;uniform sampler2D u_image;in vec2 v_pos;uniform float u_emissive_strength;\n#pragma mapbox: define lowp float opacity\n#pragma mapbox: define lowp vec4 pattern\nvoid main() {\n#pragma mapbox: initialize lowp float opacity\n#pragma mapbox: initialize mediump vec4 pattern\nvec2 pattern_tl=pattern.xy;vec2 pattern_br=pattern.zw;vec2 imagecoord=mod(v_pos,1.0);vec2 pos=mix(pattern_tl/u_texsize,pattern_br/u_texsize,imagecoord);vec2 lod_pos=mix(pattern_tl/u_texsize,pattern_br/u_texsize,v_pos);vec4 out_color=textureLodCustom(u_image,pos,lod_pos);\n#ifdef LIGHTING_3D_MODE\nout_color=apply_lighting_with_emission_ground(out_color,u_emissive_strength);\n#endif\n#ifdef FOG\nout_color=fog_dither(fog_apply_premultiplied(out_color,v_fog_pos));\n#endif\nglFragColor=out_color*opacity;\n#ifdef OVERDRAW_INSPECTOR\nglFragColor=vec4(1.0);\n#endif\nHANDLE_WIREFRAME_DEBUG;}','#include "_prelude_fog.vertex.glsl"\nuniform mat4 u_matrix;uniform vec2 u_pixel_coord_upper;uniform vec2 u_pixel_coord_lower;uniform float u_tile_units_to_pixels;in vec2 a_pos;out vec2 v_pos;\n#pragma mapbox: define lowp float opacity\n#pragma mapbox: define lowp vec4 pattern\n#pragma mapbox: define lowp float pixel_ratio\nvoid main() {\n#pragma mapbox: initialize lowp float opacity\n#pragma mapbox: initialize mediump vec4 pattern\n#pragma mapbox: initialize lowp float pixel_ratio\nvec2 pattern_tl=pattern.xy;vec2 pattern_br=pattern.zw;vec2 display_size=(pattern_br-pattern_tl)/pixel_ratio;gl_Position=u_matrix*vec4(a_pos,0,1);v_pos=get_pattern_pos(u_pixel_coord_upper,u_pixel_coord_lower,display_size,u_tile_units_to_pixels,a_pos);\n#ifdef FOG\nv_fog_pos=fog_position(a_pos);\n#endif\n}'),fillExtrusion:r('#include "_prelude_fog.fragment.glsl"\n#include "_prelude_shadow.fragment.glsl"\n#include "_prelude_lighting.glsl"\nin vec4 v_color;in vec4 v_flat;\n#ifdef RENDER_SHADOWS\nin highp vec4 v_pos_light_view_0;in highp vec4 v_pos_light_view_1;\n#endif\nuniform lowp float u_opacity;\n#ifdef FAUX_AO\nuniform lowp vec2 u_ao;in vec2 v_ao;\n#endif\n#if defined(ZERO_ROOF_RADIUS) && !defined(LIGHTING_3D_MODE)\nin vec4 v_roof_color;\n#endif\n#if defined(ZERO_ROOF_RADIUS) || defined(RENDER_SHADOWS) || defined(LIGHTING_3D_MODE)\nin highp vec3 v_normal;\n#endif\nuniform vec3 u_flood_light_color;uniform highp float u_vertical_scale;uniform float u_flood_light_intensity;uniform vec3 u_ground_shadow_factor;\n#if defined(LIGHTING_3D_MODE) && defined(FLOOD_LIGHT)\nin float v_flood_radius;in float v_has_floodlight;\n#endif\nuniform float u_emissive_strength;in float v_height;void main() {\n#if defined(ZERO_ROOF_RADIUS) || defined(RENDER_SHADOWS) || defined(LIGHTING_3D_MODE)\nvec3 normal=normalize(v_normal);\n#endif\nfloat z;vec4 color=v_color;\n#ifdef ZERO_ROOF_RADIUS\nz=float(normal.z > 0.00001);\n#ifdef LIGHTING_3D_MODE\nnormal=mix(normal,vec3(0.0,0.0,1.0),z);\n#else\ncolor=mix(v_color,v_roof_color,z);\n#endif\n#endif\nfloat h=max(0.0,v_height);float ao_shade=1.0;\n#ifdef FAUX_AO\nfloat intensity=u_ao[0];float h_floors=h/(u_ao[1]*u_vertical_scale);float y_shade=1.0-0.9*intensity*min(v_ao.y,1.0);ao_shade=(1.0-0.08*intensity)*(y_shade+(1.0-y_shade)*(1.0-pow(1.0-min(h_floors/16.0,1.0),16.0)))+0.08*intensity*min(h_floors/160.0,1.0);float concave=v_ao.x*v_ao.x;\n#ifdef ZERO_ROOF_RADIUS\nconcave*=(1.0-z);\n#endif\nfloat x_shade=mix(1.0,mix(0.6,0.75,min(h_floors/30.0,1.0)),intensity)+0.1*intensity*min(h,1.0);ao_shade*=mix(1.0,x_shade*x_shade*x_shade,concave);\n#ifdef LIGHTING_3D_MODE\n#ifdef FLOOD_LIGHT\ncolor.rgb*=mix(ao_shade,1.0,v_has_floodlight);\n#else\ncolor.rgb*=ao_shade;\n#endif\n#else\ncolor.rgb*=ao_shade;\n#endif\n#endif\n#ifdef LIGHTING_3D_MODE\nfloat flood_radiance=0.0;\n#ifdef FLOOD_LIGHT\nflood_radiance=(1.0-min(h/v_flood_radius,1.0))*u_flood_light_intensity*v_has_floodlight;\n#endif\n#ifdef RENDER_SHADOWS\n#ifdef FLOOD_LIGHT\nfloat ndotl_unclamped=dot(normal,u_shadow_direction);float ndotl=max(0.0,ndotl_unclamped);float occlusion=ndotl_unclamped < 0.0 ? 1.0 : shadow_occlusion(ndotl,v_pos_light_view_0,v_pos_light_view_1,1.0/gl_FragCoord.w);vec3 litColor=apply_lighting(color.rgb,normal,(1.0-u_shadow_intensity*occlusion)*ndotl);vec3 floodLitColor=compute_flood_lighting(u_flood_light_color*u_opacity,1.0-u_shadow_intensity,occlusion,u_ground_shadow_factor);color.rgb=mix(litColor,floodLitColor,flood_radiance);\n#else\nfloat shadowed_lighting_factor;\n#ifdef RENDER_CUTOFF\nshadowed_lighting_factor=shadowed_light_factor_normal_opacity(normal,v_pos_light_view_0,v_pos_light_view_1,1.0/gl_FragCoord.w,v_cutoff_opacity);if (v_cutoff_opacity==0.0) {discard;}\n#else\nshadowed_lighting_factor=shadowed_light_factor_normal(normal,v_pos_light_view_0,v_pos_light_view_1,1.0/gl_FragCoord.w);\n#endif\ncolor.rgb=apply_lighting(color.rgb,normal,shadowed_lighting_factor);\n#endif\n#else\ncolor.rgb=apply_lighting(color.rgb,normal);\n#ifdef FLOOD_LIGHT\ncolor.rgb=mix(color.rgb,u_flood_light_color*u_opacity,flood_radiance);\n#endif\n#endif\ncolor.rgb=mix(color.rgb,v_flat.rgb,u_emissive_strength);color*=u_opacity;\n#endif\n#ifdef FOG\ncolor=fog_dither(fog_apply_premultiplied(color,v_fog_pos,h));\n#endif\n#ifdef INDICATOR_CUTOUT\ncolor=applyCutout(color);\n#endif\nglFragColor=color;\n#ifdef OVERDRAW_INSPECTOR\nglFragColor=vec4(1.0);\n#endif\nHANDLE_WIREFRAME_DEBUG;}','#include "_prelude_fog.vertex.glsl"\n#include "_prelude_terrain.vertex.glsl"\n#include "_prelude_shadow.vertex.glsl"\n#include "_prelude_lighting.glsl"\nuniform mat4 u_matrix;uniform vec3 u_lightcolor;uniform lowp vec3 u_lightpos;uniform lowp float u_lightintensity;uniform float u_vertical_gradient;uniform lowp float u_opacity;uniform float u_edge_radius;uniform float u_alignment;uniform float u_width_scale;in vec4 a_pos_normal_ed;in vec2 a_centroid_pos;\n#ifdef RENDER_WALL_MODE\nin vec4 a_join_normal_inside_polygon;\n#endif\n#ifdef PROJECTION_GLOBE_VIEW\nin vec3 a_pos_3;in vec3 a_pos_normal_3;uniform mat4 u_inv_rot_matrix;uniform vec2 u_merc_center;uniform vec3 u_tile_id;uniform float u_zoom_transition;uniform vec3 u_up_dir;uniform float u_height_lift;\n#endif\nuniform highp float u_vertical_scale;out vec4 v_color;out vec4 v_flat;\n#ifdef RENDER_SHADOWS\nuniform mat4 u_light_matrix_0;uniform mat4 u_light_matrix_1;out highp vec4 v_pos_light_view_0;out highp vec4 v_pos_light_view_1;\n#endif\n#if defined(ZERO_ROOF_RADIUS) && !defined(LIGHTING_3D_MODE)\nout vec4 v_roof_color;\n#endif\n#if defined(ZERO_ROOF_RADIUS) || defined(RENDER_SHADOWS) || defined(LIGHTING_3D_MODE)\nout highp vec3 v_normal;\n#endif\n#ifdef FAUX_AO\nuniform lowp vec2 u_ao;out vec2 v_ao;\n#endif\n#if defined(LIGHTING_3D_MODE) && defined(FLOOD_LIGHT)\nout float v_flood_radius;out float v_has_floodlight;\n#endif\nout float v_height;\n#pragma mapbox: define highp float base\n#pragma mapbox: define highp float height\n#pragma mapbox: define highp vec4 color\n#pragma mapbox: define highp float flood_light_wall_radius\n#pragma mapbox: define highp float line_width\nvoid main() {\n#pragma mapbox: initialize highp float base\n#pragma mapbox: initialize highp float height\n#pragma mapbox: initialize highp vec4 color\n#pragma mapbox: initialize highp float flood_light_wall_radius\n#pragma mapbox: initialize highp float line_width\nbase*=u_vertical_scale;height*=u_vertical_scale;vec4 pos_nx=floor(a_pos_normal_ed*0.5);vec4 top_up_ny_start=a_pos_normal_ed-2.0*pos_nx;vec3 top_up_ny=top_up_ny_start.xyz;float x_normal=pos_nx.z/8192.0;vec3 normal=top_up_ny.y==1.0 ? vec3(0.0,0.0,1.0) : normalize(vec3(x_normal,(2.0*top_up_ny.z-1.0)*(1.0-abs(x_normal)),0.0));\n#if defined(ZERO_ROOF_RADIUS) || defined(RENDER_SHADOWS) || defined(LIGHTING_3D_MODE)\nv_normal=normal;\n#endif\nbase=max(0.0,base);float attr_height=height;height=max(0.0,top_up_ny.y==0.0 && top_up_ny.x==1.0 ? height-u_edge_radius : height);float t=top_up_ny.x;vec2 centroid_pos=vec2(0.0);\n#if defined(HAS_CENTROID) || defined(TERRAIN)\ncentroid_pos=a_centroid_pos;\n#endif\nfloat ele=0.0;float h=0.0;float c_ele=0.0;vec3 pos;\n#ifdef TERRAIN\nbool flat_roof=centroid_pos.x !=0.0 && t > 0.0;ele=elevation(pos_nx.xy);c_ele=flat_roof ? centroid_pos.y==0.0 ? elevationFromUint16(centroid_pos.x) : flatElevation(centroid_pos) : ele;h=flat_roof ? max(c_ele+height,ele+base+2.0) : ele+(t > 0.0 ? height : base==0.0 ?-5.0 : base);pos=vec3(pos_nx.xy,h);\n#else\nh=t > 0.0 ? height : base;pos=vec3(pos_nx.xy,h);\n#endif\n#ifdef PROJECTION_GLOBE_VIEW\nfloat lift=float((t+base) > 0.0)*u_height_lift;h+=lift;vec3 globe_normal=normalize(mix(a_pos_normal_3/16384.0,u_up_dir,u_zoom_transition));vec3 globe_pos=a_pos_3+globe_normal*(u_tile_up_scale*h);vec3 merc_pos=mercator_tile_position(u_inv_rot_matrix,pos.xy,u_tile_id,u_merc_center)+u_up_dir*u_tile_up_scale*pos.z;pos=mix_globe_mercator(globe_pos,merc_pos,u_zoom_transition);\n#endif\nfloat cutoff=1.0;vec3 scaled_pos=pos;\n#ifdef RENDER_CUTOFF\nvec3 centroid_random=vec3(centroid_pos.xy,centroid_pos.x+centroid_pos.y+1.0);vec3 ground_pos=centroid_pos.x==0.0 ? pos.xyz : (centroid_random/8.0);vec4 ground=u_matrix*vec4(ground_pos.xy,ele,1.0);cutoff=cutoff_opacity(u_cutoff_params,ground.z);if (centroid_pos.y !=0.0 && centroid_pos.x !=0.0) {vec3 g=floor(ground_pos);vec3 mod_=centroid_random-g*8.0;float seed=min(1.0,0.1*(min(3.5,max(mod_.x+mod_.y,0.2*attr_height))*0.35+mod_.z));if (cutoff < 0.8-seed) {cutoff=0.0;}}float cutoff_scale=cutoff;v_cutoff_opacity=cutoff;scaled_pos.z=mix(c_ele,h,cutoff_scale);\n#endif\nfloat hidden=float((centroid_pos.x==0.0 && centroid_pos.y==1.0) || (cutoff==0.0 && centroid_pos.x !=0.0));\n#ifdef RENDER_WALL_MODE\nvec2 wall_offset=u_width_scale*line_width*(a_join_normal_inside_polygon.xy/EXTENT);float isPolygon=a_join_normal_inside_polygon.w;float sideAlignment=abs(isPolygon*u_alignment);scaled_pos.xy+=(1.0-a_join_normal_inside_polygon.z)*mix(wall_offset*0.5,wall_offset*mix(1.0,0.0,max(u_alignment,0.0)),sideAlignment);scaled_pos.xy-=a_join_normal_inside_polygon.z*mix(wall_offset*0.5,wall_offset*mix(0.0,1.0,max(u_alignment,0.0)),sideAlignment);\n#endif\ngl_Position=mix(u_matrix*vec4(scaled_pos,1),AWAY,hidden);h=h-ele;v_height=h;\n#ifdef RENDER_SHADOWS\nvec3 shd_pos0=pos;vec3 shd_pos1=pos;\n#ifdef NORMAL_OFFSET\nvec3 offset=shadow_normal_offset(normal);shd_pos0+=offset*shadow_normal_offset_multiplier0();shd_pos1+=offset*shadow_normal_offset_multiplier1();\n#endif\nv_pos_light_view_0=u_light_matrix_0*vec4(shd_pos0,1);v_pos_light_view_1=u_light_matrix_1*vec4(shd_pos1,1);\n#endif\nfloat NdotL=0.0;float colorvalue=0.0;\n#ifndef LIGHTING_3D_MODE\ncolorvalue=color.r*0.2126+color.g*0.7152+color.b*0.0722;vec4 ambientlight=vec4(0.03,0.03,0.03,1.0);color+=ambientlight;NdotL=clamp(dot(normal,u_lightpos),0.0,1.0);NdotL=mix((1.0-u_lightintensity),max((1.0-colorvalue+u_lightintensity),1.0),NdotL);if (normal.y !=0.0) {float r=0.84;r=mix(0.7,0.98,1.0-u_lightintensity);NdotL*=(\n(1.0-u_vertical_gradient)+(u_vertical_gradient*clamp((t+base)*pow(height/150.0,0.5),r,1.0)));}\n#endif\n#ifdef FAUX_AO\nfloat concave=pos_nx.w-floor(pos_nx.w*0.5)*2.0;float start=top_up_ny_start.w;float y_ground=1.0-clamp(t+base,0.0,1.0);float top_height=height;\n#ifdef TERRAIN\ntop_height=mix(max(c_ele+height,ele+base+2.0),ele+height,float(centroid_pos.x==0.0))-ele;y_ground+=y_ground*5.0/max(3.0,top_height);\n#endif\nv_ao=vec2(mix(concave,-concave,start),y_ground);NdotL*=(1.0+0.05*(1.0-top_up_ny.y)*u_ao[0]);\n#ifdef PROJECTION_GLOBE_VIEW\ntop_height+=u_height_lift;\n#endif\ngl_Position.z-=(0.0000006*(min(top_height,500.)+2.0*min(base,500.0)+60.0*concave+3.0*start))*gl_Position.w;\n#endif\n#ifdef LIGHTING_3D_MODE\n#ifdef FLOOD_LIGHT\nfloat is_wall=1.0-float(t > 0.0 && top_up_ny.y > 0.0);v_has_floodlight=float(flood_light_wall_radius > 0.0 && is_wall > 0.0);v_flood_radius=flood_light_wall_radius*u_vertical_scale;\n#endif\nv_color=vec4(color.rgb,1.0);v_flat=vec4(linearProduct(color.rgb,vec3(calculate_NdotL(normal))),1.0);\n#else\nv_color=vec4(0.0,0.0,0.0,1.0);v_color.rgb+=clamp(color.rgb*NdotL*u_lightcolor,mix(vec3(0.0),vec3(0.3),1.0-u_lightcolor),vec3(1.0));v_color*=u_opacity;\n#endif\n#if defined(ZERO_ROOF_RADIUS) && !defined(LIGHTING_3D_MODE)\nfloat roofNdotL=clamp(u_lightpos.z,0.0,1.0);roofNdotL=mix((1.0-u_lightintensity),max((1.0-colorvalue+u_lightintensity),1.0),roofNdotL);v_roof_color=vec4(0.0,0.0,0.0,1.0);v_roof_color.rgb+=clamp(color.rgb*roofNdotL*u_lightcolor,mix(vec3(0.0),vec3(0.3),1.0-u_lightcolor),vec3(1.0));v_roof_color*=u_opacity;\n#endif\n#ifdef FOG\nv_fog_pos=fog_position(pos);\n#endif\n}'),fillExtrusionDepth:r("in highp float v_depth;void main() {\n#ifndef DEPTH_TEXTURE\nglFragColor=pack_depth(v_depth);\n#endif\n}",'#include "_prelude_terrain.vertex.glsl"\nuniform mat4 u_matrix;uniform float u_edge_radius;uniform float u_alignment;uniform float u_width_scale;uniform float u_vertical_scale;in vec4 a_pos_normal_ed;in vec2 a_centroid_pos;\n#ifdef RENDER_WALL_MODE\nin vec4 a_join_normal_inside_polygon;\n#endif\n#pragma mapbox: define highp float base\n#pragma mapbox: define highp float height\n#pragma mapbox: define highp float line_width\nout highp float v_depth;void main() {\n#pragma mapbox: initialize highp float base\n#pragma mapbox: initialize highp float height\n#pragma mapbox: initialize highp float line_width\nbase*=u_vertical_scale;height*=u_vertical_scale;vec3 pos_nx=floor(a_pos_normal_ed.xyz*0.5);mediump vec3 top_up_ny=a_pos_normal_ed.xyz-2.0*pos_nx;base=max(0.0,base);height=max(0.0,top_up_ny.y==0.0 && top_up_ny.x==1.0 ? height-u_edge_radius : height);float t=top_up_ny.x;vec2 centroid_pos=vec2(0.0);\n#if defined(HAS_CENTROID) || defined(TERRAIN)\ncentroid_pos=a_centroid_pos;\n#endif\nvec3 pos;\n#ifdef TERRAIN\nbool flat_roof=centroid_pos.x !=0.0 && t > 0.0;float ele=elevation(pos_nx.xy);float c_ele=flat_roof ? centroid_pos.y==0.0 ? elevationFromUint16(centroid_pos.x) : flatElevation(centroid_pos) : ele;float h=flat_roof ? max(c_ele+height,ele+base+2.0) : ele+(t > 0.0 ? height : base);pos=vec3(pos_nx.xy,h);\n#else\npos=vec3(pos_nx.xy,t > 0.0 ? height : base);\n#endif\n#ifdef RENDER_WALL_MODE\nvec2 wall_offset=u_width_scale*line_width*(a_join_normal_inside_polygon.xy/EXTENT);float isPolygon=a_join_normal_inside_polygon.w;float sideAlignment=abs(isPolygon*u_alignment);pos.xy+=(1.0-a_join_normal_inside_polygon.z)*mix(wall_offset*0.5,wall_offset*mix(1.0,0.0,max(u_alignment,0.0)),sideAlignment);pos.xy-=a_join_normal_inside_polygon.z*mix(wall_offset*0.5,wall_offset*mix(0.0,1.0,max(u_alignment,0.0)),sideAlignment);\n#endif\nfloat hidden=float(centroid_pos.x==0.0 && centroid_pos.y==1.0);gl_Position=mix(u_matrix*vec4(pos,1),AWAY,hidden);v_depth=gl_Position.z/gl_Position.w;}'),fillExtrusionPattern:r('#include "_prelude_fog.fragment.glsl"\n#include "_prelude_lighting.glsl"\nuniform vec2 u_texsize;uniform sampler2D u_image;\n#ifdef FAUX_AO\nuniform lowp vec2 u_ao;in vec3 v_ao;\n#endif\n#ifdef LIGHTING_3D_MODE\nin vec3 v_normal;\n#endif\nin vec2 v_pos;in vec4 v_lighting;uniform lowp float u_opacity;\n#pragma mapbox: define highp float base\n#pragma mapbox: define highp float height\n#pragma mapbox: define mediump vec4 pattern\n#pragma mapbox: define highp float pixel_ratio\nvoid main() {\n#pragma mapbox: initialize highp float base\n#pragma mapbox: initialize highp float height\n#pragma mapbox: initialize mediump vec4 pattern\n#pragma mapbox: initialize highp float pixel_ratio\nvec2 pattern_tl=pattern.xy;vec2 pattern_br=pattern.zw;vec2 imagecoord=mod(v_pos,1.0);vec2 pos=mix(pattern_tl/u_texsize,pattern_br/u_texsize,imagecoord);vec2 lod_pos=mix(pattern_tl/u_texsize,pattern_br/u_texsize,v_pos);vec4 out_color=textureLodCustom(u_image,pos,lod_pos);\n#ifdef LIGHTING_3D_MODE\nout_color=apply_lighting(out_color,normalize(v_normal))*u_opacity;\n#else\nout_color=out_color*v_lighting;\n#endif\n#ifdef FAUX_AO\nfloat intensity=u_ao[0];float h=max(0.0,v_ao.z);float h_floors=h/u_ao[1];float y_shade=1.0-0.9*intensity*min(v_ao.y,1.0);float shade=(1.0-0.08*intensity)*(y_shade+(1.0-y_shade)*(1.0-pow(1.0-min(h_floors/16.0,1.0),16.0)))+0.08*intensity*min(h_floors/160.0,1.0);float concave=v_ao.x*v_ao.x;float x_shade=mix(1.0,mix(0.6,0.75,min(h_floors/30.0,1.0)),intensity)+0.1*intensity*min(h,1.0);shade*=mix(1.0,x_shade*x_shade*x_shade,concave);out_color.rgb=out_color.rgb*shade;\n#endif\n#ifdef FOG\nout_color=fog_dither(fog_apply_premultiplied(out_color,v_fog_pos));\n#endif\n#ifdef INDICATOR_CUTOUT\nout_color=applyCutout(out_color);\n#endif\nglFragColor=out_color;\n#ifdef OVERDRAW_INSPECTOR\nglFragColor=vec4(1.0);\n#endif\nHANDLE_WIREFRAME_DEBUG;}','#include "_prelude_fog.vertex.glsl"\n#include "_prelude_terrain.vertex.glsl"\n#include "_prelude_lighting.glsl"\nuniform mat4 u_matrix;uniform vec2 u_pixel_coord_upper;uniform vec2 u_pixel_coord_lower;uniform float u_height_factor;uniform float u_tile_units_to_pixels;uniform float u_vertical_gradient;uniform lowp float u_opacity;uniform float u_alignment;uniform float u_width_scale;uniform vec3 u_lightcolor;uniform lowp vec3 u_lightpos;uniform lowp float u_lightintensity;in vec4 a_pos_normal_ed;in vec2 a_centroid_pos;\n#ifdef RENDER_WALL_MODE\nin vec4 a_join_normal_inside_polygon;\n#endif\n#ifdef PROJECTION_GLOBE_VIEW\nin vec3 a_pos_3;in vec3 a_pos_normal_3;uniform mat4 u_inv_rot_matrix;uniform vec2 u_merc_center;uniform vec3 u_tile_id;uniform float u_zoom_transition;uniform vec3 u_up_dir;uniform float u_height_lift;\n#endif\nout vec2 v_pos;out vec4 v_lighting;\n#ifdef FAUX_AO\nuniform lowp vec2 u_ao;out vec3 v_ao;\n#endif\n#ifdef LIGHTING_3D_MODE\nout vec3 v_normal;\n#endif\n#pragma mapbox: define highp float base\n#pragma mapbox: define highp float height\n#pragma mapbox: define mediump vec4 pattern\n#pragma mapbox: define highp float pixel_ratio\n#pragma mapbox: define highp float line_width\nvoid main() {\n#pragma mapbox: initialize highp float base\n#pragma mapbox: initialize highp float height\n#pragma mapbox: initialize mediump vec4 pattern\n#pragma mapbox: initialize highp float pixel_ratio\n#pragma mapbox: initialize highp float line_width\nvec2 pattern_tl=pattern.xy;vec2 pattern_br=pattern.zw;vec4 pos_nx=floor(a_pos_normal_ed*0.5);mediump vec4 top_up_ny_start=a_pos_normal_ed-2.0*pos_nx;mediump vec3 top_up_ny=top_up_ny_start.xyz;float x_normal=pos_nx.z/8192.0;vec3 normal=top_up_ny.y==1.0 ? vec3(0.0,0.0,1.0) : normalize(vec3(x_normal,(2.0*top_up_ny.z-1.0)*(1.0-abs(x_normal)),0.0));float edgedistance=a_pos_normal_ed.w;vec2 display_size=(pattern_br-pattern_tl)/pixel_ratio;base=max(0.0,base);height=max(0.0,height);float t=top_up_ny.x;float z=t > 0.0 ? height : base;vec2 centroid_pos=vec2(0.0);\n#if defined(HAS_CENTROID) || defined(TERRAIN)\ncentroid_pos=a_centroid_pos;\n#endif\nfloat ele=0.0;float h=z;vec3 p;float c_ele;\n#ifdef TERRAIN\nbool flat_roof=centroid_pos.x !=0.0 && t > 0.0;ele=elevation(pos_nx.xy);c_ele=flat_roof ? centroid_pos.y==0.0 ? elevationFromUint16(centroid_pos.x) : flatElevation(centroid_pos) : ele;h=flat_roof ? max(c_ele+height,ele+base+2.0) : ele+(t > 0.0 ? height : base==0.0 ?-5.0 : base);p=vec3(pos_nx.xy,h);\n#else\np=vec3(pos_nx.xy,z);\n#endif\n#ifdef PROJECTION_GLOBE_VIEW\nfloat lift=float((t+base) > 0.0)*u_height_lift;h+=lift;vec3 globe_normal=normalize(mix(a_pos_normal_3/16384.0,u_up_dir,u_zoom_transition));vec3 globe_pos=a_pos_3+globe_normal*(u_tile_up_scale*(p.z+lift));vec3 merc_pos=mercator_tile_position(u_inv_rot_matrix,p.xy,u_tile_id,u_merc_center)+u_up_dir*u_tile_up_scale*p.z;p=mix_globe_mercator(globe_pos,merc_pos,u_zoom_transition);\n#endif\n#ifdef RENDER_WALL_MODE\nvec2 wall_offset=u_width_scale*line_width*(a_join_normal_inside_polygon.xy/EXTENT);float isPolygon=a_join_normal_inside_polygon.w;float sideAlignment=abs(isPolygon*u_alignment);p.xy+=(1.0-a_join_normal_inside_polygon.z)*mix(wall_offset*0.5,wall_offset*mix(1.0,0.0,max(u_alignment,0.0)),sideAlignment);p.xy-=a_join_normal_inside_polygon.z*mix(wall_offset*0.5,wall_offset*mix(0.0,1.0,max(u_alignment,0.0)),sideAlignment);\n#endif\nfloat hidden=float(centroid_pos.x==0.0 && centroid_pos.y==1.0);gl_Position=mix(u_matrix*vec4(p,1),AWAY,hidden);vec2 pos=normal.z==1.0\n? pos_nx.xy\n: vec2(edgedistance,z*u_height_factor);v_pos=get_pattern_pos(u_pixel_coord_upper,u_pixel_coord_lower,display_size,u_tile_units_to_pixels,pos);v_lighting=vec4(0.0,0.0,0.0,1.0);float NdotL=0.0;\n#ifdef LIGHTING_3D_MODE\nNdotL=calculate_NdotL(normal);\n#else\nNdotL=clamp(dot(normal,u_lightpos),0.0,1.0);NdotL=mix((1.0-u_lightintensity),max((0.5+u_lightintensity),1.0),NdotL);\n#endif\nif (normal.y !=0.0) {float r=0.84;\n#ifndef LIGHTING_3D_MODE\nr=mix(0.7,0.98,1.0-u_lightintensity);\n#endif\nNdotL*=(\n(1.0-u_vertical_gradient)+(u_vertical_gradient*clamp((t+base)*pow(height/150.0,0.5),r,1.0)));}\n#ifdef FAUX_AO\nfloat concave=pos_nx.w-floor(pos_nx.w*0.5)*2.0;float start=top_up_ny_start.w;float y_ground=1.0-clamp(t+base,0.0,1.0);float top_height=height;\n#ifdef TERRAIN\ntop_height=mix(max(c_ele+height,ele+base+2.0),ele+height,float(centroid_pos.x==0.0))-ele;y_ground+=y_ground*5.0/max(3.0,top_height);\n#endif\nv_ao=vec3(mix(concave,-concave,start),y_ground,h-ele);NdotL*=(1.0+0.05*(1.0-top_up_ny.y)*u_ao[0]);\n#ifdef PROJECTION_GLOBE_VIEW\ntop_height+=u_height_lift;\n#endif\ngl_Position.z-=(0.0000006*(min(top_height,500.)+2.0*min(base,500.0)+60.0*concave+3.0*start))*gl_Position.w;\n#endif\n#ifdef LIGHTING_3D_MODE\nv_normal=normal;\n#else\nv_lighting.rgb+=clamp(NdotL*u_lightcolor,mix(vec3(0.0),vec3(0.3),1.0-u_lightcolor),vec3(1.0));v_lighting*=u_opacity;\n#endif \n#ifdef FOG\nv_fog_pos=fog_position(p);\n#endif\n}'),groundShadow:r('#include "_prelude_shadow.fragment.glsl"\nprecision highp float;uniform vec3 u_ground_shadow_factor;in vec4 v_pos_light_view_0;in vec4 v_pos_light_view_1;\n#ifdef FOG\nin float v_fog_opacity;\n#endif\nvoid main() {float light=shadowed_light_factor(v_pos_light_view_0,v_pos_light_view_1,1.0/gl_FragCoord.w);vec3 shadow=mix(u_ground_shadow_factor,vec3(1.0),light);\n#ifdef RENDER_CUTOFF\nshadow=mix(vec3(1.0),shadow,cutoff_opacity(u_cutoff_params,1.0/gl_FragCoord.w));\n#endif\n#ifdef FOG\nshadow=mix(shadow,vec3(1.0),v_fog_opacity);\n#endif\n#ifdef INDICATOR_CUTOUT\nshadow=mix(shadow,vec3(1.0),1.0-applyCutout(vec4(1.0)).r);\n#endif\nglFragColor=vec4(shadow,1.0);}','#include "_prelude_fog.vertex.glsl"\nuniform mat4 u_matrix;uniform mat4 u_light_matrix_0;uniform mat4 u_light_matrix_1;in vec2 a_pos;out vec4 v_pos_light_view_0;out vec4 v_pos_light_view_1;\n#ifdef FOG\nout float v_fog_opacity;\n#endif\nvoid main() {gl_Position=u_matrix*vec4(a_pos,0.0,1.0);v_pos_light_view_0=u_light_matrix_0*vec4(a_pos,0.0,1.0);v_pos_light_view_1=u_light_matrix_1*vec4(a_pos,0.0,1.0);\n#ifdef FOG\nv_fog_pos=fog_position(a_pos);v_fog_opacity=fog(v_fog_pos);\n#endif\n}'),fillExtrusionGroundEffect:r("uniform highp float u_ao_pass;uniform highp float u_opacity;uniform highp float u_flood_light_intensity;uniform highp vec3 u_flood_light_color;uniform highp float u_attenuation;uniform sampler2D u_fb;uniform float u_fb_size;\n#ifdef SDF_SUBPASS\nin highp vec2 v_pos;in highp vec4 v_line_segment;in highp float v_flood_light_radius_tile;in highp vec2 v_ao;float line_df(highp vec2 a,highp vec2 b,highp vec2 p) {highp vec2 ba=b-a;highp vec2 pa=p-a;highp float r=clamp(dot(pa,ba)/dot(ba,ba),0.0,1.0);return length(pa-r*ba);}\n#ifdef FOG\nin highp float v_fog;\n#endif\n#endif\nvoid main() {\n#ifdef CLEAR_SUBPASS\nvec4 color=vec4(1.0);\n#ifdef CLEAR_FROM_TEXTURE\ncolor=texture(u_fb,gl_FragCoord.xy/vec2(u_fb_size));\n#endif\nglFragColor=color;\n#else\n#ifdef SDF_SUBPASS\nhighp float d=line_df(v_line_segment.xy,v_line_segment.zw,v_pos);highp float effect_radius=mix(v_flood_light_radius_tile,v_ao.y,u_ao_pass);d/=effect_radius;d=min(d,1.0);d=1.0-pow(1.0-d,u_attenuation);highp float effect_intensity=mix(u_flood_light_intensity,v_ao.x,u_ao_pass);highp float fog=1.0;\n#ifdef FOG\nfog=v_fog;\n#endif\n#ifdef RENDER_CUTOFF\nfog*=v_cutoff_opacity;\n#endif\nglFragColor=vec4(vec3(0.0),mix(1.0,d,effect_intensity*u_opacity*fog));\n#else\nvec4 color=mix(vec4(u_flood_light_color,1.0),vec4(vec3(0.0),1.0),u_ao_pass);\n#ifdef OVERDRAW_INSPECTOR\ncolor=vec4(1.0);\n#endif\nglFragColor=color;\n#endif\nHANDLE_WIREFRAME_DEBUG;\n#endif\n}",'#include "_prelude_fog.vertex.glsl"\nin highp vec4 a_pos_end;in highp float a_angular_offset_factor;in highp float a_hidden_by_landmark;\n#ifdef SDF_SUBPASS\nout highp vec2 v_pos;out highp vec4 v_line_segment;out highp float v_flood_light_radius_tile;out highp vec2 v_ao;\n#ifdef FOG\nout highp float v_fog;\n#endif\n#endif\nuniform highp float u_flood_light_intensity;uniform highp mat4 u_matrix;uniform highp float u_ao_pass;uniform highp float u_meter_to_tile;uniform highp float u_edge_radius;uniform highp vec2 u_ao;\n#pragma mapbox: define highp float flood_light_ground_radius\nconst float TANGENT_CUTOFF=4.0;const float NORM=32767.0;void main() {\n#pragma mapbox: initialize highp float flood_light_ground_radius\nvec2 p=a_pos_end.xy;vec2 q=floor(a_pos_end.zw*0.5);vec2 start_bottom=a_pos_end.zw-q*2.0;float fl_ground_radius=flood_light_ground_radius;fl_ground_radius=abs(flood_light_ground_radius);float direction=flood_light_ground_radius < 0.0 ?-1.0 : 1.0;float flood_radius_tile=fl_ground_radius*u_meter_to_tile;vec2 v=normalize(q-p);float ao_radius=u_ao.y/3.5;float effect_radius=mix(flood_radius_tile,ao_radius,u_ao_pass)+u_edge_radius;float angular_offset_factor=a_angular_offset_factor/NORM*TANGENT_CUTOFF;float angular_offset=direction*angular_offset_factor*effect_radius;float top=1.0-start_bottom.y;float side=(0.5-start_bottom.x)*2.0;vec2 extrusion_parallel=v*side*mix(1.0,angular_offset,top);vec2 perp=vec2(v.y,-v.x);vec2 extrusion_perp=direction*perp*effect_radius*top;vec3 pos=vec3(mix(q,p,start_bottom.x),0.0);pos.xy+=extrusion_parallel+extrusion_perp;\n#ifdef SDF_SUBPASS\nv_pos=pos.xy;v_line_segment=vec4(p,q)+perp.xyxy*u_edge_radius;v_flood_light_radius_tile=flood_radius_tile;v_ao=vec2(u_ao.x,ao_radius);\n#ifdef FOG\nv_fog_pos=fog_position(pos);v_fog=1.0-fog(v_fog_pos);\n#endif\n#endif\nfloat hidden_by_landmark=0.0;\n#ifdef HAS_CENTROID\nhidden_by_landmark=a_hidden_by_landmark;\n#endif\nfloat isFloodlit=float(fl_ground_radius > 0.0 && u_flood_light_intensity > 0.0);float hidden=mix(1.0-isFloodlit,isFloodlit,u_ao_pass);hidden+=hidden_by_landmark;gl_Position=mix(u_matrix*vec4(pos,1.0),AWAY,float(hidden > 0.0));\n#ifdef RENDER_CUTOFF\nv_cutoff_opacity=cutoff_opacity(u_cutoff_params,gl_Position.z);\n#endif\n}'),hillshadePrepare:r("precision highp float;uniform sampler2D u_image;in vec2 v_pos;uniform vec2 u_dimension;uniform float u_zoom;float getElevation(vec2 coord) {return texture(u_image,coord).r/4.0;}void main() {vec2 epsilon=1.0/u_dimension;float a=getElevation(v_pos+vec2(-epsilon.x,-epsilon.y));float b=getElevation(v_pos+vec2(0,-epsilon.y));float c=getElevation(v_pos+vec2(epsilon.x,-epsilon.y));float d=getElevation(v_pos+vec2(-epsilon.x,0));float e=getElevation(v_pos+vec2(epsilon.x,0));float f=getElevation(v_pos+vec2(-epsilon.x,epsilon.y));float g=getElevation(v_pos+vec2(0,epsilon.y));float h=getElevation(v_pos+vec2(epsilon.x,epsilon.y));float exaggerationFactor=u_zoom < 2.0 ? 0.4 : u_zoom < 4.5 ? 0.35 : 0.3;float exaggeration=u_zoom < 15.0 ? (u_zoom-15.0)*exaggerationFactor : 0.0;vec2 deriv=vec2(\n(c+e+e+h)-(a+d+d+f),(f+g+g+h)-(a+b+b+c)\n)/pow(2.0,exaggeration+(19.2562-u_zoom));glFragColor=clamp(vec4(\nderiv.x/2.0+0.5,deriv.y/2.0+0.5,1.0,1.0),0.0,1.0);}","uniform mat4 u_matrix;uniform vec2 u_dimension;in vec2 a_pos;in vec2 a_texture_pos;out vec2 v_pos;void main() {gl_Position=u_matrix*vec4(a_pos,0,1);highp vec2 epsilon=1.0/u_dimension;float scale=(u_dimension.x-2.0)/u_dimension.x;v_pos=(a_texture_pos/8192.0)*scale+epsilon;}"),hillshade:r('#include "_prelude_fog.fragment.glsl"\n#include "_prelude_lighting.glsl"\nuniform sampler2D u_image;in vec2 v_pos;uniform vec2 u_latrange;uniform vec2 u_light;uniform vec4 u_shadow;uniform vec4 u_highlight;uniform vec4 u_accent;uniform float u_emissive_strength;void main() {vec4 pixel=texture(u_image,v_pos);vec2 deriv=((pixel.rg*2.0)-1.0);float scaleFactor=cos(radians((u_latrange[0]-u_latrange[1])*(1.0-v_pos.y)+u_latrange[1]));float slope=atan(1.25*length(deriv)/scaleFactor);float aspect=deriv.x !=0.0 ? atan(deriv.y,-deriv.x) : PI/2.0*(deriv.y > 0.0 ? 1.0 :-1.0);float intensity=u_light.x;float azimuth=u_light.y+PI;float base=1.875-intensity*1.75;float maxValue=0.5*PI;float scaledSlope=intensity !=0.5 ? ((pow(base,slope)-1.0)/(pow(base,maxValue)-1.0))*maxValue : slope;float accent=cos(scaledSlope);vec4 accent_color=(1.0-accent)*u_accent*clamp(intensity*2.0,0.0,1.0);float shade=abs(mod((aspect+azimuth)/PI+0.5,2.0)-1.0);vec4 shade_color=mix(u_shadow,u_highlight,shade)*sin(scaledSlope)*clamp(intensity*2.0,0.0,1.0);glFragColor=accent_color*(1.0-shade_color.a)+shade_color;\n#ifdef LIGHTING_3D_MODE\nglFragColor=apply_lighting_with_emission_ground(glFragColor,u_emissive_strength);\n#endif\n#ifdef FOG\nglFragColor=fog_dither(fog_apply_premultiplied(glFragColor,v_fog_pos));\n#endif\n#ifdef OVERDRAW_INSPECTOR\nglFragColor=vec4(1.0);\n#endif\nHANDLE_WIREFRAME_DEBUG;}','#include "_prelude_fog.vertex.glsl"\nuniform mat4 u_matrix;in vec2 a_pos;in vec2 a_texture_pos;out vec2 v_pos;void main() {gl_Position=u_matrix*vec4(a_pos,0,1);v_pos=a_texture_pos/8192.0;\n#ifdef FOG\nv_fog_pos=fog_position(a_pos);\n#endif\n}'),line:r('#include "_prelude_fog.fragment.glsl"\n#include "_prelude_lighting.glsl"\nuniform lowp float u_device_pixel_ratio;uniform float u_alpha_discard_threshold;uniform highp vec2 u_trim_offset;uniform highp vec2 u_trim_fade_range;uniform lowp vec4 u_trim_color;in vec2 v_width2;in vec2 v_normal;in float v_gamma_scale;in highp vec4 v_uv;\n#ifdef RENDER_LINE_DASH\nuniform sampler2D u_dash_image;in vec2 v_tex;\n#endif\n#ifdef RENDER_LINE_GRADIENT\nuniform sampler2D u_gradient_image;\n#endif\nfloat luminance(vec3 c) {return (c.r+c.r+c.b+c.g+c.g+c.g)*0.1667;}uniform float u_emissive_strength;\n#pragma mapbox: define highp vec4 color\n#pragma mapbox: define lowp float floorwidth\n#pragma mapbox: define lowp vec4 dash\n#pragma mapbox: define lowp float blur\n#pragma mapbox: define lowp float opacity\n#pragma mapbox: define lowp float border_width\n#pragma mapbox: define lowp vec4 border_color\nfloat linearstep(float edge0,float edge1,float x) {return clamp((x-edge0)/(edge1-edge0),0.0,1.0);}void main() {\n#pragma mapbox: initialize highp vec4 color\n#pragma mapbox: initialize lowp float floorwidth\n#pragma mapbox: initialize lowp vec4 dash\n#pragma mapbox: initialize lowp float blur\n#pragma mapbox: initialize lowp float opacity\n#pragma mapbox: initialize lowp float border_width\n#pragma mapbox: initialize lowp vec4 border_color\nfloat dist=length(v_normal)*v_width2.s;float blur2=(blur+1.0/u_device_pixel_ratio)*v_gamma_scale;float alpha=clamp(min(dist-(v_width2.t-blur2),v_width2.s-dist)/blur2,0.0,1.0);\n#ifdef RENDER_LINE_DASH\nfloat sdfdist=texture(u_dash_image,v_tex).r;float sdfgamma=1.0/(2.0*u_device_pixel_ratio)/dash.z;alpha*=linearstep(0.5-sdfgamma/floorwidth,0.5+sdfgamma/floorwidth,sdfdist);\n#endif\nhighp vec4 out_color;\n#ifdef RENDER_LINE_GRADIENT\nout_color=texture(u_gradient_image,v_uv.xy);\n#else\nout_color=color;\n#endif\nfloat trim_alpha=1.0;\n#ifdef RENDER_LINE_TRIM_OFFSET\nhighp float start=v_uv[2];highp float end=v_uv[3];highp float trim_start=u_trim_offset[0];highp float trim_end=u_trim_offset[1];highp float line_progress=(start+(v_uv.x)*(end-start));if (trim_end > trim_start) {highp float start_transition=max(0.0,min(1.0,(line_progress-trim_start)/max(u_trim_fade_range[0],1.0e-9)));highp float end_transition=max(0.0,min(1.0,(trim_end-line_progress)/max(u_trim_fade_range[1],1.0e-9)));highp float transition_factor=min(start_transition,end_transition);out_color=mix(out_color,u_trim_color,transition_factor);trim_alpha=out_color.a;}\n#endif\nif (u_alpha_discard_threshold !=0.0) {if (alpha < u_alpha_discard_threshold) {discard;}}\n#ifdef RENDER_LINE_BORDER\nfloat edgeBlur=(border_width+1.0/u_device_pixel_ratio);float alpha2=clamp(min(dist-(v_width2.t-edgeBlur),v_width2.s-dist)/edgeBlur,0.0,1.0);if (alpha2 < 1.) {float smoothAlpha=smoothstep(0.6,1.0,alpha2);if (border_color.a==0.0) {float Y=(out_color.a > 0.01) ? luminance(out_color.rgb/out_color.a) : 1.;float adjustment=(Y > 0.) ? 0.5/Y : 0.45;if (out_color.a > 0.25 && Y < 0.25) {vec3 borderColor=(Y > 0.) ? out_color.rgb : vec3(1,1,1)*out_color.a;out_color.rgb=out_color.rgb+borderColor*(adjustment*(1.0-smoothAlpha));} else {out_color.rgb*=(0.6 +0.4*smoothAlpha);}} else {out_color.rgb=mix(border_color.rgb*border_color.a*trim_alpha,out_color.rgb,smoothAlpha);}}\n#endif\n#ifdef LIGHTING_3D_MODE\nout_color=apply_lighting_with_emission_ground(out_color,u_emissive_strength);\n#endif\n#ifdef FOG\nout_color=fog_dither(fog_apply_premultiplied(out_color,v_fog_pos));\n#endif\nout_color*=(alpha*opacity);\n#ifdef INDICATOR_CUTOUT\nout_color=applyCutout(out_color);\n#endif\nglFragColor=out_color;\n#ifdef OVERDRAW_INSPECTOR\nglFragColor=vec4(1.0);\n#endif\nHANDLE_WIREFRAME_DEBUG;}','#include "_prelude_fog.vertex.glsl"\n#include "_prelude_terrain.vertex.glsl"\n#define EXTRUDE_SCALE 0.015873016\nin vec2 a_pos_normal;in vec4 a_data;\n#if defined(ELEVATED)\nin float a_z_offset;\n#endif\n#if defined(RENDER_LINE_GRADIENT) || defined(RENDER_LINE_TRIM_OFFSET)\nin highp vec4 a_packed;\n#endif\n#ifdef RENDER_LINE_DASH\nin float a_linesofar;\n#endif\nuniform mat4 u_matrix;uniform mat2 u_pixels_to_tile_units;uniform vec2 u_units_to_pixels;uniform lowp float u_device_pixel_ratio;out vec2 v_normal;out vec2 v_width2;out float v_gamma_scale;out highp vec4 v_uv;\n#ifdef RENDER_LINE_DASH\nuniform vec2 u_texsize;uniform float u_tile_units_to_pixels;out vec2 v_tex;\n#endif\n#ifdef RENDER_LINE_GRADIENT\nuniform float u_image_height;\n#endif\n#pragma mapbox: define highp vec4 color\n#pragma mapbox: define lowp float floorwidth\n#pragma mapbox: define lowp vec4 dash\n#pragma mapbox: define lowp float blur\n#pragma mapbox: define lowp float opacity\n#pragma mapbox: define mediump float gapwidth\n#pragma mapbox: define lowp float offset\n#pragma mapbox: define mediump float width\n#pragma mapbox: define lowp float border_width\n#pragma mapbox: define lowp vec4 border_color\nvoid main() {\n#pragma mapbox: initialize highp vec4 color\n#pragma mapbox: initialize lowp float floorwidth\n#pragma mapbox: initialize lowp vec4 dash\n#pragma mapbox: initialize lowp float blur\n#pragma mapbox: initialize lowp float opacity\n#pragma mapbox: initialize mediump float gapwidth\n#pragma mapbox: initialize lowp float offset\n#pragma mapbox: initialize mediump float width\n#pragma mapbox: initialize lowp float border_width\n#pragma mapbox: initialize lowp vec4 border_color\nfloat ANTIALIASING=1.0/u_device_pixel_ratio/2.0;vec2 a_extrude=a_data.xy-128.0;float a_direction=mod(a_data.z,4.0)-1.0;vec2 pos=floor(a_pos_normal*0.5);mediump vec2 normal=a_pos_normal-2.0*pos;normal.y=normal.y*2.0-1.0;v_normal=normal;gapwidth=gapwidth/2.0;float halfwidth=width/2.0;offset=-1.0*offset;float inset=gapwidth+(gapwidth > 0.0 ? ANTIALIASING : 0.0);float outset=gapwidth+halfwidth*(gapwidth > 0.0 ? 2.0 : 1.0)+(halfwidth==0.0 ? 0.0 : ANTIALIASING);mediump vec2 dist=outset*a_extrude*EXTRUDE_SCALE;mediump float u=0.5*a_direction;mediump float t=1.0-abs(u);mediump vec2 offset2=offset*a_extrude*EXTRUDE_SCALE*normal.y*mat2(t,-u,u,t);vec4 projected_extrude=u_matrix*vec4(dist*u_pixels_to_tile_units,0.0,0.0);\n#if defined(ELEVATED)\nvec2 offsetTile=offset2*u_pixels_to_tile_units;vec2 halfCellProgress=normal.yx*32.0;float ele0=elevation(pos);float ele_line=max(ele0,max(elevation(pos+halfCellProgress),elevation(pos-halfCellProgress)));float ele1=elevation(pos+offsetTile);float ele2=elevation(pos-offsetTile);float ele_max=max(ele_line,0.5*(ele1+ele2));float ele=ele_max-ele0+ele1+a_z_offset ;gl_Position=u_matrix*vec4(pos+offsetTile,ele,1.0)+projected_extrude;float z=clamp(gl_Position.z/gl_Position.w,0.5,1.0);float zbias=max(0.00005,(pow(z,0.8)-z)*0.1*u_exaggeration);gl_Position.z-=(gl_Position.w*zbias);\n#else\ngl_Position=u_matrix*vec4(pos+offset2*u_pixels_to_tile_units,0.0,1.0)+projected_extrude;\n#endif\n#ifndef RENDER_TO_TEXTURE\nfloat extrude_length_without_perspective=length(dist);float extrude_length_with_perspective=length(projected_extrude.xy/gl_Position.w*u_units_to_pixels);v_gamma_scale=extrude_length_without_perspective/extrude_length_with_perspective;\n#else\nv_gamma_scale=1.0;\n#endif\n#if defined(RENDER_LINE_GRADIENT) || defined(RENDER_LINE_TRIM_OFFSET)\nfloat a_uv_x=a_packed[0];float a_split_index=a_packed[1];highp float a_clip_start=a_packed[2];highp float a_clip_end=a_packed[3];\n#ifdef RENDER_LINE_GRADIENT\nhighp float texel_height=1.0/u_image_height;highp float half_texel_height=0.5*texel_height;v_uv=vec4(a_uv_x,a_split_index*texel_height-half_texel_height,a_clip_start,a_clip_end);\n#else\nv_uv=vec4(a_uv_x,0.0,a_clip_start,a_clip_end);\n#endif\n#endif\n#ifdef RENDER_LINE_DASH\nfloat scale=dash.z==0.0 ? 0.0 : u_tile_units_to_pixels/dash.z;float height=dash.y;v_tex=vec2(a_linesofar*scale/floorwidth,(-normal.y*height+dash.x+0.5)/u_texsize.y);\n#endif\nv_width2=vec2(outset,inset);\n#ifdef FOG\nv_fog_pos=fog_position(pos);\n#endif\n}'),linePattern:r('#include "_prelude_fog.fragment.glsl"\n#include "_prelude_lighting.glsl"\nuniform highp float u_device_pixel_ratio;uniform highp float u_alpha_discard_threshold;uniform highp vec2 u_texsize;uniform highp float u_tile_units_to_pixels;uniform highp vec2 u_trim_offset;uniform sampler2D u_image;in vec2 v_normal;in vec2 v_width2;in highp float v_linesofar;in float v_gamma_scale;in float v_width;\n#ifdef RENDER_LINE_TRIM_OFFSET\nin highp vec4 v_uv;\n#endif\n#ifdef LINE_JOIN_NONE\nin vec2 v_pattern_data;\n#endif\n#pragma mapbox: define mediump vec4 pattern\n#pragma mapbox: define mediump float pixel_ratio\n#pragma mapbox: define mediump float blur\n#pragma mapbox: define mediump float opacity\nvoid main() {\n#pragma mapbox: initialize mediump vec4 pattern\n#pragma mapbox: initialize mediump float pixel_ratio\n#pragma mapbox: initialize mediump float blur\n#pragma mapbox: initialize mediump float opacity\nvec2 pattern_tl=pattern.xy;vec2 pattern_br=pattern.zw;vec2 display_size=(pattern_br-pattern_tl)/pixel_ratio;float pattern_size=display_size.x/u_tile_units_to_pixels;float aspect=display_size.y/v_width;float dist=length(v_normal)*v_width2.s;float blur2=(blur+1.0/u_device_pixel_ratio)*v_gamma_scale;float alpha=clamp(min(dist-(v_width2.t-blur2),v_width2.s-dist)/blur2,0.0,1.0);highp float pattern_x=v_linesofar/pattern_size*aspect;float x=mod(pattern_x,1.0);float y=0.5*v_normal.y+0.5;vec2 texel_size=1.0/u_texsize;vec2 pos=mix(pattern_tl*texel_size-texel_size,pattern_br*texel_size+texel_size,vec2(x,y));vec2 lod_pos=mix(pattern_tl*texel_size-texel_size,pattern_br*texel_size+texel_size,vec2(pattern_x,y));vec4 color=textureLodCustom(u_image,pos,lod_pos);\n#ifdef RENDER_LINE_TRIM_OFFSET\nhighp float start=v_uv[2];highp float end=v_uv[3];highp float trim_start=u_trim_offset[0];highp float trim_end=u_trim_offset[1];highp float line_progress=(start+(v_uv.x)*(end-start));if (trim_end > trim_start) {if (line_progress <=trim_end && line_progress >=trim_start) {color=vec4(0,0,0,0);}}\n#endif\n#ifdef LINE_JOIN_NONE\nfloat pattern_len=pattern_size/aspect;float segment_phase=pattern_len-mod(v_linesofar-v_pattern_data.x+pattern_len,pattern_len);float visible_start=segment_phase-step(pattern_len*0.5,segment_phase)*pattern_len;float visible_end=floor((v_pattern_data.y-segment_phase)/pattern_len)*pattern_len+segment_phase;visible_end+=step(pattern_len*0.5,v_pattern_data.y-visible_end)*pattern_len;if (v_pattern_data.x < visible_start || v_pattern_data.x >=visible_end) {color=vec4(0.0);}\n#endif\n#ifdef LIGHTING_3D_MODE\ncolor=apply_lighting_ground(color);\n#endif\n#ifdef FOG\ncolor=fog_dither(fog_apply_premultiplied(color,v_fog_pos));\n#endif\ncolor*=(alpha*opacity);if (u_alpha_discard_threshold !=0.0) {if (color.a < u_alpha_discard_threshold) {discard;}}\n#ifdef INDICATOR_CUTOUT\ncolor=applyCutout(color);\n#endif\nglFragColor=color;\n#ifdef OVERDRAW_INSPECTOR\nglFragColor=vec4(1.0);\n#endif\nHANDLE_WIREFRAME_DEBUG;}','#include "_prelude_fog.vertex.glsl"\n#include "_prelude_terrain.vertex.glsl"\n#define scale 0.015873016\nin vec2 a_pos_normal;in vec4 a_data;\n#if defined(ELEVATED)\nin float a_z_offset;\n#endif\n#ifdef RENDER_LINE_TRIM_OFFSET\nin highp vec4 a_packed;\n#endif\nin highp float a_linesofar;\n#ifdef LINE_JOIN_NONE\nin highp vec3 a_pattern_data;out vec2 v_pattern_data;\n#endif\nuniform mat4 u_matrix;uniform float u_tile_units_to_pixels;uniform vec2 u_units_to_pixels;uniform mat2 u_pixels_to_tile_units;uniform float u_device_pixel_ratio;out vec2 v_normal;out vec2 v_width2;out highp float v_linesofar;out float v_gamma_scale;out float v_width;\n#ifdef RENDER_LINE_TRIM_OFFSET\nout highp vec4 v_uv;\n#endif\n#pragma mapbox: define mediump float blur\n#pragma mapbox: define mediump float opacity\n#pragma mapbox: define mediump float offset\n#pragma mapbox: define mediump float gapwidth\n#pragma mapbox: define mediump float width\n#pragma mapbox: define mediump float floorwidth\n#pragma mapbox: define mediump vec4 pattern\n#pragma mapbox: define mediump float pixel_ratio\nvoid main() {\n#pragma mapbox: initialize mediump float blur\n#pragma mapbox: initialize mediump float opacity\n#pragma mapbox: initialize mediump float offset\n#pragma mapbox: initialize mediump float gapwidth\n#pragma mapbox: initialize mediump float width\n#pragma mapbox: initialize mediump float floorwidth\n#pragma mapbox: initialize mediump vec4 pattern\n#pragma mapbox: initialize mediump float pixel_ratio\nfloat ANTIALIASING=1.0/u_device_pixel_ratio/2.0;vec2 a_extrude=a_data.xy-128.0;float a_direction=mod(a_data.z,4.0)-1.0;vec2 pos=floor(a_pos_normal*0.5);vec2 normal=a_pos_normal-2.0*pos;normal.y=normal.y*2.0-1.0;v_normal=normal;gapwidth=gapwidth/2.0;float halfwidth=width/2.0;offset=-1.0*offset;float inset=gapwidth+(gapwidth > 0.0 ? ANTIALIASING : 0.0);float outset=gapwidth+halfwidth*(gapwidth > 0.0 ? 2.0 : 1.0)+(halfwidth==0.0 ? 0.0 : ANTIALIASING);vec2 dist=outset*a_extrude*scale;float u=0.5*a_direction;float t=1.0-abs(u);vec2 offset2=offset*a_extrude*scale*normal.y*mat2(t,-u,u,t);vec4 projected_extrude=u_matrix*vec4(dist*u_pixels_to_tile_units,0.0,0.0);\n#if defined(ELEVATED)\nvec2 offsetTile=offset2*u_pixels_to_tile_units;vec2 halfCellProgress=normal.yx*32.0;float ele0=elevation(pos);float ele_line=max(ele0,max(elevation(pos+halfCellProgress),elevation(pos-halfCellProgress)));float ele1=elevation(pos+offsetTile);float ele2=elevation(pos-offsetTile);float ele_max=max(ele_line,0.5*(ele1+ele2));float ele=ele_max-ele0+ele1+a_z_offset ;gl_Position=u_matrix*vec4(pos+offsetTile,ele,1.0)+projected_extrude;float z=clamp(gl_Position.z/gl_Position.w,0.5,1.0);float zbias=max(0.00005,(pow(z,0.8)-z)*0.1*u_exaggeration);gl_Position.z-=(gl_Position.w*zbias);\n#else\ngl_Position=u_matrix*vec4(pos+offset2*u_pixels_to_tile_units,0.0,1.0)+projected_extrude;\n#endif\n#ifndef RENDER_TO_TEXTURE\nfloat extrude_length_without_perspective=length(dist);float extrude_length_with_perspective=length(projected_extrude.xy/gl_Position.w*u_units_to_pixels);v_gamma_scale=extrude_length_without_perspective/extrude_length_with_perspective;\n#else\nv_gamma_scale=1.0;\n#endif\n#ifdef RENDER_LINE_TRIM_OFFSET\nfloat a_uv_x=a_packed[0];highp float a_clip_start=a_packed[2];highp float a_clip_end=a_packed[3];v_uv=vec4(a_uv_x,0.0,a_clip_start,a_clip_end);\n#endif\nv_linesofar=a_linesofar;v_width2=vec2(outset,inset);v_width=floorwidth;\n#ifdef LINE_JOIN_NONE\nv_width=floorwidth+ANTIALIASING;mediump float pixels_to_tile_units=1.0/u_tile_units_to_pixels;mediump float pixel_ratio_inverse=1.0/pixel_ratio;mediump float aspect=v_width/((pattern.w-pattern.y)*pixel_ratio_inverse);highp float subt_multiple=(pattern.z-pattern.x)*pixel_ratio_inverse*pixels_to_tile_units*aspect*32.0;highp float subt=floor(a_pattern_data.z/subt_multiple)*subt_multiple;float offset_sign=(fract(a_pattern_data.x)-0.5)*4.0;float line_progress_offset=offset_sign*v_width*0.5*pixels_to_tile_units;v_linesofar=(a_pattern_data.z-subt)+a_linesofar+line_progress_offset;v_pattern_data=vec2(a_pattern_data.x+line_progress_offset,a_pattern_data.y);\n#endif\n#ifdef FOG\nv_fog_pos=fog_position(pos);\n#endif\n}'),raster:r('#include "_prelude_fog.fragment.glsl"\n#include "_prelude_lighting.glsl"\n#include "_prelude_raster_array.glsl"\nuniform float u_fade_t;uniform float u_opacity;uniform highp float u_raster_elevation;uniform highp float u_zoom_transition;in vec2 v_pos0;in vec2 v_pos1;in float v_depth;\n#ifdef PROJECTION_GLOBE_VIEW\nin float v_split_fade;\n#endif\nuniform float u_brightness_low;uniform float u_brightness_high;uniform float u_saturation_factor;uniform float u_contrast_factor;uniform vec3 u_spin_weights;uniform float u_emissive_strength;\n#ifndef RASTER_ARRAY\nuniform sampler2D u_image0;uniform sampler2D u_image1;\n#endif\n#ifdef RASTER_COLOR\nuniform sampler2D u_color_ramp;uniform highp vec4 u_colorization_mix;uniform highp float u_colorization_offset;uniform vec2 u_texture_res;\n#endif\nvoid main() {vec4 color0,color1,color;vec2 value;\n#ifdef RASTER_COLOR\n#ifdef RASTER_ARRAY\n#ifdef RASTER_ARRAY_LINEAR\nvalue=mix(\nraTexture2D_image0_linear(v_pos0,u_texture_res,u_colorization_mix,u_colorization_offset),raTexture2D_image1_linear(v_pos1,u_texture_res,u_colorization_mix,u_colorization_offset),u_fade_t\n);\n#else\nvalue=mix(\nraTexture2D_image0_nearest(v_pos0,u_texture_res,u_colorization_mix,u_colorization_offset),raTexture2D_image1_nearest(v_pos1,u_texture_res,u_colorization_mix,u_colorization_offset),u_fade_t\n);\n#endif\nif (value.y > 0.0) value.x/=value.y;\n#else\ncolor=mix(texture(u_image0,v_pos0),texture(u_image1,v_pos1),u_fade_t);value=vec2(u_colorization_offset+dot(color.rgb,u_colorization_mix.rgb),color.a);\n#endif\ncolor=texture(u_color_ramp,vec2(value.x,0.5));if (color.a > 0.0) color.rgb/=color.a;color.a*=value.y;\n#else\ncolor0=texture(u_image0,v_pos0);color1=texture(u_image1,v_pos1);if (color0.a > 0.0) color0.rgb/=color0.a;if (color1.a > 0.0) color1.rgb/=color1.a;color=mix(color0,color1,u_fade_t);\n#endif\ncolor.a*=u_opacity;\n#ifdef GLOBE_POLES\ncolor.a*=1.0-smoothstep(0.0,0.05,u_zoom_transition);\n#endif\nvec3 rgb=color.rgb;rgb=vec3(\ndot(rgb,u_spin_weights.xyz),dot(rgb,u_spin_weights.zxy),dot(rgb,u_spin_weights.yzx));float average=(color.r+color.g+color.b)/3.0;rgb+=(average-rgb)*u_saturation_factor;rgb=(rgb-0.5)*u_contrast_factor+0.5;vec3 u_high_vec=vec3(u_brightness_low,u_brightness_low,u_brightness_low);vec3 u_low_vec=vec3(u_brightness_high,u_brightness_high,u_brightness_high);vec3 out_color=mix(u_high_vec,u_low_vec,rgb);\n#ifdef LIGHTING_3D_MODE\nout_color=apply_lighting_with_emission_ground(vec4(out_color,1.0),u_emissive_strength).rgb;\n#endif\n#ifdef FOG\nhighp float fog_limit_high_meters=1000000.0;highp float fog_limit_low_meters=600000.0;float fog_limit=1.0-smoothstep(fog_limit_low_meters,fog_limit_high_meters,u_raster_elevation);out_color=fog_dither(fog_apply(out_color,v_fog_pos,fog_limit));\n#endif\nglFragColor=vec4(out_color*color.a,color.a);\n#ifdef PROJECTION_GLOBE_VIEW\nglFragColor*=mix(1.0,1.0-smoothstep(0.0,0.05,u_zoom_transition),smoothstep(0.8,0.9,v_split_fade));\n#endif\n#ifdef RENDER_CUTOFF\nglFragColor=glFragColor*cutoff_opacity(u_cutoff_params,v_depth);\n#endif\n#ifdef OVERDRAW_INSPECTOR\nglFragColor=vec4(1.0);\n#endif\nHANDLE_WIREFRAME_DEBUG;}','#include "_prelude_fog.vertex.glsl"\nuniform mat4 u_matrix;uniform mat4 u_normalize_matrix;uniform mat4 u_globe_matrix;uniform mat4 u_merc_matrix;uniform mat3 u_grid_matrix;uniform vec2 u_tl_parent;uniform float u_scale_parent;uniform vec2 u_perspective_transform;uniform vec2 u_texture_offset;uniform float u_raster_elevation;uniform float u_zoom_transition;uniform vec2 u_merc_center;\n#define GLOBE_UPSCALE GLOBE_RADIUS/6371008.8\n#ifdef GLOBE_POLES\nin vec3 a_globe_pos;in vec2 a_uv;\n#else\nin vec2 a_pos;in vec2 a_texture_pos;\n#endif\nout vec2 v_pos0;out vec2 v_pos1;out float v_depth;\n#ifdef PROJECTION_GLOBE_VIEW\nout float v_split_fade;\n#endif\nvoid main() {vec2 uv;\n#ifdef GLOBE_POLES\nvec3 globe_pos=a_globe_pos;globe_pos+=normalize(globe_pos)*u_raster_elevation*GLOBE_UPSCALE;gl_Position=u_matrix*u_globe_matrix*vec4(globe_pos ,1.0);uv=a_uv;\n#ifdef FOG\nv_fog_pos=fog_position((u_normalize_matrix*vec4(a_globe_pos,1.0)).xyz);\n#endif\n#else\nfloat w=1.0+dot(a_texture_pos,u_perspective_transform);uv=a_texture_pos/8192.0;\n#ifdef PROJECTION_GLOBE_VIEW\nvec3 decomposed_pos_and_skirt=decomposeToPosAndSkirt(a_pos);vec3 latLng=u_grid_matrix*vec3(decomposed_pos_and_skirt.xy,1.0);vec3 globe_pos=latLngToECEF(latLng.xy);globe_pos+=normalize(globe_pos)*u_raster_elevation*GLOBE_UPSCALE;vec4 globe_world_pos=u_globe_matrix*vec4(globe_pos,1.0);vec4 merc_world_pos=vec4(0.0);float mercatorY=mercatorYfromLat(latLng[0]);float mercatorX=mercatorXfromLng(latLng[1]); \nv_split_fade=0.0;if (u_zoom_transition > 0.0) {vec2 merc_pos=vec2(mercatorX,mercatorY);merc_world_pos=vec4(merc_pos,u_raster_elevation,1.0);merc_world_pos.xy-=u_merc_center;merc_world_pos.x=wrap(merc_world_pos.x,-0.5,0.5);merc_world_pos=u_merc_matrix*merc_world_pos;float opposite_merc_center=mod(u_merc_center.x+0.5,1.0);float dist_from_poles=(abs(mercatorY-0.5)*2.0);float range=0.1;v_split_fade=abs(opposite_merc_center-mercatorX);v_split_fade=clamp(1.0-v_split_fade,0.0,1.0);v_split_fade=max(smoothstep(1.0-range,1.0,dist_from_poles),max(smoothstep(1.0-range,1.0,v_split_fade),smoothstep(1.0-range,1.0,1.0-v_split_fade)));}float tiles=u_grid_matrix[0][2];if (tiles > 0.0) {float idx=u_grid_matrix[1][2];float idy=u_grid_matrix[2][2];float uvY=mercatorY*tiles-idy;float uvX=mercatorX*tiles-idx;uv=vec2(uvX,uvY);}vec4 interpolated_pos=vec4(mix(globe_world_pos.xyz,merc_world_pos.xyz,u_zoom_transition)*w,w);gl_Position=u_matrix*interpolated_pos;\n#ifdef FOG\nv_fog_pos=fog_position((u_normalize_matrix*vec4(globe_pos,1.0)).xyz);\n#endif\n#else\ngl_Position=u_matrix*vec4(a_pos*w,u_raster_elevation*w,w);\n#ifdef FOG\nv_fog_pos=fog_position(a_pos);\n#endif\n#endif\n#endif\nv_pos0=uv;v_pos1=(v_pos0*u_scale_parent)+u_tl_parent;v_pos0=u_texture_offset.x+u_texture_offset.y*v_pos0;v_pos1=u_texture_offset.x+u_texture_offset.y*v_pos1;\n#ifdef RENDER_CUTOFF\nv_depth=gl_Position.z;\n#endif\n}'),rasterParticle:r('#include "_prelude_fog.fragment.glsl"\n#include "_prelude_lighting.glsl"\nuniform float u_fade_t;uniform float u_opacity;uniform highp float u_raster_elevation;in vec2 v_pos0;in vec2 v_pos1;uniform sampler2D u_image0;uniform sampler2D u_image1;void main() {vec4 color0,color1,color;color0=texture(u_image0,v_pos0);color1=texture(u_image1,v_pos1);if (color0.a > 0.0) color0.rgb/=color0.a;if (color1.a > 0.0) color1.rgb/=color1.a;color=mix(color0,color1,u_fade_t);color.a*=u_opacity;vec3 out_color=color.rgb;\n#ifdef LIGHTING_3D_MODE\nout_color=apply_lighting_with_emission_ground(vec4(out_color,1.0),0.0).rgb;\n#endif\n#ifdef FOG\nhighp float fog_limit_high_meters=1000000.0;highp float fog_limit_low_meters=600000.0;float fog_limit=1.0-smoothstep(fog_limit_low_meters,fog_limit_high_meters,u_raster_elevation);out_color=fog_dither(fog_apply(out_color,v_fog_pos,fog_limit));\n#endif\nglFragColor=vec4(out_color*color.a,color.a);\n#ifdef OVERDRAW_INSPECTOR\nglFragColor=vec4(1.0);\n#endif\nHANDLE_WIREFRAME_DEBUG;}','#include "_prelude_fog.vertex.glsl"\nuniform mat4 u_matrix;uniform mat4 u_normalize_matrix;uniform mat4 u_globe_matrix;uniform mat4 u_merc_matrix;uniform mat3 u_grid_matrix;uniform vec2 u_tl_parent;uniform float u_scale_parent;uniform float u_raster_elevation;uniform float u_zoom_transition;uniform vec2 u_merc_center;\n#define GLOBE_UPSCALE GLOBE_RADIUS/6371008.8\nin vec2 a_pos;in vec2 a_texture_pos;out vec2 v_pos0;out vec2 v_pos1;void main() {float w=1.0;vec2 uv;\n#ifdef PROJECTION_GLOBE_VIEW\nvec3 decomposed_pos_and_skirt=decomposeToPosAndSkirt(a_pos);vec3 latLng=u_grid_matrix*vec3(decomposed_pos_and_skirt.xy,1.0);float mercatorY=mercatorYfromLat(latLng[0]);float mercatorX=mercatorXfromLng(latLng[1]);float tiles=u_grid_matrix[0][2];float idx=u_grid_matrix[1][2];float idy=u_grid_matrix[2][2];float uvX=mercatorX*tiles-idx;float uvY=mercatorY*tiles-idy;uv=vec2(uvX,uvY);vec3 globe_pos=latLngToECEF(latLng.xy);globe_pos+=normalize(globe_pos)*u_raster_elevation*GLOBE_UPSCALE;vec4 globe_world_pos=u_globe_matrix*vec4(globe_pos,1.0);vec4 merc_world_pos=vec4(0.0);if (u_zoom_transition > 0.0) {vec2 merc_pos=vec2(mercatorX,mercatorY);merc_world_pos=vec4(merc_pos,u_raster_elevation,1.0);merc_world_pos.xy-=u_merc_center;merc_world_pos.x=wrap(merc_world_pos.x,-0.5,0.5);merc_world_pos=u_merc_matrix*merc_world_pos;}vec4 interpolated_pos=vec4(mix(globe_world_pos.xyz,merc_world_pos.xyz,u_zoom_transition)*w,w);gl_Position=u_matrix*interpolated_pos;\n#ifdef FOG\nv_fog_pos=fog_position((u_normalize_matrix*vec4(globe_pos,1.0)).xyz);\n#endif\n#else\nuv=a_texture_pos/8192.0;gl_Position=u_matrix*vec4(a_pos*w,u_raster_elevation*w,w);\n#ifdef FOG\nv_fog_pos=fog_position(a_pos);\n#endif\n#endif\nv_pos0=uv;v_pos1=(v_pos0*u_scale_parent)+u_tl_parent;}'),rasterParticleDraw:r("uniform sampler2D u_color_ramp;in float v_particle_speed;void main() {glFragColor=texture(u_color_ramp,vec2(v_particle_speed,0.5));}",'#include "_prelude_raster_particle.glsl"\nin float a_index;uniform sampler2D u_particle_texture;uniform float u_particle_texture_side_len;uniform vec2 u_tile_offset;out float v_particle_speed;void main() {ivec2 pixel_coord=ivec2(\nmod(a_index,u_particle_texture_side_len),a_index/u_particle_texture_side_len);vec4 pixel=texelFetch(u_particle_texture,pixel_coord,0);vec2 pos=unpack_pos_from_rgba(pixel)+u_tile_offset;vec2 tex_coord=fract(pos);vec2 velocity=lookup_velocity(tex_coord);if (velocity==INVALID_VELOCITY) {gl_Position=AWAY;v_particle_speed=0.0;} else {gl_Position=vec4(2.0*pos-1.0,0,1);v_particle_speed=length(velocity);}gl_PointSize=1.0;}'),rasterParticleTexture:r("uniform sampler2D u_texture;uniform float u_opacity;in vec2 v_tex_pos;void main() {vec4 color=texture(u_texture,v_tex_pos);glFragColor=vec4(floor(255.0*color*u_opacity)/255.0);}","in vec2 a_pos;out vec2 v_tex_pos;void main() {vec2 uv=0.5*a_pos+vec2(0.5);v_tex_pos=uv;gl_Position=vec4(a_pos,0.0,1.0);}"),rasterParticleUpdate:r('#include "_prelude_raster_particle.glsl"\nuniform sampler2D u_particle_texture;uniform mediump float u_particle_texture_side_len;uniform mediump float u_speed_factor;uniform highp float u_reset_rate;uniform highp float u_rand_seed;in highp vec2 v_tex_coord;vec2 linearstep(vec2 edge0,vec2 edge1,vec2 x) {return clamp((x-edge0)/(edge1-edge0),vec2(0),vec2(1));}const highp vec3 rand_constants=vec3(12.9898,78.233,4375.85453);highp float rand(const highp vec2 co) {highp float t=dot(rand_constants.xy,co);return fract(sin(t)*(rand_constants.z+t));}void main() {ivec2 pixel_coord=ivec2(v_tex_coord*u_particle_texture_side_len);highp vec4 pixel=texelFetch(u_particle_texture,pixel_coord,0);highp vec2 pos=unpack_pos_from_rgba(pixel);highp vec2 velocity=lookup_velocity(clamp(pos,0.0,1.0));highp vec2 dp=velocity==INVALID_VELOCITY ? vec2(0) : velocity*u_speed_factor;pos=pos+dp;highp vec2 seed=(pos+v_tex_coord)*u_rand_seed;highp vec2 random_pos=vec2(rand(seed+1.3),rand(seed+2.1));highp vec2 persist_rate=pow(\nlinearstep(vec2(-u_particle_pos_offset),vec2(0),pos)*linearstep(vec2(1.0+u_particle_pos_offset),vec2(1),pos),vec2(4)\n);highp vec2 per_frame_persist=pow(persist_rate,abs(dp)/u_particle_pos_offset);highp float drop_rate=1.0-per_frame_persist.x*per_frame_persist.y;drop_rate=any(greaterThanEqual(abs(pos-0.5),vec2(0.5+u_particle_pos_offset))) ? 1.0 : drop_rate;highp float drop=step(1.0-drop_rate-u_reset_rate,rand(seed));highp vec2 next_pos=mix(pos,random_pos,drop);glFragColor=pack_pos_to_rgba(next_pos);}',"in vec2 a_pos;out vec2 v_tex_coord;void main() {v_tex_coord=0.5*(a_pos+vec2(1.0));gl_Position=vec4(a_pos,0.0,1.0);}"),symbolIcon:r('#include "_prelude_lighting.glsl"\nuniform sampler2D u_texture;\n#ifdef ICON_TRANSITION\nuniform float u_icon_transition;\n#endif\nin float v_fade_opacity;in vec2 v_tex_a;\n#ifdef ICON_TRANSITION\nin vec2 v_tex_b;\n#endif\n#ifdef COLOR_ADJUSTMENT\nuniform mat4 u_color_adj_mat;\n#endif\n#pragma mapbox: define lowp float opacity\n#pragma mapbox: define lowp float emissive_strength\nvoid main() {\n#pragma mapbox: initialize lowp float opacity\n#pragma mapbox: initialize lowp float emissive_strength\nlowp float alpha=opacity*v_fade_opacity;vec4 out_color;\n#ifdef ICON_TRANSITION\nvec4 a=texture(u_texture,v_tex_a)*(1.0-u_icon_transition);vec4 b=texture(u_texture,v_tex_b)*u_icon_transition;out_color=(a+b);\n#else\nout_color=texture(u_texture,v_tex_a);\n#endif\n#ifdef COLOR_ADJUSTMENT\nout_color=u_color_adj_mat*out_color;\n#endif\nout_color*=alpha;\n#ifdef LIGHTING_3D_MODE\nout_color=apply_lighting_with_emission_ground(out_color,emissive_strength);\n#endif\nglFragColor=out_color;\n#ifdef OVERDRAW_INSPECTOR\nglFragColor=vec4(1.0);\n#endif\nHANDLE_WIREFRAME_DEBUG;}','#include "_prelude_terrain.vertex.glsl"\nin vec4 a_pos_offset;in vec4 a_tex_size;in vec4 a_pixeloffset;in vec4 a_projected_pos;in float a_fade_opacity;\n#ifdef OCCLUSION_QUERIES\nin float a_occlusion_query_opacity;\n#endif\n#ifdef Z_OFFSET\nin float a_z_offset;\n#endif\n#ifdef PROJECTION_GLOBE_VIEW\nin vec3 a_globe_anchor;in vec3 a_globe_normal;\n#endif\n#ifdef ICON_TRANSITION\nin vec2 a_texb;\n#endif\nuniform bool u_is_size_zoom_constant;uniform bool u_is_size_feature_constant;uniform highp float u_size_t;uniform highp float u_size;uniform highp float u_camera_to_center_distance;uniform bool u_rotate_symbol;uniform highp float u_aspect_ratio;uniform float u_fade_change;uniform mat4 u_matrix;uniform mat4 u_label_plane_matrix;uniform mat4 u_coord_matrix;uniform bool u_is_text;uniform bool u_pitch_with_map;uniform vec2 u_texsize;uniform vec3 u_up_vector;\n#ifdef PROJECTION_GLOBE_VIEW\nuniform vec3 u_tile_id;uniform mat4 u_inv_rot_matrix;uniform vec2 u_merc_center;uniform vec3 u_camera_forward;uniform float u_zoom_transition;uniform vec3 u_ecef_origin;uniform mat4 u_tile_matrix;\n#endif\nout vec2 v_tex_a;\n#ifdef ICON_TRANSITION\nout vec2 v_tex_b;\n#endif\nout float v_fade_opacity;\n#pragma mapbox: define lowp float opacity\n#pragma mapbox: define lowp float emissive_strength\n#pragma mapbox: define lowp float occlusion_opacity\nvoid main() {\n#pragma mapbox: initialize lowp float opacity\n#pragma mapbox: initialize lowp float emissive_strength\n#pragma mapbox: initialize lowp float occlusion_opacity\nvec2 a_pos=a_pos_offset.xy;vec2 a_offset=a_pos_offset.zw;vec2 a_tex=a_tex_size.xy;vec2 a_size=a_tex_size.zw;float a_size_min=floor(a_size[0]*0.5);vec2 a_pxoffset=a_pixeloffset.xy;vec2 a_min_font_scale=a_pixeloffset.zw/256.0;highp float segment_angle=-a_projected_pos[3];float size;if (!u_is_size_zoom_constant && !u_is_size_feature_constant) {size=mix(a_size_min,a_size[1],u_size_t)/128.0;} else if (u_is_size_zoom_constant && !u_is_size_feature_constant) {size=a_size_min/128.0;} else {size=u_size;}vec2 tile_anchor=a_pos;float e=elevation(tile_anchor);\n#ifdef Z_OFFSET\ne+=a_z_offset;\n#endif\nvec3 h=elevationVector(tile_anchor)*e;float globe_occlusion_fade;vec3 world_pos;vec3 mercator_pos;vec3 world_pos_globe;\n#ifdef PROJECTION_GLOBE_VIEW\nmercator_pos=mercator_tile_position(u_inv_rot_matrix,tile_anchor,u_tile_id,u_merc_center);world_pos_globe=a_globe_anchor+h;world_pos=mix_globe_mercator(world_pos_globe,mercator_pos,u_zoom_transition);vec4 ecef_point=u_tile_matrix*vec4(world_pos,1.0);vec3 origin_to_point=ecef_point.xyz-u_ecef_origin;globe_occlusion_fade=dot(origin_to_point,u_camera_forward) >=0.0 ? 0.0 : 1.0;\n#else\nworld_pos=vec3(tile_anchor,0)+h;globe_occlusion_fade=1.0;\n#endif\nvec4 projected_point=u_matrix*vec4(world_pos,1);highp float camera_to_anchor_distance=projected_point.w;highp float distance_ratio=u_pitch_with_map ?\ncamera_to_anchor_distance/u_camera_to_center_distance :\nu_camera_to_center_distance/camera_to_anchor_distance;highp float perspective_ratio=clamp(\n0.5+0.5*distance_ratio,0.0,1.5);size*=perspective_ratio;float font_scale=u_is_text ? size/24.0 : size;highp float symbol_rotation=0.0;if (u_rotate_symbol) {vec4 offsetProjected_point;vec2 a;\n#ifdef PROJECTION_GLOBE_VIEW\nvec3 displacement=vec3(a_globe_normal.z,0,-a_globe_normal.x);offsetProjected_point=u_matrix*vec4(a_globe_anchor+displacement,1);vec4 projected_point_globe=u_matrix*vec4(world_pos_globe,1);a=projected_point_globe.xy/projected_point_globe.w;\n#else\noffsetProjected_point=u_matrix*vec4(tile_anchor+vec2(1,0),0,1);a=projected_point.xy/projected_point.w;\n#endif\nvec2 b=offsetProjected_point.xy/offsetProjected_point.w;symbol_rotation=atan((b.y-a.y)/u_aspect_ratio,b.x-a.x);}vec4 projected_pos;\n#ifdef PROJECTION_GLOBE_VIEW\nvec3 proj_pos=mix_globe_mercator(a_projected_pos.xyz+h,mercator_pos,u_zoom_transition);projected_pos=u_label_plane_matrix*vec4(proj_pos,1.0);\n#else\nprojected_pos=u_label_plane_matrix*vec4(a_projected_pos.xy,h.z,1.0);\n#endif\nhighp float angle_sin=sin(segment_angle+symbol_rotation);highp float angle_cos=cos(segment_angle+symbol_rotation);mat2 rotation_matrix=mat2(angle_cos,-1.0*angle_sin,angle_sin,angle_cos);float z=0.0;vec2 offset=rotation_matrix*(a_offset/32.0*max(a_min_font_scale,font_scale)+a_pxoffset/16.0);\n#ifdef TERRAIN\n#ifdef PITCH_WITH_MAP_TERRAIN\nvec4 tile_pos=u_label_plane_matrix_inv*vec4(a_projected_pos.xy+offset,0.0,1.0);z=elevation(tile_pos.xy);\n#endif\n#endif\nfloat occlusion_fade=globe_occlusion_fade;float projection_transition_fade=1.0;\n#if defined(PROJECTED_POS_ON_VIEWPORT) && defined(PROJECTION_GLOBE_VIEW)\nprojection_transition_fade=1.0-step(EPSILON,u_zoom_transition);\n#endif\nvec2 fade_opacity=unpack_opacity(a_fade_opacity);float fade_change=fade_opacity[1] > 0.5 ? u_fade_change :-u_fade_change;float out_fade_opacity=max(0.0,min(occlusion_fade,fade_opacity[0]+fade_change))*projection_transition_fade;float alpha=opacity*out_fade_opacity;float hidden=float(alpha==0.0 || projected_point.w <=0.0 || occlusion_fade==0.0);\n#ifdef PROJECTION_GLOBE_VIEW\nvec3 xAxis=u_pitch_with_map ? normalize(cross(a_globe_normal,u_up_vector)) : vec3(1,0,0);vec3 yAxis=u_pitch_with_map ? normalize(cross(a_globe_normal,xAxis)) : vec3(0,1,0);gl_Position=mix(u_coord_matrix*vec4(projected_pos.xyz/projected_pos.w+xAxis*offset.x+yAxis*offset.y,1.0),AWAY,hidden);\n#else\ngl_Position=mix(u_coord_matrix*vec4(projected_pos.xy/projected_pos.w+offset,z,1.0),AWAY,hidden);\n#endif\nv_tex_a=a_tex/u_texsize;\n#ifdef ICON_TRANSITION\nv_tex_b=a_texb/u_texsize;\n#endif\nv_fade_opacity=out_fade_opacity;\n#ifdef DEPTH_OCCLUSION\nfloat depthOcclusion=occlusionFadeMultiSample(projected_point);float depthOcclusionMultplier=mix(occlusion_opacity,1.0,depthOcclusion);v_fade_opacity*=depthOcclusionMultplier;\n#endif\n#ifdef OCCLUSION_QUERIES\nfloat occludedFadeMultiplier=mix(occlusion_opacity,1.0,a_occlusion_query_opacity);v_fade_opacity*=occludedFadeMultiplier;\n#endif\n}'),symbolSDF:r('#include "_prelude_lighting.glsl"\n#define SDF_PX 8.0\nuniform sampler2D u_texture;uniform highp float u_gamma_scale;uniform lowp float u_device_pixel_ratio;uniform bool u_is_text;uniform bool u_is_halo;in float v_draw_halo;in vec2 v_data0;in vec3 v_data1;\n#pragma mapbox: define highp vec4 fill_color\n#pragma mapbox: define highp vec4 halo_color\n#pragma mapbox: define lowp float opacity\n#pragma mapbox: define lowp float halo_width\n#pragma mapbox: define lowp float halo_blur\n#pragma mapbox: define lowp float emissive_strength\nvoid main() {\n#pragma mapbox: initialize highp vec4 fill_color\n#pragma mapbox: initialize highp vec4 halo_color\n#pragma mapbox: initialize lowp float opacity\n#pragma mapbox: initialize lowp float halo_width\n#pragma mapbox: initialize lowp float halo_blur\n#pragma mapbox: initialize lowp float emissive_strength\nfloat EDGE_GAMMA=0.105/u_device_pixel_ratio;vec2 tex=v_data0.xy;float gamma_scale=v_data1.x;float size=v_data1.y;float fade_opacity=v_data1[2];float fontScale=u_is_text ? size/24.0 : size;lowp vec4 color=fill_color;highp float gamma=EDGE_GAMMA/(fontScale*u_gamma_scale);lowp float buff=(256.0-64.0)/256.0;bool draw_halo=v_draw_halo > 0.0;if (draw_halo) {color=halo_color;gamma=(halo_blur*1.19/SDF_PX+EDGE_GAMMA)/(fontScale*u_gamma_scale);buff=(6.0-halo_width/fontScale)/SDF_PX;}lowp float dist=texture(u_texture,tex).r;highp float gamma_scaled=gamma*gamma_scale;highp float alpha=smoothstep(buff-gamma_scaled,buff+gamma_scaled,dist);vec4 out_color=color*(alpha*opacity*fade_opacity);\n#ifdef LIGHTING_3D_MODE\nout_color=apply_lighting_with_emission_ground(out_color,emissive_strength);\n#endif\nglFragColor=out_color;\n#ifdef OVERDRAW_INSPECTOR\nglFragColor=vec4(1.0);\n#endif\nHANDLE_WIREFRAME_DEBUG;}','#include "_prelude_terrain.vertex.glsl"\nin vec4 a_pos_offset;in vec4 a_tex_size;in vec4 a_pixeloffset;in vec4 a_projected_pos;in float a_fade_opacity;\n#ifdef Z_OFFSET\nin float a_z_offset;\n#endif\n#ifdef PROJECTION_GLOBE_VIEW\nin vec3 a_globe_anchor;in vec3 a_globe_normal;\n#endif\n#ifdef OCCLUSION_QUERIES\nin float a_occlusion_query_opacity;\n#endif\nuniform bool u_is_size_zoom_constant;uniform bool u_is_size_feature_constant;uniform highp float u_size_t;uniform highp float u_size;uniform mat4 u_matrix;uniform mat4 u_label_plane_matrix;uniform mat4 u_coord_matrix;uniform bool u_is_text;uniform bool u_pitch_with_map;uniform bool u_rotate_symbol;uniform highp float u_aspect_ratio;uniform highp float u_camera_to_center_distance;uniform float u_fade_change;uniform vec2 u_texsize;uniform vec3 u_up_vector;uniform bool u_is_halo;\n#ifdef PROJECTION_GLOBE_VIEW\nuniform vec3 u_tile_id;uniform mat4 u_inv_rot_matrix;uniform vec2 u_merc_center;uniform vec3 u_camera_forward;uniform float u_zoom_transition;uniform vec3 u_ecef_origin;uniform mat4 u_tile_matrix;\n#endif\nout float v_draw_halo;out vec2 v_data0;out vec3 v_data1;\n#pragma mapbox: define highp vec4 fill_color\n#pragma mapbox: define highp vec4 halo_color\n#pragma mapbox: define lowp float opacity\n#pragma mapbox: define lowp float halo_width\n#pragma mapbox: define lowp float halo_blur\n#pragma mapbox: define lowp float emissive_strength\n#pragma mapbox: define lowp float occlusion_opacity\nvoid main() {\n#pragma mapbox: initialize highp vec4 fill_color\n#pragma mapbox: initialize highp vec4 halo_color\n#pragma mapbox: initialize lowp float opacity\n#pragma mapbox: initialize lowp float halo_width\n#pragma mapbox: initialize lowp float halo_blur\n#pragma mapbox: initialize lowp float emissive_strength\n#pragma mapbox: initialize lowp float occlusion_opacity\nvec2 a_pos=a_pos_offset.xy;vec2 a_offset=a_pos_offset.zw;vec2 a_tex=a_tex_size.xy;vec2 a_size=a_tex_size.zw;float a_size_min=floor(a_size[0]*0.5);vec2 a_pxoffset=a_pixeloffset.xy;highp float segment_angle=-a_projected_pos[3];float size;if (!u_is_size_zoom_constant && !u_is_size_feature_constant) {size=mix(a_size_min,a_size[1],u_size_t)/128.0;} else if (u_is_size_zoom_constant && !u_is_size_feature_constant) {size=a_size_min/128.0;} else {size=u_size;}vec2 tile_anchor=a_pos;float e=elevation(tile_anchor);\n#ifdef Z_OFFSET\ne+=a_z_offset;\n#endif\nvec3 h=elevationVector(tile_anchor)*e;float globe_occlusion_fade;vec3 world_pos;vec3 mercator_pos;vec3 world_pos_globe;\n#ifdef PROJECTION_GLOBE_VIEW\nmercator_pos=mercator_tile_position(u_inv_rot_matrix,tile_anchor,u_tile_id,u_merc_center);world_pos_globe=a_globe_anchor+h;world_pos=mix_globe_mercator(world_pos_globe,mercator_pos,u_zoom_transition);vec4 ecef_point=u_tile_matrix*vec4(world_pos,1.0);vec3 origin_to_point=ecef_point.xyz-u_ecef_origin;globe_occlusion_fade=dot(origin_to_point,u_camera_forward) >=0.0 ? 0.0 : 1.0;\n#else\nworld_pos=vec3(tile_anchor,0)+h;globe_occlusion_fade=1.0;\n#endif\nvec4 projected_point=u_matrix*vec4(world_pos,1);highp float camera_to_anchor_distance=projected_point.w;highp float distance_ratio=u_pitch_with_map ?\ncamera_to_anchor_distance/u_camera_to_center_distance :\nu_camera_to_center_distance/camera_to_anchor_distance;highp float perspective_ratio=clamp(\n0.5+0.5*distance_ratio,0.0,1.5);size*=perspective_ratio;float fontScale=u_is_text ? size/24.0 : size;highp float symbol_rotation=0.0;if (u_rotate_symbol) {vec4 offsetprojected_point;vec2 a;\n#ifdef PROJECTION_GLOBE_VIEW\nvec3 displacement=vec3(a_globe_normal.z,0,-a_globe_normal.x);offsetprojected_point=u_matrix*vec4(a_globe_anchor+displacement,1);vec4 projected_point_globe=u_matrix*vec4(world_pos_globe,1);a=projected_point_globe.xy/projected_point_globe.w;\n#else\noffsetprojected_point=u_matrix*vec4(tile_anchor+vec2(1,0),0,1);a=projected_point.xy/projected_point.w;\n#endif\nvec2 b=offsetprojected_point.xy/offsetprojected_point.w;symbol_rotation=atan((b.y-a.y)/u_aspect_ratio,b.x-a.x);}vec4 projected_pos;\n#ifdef PROJECTION_GLOBE_VIEW\nvec3 proj_pos=mix_globe_mercator(a_projected_pos.xyz+h,mercator_pos,u_zoom_transition);projected_pos=u_label_plane_matrix*vec4(proj_pos,1.0);\n#else\nprojected_pos=u_label_plane_matrix*vec4(a_projected_pos.xy,h.z,1.0);\n#endif\nhighp float angle_sin=sin(segment_angle+symbol_rotation);highp float angle_cos=cos(segment_angle+symbol_rotation);mat2 rotation_matrix=mat2(angle_cos,-1.0*angle_sin,angle_sin,angle_cos);float z=0.0;vec2 offset=rotation_matrix*(a_offset/32.0*fontScale+a_pxoffset);\n#ifdef TERRAIN\n#ifdef PITCH_WITH_MAP_TERRAIN\nvec4 tile_pos=u_label_plane_matrix_inv*vec4(a_projected_pos.xy+offset,0.0,1.0);z=elevation(tile_pos.xy);\n#endif\n#endif\nfloat occlusion_fade=globe_occlusion_fade;float projection_transition_fade=1.0;\n#if defined(PROJECTED_POS_ON_VIEWPORT) && defined(PROJECTION_GLOBE_VIEW)\nprojection_transition_fade=1.0-step(EPSILON,u_zoom_transition);\n#endif\nvec2 fade_opacity=unpack_opacity(a_fade_opacity);float fade_change=fade_opacity[1] > 0.5 ? u_fade_change :-u_fade_change;float interpolated_fade_opacity=max(0.0,min(occlusion_fade,fade_opacity[0]+fade_change));float out_fade_opacity=interpolated_fade_opacity*projection_transition_fade;\n#ifdef DEPTH_OCCLUSION\nfloat depthOcclusion=occlusionFadeMultiSample(projected_point);float depthOcclusionMultplier=mix(occlusion_opacity,1.0,depthOcclusion);out_fade_opacity*=depthOcclusionMultplier;\n#endif\n#ifdef OCCLUSION_QUERIES\nfloat occludedFadeMultiplier=mix(occlusion_opacity,1.0,a_occlusion_query_opacity);out_fade_opacity*=occludedFadeMultiplier;\n#endif\nfloat alpha=opacity*out_fade_opacity;float hidden=float(alpha==0.0 || projected_point.w <=0.0 || occlusion_fade==0.0);\n#ifdef PROJECTION_GLOBE_VIEW\nvec3 xAxis=u_pitch_with_map ? normalize(cross(a_globe_normal,u_up_vector)) : vec3(1,0,0);vec3 yAxis=u_pitch_with_map ? normalize(cross(a_globe_normal,xAxis)) : vec3(0,1,0);gl_Position=mix(u_coord_matrix*vec4(projected_pos.xyz/projected_pos.w+xAxis*offset.x+yAxis*offset.y,1.0),AWAY,hidden);\n#else\ngl_Position=mix(u_coord_matrix*vec4(projected_pos.xy/projected_pos.w+offset,z,1.0),AWAY,hidden);\n#endif\nfloat gamma_scale=gl_Position.w;v_draw_halo=(u_is_halo && float(gl_InstanceID)==0.0) ? 1.0 : 0.0;v_data0=a_tex/u_texsize;v_data1=vec3(gamma_scale,size,out_fade_opacity);}'),symbolTextAndIcon:r('#include "_prelude_lighting.glsl"\n#define SDF_PX 8.0\n#define SDF 1.0\n#define ICON 0.0\nuniform sampler2D u_texture;uniform sampler2D u_texture_icon;uniform highp float u_gamma_scale;uniform lowp float u_device_pixel_ratio;uniform bool u_is_halo;in float v_draw_halo;in vec4 v_data0;in vec4 v_data1;\n#pragma mapbox: define highp vec4 fill_color\n#pragma mapbox: define highp vec4 halo_color\n#pragma mapbox: define lowp float opacity\n#pragma mapbox: define lowp float halo_width\n#pragma mapbox: define lowp float halo_blur\n#pragma mapbox: define lowp float emissive_strength\nvoid main() {\n#pragma mapbox: initialize highp vec4 fill_color\n#pragma mapbox: initialize highp vec4 halo_color\n#pragma mapbox: initialize lowp float opacity\n#pragma mapbox: initialize lowp float halo_width\n#pragma mapbox: initialize lowp float halo_blur\n#pragma mapbox: initialize lowp float emissive_strength\nfloat fade_opacity=v_data1[2];if (v_data1.w==ICON) {vec2 tex_icon=v_data0.zw;lowp float alpha=opacity*fade_opacity;glFragColor=texture(u_texture_icon,tex_icon)*alpha;\n#ifdef OVERDRAW_INSPECTOR\nglFragColor=vec4(1.0);\n#endif\nreturn;}vec2 tex=v_data0.xy;float EDGE_GAMMA=0.105/u_device_pixel_ratio;float gamma_scale=v_data1.x;float size=v_data1.y;float fontScale=size/24.0;lowp vec4 color=fill_color;highp float gamma=EDGE_GAMMA/(fontScale*u_gamma_scale);lowp float buff=(256.0-64.0)/256.0;bool draw_halo=v_draw_halo > 0.0;if (draw_halo) {color=halo_color;gamma=(halo_blur*1.19/SDF_PX+EDGE_GAMMA)/(fontScale*u_gamma_scale);buff=(6.0-halo_width/fontScale)/SDF_PX;}lowp float dist=texture(u_texture,tex).r;highp float gamma_scaled=gamma*gamma_scale;highp float alpha=smoothstep(buff-gamma_scaled,buff+gamma_scaled,dist);vec4 out_color=color*(alpha*opacity*fade_opacity);\n#ifdef LIGHTING_3D_MODE\nout_color=apply_lighting_with_emission_ground(out_color,emissive_strength);\n#endif\nglFragColor=out_color;\n#ifdef OVERDRAW_INSPECTOR\nglFragColor=vec4(1.0);\n#endif\nHANDLE_WIREFRAME_DEBUG;}','#include "_prelude_terrain.vertex.glsl"\nin vec4 a_pos_offset;in vec4 a_tex_size;in vec4 a_projected_pos;in float a_fade_opacity;\n#ifdef OCCLUSION_QUERIES\nin float a_occlusion_query_opacity;\n#endif\n#ifdef Z_OFFSET\nin float a_z_offset;\n#endif\n#ifdef PROJECTION_GLOBE_VIEW\nin vec3 a_globe_anchor;in vec3 a_globe_normal;\n#endif\nuniform bool u_is_size_zoom_constant;uniform bool u_is_size_feature_constant;uniform highp float u_size_t;uniform highp float u_size;uniform mat4 u_matrix;uniform mat4 u_label_plane_matrix;uniform mat4 u_coord_matrix;uniform bool u_is_text;uniform bool u_pitch_with_map;uniform bool u_rotate_symbol;uniform highp float u_aspect_ratio;uniform highp float u_camera_to_center_distance;uniform float u_fade_change;uniform vec2 u_texsize;uniform vec3 u_up_vector;uniform vec2 u_texsize_icon;uniform bool u_is_halo;\n#ifdef PROJECTION_GLOBE_VIEW\nuniform vec3 u_tile_id;uniform mat4 u_inv_rot_matrix;uniform vec2 u_merc_center;uniform vec3 u_camera_forward;uniform float u_zoom_transition;uniform vec3 u_ecef_origin;uniform mat4 u_tile_matrix;\n#endif\nout float v_draw_halo;out vec4 v_data0;out vec4 v_data1;\n#pragma mapbox: define highp vec4 fill_color\n#pragma mapbox: define highp vec4 halo_color\n#pragma mapbox: define lowp float opacity\n#pragma mapbox: define lowp float halo_width\n#pragma mapbox: define lowp float halo_blur\n#pragma mapbox: define lowp float emissive_strength\n#pragma mapbox: define lowp float occlusion_opacity\nvoid main() {\n#pragma mapbox: initialize highp vec4 fill_color\n#pragma mapbox: initialize highp vec4 halo_color\n#pragma mapbox: initialize lowp float opacity\n#pragma mapbox: initialize lowp float halo_width\n#pragma mapbox: initialize lowp float halo_blur\n#pragma mapbox: initialize lowp float emissive_strength\n#pragma mapbox: initialize lowp float occlusion_opacity\nvec2 a_pos=a_pos_offset.xy;vec2 a_offset=a_pos_offset.zw;vec2 a_tex=a_tex_size.xy;vec2 a_size=a_tex_size.zw;float a_size_min=floor(a_size[0]*0.5);float is_sdf=a_size[0]-2.0*a_size_min;highp float segment_angle=-a_projected_pos[3];float size;if (!u_is_size_zoom_constant && !u_is_size_feature_constant) {size=mix(a_size_min,a_size[1],u_size_t)/128.0;} else if (u_is_size_zoom_constant && !u_is_size_feature_constant) {size=a_size_min/128.0;} else {size=u_size;}vec2 tile_anchor=a_pos;float e=elevation(tile_anchor);\n#ifdef Z_OFFSET\ne+=a_z_offset;\n#endif\nvec3 h=elevationVector(tile_anchor)*e;float globe_occlusion_fade;vec3 world_pos;vec3 mercator_pos;\n#ifdef PROJECTION_GLOBE_VIEW\nmercator_pos=mercator_tile_position(u_inv_rot_matrix,tile_anchor,u_tile_id,u_merc_center);world_pos=mix_globe_mercator(a_globe_anchor+h,mercator_pos,u_zoom_transition);vec4 ecef_point=u_tile_matrix*vec4(world_pos,1.0);vec3 origin_to_point=ecef_point.xyz-u_ecef_origin;globe_occlusion_fade=dot(origin_to_point,u_camera_forward) >=0.0 ? 0.0 : 1.0;\n#else\nworld_pos=vec3(tile_anchor,0)+h;globe_occlusion_fade=1.0;\n#endif\nvec4 projected_point=u_matrix*vec4(world_pos,1);highp float camera_to_anchor_distance=projected_point.w;highp float distance_ratio=u_pitch_with_map ?\ncamera_to_anchor_distance/u_camera_to_center_distance :\nu_camera_to_center_distance/camera_to_anchor_distance;highp float perspective_ratio=clamp(\n0.5+0.5*distance_ratio,0.0,1.5);size*=perspective_ratio;float font_scale=size/24.0;highp float symbol_rotation=0.0;if (u_rotate_symbol) {vec4 offset_projected_point=u_matrix*vec4(a_pos+vec2(1,0),0,1);vec2 a=projected_point.xy/projected_point.w;vec2 b=offset_projected_point.xy/offset_projected_point.w;symbol_rotation=atan((b.y-a.y)/u_aspect_ratio,b.x-a.x);}vec4 projected_pos;\n#ifdef PROJECTION_GLOBE_VIEW\nvec3 proj_pos=mix_globe_mercator(a_projected_pos.xyz+h,mercator_pos,u_zoom_transition);projected_pos=u_label_plane_matrix*vec4(proj_pos,1.0);\n#else\nprojected_pos=u_label_plane_matrix*vec4(a_projected_pos.xy,h.z,1.0);\n#endif\nhighp float angle_sin=sin(segment_angle+symbol_rotation);highp float angle_cos=cos(segment_angle+symbol_rotation);mat2 rotation_matrix=mat2(angle_cos,-1.0*angle_sin,angle_sin,angle_cos);float z=0.0;vec2 offset=rotation_matrix*(a_offset/32.0*font_scale);\n#ifdef TERRAIN\n#ifdef PITCH_WITH_MAP_TERRAIN\nvec4 tile_pos=u_label_plane_matrix_inv*vec4(a_projected_pos.xy+offset,0.0,1.0);z=elevation(tile_pos.xy);\n#endif\n#endif\nfloat occlusion_fade=globe_occlusion_fade;vec2 fade_opacity=unpack_opacity(a_fade_opacity);float fade_change=fade_opacity[1] > 0.5 ? u_fade_change :-u_fade_change;float interpolated_fade_opacity=max(0.0,min(occlusion_fade,fade_opacity[0]+fade_change));float projection_transition_fade=1.0;\n#if defined(PROJECTED_POS_ON_VIEWPORT) && defined(PROJECTION_GLOBE_VIEW)\nprojection_transition_fade=1.0-step(EPSILON,u_zoom_transition);\n#endif\nfloat out_fade_opacity=interpolated_fade_opacity*projection_transition_fade;\n#ifdef DEPTH_OCCLUSION\nfloat depthOcclusion=occlusionFadeMultiSample(projected_point);float depthOcclusionMultplier=mix(occlusion_opacity,1.0,depthOcclusion);out_fade_opacity*=depthOcclusionMultplier;\n#endif\n#ifdef OCCLUSION_QUERIES\nfloat occludedFadeMultiplier=mix(occlusion_opacity,1.0,a_occlusion_query_opacity);out_fade_opacity*=occludedFadeMultiplier;\n#endif\nfloat alpha=opacity*out_fade_opacity;float hidden=float(alpha==0.0 || projected_point.w <=0.0 || occlusion_fade==0.0);\n#ifdef PROJECTION_GLOBE_VIEW\nvec3 xAxis=u_pitch_with_map ? normalize(cross(a_globe_normal,u_up_vector)) : vec3(1,0,0);vec3 yAxis=u_pitch_with_map ? normalize(cross(a_globe_normal,xAxis)) : vec3(0,1,0);gl_Position=mix(u_coord_matrix*vec4(projected_pos.xyz/projected_pos.w+ xAxis*offset.x+yAxis*offset.y,1.0),AWAY,hidden);\n#else\ngl_Position=mix(u_coord_matrix*vec4(projected_pos.xy/projected_pos.w+offset,z,1.0),AWAY,hidden);\n#endif\nfloat gamma_scale=gl_Position.w;v_draw_halo=(u_is_halo && float(gl_InstanceID)==0.0) ? 1.0 : 0.0;v_data0.xy=a_tex/u_texsize;v_data0.zw=a_tex/u_texsize_icon;v_data1=vec4(gamma_scale,size,out_fade_opacity,is_sdf);}'),terrainRaster:r('#include "_prelude_fog.fragment.glsl"\n#include "_prelude_shadow.fragment.glsl"\n#include "_prelude_lighting.glsl"\nuniform sampler2D u_image0;in vec2 v_pos0;\n#ifdef FOG\nin float v_fog_opacity;\n#endif\n#ifdef RENDER_SHADOWS\nin vec4 v_pos_light_view_0;in vec4 v_pos_light_view_1;\n#endif\nuniform vec3 u_ground_shadow_factor;void main() {vec4 image_color=texture(u_image0,v_pos0);vec4 color;\n#ifdef LIGHTING_3D_MODE\nconst vec3 normal=vec3(0.0,0.0,1.0);\n#ifdef RENDER_SHADOWS\nfloat cutoffOpacity=1.0;\n#ifdef RENDER_CUTOFF\ncutoffOpacity=cutoff_opacity(u_cutoff_params,1.0/gl_FragCoord.w);\n#endif\n#ifdef LIGHTING_3D_ALPHA_EMISSIVENESS\nvec3 unlit_base=image_color.rgb*(1.0-image_color.a);vec3 emissive_base=image_color.rgb*image_color.a;float ndotl=u_shadow_direction.z;float occlusion=ndotl < 0.0 ? 1.0 : shadow_occlusion(v_pos_light_view_0,v_pos_light_view_1,1.0/gl_FragCoord.w,0.0);ndotl=max(0.0,ndotl);vec3 lit=apply_lighting(unlit_base,normal,mix(1.0,(1.0-(u_shadow_intensity*occlusion))*ndotl,cutoffOpacity));vec3 emissive=compute_emissive_draped(emissive_base,1.0-u_shadow_intensity,occlusion,u_ground_shadow_factor);color.rgb=lit+emissive;color.a=1.0;\n#else\nfloat lighting_factor=shadowed_light_factor_normal_unbiased(normal,v_pos_light_view_0,v_pos_light_view_1,1.0/gl_FragCoord.w);color=apply_lighting(image_color,normal,mix(1.0,lighting_factor,cutoffOpacity));\n#endif\n#else\nfloat lighting_factor=u_lighting_directional_dir.z;color=apply_lighting(image_color,normal,lighting_factor);\n#ifdef LIGHTING_3D_ALPHA_EMISSIVENESS\ncolor.rgb=mix(color.rgb,image_color.rgb,image_color.a);color.a=1.0;\n#endif\n#endif\n#else\ncolor=image_color;\n#endif\n#ifdef FOG\n#ifdef ZERO_EXAGGERATION\ncolor=fog_dither(fog_apply_premultiplied(color,v_fog_pos));\n#else\ncolor=fog_dither(fog_apply_from_vert(color,v_fog_opacity));\n#endif\n#endif\nglFragColor=color;\n#ifdef OVERDRAW_INSPECTOR\nglFragColor=vec4(1.0);\n#endif\nHANDLE_WIREFRAME_DEBUG;}','#include "_prelude_fog.vertex.glsl"\n#include "_prelude_terrain.vertex.glsl"\nuniform mat4 u_matrix;uniform float u_skirt_height;in vec2 a_pos;out vec2 v_pos0;\n#ifdef FOG\nout float v_fog_opacity;\n#endif\n#ifdef RENDER_SHADOWS\nuniform mat4 u_light_matrix_0;uniform mat4 u_light_matrix_1;out vec4 v_pos_light_view_0;out vec4 v_pos_light_view_1;out float v_depth;\n#endif\nvoid main() {vec3 decomposedPosAndSkirt=decomposeToPosAndSkirt(a_pos);float skirt=decomposedPosAndSkirt.z;vec2 decodedPos=decomposedPosAndSkirt.xy;float elevation=elevation(decodedPos)-skirt*u_skirt_height;v_pos0=decodedPos/8192.0;gl_Position=u_matrix*vec4(decodedPos,elevation,1.0);\n#ifdef FOG\n#ifdef ZERO_EXAGGERATION\nv_fog_pos=fog_position(decodedPos);\n#else\nv_fog_opacity=fog(fog_position(vec3(decodedPos,elevation)));\n#endif\n#endif\n#ifdef RENDER_SHADOWS\nvec3 pos=vec3(decodedPos,elevation);v_pos_light_view_0=u_light_matrix_0*vec4(pos,1.);v_pos_light_view_1=u_light_matrix_1*vec4(pos,1.);\n#endif\n}'),terrainDepth:r("precision highp float;in float v_depth;void main() {glFragColor=pack_depth(v_depth);}",'#include "_prelude_terrain.vertex.glsl"\nuniform mat4 u_matrix;in vec2 a_pos;out float v_depth;void main() {float elevation=elevation(a_pos);gl_Position=u_matrix*vec4(a_pos,elevation,1.0);v_depth=gl_Position.z/gl_Position.w;}'),skybox:r('#include "_prelude_fog.fragment.glsl"\nin lowp vec3 v_uv;uniform lowp samplerCube u_cubemap;uniform lowp float u_opacity;uniform highp float u_temporal_offset;uniform highp vec3 u_sun_direction;float sun_disk(highp vec3 ray_direction,highp vec3 sun_direction) {highp float cos_angle=dot(normalize(ray_direction),sun_direction);const highp float cos_sun_angular_diameter=0.99996192306;const highp float smoothstep_delta=1e-5;return smoothstep(\ncos_sun_angular_diameter-smoothstep_delta,cos_sun_angular_diameter+smoothstep_delta,cos_angle);}float map(float value,float start,float end,float new_start,float new_end) {return ((value-start)*(new_end-new_start))/(end-start)+new_start;}void main() {vec3 uv=v_uv;const float y_bias=0.015;uv.y+=y_bias;uv.y=pow(abs(uv.y),1.0/5.0);uv.y=map(uv.y,0.0,1.0,-1.0,1.0);vec3 sky_color=texture(u_cubemap,uv).rgb;\n#ifdef FOG\nsky_color=fog_apply_sky_gradient(v_uv.xzy,sky_color);\n#endif\nsky_color.rgb=dither(sky_color.rgb,gl_FragCoord.xy+u_temporal_offset);sky_color+=0.1*sun_disk(v_uv,u_sun_direction);glFragColor=vec4(sky_color*u_opacity,u_opacity);\n#ifdef OVERDRAW_INSPECTOR\nglFragColor=vec4(1.0);\n#endif\n}',At),skyboxGradient:r('#include "_prelude_fog.fragment.glsl"\nin highp vec3 v_uv;uniform lowp sampler2D u_color_ramp;uniform highp vec3 u_center_direction;uniform lowp float u_radius;uniform lowp float u_opacity;uniform highp float u_temporal_offset;void main() {float progress=acos(dot(normalize(v_uv),u_center_direction))/u_radius;vec4 color=texture(u_color_ramp,vec2(progress,0.5));\n#ifdef FOG\ncolor.rgb=fog_apply_sky_gradient(v_uv.xzy,color.rgb/color.a)*color.a;\n#endif\ncolor*=u_opacity;color.rgb=dither(color.rgb,gl_FragCoord.xy+u_temporal_offset);glFragColor=color;\n#ifdef OVERDRAW_INSPECTOR\nglFragColor=vec4(1.0);\n#endif\n}',At),skyboxCapture:r("\nin highp vec3 v_position;uniform highp float u_sun_intensity;uniform highp float u_luminance;uniform lowp vec3 u_sun_direction;uniform highp vec4 u_color_tint_r;uniform highp vec4 u_color_tint_m;precision highp float;\n#define BETA_R vec3(5.5e-6,13.0e-6,22.4e-6)\n#define BETA_M vec3(21e-6,21e-6,21e-6)\n#define MIE_G 0.76\n#define DENSITY_HEIGHT_SCALE_R 8000.0\n#define DENSITY_HEIGHT_SCALE_M 1200.0\n#define PLANET_RADIUS 6360e3\n#define ATMOSPHERE_RADIUS 6420e3\n#define SAMPLE_STEPS 10\n#define DENSITY_STEPS 4\nfloat ray_sphere_exit(vec3 orig,vec3 dir,float radius) {float a=dot(dir,dir);float b=2.0*dot(dir,orig);float c=dot(orig,orig)-radius*radius;float d=sqrt(b*b-4.0*a*c);return (-b+d)/(2.0*a);}vec3 extinction(vec2 density) {return exp(-vec3(BETA_R*u_color_tint_r.a*density.x+BETA_M*u_color_tint_m.a*density.y));}vec2 local_density(vec3 point) {float height=max(length(point)-PLANET_RADIUS,0.0);float exp_r=exp(-height/DENSITY_HEIGHT_SCALE_R);float exp_m=exp(-height/DENSITY_HEIGHT_SCALE_M);return vec2(exp_r,exp_m);}float phase_ray(float cos_angle) {return (3.0/(16.0*PI))*(1.0+cos_angle*cos_angle);}float phase_mie(float cos_angle) {return (3.0/(8.0*PI))*((1.0-MIE_G*MIE_G)*(1.0+cos_angle*cos_angle))/((2.0+MIE_G*MIE_G)*pow(1.0+MIE_G*MIE_G-2.0*MIE_G*cos_angle,1.5));}vec2 density_to_atmosphere(vec3 point,vec3 light_dir) {float ray_len=ray_sphere_exit(point,light_dir,ATMOSPHERE_RADIUS);float step_len=ray_len/float(DENSITY_STEPS);vec2 density_point_to_atmosphere=vec2(0.0);for (int i=0; i < DENSITY_STEPS;++i) {vec3 point_on_ray=point+light_dir*((float(i)+0.5)*step_len);density_point_to_atmosphere+=local_density(point_on_ray)*step_len;;}return density_point_to_atmosphere;}vec3 atmosphere(vec3 ray_dir,vec3 sun_direction,float sun_intensity) {vec2 density_orig_to_point=vec2(0.0);vec3 scatter_r=vec3(0.0);vec3 scatter_m=vec3(0.0);vec3 origin=vec3(0.0,PLANET_RADIUS,0.0);float ray_len=ray_sphere_exit(origin,ray_dir,ATMOSPHERE_RADIUS);float step_len=ray_len/float(SAMPLE_STEPS);for (int i=0; i < SAMPLE_STEPS;++i) {vec3 point_on_ray=origin+ray_dir*((float(i)+0.5)*step_len);vec2 density=local_density(point_on_ray)*step_len;density_orig_to_point+=density;vec2 density_point_to_atmosphere=density_to_atmosphere(point_on_ray,sun_direction);vec2 density_orig_to_atmosphere=density_orig_to_point+density_point_to_atmosphere;vec3 extinction=extinction(density_orig_to_atmosphere);scatter_r+=density.x*extinction;scatter_m+=density.y*extinction;}float cos_angle=dot(ray_dir,sun_direction);float phase_r=phase_ray(cos_angle);float phase_m=phase_mie(cos_angle);vec3 beta_r=BETA_R*u_color_tint_r.rgb*u_color_tint_r.a;vec3 beta_m=BETA_M*u_color_tint_m.rgb*u_color_tint_m.a;return (scatter_r*phase_r*beta_r+scatter_m*phase_m*beta_m)*sun_intensity;}const float A=0.15;const float B=0.50;const float C=0.10;const float D=0.20;const float E=0.02;const float F=0.30;vec3 uncharted2_tonemap(vec3 x) {return ((x*(A*x+C*B)+D*E)/(x*(A*x+B)+D*F))-E/F;}void main() {vec3 ray_direction=v_position;ray_direction.y=pow(ray_direction.y,5.0);const float y_bias=0.015;ray_direction.y+=y_bias;vec3 color=atmosphere(normalize(ray_direction),u_sun_direction,u_sun_intensity);float white_scale=1.0748724675633854;color=uncharted2_tonemap((log2(2.0/pow(u_luminance,4.0)))*color)*white_scale;glFragColor=vec4(color,1.0);}","in highp vec3 a_pos_3f;uniform mat3 u_matrix_3f;out highp vec3 v_position;float map(float value,float start,float end,float new_start,float new_end) {return ((value-start)*(new_end-new_start))/(end-start)+new_start;}void main() {vec4 pos=vec4(u_matrix_3f*a_pos_3f,1.0);v_position=pos.xyz;v_position.y*=-1.0;v_position.y=map(v_position.y,-1.0,1.0,0.0,1.0);gl_Position=vec4(a_pos_3f.xy,0.0,1.0);}"),globeRaster:r('#include "_prelude_fog.fragment.glsl"\n#include "_prelude_lighting.glsl"\nuniform sampler2D u_image0;uniform float u_far_z_cutoff;in vec2 v_pos0;\n#ifndef FOG\nuniform highp vec3 u_frustum_tl;uniform highp vec3 u_frustum_tr;uniform highp vec3 u_frustum_br;uniform highp vec3 u_frustum_bl;uniform highp vec3 u_globe_pos;uniform highp float u_globe_radius;uniform vec2 u_viewport;\n#endif\nvoid main() {vec4 color;\n#ifdef CUSTOM_ANTIALIASING\nvec2 uv=gl_FragCoord.xy/u_viewport;highp vec3 ray_dir=mix(\nmix(u_frustum_tl,u_frustum_tr,uv.x),mix(u_frustum_bl,u_frustum_br,uv.x),1.0-uv.y);vec3 dir=normalize(ray_dir);vec3 closest_point=dot(u_globe_pos,dir)*dir;float norm_dist_from_center=1.0-length(closest_point-u_globe_pos)/u_globe_radius;const float antialias_pixel=2.0;float antialias_factor=antialias_pixel*fwidth(norm_dist_from_center);float antialias=smoothstep(0.0,antialias_factor,norm_dist_from_center);vec4 raster=texture(u_image0,v_pos0);\n#ifdef LIGHTING_3D_MODE\n#ifdef LIGHTING_3D_ALPHA_EMISSIVENESS\nraster=apply_lighting_with_emission_ground(raster,raster.a);color=vec4(raster.rgb*antialias,antialias);\n#else\nraster=apply_lighting_ground(raster);color=vec4(raster.rgb*antialias,raster.a*antialias);\n#endif\n#else\ncolor=vec4(raster.rgb*antialias,raster.a*antialias);\n#endif\n#else\ncolor=texture(u_image0,v_pos0);\n#ifdef LIGHTING_3D_MODE\n#ifdef LIGHTING_3D_ALPHA_EMISSIVENESS\ncolor=apply_lighting_with_emission_ground(color,color.a);color.a=1.0;\n#else\ncolor=apply_lighting_ground(color);\n#endif\n#endif\n#endif\n#ifdef FOG\ncolor=fog_dither(fog_apply_premultiplied(color,v_fog_pos));\n#endif\ncolor*=1.0-step(u_far_z_cutoff,1.0/gl_FragCoord.w);glFragColor=color;\n#ifdef OVERDRAW_INSPECTOR\nglFragColor=vec4(1.0);\n#endif\nHANDLE_WIREFRAME_DEBUG;}','#include "_prelude_fog.vertex.glsl"\n#include "_prelude_terrain.vertex.glsl"\nuniform mat4 u_proj_matrix;uniform mat4 u_normalize_matrix;uniform mat4 u_globe_matrix;uniform mat4 u_merc_matrix;uniform float u_zoom_transition;uniform vec2 u_merc_center;uniform mat3 u_grid_matrix;uniform float u_skirt_height;\n#ifdef GLOBE_POLES\nin vec3 a_globe_pos;in vec2 a_uv;\n#else\nin vec2 a_pos;\n#endif\nout vec2 v_pos0;void main() {\n#ifdef GLOBE_POLES\nvec3 globe_pos=a_globe_pos;vec2 uv=a_uv;\n#else\nfloat tiles=u_grid_matrix[0][2];float idx=u_grid_matrix[1][2];float idy=u_grid_matrix[2][2];vec3 decomposed_pos_and_skirt=decomposeToPosAndSkirt(a_pos);vec3 latLng=u_grid_matrix*vec3(decomposed_pos_and_skirt.xy,1.0);float mercatorY=mercatorYfromLat(latLng[0]);float uvY=mercatorY*tiles-idy;float mercatorX=mercatorXfromLng(latLng[1]);float uvX=mercatorX*tiles-idx;vec3 globe_pos=latLngToECEF(latLng.xy);vec2 merc_pos=vec2(mercatorX,mercatorY);vec2 uv=vec2(uvX,uvY);\n#endif\nv_pos0=uv;vec2 tile_pos=uv*EXTENT;vec3 globe_derived_up_vector=normalize(globe_pos)*u_tile_up_scale;\n#ifdef GLOBE_POLES\nvec3 up_vector=globe_derived_up_vector;\n#else\nvec3 up_vector=elevationVector(tile_pos);\n#endif\nfloat height=elevation(tile_pos);globe_pos+=up_vector*height;\n#ifndef GLOBE_POLES\nglobe_pos-=globe_derived_up_vector*u_skirt_height*decomposed_pos_and_skirt.z;\n#endif\n#ifdef GLOBE_POLES\nvec4 interpolated_pos=u_globe_matrix*vec4(globe_pos,1.0);\n#else\nvec4 globe_world_pos=u_globe_matrix*vec4(globe_pos,1.0);vec4 merc_world_pos=vec4(0.0);if (u_zoom_transition > 0.0) {merc_world_pos=vec4(merc_pos,height-u_skirt_height*decomposed_pos_and_skirt.z,1.0);merc_world_pos.xy-=u_merc_center;merc_world_pos.x=wrap(merc_world_pos.x,-0.5,0.5);merc_world_pos=u_merc_matrix*merc_world_pos;}vec4 interpolated_pos=vec4(mix(globe_world_pos.xyz,merc_world_pos.xyz,u_zoom_transition),1.0);\n#endif\ngl_Position=u_proj_matrix*interpolated_pos;\n#ifdef FOG\nv_fog_pos=fog_position((u_normalize_matrix*vec4(globe_pos,1.0)).xyz);\n#endif\n}'),globeAtmosphere:r('#include "_prelude_fog.fragment.glsl"\nuniform float u_transition;uniform highp float u_fadeout_range;uniform highp float u_temporal_offset;uniform vec4 u_color;uniform vec4 u_high_color;uniform vec4 u_space_color;uniform float u_horizon_angle;in highp vec3 v_ray_dir;in highp vec3 v_horizon_dir;void main() {highp vec3 dir=normalize(v_ray_dir);float globe_pos_dot_dir;\n#ifdef PROJECTION_GLOBE_VIEW\nglobe_pos_dot_dir=dot(u_globe_pos,dir);highp vec3 closest_point_forward=abs(globe_pos_dot_dir)*dir;float norm_dist_from_center=length(closest_point_forward-u_globe_pos)/u_globe_radius;if (norm_dist_from_center < 0.98) {\n#ifdef ALPHA_PASS\nglFragColor=vec4(0,0,0,0);return;\n#else\n#ifdef NATIVE\nglFragColor=vec4(1,1,1,1);\n#else\nglFragColor=vec4(0,0,0,1);\n#endif\nreturn;\n#endif\n}\n#endif\nhighp vec3 horizon_dir=normalize(v_horizon_dir);float horizon_angle_mercator=dir.y < horizon_dir.y ?\n0.0 : max(acos(clamp(dot(dir,horizon_dir),-1.0,1.0)),0.0);float horizon_angle;\n#ifdef PROJECTION_GLOBE_VIEW\nhighp vec3 closest_point=globe_pos_dot_dir*dir;highp float closest_point_to_center=length(closest_point-u_globe_pos);highp float theta=asin(clamp(closest_point_to_center/length(u_globe_pos),-1.0,1.0));horizon_angle=globe_pos_dot_dir < 0.0 ?\nPI-theta-u_horizon_angle : theta-u_horizon_angle;float angle_t=pow(u_transition,10.0);horizon_angle=mix(horizon_angle,horizon_angle_mercator,angle_t);\n#else\nhorizon_angle=horizon_angle_mercator;\n#endif\nhorizon_angle/=PI;float t=exp(-horizon_angle/u_fadeout_range);float alpha_0=u_color.a;float alpha_1=u_high_color.a;float alpha_2=u_space_color.a;vec3 color_stop_0=u_color.rgb;vec3 color_stop_1=u_high_color.rgb;vec3 color_stop_2=u_space_color.rgb;\n#ifdef ALPHA_PASS\nfloat a0=mix(alpha_2,1.0,alpha_1);float a1=mix(a0,1.0,alpha_0);float a2=mix(a0,a1,t);float a =mix(alpha_2,a2,t);glFragColor=vec4(1.0,1.0,1.0,a);\n#else\nvec3 c0=mix(color_stop_2,color_stop_1,alpha_1);vec3 c1=mix(c0,color_stop_0,alpha_0);vec3 c2=mix(c0,c1,t);vec3 c=c2;\n#ifndef NATIVE\nc=dither(c,gl_FragCoord.xy+u_temporal_offset);\n#endif\nglFragColor=vec4(c*t,t);\n#endif\n}',"in vec3 a_pos;in vec2 a_uv;uniform vec3 u_frustum_tl;uniform vec3 u_frustum_tr;uniform vec3 u_frustum_br;uniform vec3 u_frustum_bl;uniform float u_horizon;out highp vec3 v_ray_dir;out highp vec3 v_horizon_dir;void main() {v_ray_dir=mix(\nmix(u_frustum_tl,u_frustum_tr,a_uv.x),mix(u_frustum_bl,u_frustum_br,a_uv.x),a_uv.y);v_horizon_dir=mix(\nmix(u_frustum_tl,u_frustum_bl,u_horizon),mix(u_frustum_tr,u_frustum_br,u_horizon),a_uv.x);gl_Position=vec4(a_pos,1.0);}"),model:r('#include "_prelude_fog.fragment.glsl"\n#include "_prelude_shadow.fragment.glsl"\n#include "_prelude_lighting.glsl"\nuniform float u_opacity;uniform vec3 u_lightcolor;uniform vec3 u_lightpos;uniform float u_lightintensity;uniform vec4 u_baseColorFactor;uniform vec4 u_emissiveFactor;uniform float u_metallicFactor;uniform float u_roughnessFactor;uniform float u_emissive_strength;in highp vec4 v_position_height;in lowp vec4 v_color_mix;\n#ifdef RENDER_SHADOWS\nin highp vec4 v_pos_light_view_0;in highp vec4 v_pos_light_view_1;in float v_depth_shadows;\n#endif\n#ifdef OCCLUSION_TEXTURE_TRANSFORM\nuniform vec4 u_occlusionTextureTransform;\n#endif\n#pragma mapbox: define-attribute highp vec3 normal_3f\n#pragma mapbox: define-attribute highp vec3 color_3f\n#pragma mapbox: define-attribute highp vec4 color_4f\n#pragma mapbox: define-attribute highp vec2 uv_2f\n#pragma mapbox: initialize-attribute highp vec3 normal_3f\n#pragma mapbox: initialize-attribute highp vec3 color_3f\n#pragma mapbox: initialize-attribute highp vec4 color_4f\n#pragma mapbox: initialize-attribute highp vec2 uv_2f\n#ifdef HAS_ATTRIBUTE_a_pbr\nin lowp vec4 v_roughness_metallic_emissive_alpha;in mediump vec4 v_height_based_emission_params;\n#endif\n#ifdef HAS_TEXTURE_u_baseColorTexture\nuniform sampler2D u_baseColorTexture;uniform bool u_baseTextureIsAlpha;uniform bool u_alphaMask;uniform float u_alphaCutoff;\n#endif\n#ifdef HAS_TEXTURE_u_metallicRoughnessTexture\nuniform sampler2D u_metallicRoughnessTexture;\n#endif\n#ifdef HAS_TEXTURE_u_occlusionTexture\nuniform sampler2D u_occlusionTexture;uniform float u_aoIntensity;\n#endif\n#ifdef HAS_TEXTURE_u_normalTexture\nuniform sampler2D u_normalTexture;\n#endif\n#ifdef HAS_TEXTURE_u_emissionTexture\nuniform sampler2D u_emissionTexture;\n#endif\n#ifdef APPLY_LUT_ON_GPU\nuniform highp sampler3D u_lutTexture;\n#endif\n#ifdef TERRAIN_FRAGMENT_OCCLUSION\nin highp float v_depth;uniform highp sampler2D u_depthTexture;uniform vec2 u_inv_depth_size;uniform vec2 u_depth_range_unpack;\n#ifdef DEPTH_D24\nfloat unpack_depth(float depth) {return depth*u_depth_range_unpack.x+u_depth_range_unpack.y;}\n#else\nhighp float unpack_depth_rgba(highp vec4 rgba_depth)\n{const highp vec4 bit_shift=vec4(1.0/(255.0*255.0*255.0),1.0/(255.0*255.0),1.0/255.0,1.0);return dot(rgba_depth,bit_shift)*2.0-1.0;}\n#endif\nbool isOccluded() {vec2 coord=gl_FragCoord.xy*u_inv_depth_size;\n#ifdef DEPTH_D24\nhighp float depth=unpack_depth(texture(u_depthTexture,coord).r);\n#else\nhighp float depth=unpack_depth_rgba(texture(u_depthTexture,coord));\n#endif\nreturn v_depth > depth+0.0005;}\n#endif\n#define saturate(_x) clamp(_x,0.,1.)\nvec3 linearTosRGB(vec3 color) {return pow(color,vec3(1./2.2));}vec3 sRGBToLinear(vec3 srgbIn) {return pow(srgbIn,vec3(2.2));}float calculate_NdotL(vec3 normal,vec3 lightDir) {const float ext=0.70710678118;return (clamp(dot(normal,lightDir),-ext,1.0)+ext)/(1.0+ext);}vec3 getDiffuseShadedColor(vec3 albedo,vec3 normal,vec3 lightDir,vec3 lightColor)\n{\n#ifdef LIGHTING_3D_MODE\nvec3 transformed_normal=vec3(-normal.xy,normal.z);float lighting_factor;\n#ifdef RENDER_SHADOWS\nlighting_factor=shadowed_light_factor_normal(transformed_normal,v_pos_light_view_0,v_pos_light_view_1,v_depth_shadows);\n#else\nlighting_factor=saturate(dot(transformed_normal,u_lighting_directional_dir));\n#endif\nreturn apply_lighting(albedo,transformed_normal,lighting_factor);\n#else\nvec3 n=normal;float colorvalue=((albedo.x*0.2126)+(albedo.y*0.7152))+(albedo.z*0.0722);vec3 c=vec3(0.03,0.03,0.03);float directional=clamp(dot(n,vec3(lightDir)),0.0,1.0);directional=mix(1.0-u_lightintensity,max((1.0-colorvalue)+u_lightintensity,1.0),directional);vec3 c3=c+clamp((albedo*directional)*lightColor,mix(vec3(0.0),vec3(0.3),vec3(1.0)-lightColor),vec3(1.0));return c3;\n#endif\n}vec4 getBaseColor() {vec4 albedo=u_baseColorFactor;\n#ifdef HAS_ATTRIBUTE_a_color_3f\nalbedo*=vec4(color_3f,1.0);\n#endif\n#ifdef HAS_ATTRIBUTE_a_pbr\n#else\n#ifdef HAS_ATTRIBUTE_a_color_4f\nalbedo*=color_4f;\n#endif\n#endif\n#if defined (HAS_TEXTURE_u_baseColorTexture) && defined (HAS_ATTRIBUTE_a_uv_2f)\nvec4 texColor=texture(u_baseColorTexture,uv_2f);if(u_alphaMask) {if (texColor.w < u_alphaCutoff) {discard;}}\n#ifdef UNPREMULT_TEXTURE_IN_SHADER\nif(texColor.w > 0.0) {texColor.rgb/=texColor.w;}texColor.w=1.0;\n#endif\nif(u_baseTextureIsAlpha) {if (texColor.r < 0.5) {discard;}} else {texColor.rgb=sRGBToLinear(texColor.rgb);albedo*=texColor;}\n#endif\nvec4 color=vec4(mix(albedo.rgb,v_color_mix.rgb,v_color_mix.a),albedo.a);\n#ifdef APPLY_LUT_ON_GPU\ncolor=applyLUT(u_lutTexture,color);\n#endif\nreturn color;}highp mat3 cotangentFrame(highp vec3 N,highp vec3 p,highp vec2 uv ) {\n#ifdef HAS_TEXTURE_u_normalTexture\nhighp vec3 dp1=vec3(dFdx(p.x),dFdx(p.y),dFdx(p.z));highp vec3 dp2=vec3(dFdy(p.x),dFdy(p.y),dFdy(p.z));highp vec2 duv1=vec2(dFdx(uv.x),dFdx(uv.y));highp vec2 duv2=vec2(dFdy(uv.x),dFdy(uv.y));highp vec3 dp2perp=cross( dp2,N );highp vec3 dp1perp=cross( N,dp1 );highp vec3 T=dp2perp*duv1.x+dp1perp*duv2.x;highp vec3 B=dp2perp*duv1.y+dp1perp*duv2.y;highp float lengthT=dot(T,T);highp float lengthB=dot(B,B);highp float maxLength=max(lengthT,lengthB);highp float invmax=inversesqrt( maxLength );highp mat3 res=mat3( T*invmax,B*invmax,N );return res;\n#else\nreturn mat3(1.0);\n#endif\n}highp vec3 getNormal(){highp vec3 n;\n#ifdef HAS_ATTRIBUTE_a_normal_3f\nn=normalize(normal_3f);\n#else\nhighp vec3 fdx=vec3(dFdx(v_position_height.x),dFdx(v_position_height.y),dFdx(v_position_height.z));highp vec3 fdy=vec3(dFdy(v_position_height.x),dFdy(v_position_height.y),dFdy(v_position_height.z));n=normalize(cross(fdx,fdy))*-1.0;\n#endif\n#if defined(HAS_TEXTURE_u_normalTexture) && defined(HAS_ATTRIBUTE_a_uv_2f)\nvec3 nMap=texture( u_normalTexture,uv_2f).xyz;nMap=normalize(2.0*nMap-vec3(1.0));highp vec3 v=normalize(-v_position_height.xyz);highp mat3 TBN=cotangentFrame(n,v,uv_2f);n=normalize(TBN*nMap);\n#endif\nreturn n;}struct Material {float perceptualRoughness;float alphaRoughness;float metallic;vec3 f90;vec4 baseColor;vec3 diffuseColor;vec3 specularColor;highp vec3 normal;};Material getPBRMaterial() {Material mat;mat.baseColor=getBaseColor();mat.perceptualRoughness=u_roughnessFactor;mat.metallic=u_metallicFactor;\n#ifdef HAS_ATTRIBUTE_a_pbr\nmat.perceptualRoughness=v_roughness_metallic_emissive_alpha.x;mat.metallic=v_roughness_metallic_emissive_alpha.y;mat.baseColor.w*=v_roughness_metallic_emissive_alpha.w;\n#endif\n#if defined(HAS_TEXTURE_u_metallicRoughnessTexture) && defined(HAS_ATTRIBUTE_a_uv_2f) \nvec4 mrSample=texture(u_metallicRoughnessTexture,uv_2f);mat.perceptualRoughness*=mrSample.g;mat.metallic*=mrSample.b;\n#endif\nconst float c_minRoughness=0.04;mat.perceptualRoughness=clamp(mat.perceptualRoughness,c_minRoughness,1.0);mat.metallic=saturate(mat.metallic);mat.alphaRoughness=mat.perceptualRoughness*mat.perceptualRoughness;const vec3 f0=vec3(0.04);mat.diffuseColor=mat.baseColor.rgb*(vec3(1.0)-f0);mat.diffuseColor*=1.0-mat.metallic;mat.specularColor=mix(f0,mat.baseColor.rgb,mat.metallic);highp float reflectance=max(max(mat.specularColor.r,mat.specularColor.g),mat.specularColor.b);highp float reflectance90=saturate(reflectance*25.0);mat.f90=vec3(reflectance90);mat.normal=getNormal();return mat;}float V_GGX(float NdotL,float NdotV,float roughness)\n{float a2=roughness*roughness;float GGXV=NdotL*sqrt(NdotV*NdotV*(1.0-a2)+a2);float GGXL=NdotV*sqrt(NdotL*NdotL*(1.0-a2)+a2);return 0.5/(GGXV+GGXL);}float V_GGXFast(float NdotL,float NdotV,float roughness) {float a=roughness;float GGXV=NdotL*(NdotV*(1.0-a)+a);float GGXL=NdotV*(NdotL*(1.0-a)+a);return 0.5/(GGXV+GGXL);}vec3 F_Schlick(vec3 specularColor,vec3 f90,float VdotH)\n{return specularColor+(f90-specularColor)*pow(clamp(1.0-VdotH,0.0,1.0),5.0);}vec3 F_SchlickFast(vec3 specularColor,float VdotH)\n{float x=1.0-VdotH;float x4=x*x*x*x;return specularColor+(1.0-specularColor)*x4*x;}float D_GGX(highp float NdotH,float alphaRoughness)\n{highp float a4=alphaRoughness*alphaRoughness;highp float f=(NdotH*a4-NdotH)*NdotH+1.0;return a4/(PI*f*f);}vec3 diffuseBurley(Material mat,float LdotH,float NdotL,float NdotV)\n{float f90=2.0*LdotH*LdotH*mat.alphaRoughness-0.5;return (mat.diffuseColor/PI)*(1.0+f90*pow((1.0-NdotL),5.0))*(1.0+f90*pow((1.0-NdotV),5.0));}vec3 diffuseLambertian(Material mat)\n{\n#ifdef LIGHTING_3D_MODE\nreturn mat.diffuseColor;\n#else\nreturn mat.diffuseColor/PI;\n#endif\n}vec3 EnvBRDFApprox(vec3 specularColor,float roughness,highp float NdotV)\n{vec4 c0=vec4(-1,-0.0275,-0.572,0.022);vec4 c1=vec4(1,0.0425,1.04,-0.04);highp vec4 r=roughness*c0+c1;highp float a004=min(r.x*r.x,exp2(-9.28*NdotV))*r.x+r.y;vec2 AB=vec2(-1.04,1.04)*a004+r.zw;return specularColor*AB.x+AB.y;}vec3 computeIndirectLightContribution(Material mat,float NdotV,vec3 normal)\n{vec3 env_light=vec3(0.65,0.65,0.65);\n#ifdef LIGHTING_3D_MODE\nfloat ambient_factor=calculate_ambient_directional_factor(normal);env_light=u_lighting_ambient_color*ambient_factor;\n#endif\nvec3 envBRDF=EnvBRDFApprox(mat.specularColor,mat.perceptualRoughness,NdotV);vec3 indirectSpecular= envBRDF*env_light;vec3 indirectDiffuse=mat.diffuseColor*env_light;return indirectSpecular+indirectDiffuse;}vec3 computeLightContribution(Material mat,vec3 lightPosition,vec3 lightColor)\n{highp vec3 n=mat.normal;highp vec3 v=normalize(-v_position_height.xyz);highp vec3 l=normalize(lightPosition);highp vec3 h=normalize(v+l);float NdotV=clamp(abs(dot(n,v)),0.001,1.0);float NdotL=saturate(dot(n,l));highp float NdotH=saturate(dot(n,h));float VdotH=saturate(dot(v,h));vec3 f=F_SchlickFast(mat.specularColor,VdotH);float g=V_GGXFast(NdotL,NdotV,mat.alphaRoughness);float d=D_GGX(NdotH,mat.alphaRoughness);vec3 diffuseTerm=(1.0-f)*diffuseLambertian(mat);vec3 specularTerm=f*g*d;vec3 transformed_normal=vec3(-n.xy,n.z);float lighting_factor;\n#ifdef RENDER_SHADOWS\nlighting_factor=shadowed_light_factor_normal(transformed_normal,v_pos_light_view_0,v_pos_light_view_1,v_depth_shadows);\n#else\nlighting_factor=NdotL;\n#endif\nvec3 directLightColor=(specularTerm+diffuseTerm)*lighting_factor*lightColor;vec3 indirectLightColor=computeIndirectLightContribution(mat,NdotV,transformed_normal);vec3 color=(saturate(directLightColor)+indirectLightColor);float intensityFactor=1.0;\n#if !defined(LIGHTING_3D_MODE)\nconst vec3 luminosityFactor=vec3(0.2126,0.7152,0.0722);float luminance=dot(diffuseTerm,luminosityFactor);intensityFactor=mix((1.0-u_lightintensity),max((1.0-luminance+u_lightintensity),1.0),NdotL);\n#endif\ncolor*=intensityFactor;return color;}void main() {\n#ifdef TERRAIN_FRAGMENT_OCCLUSION\nif (isOccluded()) {discard;}\n#endif\nvec3 lightDir=u_lightpos;vec3 lightColor=u_lightcolor;\n#ifdef LIGHTING_3D_MODE\nlightDir=u_lighting_directional_dir;lightDir.xy=-lightDir.xy;lightColor=u_lighting_directional_color;\n#endif\nvec4 finalColor;\n#ifdef DIFFUSE_SHADED\nvec3 N=getNormal();vec3 baseColor=getBaseColor().rgb;vec3 diffuse=getDiffuseShadedColor(baseColor,N,lightDir,lightColor);\n#ifdef HAS_TEXTURE_u_occlusionTexture\nfloat ao=(texture(u_occlusionTexture,uv_2f).r-1.0)*u_aoIntensity+1.0;diffuse*=ao;\n#endif\nfinalColor=vec4(mix(diffuse,baseColor,u_emissive_strength),1.0)*u_opacity;\n#else\nMaterial mat=getPBRMaterial();vec3 color=computeLightContribution(mat,lightDir,lightColor);float ao=1.0;\n#if defined (HAS_TEXTURE_u_occlusionTexture) && defined(HAS_ATTRIBUTE_a_uv_2f)\n#ifdef OCCLUSION_TEXTURE_TRANSFORM\nvec2 uv=uv_2f.xy*u_occlusionTextureTransform.zw+u_occlusionTextureTransform.xy;\n#else\nvec2 uv=uv_2f;\n#endif\nao=(texture(u_occlusionTexture,uv).x-1.0)*u_aoIntensity+1.0;color*=ao;\n#endif\nvec4 emissive=u_emissiveFactor;\n#if defined(HAS_TEXTURE_u_emissionTexture) && defined(HAS_ATTRIBUTE_a_uv_2f)\nemissive.rgb*=sRGBToLinear(texture(u_emissionTexture,uv_2f).rgb);\n#endif\n#ifdef APPLY_LUT_ON_GPU\nfloat emissiveFactorLength=max(length(u_emissiveFactor.rgb),0.001);emissive.rgb=sRGBToLinear(applyLUT(u_lutTexture,linearTosRGB(emissive.rgb/emissiveFactorLength).rbg))*emissiveFactorLength;\n#endif\ncolor+=emissive.rgb;float opacity=mat.baseColor.w*u_opacity;\n#ifdef HAS_ATTRIBUTE_a_pbr\nfloat resEmission=v_roughness_metallic_emissive_alpha.z;resEmission*=v_height_based_emission_params.z+v_height_based_emission_params.w*pow(clamp(v_height_based_emission_params.x,0.0,1.0),v_height_based_emission_params.y);vec3 color_mix=v_color_mix.rgb;\n#ifdef APPLY_LUT_ON_GPU\ncolor_mix=applyLUT(u_lutTexture,color_mix);\n#endif\ncolor=mix(color,color_mix,min(1.0,resEmission));\n#ifdef HAS_ATTRIBUTE_a_color_4f\nfloat distance=length(vec2(1.3*max(0.0,abs(color_4f.x)-color_4f.z),color_4f.y));distance+= mix(0.5,0.0,clamp(resEmission-1.0,0.0,1.0));opacity*=v_roughness_metallic_emissive_alpha.w*saturate(1.0-distance*distance);\n#endif\n#endif\nvec3 unlitColor=mat.baseColor.rgb*ao+emissive.rgb;color=mix(color,unlitColor,u_emissive_strength);color=linearTosRGB(color);color*=opacity;finalColor=vec4(color,opacity);\n#endif\n#ifdef FOG\nfinalColor=fog_dither(fog_apply_premultiplied(finalColor,v_fog_pos,v_position_height.w));\n#endif\n#ifdef RENDER_CUTOFF\nfinalColor*=v_cutoff_opacity;\n#endif\n#ifdef INDICATOR_CUTOUT\nfinalColor=applyCutout(finalColor);\n#endif\nglFragColor=finalColor;\n#ifdef OVERDRAW_INSPECTOR\nglFragColor=vec4(1.0);\n#endif\nHANDLE_WIREFRAME_DEBUG;}','#include "_prelude_fog.vertex.glsl"\n#include "_prelude_shadow.vertex.glsl"\nin vec3 a_pos_3f;\n#pragma mapbox: define-attribute highp vec3 normal_3f\n#pragma mapbox: define-attribute highp vec2 uv_2f\n#pragma mapbox: define-attribute highp vec3 color_3f\n#pragma mapbox: define-attribute highp vec4 color_4f\n#pragma mapbox: define-attribute-vertex-shader-only highp vec4 pbr\n#pragma mapbox: define-attribute-vertex-shader-only highp vec3 heightBasedEmissiveStrength\nuniform mat4 u_matrix;uniform mat4 u_node_matrix;uniform mat4 u_lighting_matrix;uniform vec3 u_camera_pos;uniform vec4 u_color_mix;\n#ifdef INSTANCED_ARRAYS\nin vec4 a_normal_matrix0;in vec4 a_normal_matrix1;in vec4 a_normal_matrix2;in vec4 a_normal_matrix3;\n#else\nuniform highp mat4 u_normal_matrix;\n#endif\n#ifdef RENDER_SHADOWS\nuniform mat4 u_light_matrix_0;uniform mat4 u_light_matrix_1;out highp vec4 v_pos_light_view_0;out highp vec4 v_pos_light_view_1;out float v_depth_shadows;\n#endif\nout vec4 v_position_height;out lowp vec4 v_color_mix;\n#ifdef TERRAIN_FRAGMENT_OCCLUSION\nout highp float v_depth;\n#endif\n#ifdef HAS_ATTRIBUTE_a_pbr\nout lowp vec4 v_roughness_metallic_emissive_alpha;out mediump vec4 v_height_based_emission_params;\n#endif\nvec3 sRGBToLinear(vec3 srgbIn) {return pow(srgbIn,vec3(2.2));}void main() {\n#pragma mapbox: initialize-attribute highp vec3 normal_3f\n#pragma mapbox: initialize-attribute highp vec2 uv_2f\n#pragma mapbox: initialize-attribute highp vec3 color_3f\n#pragma mapbox: initialize-attribute highp vec4 color_4f\n#pragma mapbox: initialize-attribute-custom highp vec4 pbr\n#pragma mapbox: initialize-attribute-custom highp vec3 heightBasedEmissiveStrength\nhighp mat4 normal_matrix;\n#ifdef INSTANCED_ARRAYS\nnormal_matrix=mat4(a_normal_matrix0,a_normal_matrix1,a_normal_matrix2,a_normal_matrix3);\n#else\nnormal_matrix=u_normal_matrix;\n#endif\nvec3 local_pos;mat3 rs;\n#ifdef MODEL_POSITION_ON_GPU\nvec3 pos_color=normal_matrix[0].xyz;vec4 translate=normal_matrix[1];vec3 pos_a=floor(pos_color);vec3 rgb=1.05*(pos_color-pos_a);float hidden=float(pos_a.x > EXTENT);float color_mix=pos_a.z/100.0;v_color_mix=vec4(sRGBToLinear(rgb),color_mix);float meter_to_tile=normal_matrix[0].w;vec4 pos=vec4(pos_a.xy,translate.z,1.0);rs[0].x=normal_matrix[1].w;rs[0].yz=normal_matrix[2].xy;rs[1].xy=normal_matrix[2].zw;rs[1].z=normal_matrix[3].x;rs[2].xyz=normal_matrix[3].yzw;vec4 pos_node=u_lighting_matrix*vec4(a_pos_3f,1.0);vec3 rotated_pos_node=rs*pos_node.xyz;vec3 pos_model_tile=(rotated_pos_node+vec3(translate.xy,0.0))*vec3(meter_to_tile,meter_to_tile,1.0);pos.xyz+=pos_model_tile;local_pos=pos.xyz;gl_Position=mix(u_matrix*pos,AWAY,hidden);pos.z*=meter_to_tile;v_position_height.xyz=pos.xyz-u_camera_pos;\n#else\nlocal_pos=a_pos_3f;gl_Position=u_matrix*vec4(a_pos_3f,1);v_position_height.xyz=vec3(u_lighting_matrix*vec4(a_pos_3f,1));v_color_mix=vec4(sRGBToLinear(u_color_mix.rgb),u_color_mix.a);\n#endif\nv_position_height.w=a_pos_3f.z;\n#ifdef HAS_ATTRIBUTE_a_pbr\nvec4 albedo_c=decode_color(pbr.xy);vec2 e_r_m=unpack_float(pbr.z);vec2 r_m= unpack_float(e_r_m.y*16.0);r_m.r=r_m.r*16.0;v_color_mix=vec4(albedo_c.rgb,1.0);v_roughness_metallic_emissive_alpha=vec4(vec3(r_m,e_r_m.x)/255.0,albedo_c.a);v_roughness_metallic_emissive_alpha.z*=2.0;float heightBasedRelativeIntepolation=a_pos_3f.z*heightBasedEmissiveStrength.x+heightBasedEmissiveStrength.y;v_height_based_emission_params.x=heightBasedRelativeIntepolation;v_height_based_emission_params.y=heightBasedEmissiveStrength.z;vec2 emissionMultiplierValues=unpack_float(pbr.w)/256.0;v_height_based_emission_params.z=emissionMultiplierValues.x;v_height_based_emission_params.w=emissionMultiplierValues.y-emissionMultiplierValues.x;\n#endif\n#ifdef FOG\nv_fog_pos=fog_position(local_pos);\n#endif\n#ifdef RENDER_CUTOFF\nv_cutoff_opacity=cutoff_opacity(u_cutoff_params,gl_Position.z);\n#endif\n#ifdef TERRAIN_FRAGMENT_OCCLUSION\nv_depth=gl_Position.z/gl_Position.w;\n#endif\n#ifdef HAS_ATTRIBUTE_a_normal_3f\n#ifdef MODEL_POSITION_ON_GPU\nfloat x_squared_scale=dot(rs[0],rs[0]);float y_squared_scale=dot(rs[1],rs[1]);float z_squared_scale=dot(rs[2],rs[2]);vec3 squared_scale=vec3(x_squared_scale,y_squared_scale,z_squared_scale);normal_3f=rs*((u_lighting_matrix*vec4(normal_3f,0.0)).xyz/squared_scale);normal_3f=normalize(normal_3f);\n#else\nnormal_3f=vec3(normal_matrix*vec4(normal_3f,0));\n#endif\n#endif\n#ifdef HAS_ATTRIBUTE_a_pbr\n#ifdef HAS_ATTRIBUTE_a_color_4f\nv_roughness_metallic_emissive_alpha.w=clamp(color_4f.a*v_roughness_metallic_emissive_alpha.w*(v_roughness_metallic_emissive_alpha.z-1.0),0.0,1.0);\n#endif\n#endif\n#ifdef RENDER_SHADOWS\nvec4 shadow_pos=u_node_matrix*vec4(local_pos,1.0);\n#ifdef NORMAL_OFFSET\n#ifdef HAS_ATTRIBUTE_a_normal_3f\n#ifdef MODEL_POSITION_ON_GPU\nvec3 offset=shadow_normal_offset(vec3(-normal_3f.xy,normal_3f.z));shadow_pos.xyz+=offset*shadow_normal_offset_multiplier0();\n#else\nvec3 offset=shadow_normal_offset_model(normal_3f);shadow_pos.xyz+=offset*shadow_normal_offset_multiplier0();\n#endif\n#endif\n#endif\nv_pos_light_view_0=u_light_matrix_0*shadow_pos;v_pos_light_view_1=u_light_matrix_1*shadow_pos;v_depth_shadows=gl_Position.w;\n#endif\n}'),modelDepth:r("in highp float v_depth;void main() {\n#ifndef DEPTH_TEXTURE\nglFragColor=pack_depth(v_depth);\n#endif\n}","in vec3 a_pos_3f;uniform mat4 u_matrix;out highp float v_depth;\n#ifdef MODEL_POSITION_ON_GPU\n#ifdef INSTANCED_ARRAYS\nin vec4 a_normal_matrix0;in vec4 a_normal_matrix1;in vec4 a_normal_matrix2;in vec4 a_normal_matrix3;\n#else\nuniform highp mat4 u_instance;\n#endif\nuniform highp mat4 u_node_matrix;\n#endif\nvoid main() {\n#ifdef MODEL_POSITION_ON_GPU\nhighp mat4 instance;\n#ifdef INSTANCED_ARRAYS\ninstance=mat4(a_normal_matrix0,a_normal_matrix1,a_normal_matrix2,a_normal_matrix3);\n#else\ninstance=u_instance;\n#endif\nvec3 pos_color=instance[0].xyz;vec4 translate=instance[1];vec3 pos_a=floor(pos_color);float hidden=float(pos_a.x > EXTENT);float meter_to_tile=instance[0].w;vec4 pos=vec4(pos_a.xy,translate.z,1.0);mat3 rs;rs[0].x=instance[1].w;rs[0].yz=instance[2].xy;rs[1].xy=instance[2].zw;rs[1].z=instance[3].x;rs[2].xyz=instance[3].yzw;vec4 pos_node=u_node_matrix*vec4(a_pos_3f,1.0);vec3 rotated_pos_node=rs*pos_node.xyz;vec3 pos_model_tile=(rotated_pos_node+vec3(translate.xy,0.0))*vec3(meter_to_tile,meter_to_tile,1.0);pos.xyz+=pos_model_tile;gl_Position=mix(u_matrix*pos,AWAY,hidden);\n#else\ngl_Position=u_matrix*vec4(a_pos_3f,1);\n#endif\nv_depth=gl_Position.z/gl_Position.w;}"),stars:r("in highp vec2 v_uv;in mediump float v_intensity;float shapeCircle(in vec2 uv)\n{float beginFade=0.6;float lengthFromCenter=length(v_uv);return 1.0-clamp((lengthFromCenter-beginFade)/(1.0-beginFade),0.0,1.0);}void main() {float alpha=shapeCircle(v_uv);vec3 color=vec3(1.0,1.0,1.0);alpha*=v_intensity;glFragColor=vec4(color*alpha,alpha);HANDLE_WIREFRAME_DEBUG;}","\nin vec3 a_pos_3f;in vec2 a_uv;in float a_size_scale;in float a_fade_opacity;uniform mat4 u_matrix;uniform vec3 u_up;uniform vec3 u_right;uniform float u_intensity_multiplier;out highp vec2 v_uv;out mediump float v_intensity;void main() {v_uv=a_uv;v_intensity=a_fade_opacity*u_intensity_multiplier;vec3 pos=a_pos_3f;pos+=a_uv.x*u_right*a_size_scale;pos+=a_uv.y*u_up*a_size_scale;gl_Position=u_matrix*vec4(pos,1.0);}"),occlusion:r("uniform vec4 u_color;void main() {glFragColor=u_color;}",'#include "_prelude_terrain.vertex.glsl"\nin highp vec2 a_offset_xy;uniform highp vec3 u_anchorPos;uniform mat4 u_matrix;uniform vec2 u_screenSizePx;uniform vec2 u_occluderSizePx;void main() {vec3 world_pos=u_anchorPos;\n#ifdef TERRAIN\nfloat e=elevation(world_pos.xy);world_pos.z+=e;\n#endif\nvec4 projected_point=u_matrix*vec4(world_pos,1.0);projected_point.xy+=projected_point.w*a_offset_xy*0.5*u_occluderSizePx/u_screenSizePx;gl_Position=projected_point;}')};function h(e,t){const i=e.replace(/\s*\/\/[^\n]*\n/g,"\n").split("\n");for(var r of i)if(r=r.trim(),"#"===r[0]&&r.includes("if")&&!r.includes("endif")){const i=(r=r.replace("#","").replace(/ifdef|ifndef|elif|if/g,"").replace(/!|defined|\(|\)|\|\||&&/g,"").replace(/\s+/g," ").trim()).split(" ");for(const e of i)t.includes(e)||t.push(e)}}function r(t,i){var e=/#include\s+"([^"]+)"/g,r=/#pragma mapbox: ([\w\-]+) ([\w]+) ([\w]+) ([\w]+)/g;let a=i.match(/(attribute(\S*)|(^\s*|;)in) (highp |mediump |lowp )?([\w]+) ([\w]+)/gm);a&&(a=a.map(e=>{e=e.split(" ");return e[e.length-1]}),a=[...new Set(a)]);const s={},n=[],o=[];if(t=t.replace(e,(e,t)=>(o.push(t),"")),!(i=i.replace(e,(e,t)=>(n.push(t),""))).includes("flat out")){let e=[...Ot];h(t,e),h(i,e);for(const t of[...n,...o])Bt[t]||console.error("Undefined include: "+t),Ft[t]||(Ft[t]=[],h(Bt[t],Ft[t])),e=[...e,...Ft[t]];return{fragmentSource:t=t.replace(r,(e,t,i,r,a)=>(s[a]=!0,"define"===t?` +#ifndef HAS_UNIFORM_u_${a} +in ${i} ${r} ${a}; +#else +uniform ${i} ${r} u_${a}; +#endif +`:"initialize"===t?` +#ifdef HAS_UNIFORM_u_${a} + ${i} ${r} ${a} = u_${a}; +#endif +`:"define-attribute"===t?` +#ifdef HAS_ATTRIBUTE_a_${a} + in ${i} ${r} ${a}; +#endif +`:"initialize-attribute"===t?"":void 0)),vertexSource:i=i.replace(r,(e,t,i,r,a)=>{var n="float"===r?"vec2":r,o=a.match(/color/)?"color":n;return"define-attribute-vertex-shader-only"===t?` +#ifdef HAS_ATTRIBUTE_a_${a} +in ${i} ${r} a_${a}; +#endif +`:s[a]?"define"===t?` +#ifndef HAS_UNIFORM_u_${a} +uniform lowp float u_${a}_t; +in ${i} ${n} a_${a}; +out ${i} ${r} ${a}; +#else +uniform ${i} ${r} u_${a}; +#endif +`:"initialize"===t?"vec4"===o?` +#ifndef HAS_UNIFORM_u_${a} + ${a} = a_${a}; +#else + ${i} ${r} ${a} = u_${a}; +#endif +`:` +#ifndef HAS_UNIFORM_u_${a} + ${a} = unpack_mix_${o}(a_${a}, u_${a}_t); +#else + ${i} ${r} ${a} = u_${a}; +#endif +`:"define-attribute"===t?` +#ifdef HAS_ATTRIBUTE_a_${a} + in ${i} ${r} a_${a}; + out ${i} ${r} ${a}; +#endif +`:"initialize-attribute"===t?` +#ifdef HAS_ATTRIBUTE_a_${a} + ${a} = a_${a}; +#endif +`:void 0:"define"===t?` +#ifndef HAS_UNIFORM_u_${a} +uniform lowp float u_${a}_t; +in ${i} ${n} a_${a}; +#else +uniform ${i} ${r} u_${a}; +#endif +`:"define-instanced"===t?"mat4"===o?` +#ifdef INSTANCED_ARRAYS +in vec4 a_${a}0; +in vec4 a_${a}1; +in vec4 a_${a}2; +in vec4 a_${a}3; +#else +uniform ${i} ${r} u_${a}; +#endif +`:` +#ifdef INSTANCED_ARRAYS +in ${i} ${n} a_${a}; +#else +uniform ${i} ${r} u_${a}; +#endif +`:"initialize-attribute-custom"===t?` +#ifdef HAS_ATTRIBUTE_a_${a} + ${i} ${r} ${a} = a_${a}; +#endif +`:"vec4"===o?` +#ifndef HAS_UNIFORM_u_${a} + ${i} ${r} ${a} = a_${a}; +#else + ${i} ${r} ${a} = u_${a}; +#endif +`:` +#ifndef HAS_UNIFORM_u_${a} + ${i} ${r} ${a} = unpack_mix_${o}(a_${a}, u_${a}_t); +#else + ${i} ${r} ${a} = u_${a}; +#endif +`}),staticAttributes:a,usedDefines:e,vertexIncludes:n,fragmentIncludes:o}}console.error('The usage of "flat" qualifier is disallowed, see: https://bugs.webkit.org/show_bug.cgi?id=268071')}class jt{constructor(){this.boundProgram=null,this.boundLayoutVertexBuffer=null,this.boundPaintVertexBuffers=[],this.boundIndexBuffer=null,this.boundVertexOffset=null,this.boundDynamicVertexBuffers=[],this.vao=null}bind(e,t,i,r,a,n,o,s){this.context=e;let l=this.boundPaintVertexBuffers.length!==r.length;for(let e=0;!l&&e{const a=i.paint.get("hillshade-shadow-color"),n=i.paint.get("hillshade-highlight-color"),o=i.paint.get("hillshade-accent-color"),s=i.paint.get("hillshade-emissive-strength");let l=et.ac(i.paint.get("hillshade-illumination-direction"));if("viewport"===i.paint.get("hillshade-illumination-anchor"))l-=e.transform.angle;else if(e.style&&e.style.enable3dLights()&&e.style.directionalLight){const t=e.style.directionalLight.properties.get("direction"),i=et.ad(t.x,t.y,t.z);l=et.ac(i[1])}var c=!e.options.moving;return{u_matrix:r||e.transform.calculateProjMatrix(t.tileID.toUnwrapped(),c),u_image:0,u_latrange:(r=t.tileID,e=Math.pow(2,r.canonical.z),r=r.canonical.y,[new et._(0,r/e).toLngLat().lat,new et._(0,(r+1)/e).toLngLat().lat]),u_light:[i.paint.get("hillshade-exaggeration"),l],u_shadow:a.toRenderColor(i.lut),u_highlight:n.toRenderColor(i.lut),u_emissive_strength:s,u_accent:o.toRenderColor(i.lut)}})(e,i,r,e.terrain?t.projMatrix:null),{tileBoundsBuffer:t,tileBoundsIndexBuffer:i,tileBoundsSegments:u}=(e.uploadCommonUniforms(s,p,t.toUnwrapped()),e.getTileBoundsBuffers(i));p.draw(e,l.TRIANGLES,a,n,o,et.ag.disabled,h,r.id,t,i,u)}}function qt(e,t,i){if(t.needsDEMTextureUpload){const r=e.context,a=r.gl;r.pixelStoreUnpackPremultiplyAlpha.set(!1),t.demTexture=t.demTexture||e.getTileTexture(i.stride);e=i.getPixels();t.demTexture?t.demTexture.update(e,{premultiply:!1}):t.demTexture=new et.T(r,e,a.R32F,{premultiply:!1}),t.needsDEMTextureUpload=!1}}function $t(i,r,e,t,a){function n(e,t){if(e)return a(e);if(t){if(i.url&&t.tiles&&i.tiles&&delete i.tiles,t.variants){if(!Array.isArray(t.variants))return a(new Error("variants must be an array"));for(const i of t.variants){if(null==i||"object"!=typeof i||i.constructor!==Object)return a(new Error("variant must be an object"));if(!Array.isArray(i.capabilities))return a(new Error("capabilities must be an array"));if(1===i.capabilities.length&&"meshopt"===i.capabilities[0]){t=et.Q(t,i);break}}}const e=et.ai(et.Q(t,i),["tilejson","tiles","minzoom","maxzoom","attribution","mapbox_logo","bounds","scheme","tileSize","encoding"]);t.vector_layers&&(e.vectorLayers=t.vector_layers,e.vectorLayerIds=e.vectorLayers.map(e=>e.id)),t.raster_layers&&(e.rasterLayers=t.raster_layers,e.rasterLayerIds=e.rasterLayers.map(e=>e.id)),e.tiles=r.canonicalizeTileset(e,i.url),a(null,e)}}const o=function(e,t,i){if(!e)return null;if(!t&&!i)return e;i=i||e.worldview_default;const r=Object.values(e.language||{});if(0===r.length)return null;const a=Object.values(e.worldview||{});if(0===a.length)return null;var n=r.every(e=>e===t),o=a.every(e=>e===i);return n&&o||!(t in(e.language_options||{})||i in(e.worldview_options||{}))&&e.language_options&&e.worldview_options?e:null}(i.data,e,t);return o?et.e.frame(()=>n(null,o)):i.url?et.h(r.transformRequest(r.normalizeSourceURL(i.url,null,e,t),et.R.Source),n):et.e.frame(()=>{const{data:e,...t}=i;n(null,t)})}class Zt{constructor(e,t,i){this.bounds=et.aj.convert(this.validateBounds(e)),this.minzoom=t||0,this.maxzoom=i||24}validateBounds(e){return Array.isArray(e)&&4===e.length?[Math.max(-180,e[0]),Math.max(-90,e[1]),Math.min(180,e[2]),Math.min(90,e[3])]:[-180,-90,180,90]}contains(e){var t=Math.pow(2,e.z),i=Math.floor(et.ak(this.bounds.getWest())*t),r=Math.floor(et.al(this.bounds.getNorth())*t),a=Math.ceil(et.ak(this.bounds.getEast())*t),t=Math.ceil(et.al(this.bounds.getSouth())*t);return e.x>=i&&e.x=r&&e.y{this._tileJSONRequest=null,this._loaded=!0,e?this.fire(new et.f(e)):t&&(et.Q(this,t),t.bounds&&(this.tileBounds=new Zt(t.bounds,this.minzoom,this.maxzoom)),et.ao(t.tiles),this.fire(new et.g("data",{dataType:"source",sourceDataType:"metadata"})),this.fire(new et.g("data",{dataType:"source",sourceDataType:"content"}))),i&&i(e)})}loaded(){return this._loaded}onAdd(e){this.map=e,this.load()}reload(){this.cancelTileJSONRequest();const e=et.am(this.id,this.scope);this.load(()=>this.map.style.clearSource(e))}setTiles(e){return this._options.tiles=e,this.reload(),this}setUrl(e){return this.url=e,this._options.url=e,this.reload(),this}onRemove(e){this.cancelTileJSONRequest()}serialize(){return et.Q({},this._options)}hasTile(e){return!this.tileBounds||this.tileBounds.contains(e.canonical)}loadTile(a,n){var e=2<=et.e.devicePixelRatio,e=this.map._requestManager.normalizeTileURL(a.tileID.canonical.url(this.tiles,this.scheme),e,this.tileSize);a.request=et.i(this.map._requestManager.transformRequest(e,et.R.Tile),(e,t,i,r)=>(delete a.request,a.aborted?(a.state="unloaded",n(null)):e?(a.state="errored",n(e)):t?(this.map._refreshExpiredTiles&&a.setExpiryData({cacheControl:i,expires:r}),a.setTexture(t,this.map.painter),a.state="loaded",et.an(this.dispatcher),void n(null)):n(null)))}abortTile(e,t){e.request&&(e.request.cancel(),delete e.request),t&&t()}unloadTile(e,t){e.texture&&e.texture instanceof et.T?(e.destroy(!0),e.texture&&e.texture instanceof et.T&&this.map.painter.saveTileTexture(e.texture)):e.destroy(),t&&t()}hasTransition(){return!1}cancelTileJSONRequest(){this._tileJSONRequest&&(this._tileJSONRequest.cancel(),this._tileJSONRequest=null)}}class Ht extends et.E{constructor(e,t,i,r){if(super(),this.id=e,this.dispatcher=i,this.type="vector",this.minzoom=0,this.maxzoom=22,this.scheme="xyz",this.tileSize=512,this.reparseOverscaled=!0,this.isTileClipped=!0,this._loaded=!1,et.Q(this,et.ai(t,["url","scheme","tileSize","promoteId"])),this._options=et.Q({type:"vector"},t),this._collectResourceTiming=!!t.collectResourceTiming,512!==this.tileSize)throw new Error("vector tile sources must have a tileSize of 512");this.setEventedParent(r),this._tileWorkers={},this._deduped=new et.ap}load(i){this._loaded=!1,this.fire(new et.g("dataloading",{dataType:"source"}));const r=Array.isArray(this.map._language)?this.map._language.join():this.map._language,a=this.map._worldview;this._tileJSONRequest=$t(this._options,this.map._requestManager,r,a,(e,t)=>{this._tileJSONRequest=null,this._loaded=!0,e?(r&&console.warn("Ensure that your requested language string is a valid BCP-47 code or list of codes. Found: "+r),a&&2!==a.length&&console.warn("Requested worldview strings must be a valid ISO alpha-2 code. Found: "+a),this.fire(new et.f(e))):t&&(et.Q(this,t),t.bounds&&(this.tileBounds=new Zt(t.bounds,this.minzoom,this.maxzoom)),et.ao(t.tiles,this.map._requestManager._customAccessToken),this.fire(new et.g("data",{dataType:"source",sourceDataType:"metadata"})),this.fire(new et.g("data",{dataType:"source",sourceDataType:"content"}))),i&&i(e)})}loaded(){return this._loaded}hasTile(e){return!this.tileBounds||this.tileBounds.contains(e.canonical)}onAdd(e){this.map=e,this.load()}reload(){this.cancelTileJSONRequest();const e=et.am(this.id,this.scope);this.load(()=>this.map.style.clearSource(e))}setTiles(e){return this._options.tiles=e,this.reload(),this}setUrl(e){return this.url=e,this._options.url=e,this.reload(),this}onRemove(e){this.cancelTileJSONRequest()}serialize(){return et.Q({},this._options)}loadTile(i,r){const e=this.map._requestManager.normalizeTileURL(i.tileID.canonical.url(this.tiles,this.scheme)),t=this.map._requestManager.transformRequest(e,et.R.Tile),a=this.map.style?this.map.style.getLut(this.scope):null,n={request:t,data:void 0,uid:i.uid,tileID:i.tileID,tileZoom:i.tileZoom,zoom:i.tileID.overscaledZ,lut:a?{image:a.image.clone()}:null,tileSize:this.tileSize*i.tileID.overscaleFactor(),type:this.type,source:this.id,scope:this.scope,pixelRatio:et.e.devicePixelRatio,showCollisionBoxes:this.map.showCollisionBoxes,promoteId:this.promoteId,isSymbolTile:i.isSymbolTile,brightness:this.map.style&&this.map.style.getBrightness()||0,extraShadowCaster:i.isExtraShadowCaster,tessellationStep:this.map._tessellationStep};if(n.request.collectResourceTiming=this._collectResourceTiming,i.actor&&"expired"!==i.state)"loading"===i.state?i.reloadCallback=r:i.request=i.actor.send("reloadTile",n,o.bind(this));else if(i.actor=this._tileWorkers[e]=this._tileWorkers[e]||this.dispatcher.getActor(),this.dispatcher.ready)i.request=i.actor.send("loadTile",n,o.bind(this),void 0,!0);else{const r=et.aq.call({deduped:this._deduped},n,(e,t)=>{e||!t?o.call(this,e):(n.data={cacheControl:t.cacheControl,expires:t.expires,rawData:t.rawData.slice(0)},i.actor&&i.actor.send("loadTile",n,o.bind(this),void 0,!0))},!0);i.request={cancel:r}}function o(e,t){return delete i.request,i.aborted?r(null):e&&404!==e.status?r(e):(t&&t.resourceTiming&&(i.resourceTiming=t.resourceTiming),this.map._refreshExpiredTiles&&t&&i.setExpiryData(t),i.loadVectorData(t,this.map.painter),et.an(this.dispatcher),r(null),void(i.reloadCallback&&(this.loadTile(i,i.reloadCallback),i.reloadCallback=null)))}}abortTile(e){e.request&&(e.request.cancel(),delete e.request),e.actor&&e.actor.send("abortTile",{uid:e.uid,type:this.type,source:this.id,scope:this.scope})}unloadTile(e,t){e.actor&&e.actor.send("removeTile",{uid:e.uid,type:this.type,source:this.id,scope:this.scope}),e.destroy()}hasTransition(){return!1}afterUpdate(){this._tileWorkers={}}cancelTileJSONRequest(){this._tileJSONRequest&&(this._tileJSONRequest.cancel(),this._tileJSONRequest=null)}}const Xt=(e,t,i,r,a,n,o,s,l,c,h,u,d,p,f,m)=>({u_proj_matrix:Float32Array.from(e),u_globe_matrix:t,u_normalize_matrix:Float32Array.from(r),u_merc_matrix:i,u_zoom_transition:a,u_merc_center:n,u_image0:0,u_frustum_tl:o,u_frustum_tr:s,u_frustum_br:l,u_frustum_bl:c,u_globe_pos:h,u_globe_radius:u,u_viewport:d,u_grid_matrix:m?Float32Array.from(m):new Float32Array(9),u_skirt_height:p,u_far_z_cutoff:f});class Yt{constructor(e=0,t=0,i=0,r=0){if(isNaN(e)||e<0||isNaN(t)||t<0||isNaN(i)||i<0||isNaN(r)||r<0)throw new Error("Invalid value for edge-insets, top, bottom, left and right must all be numbers");this.top=e,this.bottom=t,this.left=i,this.right=r}interpolate(e,t,i){return null!=t.top&&null!=e.top&&(this.top=et.a3(e.top,t.top,i)),null!=t.bottom&&null!=e.bottom&&(this.bottom=et.a3(e.bottom,t.bottom,i)),null!=t.left&&null!=e.left&&(this.left=et.a3(e.left,t.left,i)),null!=t.right&&null!=e.right&&(this.right=et.a3(e.right,t.right,i)),this}getCenter(e,t){e=et.au((this.left+e-this.right)/2,0,e),t=et.au((this.top+t-this.bottom)/2,0,t);return new et.P(e,t)}equals(e){return this.top===e.top&&this.bottom===e.bottom&&this.left===e.left&&this.right===e.right}clone(){return new Yt(this.top,this.bottom,this.left,this.right)}toJSON(){return{top:this.top,bottom:this.bottom,left:this.left,right:this.right}}}function Jt(e,t){var i=et.ax(e,3);et.ae.fromQuat(e,t),et.aA(e,3,i)}function Kt(e,t){var i=et.aw.identity([]);return et.aw.rotateZ(i,i,-t),et.aw.rotateX(i,i,-e),i}function Qt(e,t){var i=[e[0],e[1],0],r=[t[0],t[1],0];if(1e-15<=et.$.length(i)){const e=et.$.normalize([],i);et.$.scale(r,e,et.$.dot(r,e)),t[0]=r[0],t[1]=r[1]}i=et.$.cross([],t,e);if(et.$.len(i)<1e-15)return null;r=Math.atan2(-i[1],i[0]);return Kt(Math.atan2(Math.sqrt(e[0]*e[0]+e[1]*e[1]),-e[2]),r)}class ei{constructor(e,t){this.position=e,this.orientation=t}get position(){return this._position}set position(e){if(e){const t=e instanceof et._?e:new et._(e[0],e[1],e[2]);this._renderWorldCopies&&(t.x=et.av(t.x,0,1)),this._position=t}else this._position=null}lookAtPoint(e,t){var i,r;this.orientation=null,this.position&&(i=this.position,r=this._elevation?this._elevation.getAtPointOrZero(et._.fromLngLat(e)):0,r=[(e=et._.fromLngLat(e,r)).x-i.x,e.y-i.y,e.z-i.z],(t=t||[0,0,1])[2]=Math.abs(t[2]),this.orientation=Qt(r,t))}setPitchBearing(e,t){this.orientation=Kt(et.ac(e),et.ac(-t))}}class ti{constructor(e,t){this._transform=et.ae.identity([]),this.orientation=t,this.position=e}get mercatorPosition(){var e=this.position;return new et._(e[0],e[1],e[2])}get position(){var e=et.ax(this._transform,3);return[e[0],e[1],e[2]]}set position(e){e&&et.aA(this._transform,3,[e[0],e[1],e[2],1])}get orientation(){return this._orientation}set orientation(e){this._orientation=e||et.aw.identity([]),e&&Jt(this._transform,this._orientation)}getPitchBearing(){var e=this.forward(),t=this.right();return{bearing:Math.atan2(-t[1],t[0]),pitch:Math.atan2(Math.sqrt(e[0]*e[0]+e[1]*e[1]),-e[2])}}setPitchBearing(e,t){this._orientation=Kt(e,t),Jt(this._transform,this._orientation)}forward(){var e=et.ax(this._transform,2);return[-e[0],-e[1],-e[2]]}up(){var e=et.ax(this._transform,1);return[-e[0],-e[1],-e[2]]}right(){var e=et.ax(this._transform,0);return[e[0],e[1],e[2]]}getCameraToWorld(e,t){var i=new Float64Array(16);return et.ae.invert(i,this.getWorldToCamera(e,t)),i}getCameraToWorldMercator(){return this._transform}getWorldToCameraPosition(e,t,i){var r=this.position;et.$.scale(r,r,-e);const a=new Float64Array(16);return et.ae.fromScaling(a,[i,i,i]),et.ae.translate(a,a,r),a[10]*=t,a}getWorldToCamera(e,t){const i=new Float64Array(16),r=new Float64Array(4),a=this.position;return et.aw.conjugate(r,this._orientation),et.$.scale(a,a,-e),et.ae.fromQuat(i,r),et.ae.translate(i,i,a),i[1]*=-1,i[5]*=-1,i[9]*=-1,i[13]*=-1,i[8]*=t,i[9]*=t,i[10]*=t,i[11]*=t,i}getCameraToClipPerspective(e,t,i,r){var a=new Float64Array(16);return et.ae.perspective(a,e,t,i,r),a}getCameraToClipOrthographic(e,t,i,r,a,n){var o=new Float64Array(16);return et.ae.ortho(o,e,t,i,r,a,n),o}getDistanceToElevation(e,t=!1){e=0===e?0:et.ay(e,t?et.az(this.position[1]):this.position[1]),t=this.forward();return(e-this.position[2])/t[2]}clone(){return new ti([...this.position],[...this.orientation])}}const k={unknown:0,flipRequired:1,flipNotRequired:2},ii=Math.tan(85*Math.PI/180);function re(e,t,i,r,a,n,o){const s=et.ae.create();if(i)if("globe"===n.name){const e=et.aC(a,t);et.ae.multiply(s,s,e)}else{const e=et.aD.invert([],o);s[0]=e[0],s[1]=e[1],s[4]=e[2],s[5]=e[3],r||et.ae.rotateZ(s,s,a.angle)}else et.ae.multiply(s,a.labelPlaneMatrix,e);return s}function ri(e,t,i,r,a,n,o){const s=re(e,t,i,r,a,n,o);return"globe"===n.name&&i||(s[2]=s[6]=s[10]=s[14]=0),s}function ai(e,t,i,r,a,n,o){if(i){if("globe"===n.name)return t=re(e,t,i,r,a,n,o),et.ae.invert(t,t),et.ae.multiply(t,e,t),t;{const t=et.ae.clone(e),i=et.ae.identity([]);return i[0]=o[0],i[1]=o[1],i[4]=o[2],i[5]=o[3],et.ae.multiply(t,t,i),r||et.ae.rotateZ(t,t,-a.angle),t}}return a.glCoordMatrix}function O(e,t,i,r){const a=[e,t,i,1];i?et.aB.transformMat4(a,a,r):pi(a,a,r);e=a[3];return a[0]/=e,a[1]/=e,a[2]/=e,a}function ni(e,t){return Math.min(.5+e/t*.5,1.5)}function oi(r,a,n,e,o,s,l,c,h,u){const d=n.transform,p=e?r.textSizeData:r.iconSizeData,f=et.aE(p,n.transform.zoom),m="globe"===d.projection.name,_=[256/n.width*2+1,256/n.height*2+1],g=(e?r.text:r.icon).dynamicLayoutVertexArray;g.clear();let y=null;m&&(y=(e?r.text:r.icon).globeExtVertexArray);const x=r.lineVertexArray,t=(e?r.text:r.icon).placedSymbolArray,v=n.transform.width/n.transform.height;let i,b=!1;for(let e=0;e=-S[0]&&M<=S[0]&&E>=-S[1]&&E<=S[1]){M=T[3],E=ni(n.transform.getCameraToCenterDistance(d.projection),M),S=et.aG(p,f,m),T=l?S/E:S*E,M=O(e,t,i,o);if(M[3]<=0)D(I,g);else{let e={};S=l?null:h,E=ci(m,T,!1,c,a,o,s,r.glyphOffsetArray,x,g,y,M,w,e,v,S,d.projection,u,l);b=E.useVertical,S&&E.needsFlipping&&(e={}),(E.notEnoughRoom||b||E.needsFlipping&&ci(m,T,!0,c,a,o,s,r.glyphOffsetArray,x,g,y,M,w,e,v,S,d.projection,u,l).notEnoughRoom)&&D(I,g)}}else D(I,g)}else D(I,g)}var E,S,M;e?(r.text.dynamicLayoutVertexBuffer.updateData(g),y&&r.text.globeExtVertexBuffer&&r.text.globeExtVertexBuffer.updateData(y)):(r.icon.dynamicLayoutVertexBuffer.updateData(g),y&&r.icon.globeExtVertexBuffer&&r.icon.globeExtVertexBuffer.updateData(y))}function si(e,t,i,r,a,n,o,s,l,c,h,u,d,p,f,m){var{lineStartIndex:_,glyphStartIndex:g,segment:y}=s,x=g+s.numGlyphs,s=_+s.lineLength,g=t.getoffsetX(g),t=t.getoffsetX(x-1),x=di(e*g,i,r,a,n,o,y,_,s,l,c,h,u,d,!0,p,f,m);if(!x)return null;g=di(e*t,i,r,a,n,o,y,_,s,l,c,h,u,d,!0,p,f,m);return g?{first:x,last:g}:null}function li(e,t,i,r){return e===et.aF.horizontal&&Math.abs(r)>Math.abs(i)?{useVertical:!0}:e===et.aF.vertical?0ii)?t===k.flipRequired?{needsFlipping:!0}:null:i<0?{needsFlipping:!0}:null}function ci(t,e,i,r,a,n,o,s,l,c,h,u,d,p,f,m,_,g,y){var x=e/24,v=t.lineOffsetX*x,b=t.lineOffsetY*x,{lineStartIndex:w,glyphStartIndex:T,numGlyphs:E,segment:S,writingMode:M,flipState:I}=t,A=w+t.lineLength,C=e=>{if(h){const[t,i,r]=e.up,a=c.length;et.aH(h,a+0,t,i,r),et.aH(h,a+1,t,i,r),et.aH(h,a+2,t,i,r),et.aH(h,a+3,t,i,r)}const[t,i,r]=e.point;et.aI(c,t,i,r,e.angle)};if(1ui(C,A,w,S-T+1,h,d,m,_.canonical);T+E<=S;){if((v+=y)=l)return null;if(w=b,C=A,M.push(w),p&&I.push(C),A=new et.P(c.getx(v),c.gety(v)),!(b=u[v])){const et=hi(A,_.canonical,h,m,d);b=0(1-i)*e+i*t,mi=e=>e*e*e*e*e;class _i{constructor(e,t,i,r,a,n,o){this.tileSize=512,this._renderWorldCopies=void 0===a||a,this._minZoom=e||0,this._maxZoom=t||22,this._minPitch=i??0,this._maxPitch=r??60,this.setProjection(n),this.setMaxBounds(o),this.width=0,this.height=0,this._center=new et.aJ(0,0),this.zoom=0,this.angle=0,this._fov=.6435011087932844,this._pitch=0,this._nearZ=0,this._farZ=0,this._unmodified=!0,this._edgeInsets=new Yt,this._projMatrixCache={},this._alignedProjMatrixCache={},this._fogTileMatrixCache={},this._expandedProjMatrixCache={},this._distanceTileDataCache={},this._camera=new ti,this._centerAltitude=0,this._averageElevation=0,this.cameraElevationReference="ground",this._pixelsPerMercatorPixel=1,this.globeRadius=0,this.globeCenterInViewSpace=[0,0,0],this._tileCoverLift=0,this.freezeTileCoverage=!1,this._horizonShift=.1,this._orthographicProjectionAtLowPitch=!1}clone(){const e=new _i(this._minZoom,this._maxZoom,this._minPitch,this.maxPitch,this._renderWorldCopies,this.getProjection());return e._elevation=this._elevation,e._centerAltitude=this._centerAltitude,e._centerAltitudeValidForExaggeration=this._centerAltitudeValidForExaggeration,e.tileSize=this.tileSize,e.mercatorFromTransition=this.mercatorFromTransition,e.width=this.width,e.height=this.height,e.cameraElevationReference=this.cameraElevationReference,e._center=this._center,e._setZoom(this.zoom),e._seaLevelZoom=this._seaLevelZoom,e.angle=this.angle,e._fov=this._fov,e._pitch=this._pitch,e._nearZ=this._nearZ,e._farZ=this._farZ,e._averageElevation=this._averageElevation,e._orthographicProjectionAtLowPitch=this._orthographicProjectionAtLowPitch,e._unmodified=this._unmodified,e._edgeInsets=this._edgeInsets.clone(),e._camera=this._camera.clone(),e._calcMatrices(),e.freezeTileCoverage=this.freezeTileCoverage,e.frustumCorners=this.frustumCorners,e}get isOrthographic(){return"globe"!==this.projection.name&&this._orthographicProjectionAtLowPitch&&this.pitch<15}get elevation(){return this._elevation}set elevation(e){this._elevation!==e&&(this._elevation=e,this._updateCameraOnTerrain(),this._calcMatrices())}get depthOcclusionForSymbolsAndCircles(){return"globe"!==this.projection.name&&!this.isOrthographic}updateElevation(e,t=!1){var i=this._elevation&&this._elevation.exaggeration()!==this._centerAltitudeValidForExaggeration;null!=this._seaLevelZoom&&!i||this._updateCameraOnTerrain(),(e||i)&&this._constrainCamera(t),this._calcMatrices()}getProjection(){return et.ai(this.projection,["name","center","parallels"])}setProjection(e){this.projectionOptions=e||{name:"mercator"};var e=this.projection?this.getProjection():void 0,t=(this.projection=et.aK(this.projectionOptions),this.getProjection()),e=!et.d(e,t);return e&&this._calcMatrices(),this.mercatorFromTransition=!1,e}setOrthographicProjectionAtLowPitch(e){return this._orthographicProjectionAtLowPitch!==e&&(this._orthographicProjectionAtLowPitch=e,this._calcMatrices(),!0)}setMercatorFromTransition(){var e=this.projection.name,e=(this.mercatorFromTransition=!0,this.projectionOptions={name:"mercator"},this.projection=et.aK({name:"mercator"}),e!==this.projection.name);return e&&this._calcMatrices(),e}get minZoom(){return this._minZoom}set minZoom(e){this._minZoom!==e&&(this._minZoom=e,this.zoom=Math.max(this.zoom,e))}get maxZoom(){return this._maxZoom}set maxZoom(e){this._maxZoom!==e&&(this._maxZoom=e,this.zoom=Math.min(this.zoom,e))}get minPitch(){return this._minPitch}set minPitch(e){this._minPitch!==e&&(this._minPitch=e,this.pitch=Math.max(this.pitch,e))}get maxPitch(){return this._maxPitch}set maxPitch(e){this._maxPitch!==e&&(this._maxPitch=e,this.pitch=Math.min(this.pitch,e))}get renderWorldCopies(){return this._renderWorldCopies&&!0===this.projection.supportsWorldCopies}set renderWorldCopies(e){void 0===e?e=!0:null===e&&(e=!1),this._renderWorldCopies=e}get worldSize(){return this.tileSize*this.scale}get cameraWorldSizeForFog(){var e=Math.max(this._camera.getDistanceToElevation(this._averageElevation),Number.EPSILON);return this._worldSizeFromZoom(this._zoomFromMercatorZ(e))}get cameraWorldSize(){var e=Math.max(this._camera.getDistanceToElevation(this._averageElevation,!0),Number.EPSILON);return this._worldSizeFromZoom(this._zoomFromMercatorZ(e))}get pixelsPerMeter(){return this.projection.pixelsPerMeter(this.center.lat,this.worldSize)}get cameraPixelsPerMeter(){return et.ay(1,this.center.lat)*this.cameraWorldSizeForFog}get centerOffset(){return this.centerPoint._sub(this.size._div(2))}get size(){return new et.P(this.width,this.height)}get bearing(){return et.av(this.rotation,-180,180)}set bearing(e){this.rotation=e}get rotation(){return-this.angle/Math.PI*180}set rotation(e){e=-e*Math.PI/180;this.angle!==e&&(this._unmodified=!1,this.angle=e,this._calcMatrices(),this.rotationMatrix=et.aD.create(),et.aD.rotate(this.rotationMatrix,this.rotationMatrix,this.angle))}get pitch(){return this._pitch/Math.PI*180}set pitch(e){e=et.au(e,this.minPitch,this.maxPitch)/180*Math.PI;this._pitch!==e&&(this._unmodified=!1,this._pitch=e,this._calcMatrices())}get aspect(){return this.width/this.height}get fov(){return this._fov/Math.PI*180}get fovX(){return this._fov}get fovY(){var e=1/Math.tan(.5*this.fovX);return 2*Math.atan(1/this.aspect/e)}set fov(e){e=Math.max(.01,Math.min(60,e)),this._fov!==e&&(this._unmodified=!1,this._fov=et.ac(e),this._calcMatrices())}get averageElevation(){return this._averageElevation}set averageElevation(e){this._averageElevation=e,this._calcFogMatrices(),this._distanceTileDataCache={}}get zoom(){return this._zoom}set zoom(e){e=Math.min(Math.max(e,this.minZoom),this.maxZoom);this._zoom!==e&&(this._unmodified=!1,this._setZoom(e),this._updateSeaLevelZoom(),this._constrain(),this._calcMatrices())}_setZoom(e){this._zoom=e,this.scale=this.zoomScale(e),this.tileZoom=Math.floor(e),this.zoomFraction=e-this.tileZoom}get tileCoverLift(){return this._tileCoverLift}set tileCoverLift(e){this._tileCoverLift!==e&&(this._tileCoverLift=e)}_updateCameraOnTerrain(){var e=this.elevation?this.elevation.getAtPoint(this.locationCoordinate(this.center),Number.NEGATIVE_INFINITY):Number.NEGATIVE_INFINITY,t=this.elevation&&e===Number.NEGATIVE_INFINITY&&0{var n=et.b2(t,e,i,r,a);s.has(n)||(o.push(new et.aQ(e,t,i,r,a)),s.add(n))};for(let e=0;eet.isChildOf(e))||c.push(et);if(o=c.filter(t=>!i.some(e=>!!(t.overscaledZ{var t=e.canonical.x+.5-a[0],e=e.canonical.y+.5-a[1];return t*t+e*e<16})}return o}coveringTiles(l){let c=this.coveringZoomLevel(l);const h=c,r=this.elevation&&this.elevation.exaggeration(),u=r&&!l.isTerrainDEM,d="mercator"===this.projection.name;if(void 0!==l.minzoom&&cl.maxzoom&&(c=l.maxzoom);const a=this.locationCoordinate(this.center),p=this.center.lat,n=1<{const t=new et._(e.x+25e-6,e.y,e.z),i=new et._(e.x,e.y+25e-6,e.z),r=e.toLngLat(),a=t.toLngLat(),n=i.toLngLat(),o=this.locationCoordinate(r),s=this.locationCoordinate(a),l=this.locationCoordinate(n),c=Math.hypot(s.x-o.x,s.y-o.y),h=Math.hypot(l.x-o.x,l.y-o.y);return Math.sqrt(c*h)*T/25e-6},i=e=>{var t=b,i=w;return{aabb:et.aR(this,n,0,0,0,e,i,t,this.projection),zoom:0,x:0,y:0,minZ:i,maxZ:t,wrap:e,fullyVisible:!1}},S=[];let M=[];const I=c,A=l.reparseOverscaled?h:c,C=(t-this._centerAltitude)*_,P=e=>{if(this._elevation&&e.tileID&&d){const t=this._elevation.getMinMaxForTile(e.tileID),i=e.aabb;t?(i.min[2]=t.min,i.max[2]=t.max,i.center[2]=(i.min[2]+i.max[2])/2):(e.shouldSplit=D(e),e.shouldSplit||(i.min[2]=i.max[2]=i.center[2]=this._centerAltitude))}},z=(e,t)=>{if(.707*t{if(e.zoom"globe"===this.projection.name&&(0===h.y||h.y===(1<>1),o={aabb:d?h.aabb.quadrant(e):et.aR(this,n,h.zoom+1,c,f,h.wrap,h.minZ,h.maxZ,this.projection),zoom:h.zoom+1,x:c,y:f,wrap:h.wrap,fullyVisible:i,tileID:void 0,shouldSplit:void 0,minZ:h.minZ,maxZ:h.maxZ};u&&!m&&(o.tileID=new et.aQ(h.zoom+1===I?A:h.zoom+1,h.wrap,h.zoom+1,c,f),P(o)),S.push(o)}else{const u=h.zoom===I?A:h.zoom;if(!(l.minzoom&&l.minzoom>u)){let t=0;if(!i){let e=y?h.aabb.intersectsPrecise(s):h.aabb.intersectsPreciseFlat(s);if(0===e&&o()){const l=new et.aO(h.zoom,r,a);e=et.aP(this,n,l,!0).intersectsPrecise(s)}if(0===e)continue;if(l.calculateQuadrantVisibility)if(s.containsPoint(h.aabb.center))t=15;else for(let e=0;e<4;e++)0!==h.aabb.quadrant(e).intersects(s)&&(t|=1<{const e=[0,0,0,1],i=[et.a4,et.a4,0,1],r=this.calculateFogTileMatrix(t.tileID.toUnwrapped());et.aB.transformMat4(e,e,r),et.aB.transformMat4(i,i,r);var a=et.aB.min([],e,i),n=et.aB.max([],e,i),a=et.aS(a,n);if(0===a)return!0;let o=!1;const s=this._elevation;if(s&&a>c&&0!==h){const c=this.calculateProjMatrix(t.tileID.toUnwrapped());let e;e=(e=l.isTerrainDEM?e:s.getMinMaxForTile(t.tileID))||{min:w,max:b};const i=et.b4(this.rotation),r=[i[0]*et.a4,i[1]*et.a4,e.max];et.$.transformMat4(r,r,c),o=(1-r[1])*this.height*.5e.distanceSq-t.distanceSq).map(e=>e.tileID)}resize(e,t){this.width=e,this.height=t,this.pixelsToGLUnits=[2/e,-2/t],this._constrain(),this._calcMatrices()}get unmodified(){return this._unmodified}zoomScale(e){return Math.pow(2,e)}scaleZoom(e){return Math.log(e)/Math.LN2}project(e){var t=et.au(e.lat,-et.aT,et.aT),e=this.projection.project(e.lng,t);return new et.P(e.x*this.worldSize,e.y*this.worldSize)}unproject(e){return this.projection.unproject(e.x/this.worldSize,e.y/this.worldSize)}get point(){return this.project(this.center)}get pointMerc(){return this.point._div(this.worldSize)}get pixelsPerMeterRatio(){return this.pixelsPerMeter/et.ay(1,this.center.lat)/this.worldSize}setLocationAtPoint(e,t){let i,r;var a=this.centerPoint;if("globe"===this.projection.name){const et=this.worldSize;i=(t.x-a.x)/et,r=(t.y-a.y)/et}else{const et=this.pointCoordinate(t),e=this.pointCoordinate(a);i=et.x-e.x,r=et.y-e.y}t=this.locationCoordinate(e);this.setLocation(new et._(t.x-i,t.y-r))}setLocation(e){this.center=this.coordinateLocation(e),this.projection.wrap&&(this.center=this.center.wrap())}locationPoint(e){return this.projection.locationPoint(this,e)}locationPoint3D(e){return this.projection.locationPoint(this,e,!0)}pointLocation(e){return this.coordinateLocation(this.pointCoordinate(e))}pointLocation3D(e){return this.coordinateLocation(this.pointCoordinate3D(e))}locationCoordinate(e,t){t=t?et.ay(t,e.lat):void 0,e=this.projection.project(e.lng,e.lat);return new et._(e.x,e.y,t)}coordinateLocation(e){return this.projection.unproject(e.x,e.y)}pointRayIntersection(e,t){var t=null!=t?t:this._centerAltitude,i=[e.x,e.y,0,1],e=[e.x,e.y,1,1],r=(et.aB.transformMat4(i,i,this.pixelMatrixInverse),et.aB.transformMat4(e,e,this.pixelMatrixInverse),e[3]),r=(et.aB.scale(i,i,1/i[3]),et.aB.scale(e,e,1/r),i[2]),a=e[2];return{p0:i,p1:e,t:r===a?0:(t-r)/(a-r)}}screenPointToMercatorRay(e){const t=[e.x,e.y,0,1],i=[e.x,e.y,1,1];return et.aB.transformMat4(t,t,this.pixelMatrixInverse),et.aB.transformMat4(i,i,this.pixelMatrixInverse),et.aB.scale(t,t,1/t[3]),et.aB.scale(i,i,1/i[3]),t[2]=et.ay(t[2],this._center.lat)*this.worldSize,i[2]=et.ay(i[2],this._center.lat)*this.worldSize,et.aB.scale(t,t,1/this.worldSize),et.aB.scale(i,i,1/this.worldSize),new et.aU([t[0],t[1],t[2]],et.$.normalize([],et.$.sub([],i,t)))}rayIntersectionCoordinate(e){var{p0:e,p1:t,t:i}=e,r=et.ay(e[2],this._center.lat),a=et.ay(t[2],this._center.lat);return new et._(et.a3(e[0],t[0],i)/this.worldSize,et.a3(e[1],t[1],i)/this.worldSize,et.a3(r,a,i))}pointCoordinate(e,t=this._centerAltitude){return this.projection.pointCoordinate(this,e.x,e.y,t)}pointCoordinate3D(t){if(!this.elevation)return this.pointCoordinate(t);let i=this.projection.pointCoordinate3D(this,t.x,t.y);if(i)return new et._(i[0],i[1],i[2]);let r=0,a=this.horizonLineFromTop();if(t.y>a)return this.pointCoordinate(t);const n=.02*a,o=t.clone();for(let e=0;e<10&&a-r>n;e++){o.y=et.a3(r,a,.66);const t=this.projection.pointCoordinate3D(this,o.x,o.y);t?(a=o.y,i=t):r=o.y}return i?new et._(i[0],i[1],i[2]):this.pointCoordinate(t)}isPointAboveHorizon(e){return this.projection.isPointAboveHorizon(this,e)}isPointOnSurface(e){if(e.y<0||e.y>this.height||e.x<0||e.x>this.width)return!1;if(this.elevation||this.zoom>=et.aV)return!this.isPointAboveHorizon(e);e=this.pointCoordinate(e);return 0<=e.y&&e.y<=1}_coordinatePoint(e,t){t=t&&this.elevation?this.elevation.getAtPointOrZero(e,this._centerAltitude):this._centerAltitude,t=[e.x*this.worldSize,e.y*this.worldSize,t+e.toAltitude(),1];return et.aB.transformMat4(t,t,this.pixelMatrix),0{var n=(e+i)/2,o=(t+r)/2,s=new et.P(n,o),{lng:s,lat:l}=this.pointLocation3D(s),c=Math.max(0,h-s,d-l,s-u,l-p);h=Math.min(h,s),u=Math.max(u,s),d=Math.min(d,l),p=Math.max(p,l),(af)&&(_(e,t,n,o,a+1),_(n,o,i,r,a+1))};if(_(t,e,r,e,1),_(r,e,r,i,1),_(r,i,t,i,1),_(t,i,t,e,1),"globe"===this.projection.name){const[e,t]=et.aW(this);e?(p=90,u=180,h=-180):t&&(d=-90,u=180,h=-180)}return new et.aj(new et.aJ(h,d),new et.aJ(u,p))}_getBoundsRectangular(e,t){var{top:i,left:r}=this._edgeInsets,a=this.height-this._edgeInsets.bottom,n=this.width-this._edgeInsets.right,o=new et.P(r,i),i=new et.P(n,i),n=new et.P(n,a),r=new et.P(r,a);let s=this.pointCoordinate(o,e),l=this.pointCoordinate(i,e);a=this.pointCoordinate(n,t),o=this.pointCoordinate(r,t),i=(e,t)=>(t.y-e.y)/(t.x-e.x);return 1{return t.dem&&(t=t.dem.tree,e.min=Math.min(e.min,t.minimums[0]),e.max=Math.max(e.max,t.maximums[0])),e},{min:Number.MAX_VALUE,max:0});return this._getBoundsRectangular(t.min*e.exaggeration(),t.max*e.exaggeration())}getBounds(){return"mercator"===this.projection.name||"equirectangular"===this.projection.name?this._terrainEnabled()?this._getBoundsRectangularTerrain():this._getBoundsRectangular(0,0):this._getBoundsNonRectangular()}horizonLineFromTop(e=!0){var t=this.height/2/Math.tan(this._fov/2)/Math.tan(Math.max(this._pitch,.1))-this.centerOffset.y,t=this.height/2-t*(1-this._horizonShift);return e?Math.max(0,t):t}getMaxBounds(){return this.maxBounds}setMaxBounds(e){this.maxBounds=e,this.minLat=-et.aT,this.maxLat=et.aT,this.minLng=-180,this.maxLng=180,e&&(this.minLat=e.getSouth(),this.maxLat=e.getNorth(),this.minLng=e.getWest(),this.maxLng=e.getEast(),this.maxLngs&&(t=s-r),s-ett;){const et=t+.5*(i-t),n=this.tileSize*Math.pow(2,et),o=this.getCameraToCenterDistance(this.projection,et,n),s=this.scaleZoom(o/(e*this.tileSize)),l=Math.abs(et-s);lo||1{if(0{this.painter.style.map.triggerRepaint()}),e.tp.registerParameter(m,["Shadows"],"cascadeCount",{min:1,max:2,step:1}),e.tp.registerParameter(m,["Shadows"],"normalOffset",{min:0,max:10,step:.05}),e.tp.registerParameter(m,["Shadows"],"shadowMapResolution",{min:32,max:2048,step:32}),e.tp.registerBinding(this,["Shadows"],"_numCascadesToRender",{readonly:!0,label:"numCascadesToRender"})}destroy(){for(const e of this._cascades)e.texture.destroy(),e.framebuffer.destroy();this._cascades=[]}updateShadowParameters(a,t){const n=this.painter;if(this._enabled=!1,this._shadowLayerCount=0,this._receivers.clear(),t&&t.properties){const i=t.properties.get("shadow-intensity");if(t.shadowsEnabled()&&!(i<=0)&&(this._shadowLayerCount=n.style.order.reduce((e,t)=>{const i=n.style._mergedLayers[t];return e+(i.hasShadowPass()&&!i.isHidden(a.zoom)?1:0)},0),this._enabled=0e.dem).forEach(e=>{e=e.dem.tree;t[0]=Math.min(t[0],e.minimums[0]),t[1]=Math.max(t[1],e.maximums[0])}),1e4!==t[0]&&(r=(t[1]-t[0])*et.exaggeration())}var o=1.5*a.cameraToCenterDistance,s=3*o,l=new Float64Array(16);for(let i=0;i({u_matrix:e});function Ii(e,t,i,r,a){var n,o;return 0Math.abs(e.tileID.overscaledZ-i))&&e.refreshedUponExpiration?1:et.au(r?n:1-o,0,1),e.refreshedUponExpiration&&1<=n&&(e.refreshedUponExpiration=!1),t?{opacity:1,mix:1-a}:{opacity:a,mix:0}):{opacity:1,mix:0}}class tt extends Wt{constructor(e,t,i,r){super(e,t,i,r),this.type="raster-array",this.maxzoom=22,this._options=et.Q({type:"raster-array"},t)}triggerRepaint(e){const t=this.map.painter._terrain,i=this.map.style.getSourceCache(this.id);t&&t.enabled&&i&&t._clearRenderCacheForTile(i.id,e.tileID),this.map.triggerRepaint()}loadTile(a,n){var e=this.map._requestManager.normalizeTileURL(a.tileID.canonical.url(this.tiles,this.scheme),!1,this.tileSize),e=this.map._requestManager.transformRequest(e,et.R.Tile);a.requestParams=e,a.actor||(a.actor=this.dispatcher.getActor()),a.request=a.fetchHeader(void 0,(e,t,i,r)=>(delete a.request,a.aborted?(a.state="unloaded",n(null)):e?20===e.code?void 0:(a.state="errored",n(e)):(this.map._refreshExpiredTiles&&a.setExpiryData({cacheControl:i,expires:r}),a.state="empty",void n(null))))}unloadTile(e,t){var i=e.texture;i&&i instanceof et.T?(e.destroy(!0),this.map.painter.saveTileTexture(i)):(e.destroy(),e.flushQueues(),e._isHeaderLoaded=!1,delete e._mrt,delete e.textureDescriptor),e.fbo&&(e.fbo.destroy(),delete e.fbo),delete e.request,delete e.requestParams,delete e.neighboringTiles,e.state="unloaded"}prepareTile(i,e,t){i._isHeaderLoaded&&("empty"!==i.state&&(i.state="reloading"),i.fetchBand(e,t,(e,t)=>{if(e)return i.state="errored",this.fire(new et.f(e)),void this.triggerRepaint(i);t&&(i.setTexture(t,this.map.painter),i.state="loaded",this.triggerRepaint(i))}))}getInitialBand(t){if(!this.rasterLayers)return 0;var e=this.rasterLayers.find(({id:e})=>e===t),e=e&&e.fields,e=e&&e.bands&&e.bands;return e?e[0]:0}getTextureDescriptor(t,i,r){if(t){var a=i.sourceLayer||this.rasterLayerIds&&this.rasterLayerIds[0];if(a){let e=null;i instanceof et.bm?e=i.paint.get("raster-array-band"):i instanceof et.bn&&(e=i.paint.get("raster-particle-array-band"));i=e||this.getInitialBand(a);if(null!=i)if(t.textureDescriptor){if(!t.updateNeeded(a,i)||r)return Object.assign({},t.textureDescriptor,{texture:t.texture})}else this.prepareTile(t,a,i)}}}}function Ai(e,t,i,r){if((t=new Ci[t.type](e,t,i,r)).id!==e)throw new Error(`Expected Source id to be ${e} instead of `+t.id);return et.br(["load","abort","unload","serialize","prepare"],t),t}const Ci={vector:Ht,raster:Wt,"raster-dem":class extends Wt{constructor(e,t,i,r){super(e,t,i,r),this.type="raster-dem",this.maxzoom=22,this._options=et.Q({type:"raster-dem"},t),this.encoding=t.encoding||"mapbox"}loadTile(a,n){var e=this.map._requestManager.normalizeTileURL(a.tileID.canonical.url(this.tiles,this.scheme),!1,this.tileSize);function o(e,t){e&&(a.state="errored",n(e)),t&&(a.dem=t,a.dem.onDeserialize(),a.needsHillshadePrepare=!0,a.needsDEMTextureUpload=!0,a.state="loaded",n(null))}a.request=et.i(this.map._requestManager.transformRequest(e,et.R.Tile),function(e,t,i,r){if(delete a.request,a.aborted)a.state="unloaded",n(null);else if(e)a.state="errored",n(e);else if(t){this.map._refreshExpiredTiles&&a.setExpiryData({cacheControl:i,expires:r});const n=ImageBitmap&&t instanceof ImageBitmap&&et.bk(),e=1-(t.width-et.bl(t.width))/2;e<1||a.neighboringTiles||(a.neighboringTiles=this._getNeighboringTiles(a.tileID));i=n?t:et.e.getImageData(t,e),r={uid:a.uid,coord:a.tileID,source:this.id,scope:this.scope,rawImageData:i,encoding:this.encoding,padding:e};a.actor&&"expired"!==a.state||(a.actor=this.dispatcher.getActor(),a.actor.send("loadDEMTile",r,o.bind(this),void 0,!0))}}.bind(this))}_getNeighboringTiles(e){const t=e.canonical,i=Math.pow(2,t.z),r=(t.x-1+i)%i,a=0===t.x?e.wrap-1:e.wrap,n=(t.x+1+i)%i,o=t.x+1===i?e.wrap+1:e.wrap,s={};return s[new et.aQ(e.overscaledZ,a,t.z,r,t.y).key]={backfilled:!1},s[new et.aQ(e.overscaledZ,o,t.z,n,t.y).key]={backfilled:!1},0{if(this._loaded=!0,this._pendingLoad=null,e)this.fire(new et.f(e));else{const e={dataType:"source",sourceDataType:this._metadataFired?"content":"metadata"};this._collectResourceTiming&&t&&t.resourceTiming&&t.resourceTiming[this.id]&&(e.resourceTiming=t.resourceTiming[this.id]),i&&(this._partialReload=!0),this.fire(new et.g("data",e)),this._partialReload=!1,this._metadataFired=!0}this._coalesce&&(this._updateWorkerData(i),this._coalesce=!1)})}}loaded(){return this._loaded}loadTile(i,r){const a=i.actor?"reloadTile":"loadTile",e=(i.actor=this.actor,this.map.style?this.map.style.getLut(this.scope):null),n=this._partialReload,t={type:this.type,uid:i.uid,tileID:i.tileID,tileZoom:i.tileZoom,zoom:i.tileID.overscaledZ,maxZoom:this.maxzoom,tileSize:this.tileSize,source:this.id,lut:e?{image:e.image.clone()}:null,scope:this.scope,pixelRatio:et.e.devicePixelRatio,showCollisionBoxes:this.map.showCollisionBoxes,promoteId:this.promoteId,brightness:this.map.style&&this.map.style.getBrightness()||0,partial:n};i.request=this.actor.send(a,t,(e,t)=>n&&!t?(i.state="loaded",r(null)):(delete i.request,i.destroy(),i.aborted?r(null):e?r(e):(i.loadVectorData(t,this.map.painter,"reloadTile"==a),r(null))),void 0,"loadTile"==a)}abortTile(e){e.request&&(e.request.cancel(),delete e.request),e.aborted=!0}unloadTile(e,t){this.actor.send("removeTile",{uid:e.uid,type:this.type,source:this.id,scope:this.scope}),e.destroy()}onRemove(e){this._pendingLoad&&this._pendingLoad.cancel()}serialize(){return et.Q({},this._options,{type:this.type,data:this._data})}hasTransition(){return!1}},video:class extends et.bo{constructor(e,t,i,r){super(e,t,i,r),this.roundZoom=!0,this.type="video",this.options=t}load(){this._loaded=!1;var e=this.options;this.urls=[];for(const t of e.urls)this.urls.push(this.map._requestManager.transformRequest(t,et.R.Source).url);et.bp(this.urls,(e,t)=>{this._loaded=!0,e?this.fire(new et.f(e)):t&&(this.video=t,this.video.loop=!0,this.video.setAttribute("playsinline",""),this.video.addEventListener("playing",()=>{this.map.triggerRepaint()}),this.map&&this.video.play(),this._finishLoading())})}pause(){this.video&&this.video.pause()}play(){this.video&&this.video.play()}seek(e){if(this.video){const t=this.video.seekable;et.end(0)?this.fire(new et.f(new et.V("sources."+this.id,null,`Playback for this video can be set only between the ${t.start(0)} and ${t.end(0)}-second mark.`))):this.video.currentTime=e}}getVideo(){return this.video}onAdd(e){this.map||(this.map=e,this.load(),this.video&&(this.video.play(),this.setCoordinates(this.coordinates)))}prepare(){if(!(0===Object.keys(this.tiles).length||this.video.readyState<2)){const e=this.map.painter.context,t=e.gl;this.texture?this.video.paused||(this.texture.bind(t.LINEAR,t.CLAMP_TO_EDGE),t.texSubImage2D(t.TEXTURE_2D,0,0,0,t.RGBA,t.UNSIGNED_BYTE,this.video)):(this.texture=new et.T(e,this.video,t.RGBA),this.texture.bind(t.LINEAR,t.CLAMP_TO_EDGE),this.width=this.video.videoWidth,this.height=this.video.videoHeight),this._prepareData(e)}}serialize(){return{type:"video",urls:this.urls,coordinates:this.coordinates}}hasTransition(){return this.video&&!this.video.paused}},image:et.bo,model:class extends et.E{constructor(e,t,i,r){super(),this.id=e,this.type="model",this.models=[],this._loaded=!1,this._options=t}load(){const e=[];for(const r in this._options.models){const a=this._options.models[r],t=et.l(this.map._requestManager.transformRequest(a.uri,et.R.Model).url).then(e=>{if(e){const t=et.c(e),i=new et.M(r,a.position,a.orientation,t);i.computeBoundsAndApplyParent(),this.models.push(i)}}).catch(e=>{this.fire(new et.f(new Error(`Could not load model ${r} from ${a.uri}: `+e.message)))});e.push(t)}return Promise.allSettled(e).then(()=>{this._loaded=!0,this.fire(new et.g("data",{dataType:"source",sourceDataType:"metadata"}))}).catch(e=>{this.fire(new et.f(new Error("Could not load models: "+e.message)))})}onAdd(e){this.map=e,this.load()}hasTransition(){return!1}loaded(){return this._loaded}getModels(){return this.models}loadTile(e,t){}serialize(){return{type:"model"}}},"batched-model":class extends et.E{constructor(e,t,i,r){super(),this.type="batched-model",this.id=e,this.tileSize=512,this._options=t,this.tiles=this._options.tiles,this.maxzoom=t.maxzoom||19,this.minzoom=t.minzoom||0,this.roundZoom=!0,this.usedInConflation=!0,this.dispatcher=i,this.reparseOverscaled=!1,this.scheme="xyz",this._loaded=!1,this.setEventedParent(r)}onAdd(e){this.map=e,this.load()}load(i){this._loaded=!1,this.fire(new et.g("dataloading",{dataType:"source"}));const r=Array.isArray(this.map._language)?this.map._language.join():this.map._language,a=this.map._worldview;this._tileJSONRequest=$t(this._options,this.map._requestManager,r,a,(e,t)=>{this._tileJSONRequest=null,this._loaded=!0,e?(r&&console.warn("Ensure that your requested language string is a valid BCP-47 code or list of codes. Found: "+r),a&&2!==a.length&&console.warn("Requested worldview strings must be a valid ISO alpha-2 code. Found: "+a),this.fire(new et.f(e))):t&&(et.Q(this,t),t.bounds&&(this.tileBounds=new Zt(t.bounds,this.minzoom,this.maxzoom)),et.ao(t.tiles,this.map._requestManager._customAccessToken),this.fire(new et.g("data",{dataType:"source",sourceDataType:"metadata"})),this.fire(new et.g("data",{dataType:"source",sourceDataType:"content"}))),i&&i(e)})}hasTransition(){return!1}hasTile(e){return!this.tileBounds||this.tileBounds.contains(e.canonical)}loaded(){return this._loaded}loadTile(i,r){var e=this.map._requestManager.normalizeTileURL(i.tileID.canonical.url(this.tiles,this.scheme)),e={request:this.map._requestManager.transformRequest(e,et.R.Tile),data:void 0,uid:i.uid,tileID:i.tileID,tileZoom:i.tileZoom,zoom:i.tileID.overscaledZ,tileSize:this.tileSize*i.tileID.overscaleFactor(),type:this.type,source:this.id,scope:this.scope,showCollisionBoxes:this.map.showCollisionBoxes,isSymbolTile:i.isSymbolTile,brightness:this.map.style&&this.map.style.getBrightness()||0};if(i.actor&&"expired"!==i.state)if("loading"===i.state)i.reloadCallback=r;else if(i.buckets){const et=Object.values(i.buckets);for(const i of et)i.dirty=!0;void(i.state="loaded")}else i.request=i.actor.send("reloadTile",e,t.bind(this));else i.actor=this.dispatcher.getActor(),i.request=i.actor.send("loadTile",e,t.bind(this),void 0,!0);function t(e,t){return i.aborted?r(null):e&&404!==e.status?r(e):(t&&(t.resourceTiming&&(i.resourceTiming=t.resourceTiming),this.map._refreshExpiredTiles&&i.setExpiryData(t),i.buckets={...i.buckets,...t.buckets},t.featureIndex&&(i.latestFeatureIndex=t.featureIndex)),i.state="loaded",void r(null))}}serialize(){return et.Q({},this._options)}},canvas:class extends et.bo{constructor(e,t,i,r){super(e,t,i,r),t.coordinates?Array.isArray(t.coordinates)&&4===t.coordinates.length&&!t.coordinates.some(e=>!Array.isArray(e)||2!==e.length||e.some(e=>"number"!=typeof e))||this.fire(new et.f(new et.V("sources."+e,null,'"coordinates" property must be an array of 4 longitude/latitude array pairs'))):this.fire(new et.f(new et.V("sources."+e,null,'missing required property "coordinates"'))),t.animate&&"boolean"!=typeof t.animate&&this.fire(new et.f(new et.V("sources."+e,null,'optional "animate" property must be a boolean value'))),t.canvas?"string"==typeof t.canvas||t.canvas instanceof HTMLCanvasElement||this.fire(new et.f(new et.V("sources."+e,null,'"canvas" must be either a string representing the ID of the canvas element from which to read, or an HTMLCanvasElement instance'))):this.fire(new et.f(new et.V("sources."+e,null,'missing required property "canvas"'))),this.options=t,this.animate=void 0===t.animate||t.animate}load(){this._loaded=!0,this.canvas||(this.canvas=this.options.canvas instanceof HTMLCanvasElement?this.options.canvas:document.getElementById(this.options.canvas)),this.width=this.canvas.width,this.height=this.canvas.height,this._hasInvalidDimensions()?this.fire(new et.f(new Error("Canvas dimensions cannot be less than or equal to zero."))):(this.play=function(){this._playing=!0,this.map.triggerRepaint()},this.pause=function(){this._playing&&(this.prepare(),this._playing=!1)},this._finishLoading())}getCanvas(){return this.canvas}onAdd(e){this.map=e,this.load(),this.canvas&&this.animate&&this.play()}onRemove(e){this.pause()}prepare(){let e=!1;var t;this.canvas.width!==this.width&&(this.width=this.canvas.width,e=!0),this.canvas.height!==this.height&&(this.height=this.canvas.height,e=!0),this._hasInvalidDimensions()||0!==Object.keys(this.tiles).length&&(t=this.map.painter.context,this.texture?!e&&!this._playing||this.texture instanceof et.bq||this.texture.update(this.canvas,{premultiply:!0}):this.texture=new et.T(t,this.canvas,t.gl.RGBA,{premultiply:!0}),this._prepareData(t))}serialize(){return{type:"canvas",coordinates:this.coordinates}}hasTransition(){return this._playing}_hasInvalidDimensions(){for(const e of[this.canvas.width,this.canvas.height])if(isNaN(e)||e<=0)return!0;return!1}},custom:class extends et.E{constructor(e,t,i,r){super(),this.id=e,this.type="custom",this._dataType="raster",this._dispatcher=i,this._implementation=t,this.setEventedParent(r),this.scheme="xyz",this.minzoom=0,this.maxzoom=22,this.tileSize=512,this._loaded=!1,this.roundZoom=!0,this._implementation||this.fire(new et.f(new Error(`Missing implementation for ${this.id} custom source`))),this._implementation.loadTile||this.fire(new et.f(new Error(`Missing loadTile implementation for ${this.id} custom source`))),this._implementation.bounds&&(this.tileBounds=new Zt(this._implementation.bounds,this.minzoom,this.maxzoom)),t.update=this._update.bind(this),t.clearTiles=this._clearTiles.bind(this),t.coveringTiles=this._coveringTiles.bind(this),et.Q(this,et.ai(t,["dataType","scheme","minzoom","maxzoom","tileSize","attribution","minTileCacheSize","maxTileCacheSize"]))}serialize(){return et.ai(this,["type","scheme","minzoom","maxzoom","tileSize","attribution"])}load(){this._loaded=!0,this.fire(new et.g("data",{dataType:"source",sourceDataType:"metadata"})),this.fire(new et.g("data",{dataType:"source",sourceDataType:"content"}))}loaded(){return this._loaded}onAdd(e){this.map=e,this._loaded=!1,this.fire(new et.g("dataloading",{dataType:"source"})),this._implementation.onAdd&&this._implementation.onAdd(e),this.load()}onRemove(e){this._implementation.onRemove&&this._implementation.onRemove(e)}hasTile(e){var t,i,r;return this._implementation.hasTile?({x:t,y:i,z:r}=e.canonical,this._implementation.hasTile({x:t,y:i,z:r})):!this.tileBounds||this.tileBounds.contains(e.canonical)}loadTile(t,i){const{x:e,y:r,z:a}=t.tileID.canonical,n=new AbortController;t.request=Promise.resolve(this._implementation.loadTile({x:e,y:r,z:a},{signal:n.signal})).then(function(e){return delete t.request,t.aborted?(t.state="unloaded",i(null)):void 0===e?(t.state="errored",i(null)):null===e?(this.loadTileData(t,{width:this.tileSize,height:this.tileSize,data:null}),t.state="loaded",i(null)):e instanceof ImageData||e instanceof HTMLCanvasElement||e instanceof ImageBitmap||e instanceof HTMLImageElement?(this.loadTileData(t,e),t.state="loaded",void i(null)):(t.state="errored",i(new Error(`Can't infer data type for ${this.id}, only raster data supported at the moment`)))}.bind(this)).catch(e=>{20!==e.code&&(t.state="errored",i(e))}),t.request.cancel=()=>n.abort()}loadTileData(e,t){e.setTexture(t,this.map.painter)}unloadTile(e,t){if(e.texture&&e.texture instanceof et.T?(e.destroy(!0),e.texture&&e.texture instanceof et.T&&this.map.painter.saveTileTexture(e.texture)):e.destroy(),this._implementation.unloadTile){const{x:et,y:t,z:i}=e.tileID.canonical;this._implementation.unloadTile({x:et,y:t,z:i})}t&&t()}abortTile(e,t){e.request&&e.request.cancel&&(e.request.cancel(),delete e.request),t&&t()}hasTransition(){return!1}_coveringTiles(){return this.map.transform.coveringTiles({tileSize:this.tileSize,minzoom:this.minzoom,maxzoom:this.maxzoom,roundZoom:this.roundZoom}).map(e=>({x:e.canonical.x,y:e.canonical.y,z:e.canonical.z}))}_clearTiles(){var e=et.am(this.id,this.scope);this.map.style.clearSource(e)}_update(){this.fire(new et.g("data",{dataType:"source",sourceDataType:"content"}))}}};class Pi extends et.bx{constructor(e){const t={type:"raster-dem",maxzoom:e.transform.maxZoom},i=new et.by(et.bz(),null),r=Ai("mock-dem",t,i,e.style);super("mock-dem",r,!1),r.setEventedParent(this),this._sourceLoaded=!0}_loadTile(e,t){e.state="loaded",t(null)}}class zi extends et.bx{constructor(e){const t=Ai("proxy",{type:"geojson",maxzoom:e.transform.maxZoom},new et.by(et.bz(),null),e.style);super("proxy",t,!1),t.setEventedParent(this),this.map=this.getSource().map=e,this.used=this._sourceLoaded=!0,this.renderCache=[],this.renderCachePool=[],this.proxyCachedFBO={}}update(i,e,t){if(!i.freezeTileCoverage){var r=(this.transform=i).coveringTiles({tileSize:this._source.tileSize,minzoom:this._source.minzoom,maxzoom:this._source.maxzoom,roundZoom:this._source.roundZoom,reparseOverscaled:this._source.reparseOverscaled}).reduce((e,t)=>{if(e[t.key]="",!this._tiles[t.key]){const e=new et.bA(t,this._source.tileSize*t.overscaleFactor(),i.tileZoom);e.state="loaded",this._tiles[t.key]=e}return e},{});for(const et in this._tiles)et in r||(this.freeFBO(et),this._tiles[et].unloadVectorData(),delete this._tiles[et])}}freeFBO(e){var t=this.proxyCachedFBO[e];void 0!==t&&(t=Object.values(t),this.renderCachePool.push(...t),delete this.proxyCachedFBO[e])}deallocRenderCache(){this.renderCache.forEach(e=>e.fb.destroy()),this.renderCache=[],this.renderCachePool=[],this.proxyCachedFBO={}}}class Di extends et.aQ{constructor(e,t,i){super(e.overscaledZ,e.wrap,e.canonical.z,e.canonical.x,e.canonical.y),this.proxyTileKey=t,this.projMatrix=i}}class Ri extends et.bs{constructor(e,t){super(),this._debugParams={sortTilesHiZFirst:!0,disableRenderCache:!1},e.tp.registerParameter(this._debugParams,["Terrain"],"sortTilesHiZFirst",{},()=>{this._style.map.triggerRepaint()}),e.tp.registerParameter(this._debugParams,["Terrain"],"disableRenderCache",{},()=>{this._style.map.triggerRepaint()}),e.tp.registerButton(["Terrain"],"Invalidate Render Cache",()=>{this.invalidateRenderCache=!0,this._style.map.triggerRepaint()}),this.painter=e,this.terrainTileForTile={},this.prevTerrainTileForTile={};const[i,r,a]=function(){const i=new et.bv,r=new et.bw,a=131,n=(i.reserve(17161),r.reserve(33800),et.a4/128),o=et.a4+n/2,s=o+n;for(let t=-n;to||t<0||t>o?24575:0,n=et.au(Math.round(e),0,et.a4),s=et.au(Math.round(t),0,et.a4);i.emplaceBack(n+a,s)}const l=(e,t)=>{t=t*a+e;r.emplaceBack(t+1,t,t+a),r.emplaceBack(t+a,t+a+1,t+1)};for(let t=1;t<129;t++)for(let e=1;e<129;e++)l(e,t);return[0,129].forEach(t=>{for(let e=0;e<130;e++)l(e,t),l(t,e)}),[i,r,32768]}(),n=e.context;this.gridBuffer=n.createVertexBuffer(i,et.bt.members),this.gridIndexBuffer=n.createIndexBuffer(r),this.gridSegments=et.b.simpleSegment(0,0,i.length,r.length),this.gridNoSkirtSegments=et.b.simpleSegment(0,0,i.length,a),this.proxyCoords=[],this.proxiedCoords={},this._visibleDemTiles=[],this._drapedRenderBatches=[],this._sourceTilesOverlap={},this.proxySourceCache=new zi(t.map),this.orthoMatrix=et.ae.create(),et.ae.ortho(this.orthoMatrix,"globe"===this.painter.transform.projection.name?.015:0,et.a4,0,et.a4,0,1);var o=n.gl;this._overlapStencilMode=new et.ah({func:o.GEQUAL,mask:255},0,255,o.KEEP,o.KEEP,o.REPLACE),this._previousZoom=e.transform.zoom,this.pool=[],this._findCoveringTileCache={},this._tilesDirty={},this.style=t,this._useVertexMorphing=!0,this._exaggeration=1,this._mockSourceCache=new Pi(t.map),this._pendingGroundEffectLayers=[]}set style(e){e.on("data",this._onStyleDataEvent.bind(this)),this._style=e,this._style.map.on("moveend",()=>{this._clearLineLayersFromRenderCache()})}update(e,t,i){if(e&&e.terrain){this._style!==e&&(this.style=e,this._evaluationZoom=void 0);const n=e.terrain.properties,o=0===e.terrain.drapeRenderMode,s=e.terrain.isZoomDependent();this._previousUpdateTimestamp=this.enabled?this._updateTimestamp:void 0,this._updateTimestamp=et.e.now();var r=e.terrain&&e.terrain.scope,a=n.get("source"),e=o?this._mockSourceCache:e.getSourceCache(a,r);e?(this.sourceCache=e,this._exaggeration=s?this.calculateExaggeration(t):n.get("exaggeration"),!t.projection.requiresDraping&&s&&0===this._exaggeration?this._disable():(this.enabled=!0,r=()=>{this.sourceCache.used&&et.w(`Raster DEM source '${this.sourceCache.id}' is used both for terrain and as layer source. +This leads to lower resolution of hillshade. For full hillshade resolution but higher memory consumption, define another raster DEM source.`);var e=this.getScaledDemTileSize();this.sourceCache.update(t,e,!0),this.resetTileLookupCache(this.sourceCache.id)},this.sourceCache.usedForTerrain||(this.resetTileLookupCache(this.sourceCache.id),this.sourceCache.usedForTerrain=!0,r(),this._initializing=!0),r(),t.updateElevation(!0,i),this.resetTileLookupCache(this.proxySourceCache.id),this.proxySourceCache.update(t),this._emptyDEMTextureDirty=!0,this._previousZoom=t.zoom)):et.w(`Couldn't find terrain source "${a}".`)}else this._disable()}calculateExaggeration(e){var t=this._previousCameraAltitude,i=e.getFreeCameraOptions().position.z/e.pixelsPerMeter*e.worldSize,i=(this._previousCameraAltitude=i,null!=t?i-t:Number.MAX_VALUE);if(Math.abs(i)<2)return this._exaggeration;const r=e.zoom,a=this._style.terrain;if(!this._previousUpdateTimestamp)return a.getExaggeration(r);let n=r-this._previousZoom;t=this._previousUpdateTimestamp;let o=r;null!=this._evaluationZoom&&(o=this._evaluationZoom,(n=.5e.fb.destroy()),this.pool=[],this.framebufferCopyTexture&&this.framebufferCopyTexture.destroy()}_source(){return this.enabled?this.sourceCache:null}isUsingMockSource(){return this.sourceCache===this._mockSourceCache}exaggeration(){return this.enabled?this._exaggeration:0}get visibleDemTiles(){return this._visibleDemTiles}get drapeBufferSize(){var e=2*this.proxySourceCache.getSource().tileSize;return[e,e]}set useVertexMorphing(e){this._useVertexMorphing=e}updateTileBinding(e){if(this.enabled){this.prevTerrainTileForTile=this.terrainTileForTile;const n=this.proxySourceCache,o=this.painter.transform,s=(this._initializing&&(this._initializing=0===o._centerAltitude&&-1===this.getAtPointOrZero(et._.fromLngLat(o.center),-1),this._emptyDEMTextureDirty=!this._initializing),this.proxyCoords=n.getIds().map(e=>{const t=n.getTileByID(e).tileID;return t.projMatrix=o.calculateProjMatrix(t.toUnwrapped()),t}));{var t=s;var i=this.painter;const c=i.transform.pointCoordinate(i.transform.getCameraPoint()),h=new et.P(c.x,c.y);t.sort((e,t)=>{if(t.overscaledZ-e.overscaledZ)return t.overscaledZ-e.overscaledZ;const i=new et.P(e.canonical.x+(1<{this.proxyToSource[e.key]={}}),this.terrainTileForTile={},this._style._mergedSourceCaches);for(const et in a){const n=a[et];if(n.used&&(n!==this.sourceCache&&this.resetTileLookupCache(n.id),this._setupProxiedCoordsForOrtho(n,e[et],r),!n.usedForTerrain)){const o=e[et];n.getSource().reparseOverscaled&&this._assignTerrainTiles(o)}}this.proxiedCoords[n.id]=s.map(e=>new Di(e,e.key,this.orthoMatrix)),this._assignTerrainTiles(s),this._prepareDEMTextures(),this._setupDrapedRenderBatches(),this._initFBOPool(),this._setupRenderCache(r),this.renderingToTexture=!1;const l={};this._visibleDemTiles=[];for(const et of this.proxyCoords){const e=this.terrainTileForTile[et.key];if(e){const n=e.tileID.key;n in l||(this._visibleDemTiles.push(e),l[n]=n)}}}}_assignTerrainTiles(e){this._initializing||e.forEach(e=>{var t;this.terrainTileForTile[e.key]||(t=this._findTileCoveringTileID(e,this.sourceCache))&&(this.terrainTileForTile[e.key]=t)})}_prepareDEMTextures(){const e=this.painter.context,t=e.gl;for(const a in this.terrainTileForTile){var i=this.terrainTileForTile[a],r=i.dem;!r||i.demTexture&&!i.needsDEMTextureUpload||(e.activeTexture.set(t.TEXTURE1),qt(this.painter,i,r))}}_prepareDemTileUniforms(e,t,i,r){if(!t||null==t.demTexture)return!1;e=e.tileID.canonical,t=Math.pow(2,t.tileID.canonical.z-e.z),r=r||"";return i["u_dem_tl"+r]=[e.x*t%1,e.y*t%1],i["u_dem_scale"+r]=t,!0}get emptyDEMTexture(){return!this._emptyDEMTextureDirty&&this._emptyDEMTexture?this._emptyDEMTexture:this._updateEmptyDEMTexture()}_getLoadedAreaMinimum(){if(!this.enabled)return 0;let i=0;var e=this._visibleDemTiles.reduce((e,t)=>{if(!t.dem)return e;t=t.dem.tree.minimums[0];return 0e&&e.demTexture&&this.painter.linearFloatFilteringSupported()?a.LINEAR:a.NEAREST;let u=null;if(this.enabled?s&&o?(u=o.demTexture,r.activeTexture.set(a.TEXTURE4),s.demTexture.bind(h(s),a.CLAMP_TO_EDGE),n.u_dem_lerp=l):(o=this.terrainTileForTile[e.tileID.key],u=this._prepareDemTileUniforms(e,o,n)?o.demTexture:this.emptyDEMTexture):u=this.emptyDEMTexture,r.activeTexture.set(a.TEXTURE2),u&&(n.u_dem_size=1===(c=u).size[0]?1:c.size[0]-2,u.bind(h(o),a.CLAMP_TO_EDGE)),this.painter.setupDepthForOcclusion(i&&i.useDepthForOcclusion,t,n),i&&i.useMeterToDem&&o){const e=(1<{if(a!==t){const i=[Ei[t],"PROJECTION_GLOBE_VIEW"];x&&i.push("CUSTOM_ANTIALIASING");e=h.isTileAffectedByFog(e);r=h.getOrCreateProgram("globeRaster",{defines:i,overrideFog:e}),a=t}},b=h.colorModeForRenderPass(),w=new et.af(g.LEQUAL,et.af.ReadWrite,h.depthRangeFor3D),T=(ce.update(f),et.bd(y)),E=[et.ak(y.center.lng),et.al(y.center.lat)],S=h.globeSharedBuffers,M=[y.width*et.e.devicePixelRatio,y.height*et.e.devicePixelRatio],I=Float32Array.from(y.globeMatrix),A={useDenormalizedUpVectorScale:!0};{const y=h.transform,x=Si(y.zoom,u.exaggeration(),u.sourceCache._source.tileSize);a=-1;var F=g.TRIANGLES;for(const e of p){const p=d.getTile(e),Z=et.ah.disabled,C=u.prevTerrainTileForTile[e.key],P=u.terrainTileForTile[e.key];Ti(C,P)&&ce.newMorphing(e.key,C,P,f,250),_.activeTexture.set(g.TEXTURE0),p.texture&&p.texture.bind(g.LINEAR,g.CLAMP_TO_EDGE);var i=ce.getMorphValuesForProxy(e.key),N=i?1:0;i&&et.q(A,{morphing:{srcDemTile:i.from,dstDemTile:i.to,phase:et.bb(i.phase)}});const z=et.be(e.canonical),W=et.bf(z.getCenter().lat),H=et.bg(e.canonical,z,W,y.worldSize/y._pixelsPerMercatorPixel),X=et.bh(et.bi(e.canonical)),Y=Xt(y.expandedFarZProjMatrix,I,T,X,et.a2(y.zoom),E,y.frustumCorners.TL,y.frustumCorners.TR,y.frustumCorners.BR,y.frustumCorners.BL,y.globeCenterInViewSpace,y.globeRadius,M,x,y._farZ,H);if(v(e,N),r&&(u.setupElevationDraw(p,r,A),h.uploadCommonUniforms(_,r,e.toUnwrapped()),S)){const[u,d,p]=S.getGridBuffers(W,0!==x);r.draw(h,F,w,Z,b,et.ag.backCCW,Y,"globe_raster",u,d,p)}}}if(S&&(h.renderDefaultNorthPole||h.renderDefaultSouthPole)){const f=["GLOBE_POLES","PROJECTION_GLOBE_VIEW"];x&&f.push("CUSTOM_ANTIALIASING"),r=h.getOrCreateProgram("globeRaster",{defines:f});for(const f of p){const{x:p,y:e,z:x}=f.canonical,v=0===e,T=e===(1<e.draw(h,g.TRIANGLES,w,et.ah.disabled,b,et.ag.disabled,Xt(y.expandedFarZProjMatrix,i,i,ee,0,E,y.frustumCorners.TL,y.frustumCorners.TR,y.frustumCorners.BR,y.frustumCorners.BL,y.globeCenterInViewSpace,y.globeRadius,M,0,y._farZ),"globe_pole_raster",t,K,Q);u.setupElevationDraw(e,r,A),h.uploadCommonUniforms(_,r,f.toUnwrapped()),v&&h.renderDefaultNorthPole&&te(r,I),T&&h.renderDefaultSouthPole&&(i=et.ae.scale(et.ae.create(),i,[1,-1,1]),te(r,J))}}}}else{const D=o.context,R=D.gl;let t,i;const L=o.shadowRenderer,ie=le(o,o.longestCutoffRange),re=o.colorModeForRenderPass(),ae=new et.af(R.LEQUAL,et.af.ReadWrite,o.depthRangeFor3D);ce.update(c);var V=o.transform,U=Si(V.zoom,s.exaggeration(),s.sourceCache._source.tileSize);let r=[0,0,0];if(L){const et=o.style.directionalLight,s=o.style.ambientLight;et&&s&&(r=wi(o.style,et,s))}i=-1;var j=R.TRIANGLES,[G,q]=[s.gridIndexBuffer,s.gridSegments];for(const k of l){const l=B.getTile(k),ne=et.ah.disabled,oe=s.prevTerrainTileForTile[k.key],se=s.terrainTileForTile[k.key];Ti(oe,se)&&ce.newMorphing(k.key,oe,se,c,250),D.activeTexture.set(R.TEXTURE0),l.texture&&l.texture.bind(R.LINEAR,R.CLAMP_TO_EDGE);var m=ce.getMorphValuesForProxy(k.key),$=m?1:0;let e;m&&(e={morphing:{srcDemTile:m.from,dstDemTile:m.to,phase:et.bb(m.phase)}});a={u_matrix:k.projMatrix,u_image0:0,u_skirt_height:(m=k.canonical,a=V.renderWorldCopies,n=void 0,n=1<r}getMinElevationBelowMSL(){let t=0;return this._visibleDemTiles.filter(e=>e.dem).forEach(e=>{t=Math.min(t,e.dem.tree.minimums[0])}),0===t?t:(t-30)*this._exaggeration}raycast(o,s,l){if(!this._visibleDemTiles)return null;const e=this._visibleDemTiles.filter(e=>e.dem).map(e=>{var t=e.tileID,i=1<(null!==e.t?e.t:Number.MAX_VALUE)-(null!==t.t?t.t:Number.MAX_VALUE));for(const t of e){if(null==t.t)return null;const e=t.tile.dem.tree.raycast(t.minx,t.miny,t.maxx,t.maxy,o,s,l);if(null!=e)return e}return null}_createFBO(){const e=this.painter.context,t=e.gl,i=this.drapeBufferSize,r=(e.activeTexture.set(t.TEXTURE0),new et.T(e,{width:i[0],height:i[1],data:null},t.RGBA)),a=(r.bind(t.LINEAR,t.CLAMP_TO_EDGE),e.createFramebuffer(i[0],i[1],!0,null));return a.colorAttachment.set(r.texture),a.depthAttachment=new Ce(e,a.framebuffer),void 0===this._sharedDepthStencil?(this._sharedDepthStencil=e.createRenderbuffer(e.gl.DEPTH_STENCIL,i[0],i[1]),this._stencilRef=0,a.depthAttachment.set(this._sharedDepthStencil),e.clear({stencil:0})):a.depthAttachment.set(this._sharedDepthStencil),e.extTextureFilterAnisotropic&&t.texParameterf(t.TEXTURE_2D,e.extTextureFilterAnisotropic.TEXTURE_MAX_ANISOTROPY_EXT,e.extTextureFilterAnisotropicMax),{fb:a,tex:r,dirty:!1}}_initFBOPool(){for(;this.pool.length{const t=this._style._mergedLayers[e],i=t.isHidden(this.painter.transform.zoom);return"custom"===t.type?!i&&t.shouldRedrape():!i&&t.hasTransition()})}_clearLineLayersFromRenderCache(){let t=!1;for(const et of this._style.getSources())if(et instanceof Ht){t=!0;break}if(t){const i={};for(let e=0;ee>r.end)||et.w("fill-extrusion with flood lighting and/or ground ambient occlusion should be moved to be on top of all draped layers.")}this._drapedRenderBatches=n}}_setupRenderCache(i){const t=this.proxySourceCache;if(this._shouldDisableRenderCache()||this.invalidateRenderCache){if(this.invalidateRenderCache=!1,t.renderCache.length>t.renderCachePool.length){const i=Object.values(t.proxyCachedFBO);t.proxyCachedFBO={};for(let e=0;ee!==s[t]||a[i]&&a[i].hasOwnProperty(e.key))){e=-1;break}++e}for(const i in t.proxyCachedFBO[r.key])t.renderCache[t.proxyCachedFBO[r.key][i]].dirty=e<0||e!==Object.values(n).length}}const o=[...this._drapedRenderBatches];o.sort((e,t)=>t.end-t.start-(e.end-e.start));for(const i of o)for(const a of n)if(!t.proxyCachedFBO[a.key]){let e=t.renderCachePool.pop();void 0===e&&t.renderCache.length<50&&(e=t.renderCache.length,t.renderCache.push(this._createFBO())),void 0!==e&&(t.proxyCachedFBO[a.key]={},t.proxyCachedFBO[a.key][i.start]=e,t.renderCache[e].dirty=!0)}this._tilesDirty={}}}_setupStencil(e,t,i,r){if(r&&this._sourceTilesOverlap[r.id]){const a=this.painter.context,n=a.gl;if(t.length<=1)this._overlapStencilType=!1;else{let e;if(i.isTileClipped())e=t.length,this._overlapStencilMode.test={func:n.EQUAL,mask:255},this._overlapStencilType="Clip";else{if(!(t[0].overscaledZ>t[t.length-1].overscaledZ))return void(this._overlapStencilType=!1);e=1,this._overlapStencilMode.test={func:n.GREATER,mask:255},this._overlapStencilType="Mask"}255t.width||e.y<0||e.y>t.height)return null;const i=[e.x,e.y,1,1],r=(et.aB.transformMat4(i,i,t.pixelMatrixInverse),et.aB.scale(i,i,1/i[3]),i[0]/=t.worldSize,i[1]/=t.worldSize,t._camera.position),a=et.ay(1,t.center.lat),n=[r[0],r[1],r[2]/a,0],o=et.$.subtract([],i.slice(0,3),n);et.$.normalize(o,o);e=this.raycast(n,o,this._exaggeration);return null!==e&&e?(et.$.scaleAndAdd(n,n,o,e),n[3]=n[2],n[2]*=a,n):null}_setupProxiedCoordsForOrtho(t,i,r){if(t.getSource()instanceof et.bo)return this._setupProxiedCoordsForImageSource(t,i,r);this._findCoveringTileCache[t.id]=this._findCoveringTileCache[t.id]||{};const a=this.proxiedCoords[t.id]=[],n=this.proxyCoords;for(let e=0;et.overscaledZ-e.overscaledZ)}_setupProxiedCoordsForImageSource(t,i,r){if(t.getSource().loaded()){const c=this.proxiedCoords[t.id]=[],h=this.proxyCoords,u=t.getSource(),d=u.tileID;if(d){const p=new et.P(d.x,d.y)._div(1<(e.min.x=Math.min(e.min.x,t.x-p.x),e.min.y=Math.min(e.min.y,t.y-p.y),e.max.x=Math.max(e.max.x,t.x-p.x),e.max.y=Math.max(e.max.y,t.y-p.y),e),{min:new et.P(Number.MAX_VALUE,Number.MAX_VALUE),max:new et.P(-Number.MAX_VALUE,-Number.MAX_VALUE)});for(let e=0;el+f.max.x||s+an+f.max.y))){const d=this._createProxiedId(u,h,r[u.key]&&r[u.key][t.id]),p=this.proxyToSource[u.key][t.id];p?p.push(d):this.proxyToSource[u.key][t.id]=[d],c.push(d)}}}var a,n,o,s,l}}}_createProxiedId(r,a,n){let o=this.orthoMatrix;if(n){const et=n.find(e=>e.key===a.tileID.key);if(et)return et}if(a.tileID.key!==r.key){const n=r.canonical.z-a.tileID.canonical.z;let e,t,i;o=et.ae.create();var s=a.tileID.wrap-r.wrap<>n,t=e*((a.tileID.canonical.x<=r){const i=e.canonical.z-r;t.getSource().reparseOverscaled?(o=Math.max(e.canonical.z+2,t.transform.tileZoom),n=new et.aQ(o,e.wrap,r,e.canonical.x>>i,e.canonical.y>>i)):0!=i&&(o=r,n=new et.aQ(o,e.wrap,r,e.canonical.x>>i,e.canonical.y>>i))}n.key!==e.key&&(l.push(n.key),i=t.getTile(n))}var c=t=>{l.forEach(e=>{r[e]=t}),l.length=0};for(--o;o>=s&&(!i||!i.hasData());o--){i&&c(i.tileID.key);const et=n.calculateScaledKey(o);if((i=t.getTileByID(et))&&i.hasData())break;const e=r[et];if(null===e)break;void 0===e?l.push(et):i=t.getTileByID(e)}return c(i?i.tileID.key:null),i&&i.hasData()?i:null}findDEMTileFor(e){return this.enabled?this._findTileCoveringTileID(e,this.sourceCache):null}prepareDrawTile(){this.renderedToTile=!0}_clearRenderCacheForTile(e,t){let i=this._tilesDirty[e];(i=i||(this._tilesDirty[e]={}))[t.key]=!0}}const Li=["fill","fillOutline","fillPattern","line","linePattern","background","backgroundPattern","hillshade","raster"],ki=["stars","fillExtrusion","fillExtrusionGroundEffect","model","symbolSDF","symbolIcon","symbolTextAndIcon"];class Oi{static cacheKey(e,t,i,r){let a=""+t+(r?r.cacheKey:"");for(const t of i)e.usedDefines.includes(t)&&(a+="/"+t);return a}constructor(t,e,i,r,a,n){const o=t.gl,s=(this.program=o.createProgram(),this.configuration=r,this.name=e,this.fixedDefines=[...n],r?r.getBinderAttributes():[]),l=(i.staticAttributes||[]).concat(s);let c=r?r.defines():[];var h="#version 300 es\n";let u=h+(c=c.concat(n.map(e=>"#define "+e))).concat("precision mediump float;",Vt,Nt.fragmentSource).join("\n");for(const et of i.fragmentIncludes)u+=` +`+Bt[et];u+=` +`+i.fragmentSource;let d=h+c.concat("precision highp float;",Vt,Nt.vertexSource).join("\n");for(const et of i.vertexIncludes)d+=` +`+Bt[et];d+=` +`+i.vertexSource;h=o.createShader(o.FRAGMENT_SHADER);if(o.isContextLost())this.failedToCreate=!0;else{o.shaderSource(h,u),o.compileShader(h),o.attachShader(this.program,h);var i=o.createShader(o.VERTEX_SHADER);if(o.isContextLost())this.failedToCreate=!0;else{o.shaderSource(i,d),o.compileShader(i),o.attachShader(this.program,i),this.attributes={},this.numAttributes=l.length;for(let e=0;e{if(t[e]&&i[e])for(const r in t[e])i[e][r]&&i[e][r].set(i.program,r,t[e][r].current)}),l=(l&&l.setUniforms(e.program,d,e.binderUniforms,o,{zoom:s}),u("fixedUniforms",this,e),u("terrainUniforms",this,e),u("globeUniforms",this,e),u("fogUniforms",this,e),u("lightsUniforms",this,e),u("shadowUniforms",this,e),f.bind(),d.setColorMode(new et.a([p.ONE,p.ONE_MINUS_SRC_ALPHA,p.ZERO,p.ONE],et.C.transparent,[!0,!0,!0,!1])),d.setDepthMode(new et.af(t.func===p.LESS?p.LEQUAL:t.func,et.af.ReadOnly,t.range)),d.setStencilMode(et.ah.disabled),3*n.primitiveLength*2),o=3*n.primitiveOffset*2*2;c&&1>16,r>>16],u_pixel_coord_lower:[65535&i,65535&r]}}const Fi=et.ae.create(),Ni=(e,t,i,r,a,n,o,s,l,c,h,u,d,p,f,m,_,g)=>{const y=t.style.light,x=y.properties.get("position"),v=[x.x,x.y,x.z],b=et.bE.create(),w=("viewport"===y.properties.get("anchor")&&(et.bE.fromRotation(b,-t.transform.angle),et.$.transformMat3(v,v,b)),y.properties.get("color")),T=t.transform,E={u_matrix:e,u_lightpos:v,u_lightintensity:y.properties.get("intensity"),u_lightcolor:[w.r,w.g,w.b],u_vertical_gradient:+i,u_opacity:r,u_tile_id:[0,0,0],u_zoom_transition:0,u_inv_rot_matrix:Fi,u_merc_center:[0,0],u_up_dir:[0,0,0],u_height_lift:0,u_ao:a,u_edge_radius:n,u_alignment:o,u_width_scale:s,u_flood_light_color:p,u_vertical_scale:f,u_flood_light_intensity:m,u_ground_shadow_factor:_,u_emissive_strength:g};return"globe"===T.projection.name&&(E.u_tile_id=[l.canonical.x,l.canonical.y,1<{e=Ni(e,t,i,r,a,n,o,s,l,h,u,d,p,f,m,1,[0,0,0],0),i={u_height_factor:-Math.pow(2,l.overscaledZ)/c.tileSize/8};return et.Q(e,Bi(t,c),i)},Ui=(e,t)=>({u_matrix:e,u_emissive_strength:t}),ji=(e,t,i,r)=>et.Q(Ui(e,t),Bi(i,r)),Gi=(e,t,i,r,a)=>et.Q(ji(e,t,i,r),{u_world:a}),qi=(e,t,i=1)=>({u_matrix:e,u_color:t.toRenderColor(null),u_overlay:0,u_overlay_scale:i}),$i=et.ae.create();function Zi(e,[t,i,r,a],[n,o]){if(n===o)return[0,0,0,0];e=255*(e-1)/(e*(o-n));return[t*e,i*e,r*e,a*e]}function Wi(e,t,[i,r]){return i===r?0:.5/e+(t-i)*(e-1)/(e*(r-i))}const Hi=(e,t,i,r,a,n,o,s,l,c,h,u,d,p,f,m,_,g,y,x,v)=>({u_matrix:e,u_normalize_matrix:t,u_globe_matrix:i,u_merc_matrix:r,u_grid_matrix:a,u_tl_parent:n,u_scale_parent:c,u_fade_t:h.mix,u_opacity:h.opacity*u.paint.get("raster-opacity"),u_image0:0,u_image1:1,u_brightness_low:u.paint.get("raster-brightness-min"),u_brightness_high:u.paint.get("raster-brightness-max"),u_saturation_factor:et.bG(u.paint.get("raster-saturation")),u_contrast_factor:et.bH(u.paint.get("raster-contrast")),u_spin_weights:function(e){e*=Math.PI/180;var t=Math.sin(e),e=Math.cos(e);return[(2*e+1)/3,(-Math.sqrt(3)*t-e+1)/3,(Math.sqrt(3)*t-e+1)/3]}(u.paint.get("raster-hue-rotate")),u_perspective_transform:d,u_raster_elevation:p,u_zoom_transition:o,u_merc_center:s,u_cutoff_params:l,u_colorization_mix:Zi(et.bI,m,g),u_colorization_offset:Wi(et.bI,_,g),u_color_ramp:f,u_texture_offset:[x/(y+2*x),y/(y+2*x)],u_texture_res:[y+2*x,y+2*x],u_emissive_strength:v});const Xi=et.ae.create(),Yi=(e,t,i,r,a,n,o,s,l,c,h,u,d,p,f,m,_,g)=>{const y=a.transform,x={u_is_size_zoom_constant:+("constant"===e||"source"===e),u_is_size_feature_constant:+("constant"===e||"camera"===e),u_size_t:t?t.uSizeT:0,u_size:t?t.uSize:0,u_camera_to_center_distance:y.getCameraToCenterDistance(m),u_rotate_symbol:+i,u_aspect_ratio:y.width/y.height,u_fade_change:a.options.fadeDuration?a.symbolFadeChange:1,u_matrix:n,u_label_plane_matrix:o,u_coord_matrix:s,u_is_text:+l,u_pitch_with_map:+r,u_texsize:c,u_texture:0,u_tile_id:[0,0,0],u_zoom_transition:0,u_inv_rot_matrix:Xi,u_merc_center:[0,0],u_camera_forward:[0,0,0],u_ecef_origin:[0,0,0],u_tile_matrix:Xi,u_up_vector:[0,-1,0],u_color_adj_mat:_,u_icon_transition:g||0};return"globe"===m.name&&(x.u_tile_id=[h.canonical.x,h.canonical.y,1<et.Q(Yi(e,t,i,r,a,n,o,s,l,c,u,d,p,f,m,_),{u_gamma_scale:r?a.transform.getCameraToCenterDistance(_)*Math.cos(a.terrain?0:a.transform._pitch):1,u_device_pixel_ratio:et.e.devicePixelRatio,u_is_halo:+h,undefined:void 0}),Ki=new Float32Array(et.ae.identity([])),Qi=(e,t,i,r,a,n,o,s,l,c,h,u,d,p=[0,0,0],f)=>{const m=a.style.light,_=m.properties.get("position"),g=[-_.x,-_.y,_.z],y=et.bE.create();"viewport"===m.properties.get("anchor")&&(et.bE.fromRotation(y,-a.transform.angle),et.$.transformMat3(g,g,y));var a="MASK"===h.alphaMode,x=m.properties.get("color").toRenderColor(null),v=d.paint.get("model-ambient-occlusion-intensity"),b=d.paint.get("model-color").constantOr(et.C.white).toRenderColor(null),d=d.paint.get("model-color-mix-intensity").constantOr(0);return{u_matrix:e,u_lighting_matrix:t,u_normal_matrix:i,u_node_matrix:r||Ki,u_lightpos:g,u_lightintensity:m.properties.get("intensity"),u_lightcolor:[x.r,x.g,x.b],u_camera_pos:p,u_opacity:n,u_baseTextureIsAlpha:0,u_alphaMask:+a,u_alphaCutoff:h.alphaCutoff,u_baseColorFactor:[o.r,o.g,o.b,o.a],u_emissiveFactor:[s[0],s[1],s[2],1],u_metallicFactor:l,u_roughnessFactor:c,u_baseColorTexture:w.BaseColor,u_metallicRoughnessTexture:w.MetallicRoughness,u_normalTexture:w.Normal,u_occlusionTexture:w.Occlusion,u_emissionTexture:w.Emission,u_lutTexture:w.LUT,u_color_mix:[b.r,b.g,b.b,d],u_aoIntensity:v,u_emissive_strength:u,u_occlusionTextureTransform:f||[0,0,0,0]}},er=(e,t=Ki,i=Ki)=>({u_matrix:e,u_instance:t,u_node_matrix:i}),tr={fillExtrusion:e=>({u_matrix:new et.a7(e),u_lightpos:new et.ar(e),u_lightintensity:new et.ab(e),u_lightcolor:new et.ar(e),u_vertical_gradient:new et.ab(e),u_opacity:new et.ab(e),u_edge_radius:new et.ab(e),u_alignment:new et.ab(e),u_width_scale:new et.ab(e),u_ao:new et.a9(e),u_tile_id:new et.ar(e),u_zoom_transition:new et.ab(e),u_inv_rot_matrix:new et.a7(e),u_merc_center:new et.a9(e),u_up_dir:new et.ar(e),u_height_lift:new et.ab(e),u_flood_light_color:new et.ar(e),u_vertical_scale:new et.ab(e),u_flood_light_intensity:new et.ab(e),u_ground_shadow_factor:new et.ar(e),u_emissive_strength:new et.ab(e)}),fillExtrusionDepth:e=>({u_matrix:new et.a7(e),u_edge_radius:new et.ab(e),u_alignment:new et.ab(e),u_width_scale:new et.ab(e),u_vertical_scale:new et.ab(e)}),fillExtrusionPattern:e=>({u_matrix:new et.a7(e),u_lightpos:new et.ar(e),u_lightintensity:new et.ab(e),u_lightcolor:new et.ar(e),u_vertical_gradient:new et.ab(e),u_height_factor:new et.ab(e),u_edge_radius:new et.ab(e),u_alignment:new et.ab(e),u_width_scale:new et.ab(e),u_ao:new et.a9(e),u_tile_id:new et.ar(e),u_zoom_transition:new et.ab(e),u_inv_rot_matrix:new et.a7(e),u_merc_center:new et.a9(e),u_up_dir:new et.ar(e),u_height_lift:new et.ab(e),u_image:new et.a8(e),u_texsize:new et.a9(e),u_pixel_coord_upper:new et.a9(e),u_pixel_coord_lower:new et.a9(e),u_tile_units_to_pixels:new et.ab(e),u_opacity:new et.ab(e)}),fillExtrusionGroundEffect:e=>({u_matrix:new et.a7(e),u_opacity:new et.ab(e),u_ao_pass:new et.ab(e),u_meter_to_tile:new et.ab(e),u_ao:new et.a9(e),u_flood_light_intensity:new et.ab(e),u_flood_light_color:new et.ar(e),u_attenuation:new et.ab(e),u_edge_radius:new et.ab(e),u_fb:new et.a8(e),u_fb_size:new et.ab(e)}),fill:e=>({u_matrix:new et.a7(e),u_emissive_strength:new et.ab(e)}),fillPattern:e=>({u_matrix:new et.a7(e),u_emissive_strength:new et.ab(e),u_image:new et.a8(e),u_texsize:new et.a9(e),u_pixel_coord_upper:new et.a9(e),u_pixel_coord_lower:new et.a9(e),u_tile_units_to_pixels:new et.ab(e)}),fillOutline:e=>({u_matrix:new et.a7(e),u_emissive_strength:new et.ab(e),u_world:new et.a9(e)}),fillOutlinePattern:e=>({u_matrix:new et.a7(e),u_emissive_strength:new et.ab(e),u_world:new et.a9(e),u_image:new et.a8(e),u_texsize:new et.a9(e),u_pixel_coord_upper:new et.a9(e),u_pixel_coord_lower:new et.a9(e),u_tile_units_to_pixels:new et.ab(e)}),circle:et.bK,collisionBox:e=>({u_matrix:new et.a7(e),u_camera_to_center_distance:new et.ab(e),u_extrude_scale:new et.a9(e)}),collisionCircle:e=>({u_matrix:new et.a7(e),u_inv_matrix:new et.a7(e),u_camera_to_center_distance:new et.ab(e),u_viewport_size:new et.a9(e)}),debug:e=>({u_color:new et.aa(e),u_matrix:new et.a7(e),u_overlay:new et.a8(e),u_overlay_scale:new et.ab(e)}),clippingMask:e=>({u_matrix:new et.a7(e)}),heatmap:e=>({u_extrude_scale:new et.ab(e),u_intensity:new et.ab(e),u_matrix:new et.a7(e),u_inv_rot_matrix:new et.a7(e),u_merc_center:new et.a9(e),u_tile_id:new et.ar(e),u_zoom_transition:new et.ab(e),u_up_dir:new et.ar(e)}),heatmapTexture:e=>({u_image:new et.a8(e),u_color_ramp:new et.a8(e),u_opacity:new et.ab(e)}),hillshade:e=>({u_matrix:new et.a7(e),u_image:new et.a8(e),u_latrange:new et.a9(e),u_light:new et.a9(e),u_shadow:new et.aa(e),u_highlight:new et.aa(e),u_emissive_strength:new et.ab(e),u_accent:new et.aa(e)}),hillshadePrepare:e=>({u_matrix:new et.a7(e),u_image:new et.a8(e),u_dimension:new et.a9(e),u_zoom:new et.ab(e)}),line:et.bL,linePattern:et.bM,raster:e=>({u_matrix:new et.a7(e),u_normalize_matrix:new et.a7(e),u_globe_matrix:new et.a7(e),u_merc_matrix:new et.a7(e),u_grid_matrix:new et.as(e),u_tl_parent:new et.a9(e),u_scale_parent:new et.ab(e),u_fade_t:new et.ab(e),u_opacity:new et.ab(e),u_image0:new et.a8(e),u_image1:new et.a8(e),u_brightness_low:new et.ab(e),u_brightness_high:new et.ab(e),u_saturation_factor:new et.ab(e),u_contrast_factor:new et.ab(e),u_spin_weights:new et.ar(e),u_perspective_transform:new et.a9(e),u_raster_elevation:new et.ab(e),u_zoom_transition:new et.ab(e),u_merc_center:new et.a9(e),u_cutoff_params:new et.at(e),u_colorization_mix:new et.at(e),u_colorization_offset:new et.ab(e),u_color_ramp:new et.a8(e),u_texture_offset:new et.a9(e),u_texture_res:new et.a9(e),u_emissive_strength:new et.ab(e)}),rasterParticle:e=>({u_matrix:new et.a7(e),u_normalize_matrix:new et.a7(e),u_globe_matrix:new et.a7(e),u_merc_matrix:new et.a7(e),u_grid_matrix:new et.as(e),u_tl_parent:new et.a9(e),u_scale_parent:new et.ab(e),u_fade_t:new et.ab(e),u_opacity:new et.ab(e),u_image0:new et.a8(e),u_image1:new et.a8(e),u_raster_elevation:new et.ab(e),u_zoom_transition:new et.ab(e),u_merc_center:new et.a9(e),u_cutoff_params:new et.at(e)}),rasterParticleTexture:e=>({u_texture:new et.a8(e),u_opacity:new et.ab(e)}),rasterParticleDraw:e=>({u_particle_texture:new et.a8(e),u_particle_texture_side_len:new et.ab(e),u_tile_offset:new et.a9(e),u_velocity:new et.a8(e),u_color_ramp:new et.a8(e),u_velocity_res:new et.a9(e),u_max_speed:new et.ab(e),u_uv_offset:new et.a9(e),u_data_scale:new et.a9(e),u_data_offset:new et.ab(e),u_particle_pos_scale:new et.ab(e),u_particle_pos_offset:new et.a9(e)}),rasterParticleUpdate:e=>({u_particle_texture:new et.a8(e),u_particle_texture_side_len:new et.ab(e),u_velocity:new et.a8(e),u_velocity_res:new et.a9(e),u_max_speed:new et.ab(e),u_speed_factor:new et.ab(e),u_reset_rate:new et.ab(e),u_rand_seed:new et.ab(e),u_uv_offset:new et.a9(e),u_data_scale:new et.a9(e),u_data_offset:new et.ab(e),u_particle_pos_scale:new et.ab(e),u_particle_pos_offset:new et.a9(e)}),symbolIcon:e=>({u_is_size_zoom_constant:new et.a8(e),u_is_size_feature_constant:new et.a8(e),u_size_t:new et.ab(e),u_size:new et.ab(e),u_camera_to_center_distance:new et.ab(e),u_rotate_symbol:new et.a8(e),u_aspect_ratio:new et.ab(e),u_fade_change:new et.ab(e),u_matrix:new et.a7(e),u_label_plane_matrix:new et.a7(e),u_coord_matrix:new et.a7(e),u_is_text:new et.a8(e),u_pitch_with_map:new et.a8(e),u_texsize:new et.a9(e),u_tile_id:new et.ar(e),u_zoom_transition:new et.ab(e),u_inv_rot_matrix:new et.a7(e),u_merc_center:new et.a9(e),u_camera_forward:new et.ar(e),u_tile_matrix:new et.a7(e),u_up_vector:new et.ar(e),u_ecef_origin:new et.ar(e),u_texture:new et.a8(e),u_icon_transition:new et.ab(e),u_color_adj_mat:new et.a7(e)}),symbolSDF:e=>({u_is_size_zoom_constant:new et.a8(e),u_is_size_feature_constant:new et.a8(e),u_size_t:new et.ab(e),u_size:new et.ab(e),u_camera_to_center_distance:new et.ab(e),u_rotate_symbol:new et.a8(e),u_aspect_ratio:new et.ab(e),u_fade_change:new et.ab(e),u_matrix:new et.a7(e),u_label_plane_matrix:new et.a7(e),u_coord_matrix:new et.a7(e),u_is_text:new et.a8(e),u_pitch_with_map:new et.a8(e),u_texsize:new et.a9(e),u_texture:new et.a8(e),u_gamma_scale:new et.ab(e),u_device_pixel_ratio:new et.ab(e),u_tile_id:new et.ar(e),u_zoom_transition:new et.ab(e),u_inv_rot_matrix:new et.a7(e),u_merc_center:new et.a9(e),u_camera_forward:new et.ar(e),u_tile_matrix:new et.a7(e),u_up_vector:new et.ar(e),u_ecef_origin:new et.ar(e),u_is_halo:new et.a8(e)}),symbolTextAndIcon:e=>({u_is_size_zoom_constant:new et.a8(e),u_is_size_feature_constant:new et.a8(e),u_size_t:new et.ab(e),u_size:new et.ab(e),u_camera_to_center_distance:new et.ab(e),u_rotate_symbol:new et.a8(e),u_aspect_ratio:new et.ab(e),u_fade_change:new et.ab(e),u_matrix:new et.a7(e),u_label_plane_matrix:new et.a7(e),u_coord_matrix:new et.a7(e),u_is_text:new et.a8(e),u_pitch_with_map:new et.a8(e),u_texsize:new et.a9(e),u_texsize_icon:new et.a9(e),u_texture:new et.a8(e),u_texture_icon:new et.a8(e),u_gamma_scale:new et.ab(e),u_device_pixel_ratio:new et.ab(e),u_is_halo:new et.a8(e)}),background:e=>({u_matrix:new et.a7(e),u_emissive_strength:new et.ab(e),u_opacity:new et.ab(e),u_color:new et.aa(e)}),backgroundPattern:e=>({u_matrix:new et.a7(e),u_emissive_strength:new et.ab(e),u_opacity:new et.ab(e),u_image:new et.a8(e),u_pattern_tl:new et.a9(e),u_pattern_br:new et.a9(e),u_texsize:new et.a9(e),u_pattern_size:new et.a9(e),u_pixel_coord_upper:new et.a9(e),u_pixel_coord_lower:new et.a9(e),u_tile_units_to_pixels:new et.ab(e)}),terrainRaster:e=>({u_matrix:new et.a7(e),u_image0:new et.a8(e),u_skirt_height:new et.ab(e),u_ground_shadow_factor:new et.ar(e)}),skybox:e=>({u_matrix:new et.a7(e),u_sun_direction:new et.ar(e),u_cubemap:new et.a8(e),u_opacity:new et.ab(e),u_temporal_offset:new et.ab(e)}),skyboxGradient:e=>({u_matrix:new et.a7(e),u_color_ramp:new et.a8(e),u_center_direction:new et.ar(e),u_radius:new et.ab(e),u_opacity:new et.ab(e),u_temporal_offset:new et.ab(e)}),skyboxCapture:e=>({u_matrix_3f:new et.as(e),u_sun_direction:new et.ar(e),u_sun_intensity:new et.ab(e),u_color_tint_r:new et.at(e),u_color_tint_m:new et.at(e),u_luminance:new et.ab(e)}),globeRaster:e=>({u_proj_matrix:new et.a7(e),u_globe_matrix:new et.a7(e),u_normalize_matrix:new et.a7(e),u_merc_matrix:new et.a7(e),u_zoom_transition:new et.ab(e),u_merc_center:new et.a9(e),u_image0:new et.a8(e),u_grid_matrix:new et.as(e),u_skirt_height:new et.ab(e),u_far_z_cutoff:new et.ab(e),u_frustum_tl:new et.ar(e),u_frustum_tr:new et.ar(e),u_frustum_br:new et.ar(e),u_frustum_bl:new et.ar(e),u_globe_pos:new et.ar(e),u_globe_radius:new et.ab(e),u_viewport:new et.a9(e)}),globeAtmosphere:e=>({u_frustum_tl:new et.ar(e),u_frustum_tr:new et.ar(e),u_frustum_br:new et.ar(e),u_frustum_bl:new et.ar(e),u_horizon:new et.ab(e),u_transition:new et.ab(e),u_fadeout_range:new et.ab(e),u_color:new et.at(e),u_high_color:new et.at(e),u_space_color:new et.at(e),u_temporal_offset:new et.ab(e),u_horizon_angle:new et.ab(e)}),model:e=>({u_matrix:new et.a7(e),u_lighting_matrix:new et.a7(e),u_normal_matrix:new et.a7(e),u_node_matrix:new et.a7(e),u_lightpos:new et.ar(e),u_lightintensity:new et.ab(e),u_lightcolor:new et.ar(e),u_camera_pos:new et.ar(e),u_opacity:new et.ab(e),u_baseColorFactor:new et.at(e),u_emissiveFactor:new et.at(e),u_metallicFactor:new et.ab(e),u_roughnessFactor:new et.ab(e),u_baseTextureIsAlpha:new et.a8(e),u_alphaMask:new et.a8(e),u_alphaCutoff:new et.ab(e),u_baseColorTexture:new et.a8(e),u_metallicRoughnessTexture:new et.a8(e),u_normalTexture:new et.a8(e),u_occlusionTexture:new et.a8(e),u_emissionTexture:new et.a8(e),u_lutTexture:new et.a8(e),u_color_mix:new et.at(e),u_aoIntensity:new et.ab(e),u_emissive_strength:new et.ab(e),u_occlusionTextureTransform:new et.at(e)}),modelDepth:e=>({u_matrix:new et.a7(e),u_instance:new et.a7(e),u_node_matrix:new et.a7(e)}),groundShadow:e=>({u_matrix:new et.a7(e),u_ground_shadow_factor:new et.ar(e)}),stars:e=>({u_matrix:new et.a7(e),u_up:new et.ar(e),u_right:new et.ar(e),u_intensity_multiplier:new et.ab(e)}),occlusion:e=>({u_matrix:new et.a7(e),u_anchorPos:new et.ar(e),u_screenSizePx:new et.a9(e),u_occluderSizePx:new et.a9(e),u_color:new et.at(e)})};function ir(e,t,i){t=t.createTileMatrix(e,e.worldSize,i.toUnwrapped());return et.ae.multiply(new Float32Array(16),e.projMatrix,t)}function rr(e,t,i){return t.name===i.projection.name?e.projMatrix:ir(i,t,e)}let ar;function nr(i,r,a,n,o,s,t){const e=i.context,l=e.gl,c=i.transform,h=i.getOrCreateProgram("collisionBox"),u=[];let d=0,p=0;for(let e=0;e{i=et.a4/i.tileSize;return{u_matrix:e,u_camera_to_center_distance:t.getCameraToCenterDistance(r),u_extrude_scale:[t.pixelsToGLUnits[0]/i,t.pixelsToGLUnits[1]/i]}})(e,c,_,g.getProjection()),a.id,f.layoutVertexBuffer,f.indexBuffer,f.segments,null,c.zoom,null,[f.collisionVertexBuffer,f.collisionVertexBufferExt]))}}if(t&&u.length){const m=i.getOrCreateProgram("collisionCircle"),_=new et.bN;_.resize(4*d),_._trim();let t=0;for(const et of u)for(let e=0;e{Z.depthOcclusionForSymbolsAndCircles&&(k.hasInitialOcclusionOpacityProperties||L.terrain)&&(e.push("DEPTH_D24"),e.push("DEPTH_OCCLUSION"))},h=()=>{const e=W&&"point"!==k.layout.get("symbol-placement"),t=[],i=e||ie||X;L.terrainRenderModeElevated()&&H&&t.push("PITCH_WITH_MAP_TERRAIN"),U&&(t.push("PROJECTION_GLOBE_VIEW"),i&&t.push("PROJECTED_POS_ON_VIEWPORT")),F.text.zOffsetVertexBuffer&&t.push("Z_OFFSET"),ee(t);var r=F.text.programConfigurations.get(k.id),r=L.getOrCreateProgram(F.iconsInText?"symbolTextAndIcon":"symbolSDF",{config:r,defines:t});let a,n=[0,0],o=null;var s=F.textSizeData,l=(F.iconsInText&&(n=O.imageAtlasTexture?O.imageAtlasTexture.size:[0,0],o=O.imageAtlasTexture||null,a=H||0!==Z.pitch||L.options.rotating||L.options.zooming||"composite"===s.kind||"camera"===s.kind?$.LINEAR:$.NEAREST),O.glyphAtlasTexture?O.glyphAtlasTexture.size:[0,0]),c=et.aE(s,Z.zoom),h=re(G,O.tileID.canonical,H,W,Z,F.getProjection(),q),u=ai(G,O.tileID.canonical,H,W,Z,F.getProjection(),q),d=L.translatePosMatrix(u,O,N,V,!0),p=L.translatePosMatrix(G,O,N,V),f=i?or:h,m=W&&!H&&!e;let _=K;!J&&!Z.mercatorFromTransition||W||(_=sr(Z));var g,y,x,v,b,w,T,E,S,M,I,A=U?_:K,C=F.iconsInText?(C=s.kind,P=c,z=m,D=H,R=L,g=p,y=f,x=d,v=l,b=n,w=B,T=j,E=Y,S=Q,M=A,I=F.getProjection(),et.Q(Ji(C,P,z,D,R,g,y,x,!0,v,!0,w,T,E,S,M,I),{u_texsize_icon:b,u_texture_icon:1})):Ji(s.kind,c,m,H,L,p,f,d,!0,l,!0,B,j,Y,Q,A,F.getProjection()),P=O.glyphAtlasTexture||null,z=$.LINEAR,D=0!==k.paint.get("text-halo-width").constantOr(1),R=L.terrain&&H&&e?et.ae.invert(et.ae.create(),h):or;if(e&&F.text){const et=Z.elevation,e=et?et.getAtTileOffsetFunc(B,Z.center.lat,Z.worldSize,F.getProjection()):null,k=ri(G,O.tileID.canonical,H,W,Z,F.getProjection(),q);oi(F,G,L,!0,k,u,H,te,e,B)}return{program:r,buffers:F.text,uniformValues:C,atlasTexture:P,atlasTextureIcon:o,atlasInterpolation:z,atlasInterpolationIcon:a,isSDF:!0,hasHalo:D,tile:O,labelPlaneMatrixInv:R}},u=F.icon.segments.get().length,d=F.text.segments.get().length,a=u&&!t.onlyText?(()=>{const e=w&&"point"!==k.layout.get("symbol-placement"),t=[];ee(t);var i=e||X,r=k.paint.get("icon-image-cross-fade").constantOr(0),a=(L.terrainRenderModeElevated()&&T&&t.push("PITCH_WITH_MAP_TERRAIN"),U&&(t.push("PROJECTION_GLOBE_VIEW"),i&&t.push("PROJECTED_POS_ON_VIEWPORT")),0e.sortKey-t.sortKey);for(const et of r){const e=et.state;if(e)if(L.terrain?L.terrain.setupElevationDraw(e.tile,e.program,{useDepthForOcclusion:Z.depthOcclusionForSymbolsAndCircles,labelPlaneMatrixInv:e.labelPlaneMatrixInv}):L.setupDepthForOcclusion(Z.depthOcclusionForSymbolsAndCircles,e.program),i.activeTexture.set($.TEXTURE0),e.atlasTexture&&e.atlasTexture.bind(e.atlasInterpolation,$.CLAMP_TO_EDGE,!0),e.atlasTextureIcon&&(i.activeTexture.set($.TEXTURE1),e.atlasTextureIcon&&e.atlasTextureIcon.bind(e.atlasInterpolationIcon,$.CLAMP_TO_EDGE,!0)),L.uploadCommonLightUniforms(L.context,e.program),e.hasHalo){const O=e.uniformValues;O.u_is_halo=1,hr(e.buffers,et.segments,k,L,e.program,X,B,F,O,2),O.u_is_halo=0}else{if(e.isSDF){const O=e.uniformValues;e.hasHalo&&(O.u_is_halo=1,hr(e.buffers,et.segments,k,L,e.program,X,B,F,O,1)),O.u_is_halo=0}hr(e.buffers,et.segments,k,L,e.program,X,B,F,e.uniformValues,1)}}}function hr(e,t,i,r,a,n,o,s,l,c){var h=[e.dynamicLayoutVertexBuffer,e.opacityVertexBuffer,e.iconTransitioningVertexBuffer,e.globeExtVertexBuffer,e.zOffsetVertexBuffer];a.draw(r,r.context.gl.TRIANGLES,n,o,s,et.ag.disabled,l,i.id,e.layoutVertexBuffer,e.indexBuffer,t,i.paint,r.transform.zoom,e.programConfigurations.get(i.id),h,c)}function ur(e,t,i,r,a,n,o){const s=e.context.gl,l=i.paint.get("fill-pattern"),c=l&&l.constantOr(1);let h,u,d,p,f;h=o?(u=c&&!i.getPaintProperty("fill-outline-color")?"fillOutlinePattern":"fillOutline",s.LINES):(u=c?"fillPattern":"fill",s.TRIANGLES);for(const y of r){const r=t.getTile(y);if(!c||r.patternsLoaded()){const x=r.getBucket(i);if(x){e.prepareDrawTile();const v=x.programConfigurations.get(i.id),b=e.isTileAffectedByFog(y),w=e.getOrCreateProgram(u,{config:v,overrideFog:b}),T=(c&&(e.context.activeTexture.set(s.TEXTURE0),r.imageAtlasTexture&&r.imageAtlasTexture.bind(s.LINEAR,s.CLAMP_TO_EDGE),v.updatePaintBuffers()),l.constantOr(null));if(T&&r.imageAtlas){const et=r.imageAtlas.patternPositions[T.toString()];et&&v.setConstantPatternPositions(et)}var m=e.translatePosMatrix(y.projMatrix,r,i.paint.get("fill-translate"),i.paint.get("fill-translate-anchor")),_=i.paint.get("fill-emissive-strength");if(o){p=x.indexBuffer2,f=x.segments2;const et=e.terrain&&e.terrain.renderingToTexture?e.terrain.drapeBufferSize:[s.drawingBufferWidth,s.drawingBufferHeight];d="fillOutlinePattern"===u&&c?Gi(m,_,e,r,et):(g=et,{u_matrix:m,u_world:g,u_emissive_strength:_})}else p=x.indexBuffer,f=x.segments,d=c?ji(m,_,e,r):Ui(m,_);e.uploadCommonUniforms(e.context,w,y.toUnwrapped()),w.draw(e,h,a,e.stencilModeForClipping(y),n,et.ag.disabled,d,i.id,x.layoutVertexBuffer,p,f,i.paint,e.transform.zoom,v,void 0)}}}var g}function dr(r,a,n,o,F,N,V,s){n.resetLayerRenderingStats(r);const l=r.context,c=l.gl,h=r.transform,u=n.paint.get("fill-extrusion-pattern"),d=u.constantOr(1),p=n.paint.get("fill-extrusion-opacity"),f=r.style.enable3dLights(),m=n.paint.get(f&&!d?"fill-extrusion-ambient-occlusion-wall-radius":"fill-extrusion-ambient-occlusion-radius"),_=[n.paint.get("fill-extrusion-ambient-occlusion-intensity"),m],e=n.layout.get("fill-extrusion-edge-radius"),g=0{var e=n.paint.get("fill-extrusion-line-alignment");switch(e){case"inside":return 1;case"outside":return-1;case"center":return 0;default:return et.w("Unsupported value for fill-extrusion-line-alignment: "+e),0}})();let j;const P="shadow"===r.renderPass,z=r.shadowRenderer,D=P&&!!z;r.shadowRenderer&&(r.shadowRenderer.useNormalOffset=!0);let G=[0,0,0];if(z){const et=r.style.directionalLight,a=r.style.ambientLight;et&&a&&(G=wi(r.style,et,a)),j=A.concat(["SHADOWS_SINGLE_CASCADE"])}const q=D?"fillExtrusionDepth":d?"fillExtrusionPattern":"fillExtrusion",R=n.getLayerRenderingStats();for(const f of o){const o=a.getTile(f),m=o.getBucket(n);if(m&&m.projection.name===h.projection.name){let e=!1;z&&(e=0===z.getMaxCascadeForTile(f.toUnwrapped()));const g=r.isTileAffectedByFog(f),D=m.programConfigurations.get(n.id),k=r.getOrCreateProgram(q,{config:D,defines:e?j:A,overrideFog:g});if(r.terrain&&r.terrain.setupElevationDraw(o,k,{useMeterToDem:!0}),!m.centroidVertexBuffer){const et=k.attributes.a_centroid_pos;void 0!==et&&c.vertexAttrib2f(et,0,0)}!P&&z&&z.setupShadows(o.tileID.toUnwrapped(),k,"vector-tile",o.tileID.overscaledZ),d&&(r.context.activeTexture.set(c.TEXTURE0),o.imageAtlasTexture&&o.imageAtlasTexture.bind(c.LINEAR,c.CLAMP_TO_EDGE),D.updatePaintBuffers());const O=u.constantOr(null);if(O&&o.imageAtlas){const et=o.imageAtlas.patternPositions[O.toString()];et&&D.setConstantPatternPositions(et)}var $=n.paint.get("fill-extrusion-vertical-gradient"),L=1/m.tileToMeter;let t;if(P&&z){if(gr(o.tileID,m,r))continue;const et=z.calculateShadowPassMatrixFromTile(o.tileID.toUnwrapped());t={u_matrix:et,u_edge_radius:y,u_alignment:C,u_width_scale:L,u_vertical_scale:S}}else{const et=r.translatePosMatrix(f.expandedProjMatrix,o,n.paint.get("fill-extrusion-translate"),n.paint.get("fill-extrusion-translate-anchor")),a=h.projection.createInversionMatrix(h,f.canonical);t=d?Vi(et,r,$,p,_,y,C,L,f,o,x,b,w,a,T,S):Ni(et,r,$,p,_,y,C,L,f,x,b,w,a,T,S,E,G,U)}r.uploadCommonUniforms(l,k,f.toUnwrapped(),null,I);let i=m.segments;if("mercator"!==h.projection.name||P||(i=m.getVisibleSegments(o.tileID,r.terrain,r.transform.getFrustum(0))).get().length){if(R)if(P)for(const et of i.get())R.numRenderedVerticesInShadowPass+=et.primitiveLength;else for(const et of i.get())R.numRenderedVerticesInTransparentPass+=et.primitiveLength;const B=[];(r.terrain||s)&&B.push(m.centroidVertexBuffer),v&&B.push(m.layoutVertexExtBuffer),M&&B.push(m.wallVertexBuffer),k.draw(r,l.gl.TRIANGLES,F,N,V,et.ag.backCCW,t,n.id,m.layoutVertexBuffer,m.indexBuffer,i,n.paint,r.transform.zoom,D,B)}}}r.shadowRenderer&&(r.shadowRenderer.useNormalOffset=!1)}function S(h,e,u,r,d,p,f,m,_,a,g,y,x,v,b,w,T,t,E){const S=h.context,i=S.gl,n=h.transform,M=h.transform.zoom,I=[],A=le(h,u.paint.get("fill-extrusion-cutoff-fade-range")),C=("clear"===a?(I.push("CLEAR_SUBPASS"),E&&(I.push("CLEAR_FROM_TEXTURE"),S.activeTexture.set(i.TEXTURE0),E.bind(i.LINEAR,i.CLAMP_TO_EDGE))):"sdf"===a&&I.push("SDF_SUBPASS"),T&&I.push("HAS_CENTROID"),A.shouldRenderCutoff&&I.push("RENDER_CUTOFF"),u.layout.get("fill-extrusion-edge-radius")),o=(e,t,i,r,a)=>{const n=t.programConfigurations.get(u.id),o=h.isTileAffectedByFog(e),s=h.getOrCreateProgram("fillExtrusionGroundEffect",{config:n,defines:I,overrideFog:o}),l={u_matrix:r,u_opacity:g,u_ao_pass:_?1:0,u_meter_to_tile:a,u_ao:[y,x*a],u_flood_light_intensity:v,u_flood_light_color:b,u_attenuation:w,u_edge_radius:17<=M?0:C*a,u_fb:0,u_fb_size:E?E.size[0]:0},c=[];T&&c.push(t.hiddenByLandmarkVertexBuffer),h.uploadCommonUniforms(S,s,e.toUnwrapped(),null,A),s.draw(h,S.gl.TRIANGLES,d,p,f,m,l,u.id,t.vertexBuffer,t.indexBuffer,i,u.paint,M,n,c)};for(const d of r){const r=e.getTile(d),p=r.getBucket(u);if(p&&p.projection.name===n.projection.name&&p.groundEffect&&(!p.groundEffect||p.groundEffect.hasData())){const f=p.groundEffect,m=1/p.tileToMeter;{const et=h.translatePosMatrix(d.projMatrix,r,u.paint.get("fill-extrusion-translate"),u.paint.get("fill-extrusion-translate-anchor")),e=f.getDefaultSegment();o(d,f,e,et,m)}if(t)for(let i=0;i<4;i++){const f=et.b$[i](d),_=e.getTile(f);if(_){const a=_.getBucket(u);if(a&&a.projection.name===n.projection.name&&a.groundEffect&&(!a.groundEffect||a.groundEffect.hasData())){const g=a.groundEffect;let e,t;t=0===i?(e=[-et.a4,0,0],1):1===i?(e=[et.a4,0,0],0):2===i?(e=[0,-et.a4,0],3):(e=[0,et.a4,0],2);const v=g.regionSegments[t];if(v){const b=new Float32Array(16);et.ae.translate(b,d.projMatrix,e),o(d,g,v,h.translatePosMatrix(b,r,u.paint.get("fill-extrusion-translate"),u.paint.get("fill-extrusion-translate-anchor")),m)}}}}}}}function pr(e,a,h,n,o,u,s){0===n.centroidVertexArray.length&&n.createCentroidsBuffer();const d=u?u.findDEMTileFor(h):null;if(d&&d.dem||s){const p=e=>{const t=a.getSource().minzoom,i=e=>{const t=a.getTileByID(e);if(t&&t.hasData())return t.getBucket(o)},r=[0,-1,1];for(const a of r)if(!(e.overscaledZ+a(f[0]=Math.min(e.min.y,t.min.y),f[1]=Math.max(e.max.y,t.max.y),f[2]=et.a4-t.min.x>e.max.x?t.min.x-et.a4:e.max.x,f),_=(e,t)=>(f[0]=Math.min(e.min.x,t.min.x),f[1]=Math.max(e.max.x,t.max.x),f[2]=et.a4-t.min.y>e.max.y?t.min.y-et.a4:e.max.y,f),g=[(e,t)=>m(e,t),(e,t)=>m(t,e),(e,t)=>_(e,t),(e,t)=>_(t,e)],y=(e,t,i,r,a,n,o)=>{if(!u)return 0;const s=[[n?i:e,n?e:i,0],[n?i:t,n?t:i,0]],l=o<0?et.a4+o:o,c=[n?l:(e+t)/2,n?(e+t)/2:l,0];return 0===i&&o<0||0!==i&&0p[0]+3||et[0]>p[0]-3)break;d.showCentroid(t),i++}if(t&&ip[1]-3)&&(e++,++i!==x.length);)t=d.featuresOnBorder[x[i]];if(t=d.featuresOnBorder[x[h]],1 "+r.overscaledZ),e=e+(" "+m.state)+` ${i}kb`;{_=t;a=e;_.initDebugOverlayCanvas();const v=_.debugOverlayCanvas,b=_.context.gl,w=_.debugOverlayCanvas.getContext("2d");w.clearRect(0,0,v.width,v.height),w.shadowColor="white",w.shadowBlur=2,w.lineWidth=1.5,w.strokeStyle="white",w.textBaseline="top",w.font="bold 36px Open Sans, sans-serif",w.fillText(a,5,5),w.strokeText(a,5,5),_.debugOverlayTexture.update(v),_.debugOverlayTexture.bind(b.LINEAR,b.CLAMP_TO_EDGE)}}g=i.getTile(r).tileSize,y=512/Math.min(g,512)*(r.overscaledZ/l.zoom)*.5,x=m._tileDebugTextBuffer||t.debugBuffer,o=m._tileDebugTextIndexBuffer||t.quadTriangleIndexBuffer,a=m._tileDebugTextSegments||t.debugSegments;f.draw(t,c.TRIANGLES,e,n,et.a.alphaBlended,et.ag.disabled,qi(d,et.C.transparent,y),"$debug",x,o,a,null,null,null,[m._globeTileDebugTextBuffer])}function Sr(e,t,i,r){Ir(e,0,t+i/2,e.transform.width,i,r)}function Mr(e,t,i,r){Ir(e,t-i/2,0,i,e.transform.height,r)}function Ir(e,t,i,r,a,n){const o=e.context,s=o.gl;s.enable(s.SCISSOR_TEST),s.scissor(t*et.e.devicePixelRatio,i*et.e.devicePixelRatio,r*et.e.devicePixelRatio,a*et.e.devicePixelRatio),o.clear({color:n}),s.disable(s.SCISSOR_TEST)}const Ar=et.c9([{name:"a_pos_3f",components:3,type:"Float32"}]),Cr=Ar["members"];function _(e,t,i,r){e.emplaceBack(t,i,r)}class Pr{constructor(e){this.vertexArray=new et.ca,this.indices=new et.bw,_(this.vertexArray,-1,-1,1),_(this.vertexArray,1,-1,1),_(this.vertexArray,-1,1,1),_(this.vertexArray,1,1,1),_(this.vertexArray,-1,-1,-1),_(this.vertexArray,1,-1,-1),_(this.vertexArray,-1,1,-1),_(this.vertexArray,1,1,-1),this.indices.emplaceBack(5,1,3),this.indices.emplaceBack(3,7,5),this.indices.emplaceBack(6,2,0),this.indices.emplaceBack(0,4,6),this.indices.emplaceBack(2,6,7),this.indices.emplaceBack(7,3,2),this.indices.emplaceBack(5,4,0),this.indices.emplaceBack(0,1,5),this.indices.emplaceBack(0,2,3),this.indices.emplaceBack(3,1,0),this.indices.emplaceBack(7,6,4),this.indices.emplaceBack(4,5,7),this.vertexBuffer=e.createVertexBuffer(this.vertexArray,Cr),this.indexBuffer=e.createIndexBuffer(this.indices),this.segment=et.b.simpleSegment(0,0,36,12)}}function E(e,t,i,r,a,n){const o=e.context.gl,s=t.paint.get("sky-atmosphere-color"),l=t.paint.get("sky-atmosphere-halo-color"),c=t.paint.get("sky-atmosphere-sun-intensity"),h={u_matrix_3f:et.bE.fromMat4(et.bE.create(),r),u_sun_direction:a,u_sun_intensity:c,u_color_tint_r:[s.r,s.g,s.b,s.a],u_color_tint_m:[l.r,l.g,l.b,l.a],u_luminance:5e-5};o.framebufferTexture2D(o.FRAMEBUFFER,o.COLOR_ATTACHMENT0,o.TEXTURE_CUBE_MAP_POSITIVE_X+n,t.skyboxTexture,0),i.draw(e,o.TRIANGLES,et.af.disabled,et.ah.disabled,et.a.unblended,et.ag.frontCW,h,"skyboxCapture",t.skyboxGeometry.vertexBuffer,t.skyboxGeometry.indexBuffer,t.skyboxGeometry.segment)}const zr=et.c9([{type:"Float32",name:"a_pos",components:3},{type:"Float32",name:"a_uv",components:2}]);class Dr{constructor(e){const t=new et.cb,i=(t.emplaceBack(-1,1,1,0,0),t.emplaceBack(1,1,1,1,0),t.emplaceBack(1,-1,1,1,1),t.emplaceBack(-1,-1,1,0,1),new et.bw);i.emplaceBack(0,1,2),i.emplaceBack(2,3,0),this.vertexBuffer=e.createVertexBuffer(t,zr.members),this.indexBuffer=e.createIndexBuffer(i),this.segments=et.b.simpleSegment(0,0,4,2)}destroy(){this.vertexBuffer.destroy(),this.indexBuffer.destroy(),this.segments.destroy()}}const Rr=et.c9([{type:"Float32",name:"a_pos_3f",components:3},{type:"Float32",name:"a_uv",components:2},{type:"Float32",name:"a_size_scale",components:1},{type:"Float32",name:"a_fade_opacity",components:1}]);class Lr{constructor(){this.starsCount=16e3,this.sizeMultiplier=.15,this.sizeRange=100,this.intensityRange=200}}class kr{constructor(e){this.colorModeAlphaBlendedWriteRGB=new et.a([et.cc,et.cd,et.cc,et.cd],et.C.transparent,[!0,!0,!0,!1]),this.colorModeWriteAlpha=new et.a([et.cc,et.ce,et.cc,et.ce],et.C.transparent,[!1,!1,!1,!0]),this.params=new Lr,this.updateNeeded=!0,e.tp.registerParameter(this.params,["Stars"],"starsCount",{min:100,max:16e3,step:1},()=>{this.updateNeeded=!0}),e.tp.registerParameter(this.params,["Stars"],"sizeMultiplier",{min:.01,max:2,step:.01}),e.tp.registerParameter(this.params,["Stars"],"sizeRange",{min:0,max:200,step:1},()=>{this.updateNeeded=!0}),e.tp.registerParameter(this.params,["Stars"],"intensityRange",{min:0,max:200,step:1},()=>{this.updateNeeded=!0})}update(i){const e=i.context;if(!this.atmosphereBuffer||this.updateNeeded){this.updateNeeded=!1,this.atmosphereBuffer=new Dr(e);const i=this.params.sizeRange,o=this.params.intensityRange,s=function(t){const i=et.ch(30),r=[];for(let e=0;e{const t="globe"===l.projection.name?["PROJECTION_GLOBE_VIEW","FOG"]:["FOG"],i=(e&&t.push("ALPHA_PASS"),n.getOrCreateProgram("globeAtmosphere",{defines:t})),r={u_frustum_tl:l.frustumCorners.TL,u_frustum_tr:l.frustumCorners.TR,u_frustum_br:l.frustumCorners.BR,u_frustum_bl:l.frustumCorners.BL,u_horizon:l.frustumCorners.horizon,u_transition:h,u_fadeout_range:f,u_color:u,u_high_color:d,u_space_color:p,u_temporal_offset:m,u_horizon_angle:_};n.uploadCommonUniforms(o,i);var a=this.atmosphereBuffer;a&&i.draw(n,s.TRIANGLES,c,et.ah.disabled,e?this.colorModeWriteAlpha:this.colorModeAlphaBlendedWriteRGB,et.ag.backCW,r,e?"atmosphere_glow_alpha":"atmosphere_glow",a.vertexBuffer,a.indexBuffer,a.segments)};g(!1),g(!0)}drawStars(e,t){t=et.au(t.properties.get("star-intensity"),0,1);if(0!==t){const o=e.context,s=o.gl,l=e.transform,c=e.getOrCreateProgram("stars"),h=et.aw.identity([]);et.aw.rotateX(h,h,-l._pitch),et.aw.rotateZ(h,h,-l.angle),et.aw.rotateX(h,h,et.ac(l._center.lat)),et.aw.rotateY(h,h,-et.ac(l._center.lng));var i=et.ae.fromQuat(new Float32Array(16),h),r=et.ae.multiply([],l.starsProjMatrix,i),i=et.bE.fromMat4([],i),i=et.bE.invert([],i),a=[0,1,0],n=(et.$.transformMat3(a,a,i),et.$.scale(a,a,this.params.sizeMultiplier),[1,0,0]),t=(et.$.transformMat3(n,n,i),et.$.scale(n,n,this.params.sizeMultiplier),i=a,a=n,n=t,{u_matrix:Float32Array.from(r),u_up:i,u_right:a,u_intensity_multiplier:n});e.uploadCommonUniforms(o,c),this.starsVx&&this.starsIdx&&c.draw(e,s.TRIANGLES,et.af.disabled,et.ah.disabled,this.colorModeAlphaBlendedWriteRGB,et.ag.disabled,t,"atmosphere_stars",this.starsVx,this.starsIdx,this.starsSegments)}}}function Or(e,t){var e=[...e],i=t.cameraWorldSizeForFog/t.worldSize,r=et.ae.identity([]);return et.ae.scale(r,r,[i,i,1]),et.ae.multiply(e,r,e),et.ae.multiply(e,t.worldToFogMatrix,e),e}function Br(a,e,t,i,r){const n=t.material,o=i.context,{baseColorTexture:s,metallicRoughnessTexture:l}=n.pbrMetallicRoughness,{normalTexture:c,occlusionTexture:h,emissionTexture:u}=n;function d(e,t,i){if(e&&(a.push(t),o.activeTexture.set(o.gl.TEXTURE0+i),e.gfxTexture)){const{minFilter:a,magFilter:t,wrapS:i,wrapT:r}=e.sampler;e.gfxTexture.bindExtraParam(a,t,i,r)}}d(s,"HAS_TEXTURE_u_baseColorTexture",w.BaseColor),d(l,"HAS_TEXTURE_u_metallicRoughnessTexture",w.MetallicRoughness),d(c,"HAS_TEXTURE_u_normalTexture",w.Normal),d(h,"HAS_TEXTURE_u_occlusionTexture",w.Occlusion),d(u,"HAS_TEXTURE_u_emissionTexture",w.Emission),r&&(r.texture||(r.texture=new et.cj(i.context,r.image,[r.image.height,r.image.height,r.image.height],o.gl.RGBA)),o.activeTexture.set(o.gl.TEXTURE0+w.LUT),r.texture&&r.texture.bind(o.gl.LINEAR,o.gl.CLAMP_TO_EDGE),a.push("APPLY_LUT_ON_GPU")),t.texcoordBuffer&&(a.push("HAS_ATTRIBUTE_a_uv_2f"),e.push(t.texcoordBuffer)),t.colorBuffer&&(a.push(12===t.colorBuffer.itemSize?"HAS_ATTRIBUTE_a_color_3f":"HAS_ATTRIBUTE_a_color_4f"),e.push(t.colorBuffer)),t.normalBuffer&&(a.push("HAS_ATTRIBUTE_a_normal_3f"),e.push(t.normalBuffer)),t.pbrBuffer&&(a.push("HAS_ATTRIBUTE_a_pbr"),a.push("HAS_ATTRIBUTE_a_heightBasedEmissiveStrength"),e.push(t.pbrBuffer)),"OPAQUE"!==n.alphaMode&&"MASK"!==n.alphaMode||a.push("UNPREMULT_TEXTURE_IN_SHADER"),n.defined||a.push("DIFFUSE_SHADED"),a.push("USE_STANDARD_DERIVATIVES")}function Fr(e,t,i,r,a,n){const o=i.paint.get("model-opacity"),s=t.context,l=new et.af(t.context.gl.LEQUAL,et.af.ReadWrite,t.depthRangeFor3D),c=t.transform,h=e.mesh,u=h.material,d=u.pbrMetallicRoughness,p=t.style.fog;var f="pixels"===t.transform.projection.zAxisUnit?[...e.nodeModelMatrix]:et.ae.multiply([],r.zScaleMatrix,e.nodeModelMatrix),r=(et.ae.multiply(f,r.negCameraPosMatrix,f),et.ae.invert([],f));et.ae.transpose(r,r);const m=i.paint.get("model-emissive-strength").constantOr(0),_=Qi(new Float32Array(e.worldViewProjection),new Float32Array(f),new Float32Array(r),null,t,o,d.baseColorFactor.toRenderColor(null),u.emissiveFactor,d.metallicFactor,d.roughnessFactor,u,m,i),g={defines:[]},y=[],x=(Br(g.defines,y,h,t,i.lut),t.shadowRenderer);x&&(x.useNormalOffset=!1);let v=null;if(p){const et=Or(e.nodeModelMatrix,t.transform);if(v=new Float32Array(et),"globe"!==c.projection.name){const e=h.aabb.min,t=h.aabb.max,[i,r]=p.getOpacityForBounds(et,e[0],e[1],t[0],t[1]);g.overrideFog=.05<=i||.05<=r}}f=le(t,i.paint.get("model-cutoff-fade-range"));f.shouldRenderCutoff&&g.defines.push("RENDER_CUTOFF");const b=t.getOrCreateProgram("model",g);t.uploadCommonUniforms(s,b,null,v,f),"shadow"!==t.renderPass&&x&&x.setupShadowsFromMatrix(e.nodeModelMatrix,b),b.draw(t,s.gl.TRIANGLES,l,a,n,h.material.doubleSided?et.ag.disabled:et.ag.backCCW,_,i.id,h.vertexBuffer,h.indexBuffer,h.segments,i.paint,t.transform.zoom,void 0,y)}function Nr(e,t,i,r,a,n,o){var s="globe"===e.projection.name?et.ck(i,e):[...i],l=(et.ae.multiply(s,s,t.matrix),et.ae.multiply([],r,s));if(t.meshes)for(const e of t.meshes)if("BLEND"!==e.material.alphaMode)o.push({mesh:e,depth:0,modelIndex:a,worldViewProjection:l,nodeModelMatrix:s});else{const t=et.$.transformMat4([],e.centroid,l);0e.sortKey-t.sortKey);const y={useDepthForOcclusion:u.depthOcclusionForSymbolsAndCircles};for(const i of g){const{programConfiguration:a,program:e,layoutVertexBuffer:n,globeExtVertexBuffer:o,indexBuffer:s,uniformValues:l,tile:m}=i.state,_=i.segments;t.terrain&&t.terrain.setupElevationDraw(m,e,y),t.uploadCommonUniforms(c,e,m.tileID.toUnwrapped()),e.draw(t,h.TRIANGLES,d,p,f,et.ag.disabled,l,r.id,n,s,_,r.paint,u.zoom,a,[o])}}}},heatmap:function(t,i,r,a){if(0!==r.paint.get("heatmap-opacity"))if("offscreen"===t.renderPass){const u=t.context,d=u.gl,p=et.ah.disabled,f=new et.a([d.ONE,d.ONE,d.ONE,d.ONE],et.C.transparent,[!0,!0,!0,!0]);{var n=u;var o=t;var s=r;var l="globe"===t.transform.projection.name?.5:.25;const v=n.gl,b=o.width*l,w=o.height*l;n.activeTexture.set(v.TEXTURE1),n.viewport.set([0,0,b,w]);let e=s.heatmapFbo;if(!e||e&&(e.width!==b||e.height!==w)){e&&e.destroy();const o=v.createTexture();v.bindTexture(v.TEXTURE_2D,o),v.texParameteri(v.TEXTURE_2D,v.TEXTURE_WRAP_S,v.CLAMP_TO_EDGE),v.texParameteri(v.TEXTURE_2D,v.TEXTURE_WRAP_T,v.CLAMP_TO_EDGE),v.texParameteri(v.TEXTURE_2D,v.TEXTURE_MIN_FILTER,v.LINEAR),v.texParameteri(v.TEXTURE_2D,v.TEXTURE_MAG_FILTER,v.LINEAR),e=s.heatmapFbo=n.createFramebuffer(b,w,!0,null);{l=n;s=o;var c=e;const T=l.gl;T.texImage2D(T.TEXTURE_2D,0,l.extRenderToTextureHalfFloat?T.RGBA16F:T.RGBA,b,w,0,T.RGBA,l.extRenderToTextureHalfFloat?T.HALF_FLOAT:T.UNSIGNED_BYTE,null),c.colorAttachment.set(s)}}else v.bindTexture(v.TEXTURE_2D,e.colorAttachment.get()),n.bindFramebuffer.set(e.framebuffer)}u.clear({color:et.C.transparent});const m=t.transform,_="globe"===m.projection.name,g=_?["PROJECTION_GLOBE_VIEW"]:[],y=_?et.ag.frontCCW:et.ag.disabled,x=[et.ak(m.center.lng),et.al(m.center.lat)];for(let e=0;e{const s=e.transform,l="globe"===s.projection.name,c=l?et.bF(s.zoom,t.canonical)*s._pixelsPerMercatorPixel:et.bD(i,1,n),h={u_matrix:t.projMatrix,u_extrude_scale:c,u_intensity:o,u_inv_rot_matrix:$i,u_merc_center:[0,0],u_tile_id:[0,0,0],u_zoom_transition:0,u_up_dir:[0,0,0]};if(l){h.u_inv_rot_matrix=r,h.u_merc_center=a,h.u_tile_id=[t.canonical.x,t.canonical.y,1<{null!=r&&(r.value=z*_),S.draw(a,y.TRIANGLES,b,e,w,et.ag.disabled,R,o.id,f.layoutVertexBuffer,f.indexBuffer,f.segments,o.paint,a.transform.zoom,m,[f.layoutVertexBuffer2,f.patternVertexBuffer,f.zOffsetVertexBuffer]),null!=r&&(r.value=z)};if(i&&!v){const n=a.stencilModeForClipping(p).ref,o=(0===n&&T&&g.clear({stencil:0}),{func:y.EQUAL,mask:255});R.u_alpha_discard_threshold=.8,d(new et.ah(o,n,255,y.KEEP,y.KEEP,y.INVERT)),R.u_alpha_discard_threshold=0,d(new et.ah(o,n,255,y.KEEP,y.KEEP,y.KEEP))}else i&&v&&(R.u_alpha_discard_threshold=.001),d(v?u:a.stencilModeForClipping(p))}}}i&&(a.resetStencilClippingMasks(),T&&g.clear({stencil:0})),0===_||a.depthOcclusion||T||a.layersWithOcclusionOpacity.push(a.currentLayer),v&&(a.forceTerrainMode=!1)}else et.w(`Occlusion opacity for layer ${o.id} is supported on terrain only if the layer has non-zero line-z-offset.`)}}},fill:function(e,t,i,r){const a=i.paint.get("fill-color"),n=i.paint.get("fill-opacity");if(0!==n.constantOr(1)){const o=i.paint.get("fill-emissive-strength"),s=e.colorModeForDrapableLayerRenderPass(o),l=i.paint.get("fill-pattern"),c=e.opaquePassEnabledForLayer()&&!l.constantOr(1)&&1===a.constantOr(et.C.transparent).a&&1===n.constantOr(0)?"opaque":"translucent";if(e.renderPass===c){const a=e.depthModeForSublayer(1,"opaque"===e.renderPass?et.af.ReadWrite:et.af.ReadOnly);ur(e,t,i,r,a,s,!1)}if("translucent"===e.renderPass&&i.paint.get("fill-antialias")){const a=e.depthModeForSublayer(i.getPaintProperty("fill-outline-color")?2:0,et.af.ReadOnly);ur(e,t,i,r,a,s,!0)}}},"fill-extrusion":function(o,s,l,c){const h=l.paint.get("fill-extrusion-opacity"),t=o.context,u=t.gl,i=o.terrain,r=i&&i.renderingToTexture;if(0!==h){const f=o.conflationActive&&o.style.isLayerClipped(l,s.getSource()),m=o.style.order.indexOf(l.fqid);if(f){var e=o;var a=s;var n=l;var d=c;var p=m;for(const _ of d){const d=a.getTile(_).getBucket(n);d&&(d.updateReplacement(_,e.replacementSource,p),d.uploadCentroid(e.context))}}if(i||f)for(const et of c){const c=s.getTile(et).getBucket(l);c&&pr(o.context,s,et,c,l,i,f)}if("shadow"===o.renderPass&&o.shadowRenderer){const t=o.shadowRenderer;if(!(i&&h<.65&&l._transitionablePaint._values["fill-extrusion-opacity"].value.expression instanceof et.Z)){const u=t.getShadowPassDepthMode(),r=t.getShadowPassColorMode();dr(o,s,l,c,u,et.ah.disabled,r,f)}}else if("translucent"===o.renderPass){const m=!l.paint.get("fill-extrusion-pattern").constantOr(1),g=l.paint.get("fill-extrusion-color").constantOr(et.C.white);if(!r&&0!==g.a){const t=new et.af(o.context.gl.LEQUAL,et.af.ReadWrite,o.depthRangeFor3D);1===h&&m?dr(o,s,l,c,t,et.ah.disabled,et.a.unblended,f):(dr(o,s,l,c,t,et.ah.disabled,et.a.disabled,f),dr(o,s,l,c,t,o.stencilModeFor3D(),o.colorModeForRenderPass(),f),o.resetStencilClippingMasks())}if(o.style.enable3dLights()&&m&&(!i&&"globe"!==o.transform.projection.name||r)){const h=l.paint.get("fill-extrusion-opacity"),m=l.paint.get("fill-extrusion-ambient-occlusion-intensity"),y=l.paint.get("fill-extrusion-ambient-occlusion-ground-radius"),x=l.paint.get("fill-extrusion-flood-light-intensity"),v=l.paint.get("fill-extrusion-flood-light-color").toRenderColor(l.lut).toArray01().slice(0,3),b=0(1-i)*e+i*t,E=e=>{const t=o.depthModeForSublayer(1,et.af.ReadOnly,u.LEQUAL,!0),i=l.paint.get(e?"fill-extrusion-ambient-occlusion-ground-attenuation":"fill-extrusion-flood-light-ground-attenuation"),r=T(.1,3,i),a=o._showOverdrawInspector;if(!a){const i=new et.ah({func:u.ALWAYS,mask:255},255,255,u.KEEP,u.KEEP,u.REPLACE),a=new et.a([u.ONE,u.ONE,u.ONE,u.ONE],et.C.transparent,[!1,!1,!1,!0],u.MIN);S(o,s,l,c,t,i,a,et.ag.disabled,e,"sdf",h,m,y,x,v,r,f,!1)}{const i=a?et.ah.disabled:new et.ah({func:u.EQUAL,mask:255},255,255,u.KEEP,u.DECR,u.DECR),T=a?o.colorModeForRenderPass():new et.a([u.ONE_MINUS_DST_ALPHA,u.DST_ALPHA,u.ONE,u.ONE],et.C.transparent,[!0,!0,!0,!0]);S(o,s,l,c,t,i,T,et.ag.disabled,e,"color",h,m,y,x,v,r,f,!1)}};if(r){const r=(e,t,i)=>{const r=o.depthModeForSublayer(1,et.af.ReadOnly,u.LEQUAL,!1),a=l.paint.get(e?"fill-extrusion-ambient-occlusion-ground-attenuation":"fill-extrusion-flood-light-ground-attenuation"),n=T(.1,3,a);{const i=new et.a([u.ONE,u.ONE,u.ONE,u.ONE],et.C.transparent,[!1,!1,!1,!0]);S(o,s,l,c,r,et.ah.disabled,i,et.ag.disabled,e,"clear",h,m,y,x,v,n,f,t)}{const i=new et.ah({func:u.ALWAYS,mask:255},255,255,u.KEEP,u.KEEP,u.REPLACE),a=new et.a([u.ONE,u.ONE,u.ONE,u.ONE],et.C.transparent,[!1,!1,!1,!0],u.MIN);S(o,s,l,c,r,i,a,et.ag.disabled,e,"sdf",h,m,y,x,v,n,f,t)}{const i=e?u.ZERO:u.ONE_MINUS_DST_ALPHA,a=new et.ah({func:u.EQUAL,mask:255},255,255,u.KEEP,u.DECR,u.DECR),T=new et.a([i,u.DST_ALPHA,u.ONE_MINUS_DST_ALPHA,u.ZERO],et.C.transparent,[!0,!0,!0,!0]);S(o,s,l,c,r,a,T,et.ag.disabled,e,"color",h,m,y,x,v,n,f,t)}{const a=new et.a([u.ONE,u.ONE,u.ONE,e?u.ZERO:u.ONE],et.C.transparent,[!1,!1,!1,!0],e?u.FUNC_ADD:u.MAX);S(o,s,l,c,r,et.ah.disabled,a,et.ag.disabled,e,"clear",h,m,y,x,v,n,f,t,i)}};if(b||w){let e;if(o.prepareDrawTile(),i){const o=i.drapeBufferSize[0],l=i.drapeBufferSize[1];(e=i.framebufferCopyTexture)&&(!e||e.size[0]===o&&e.size[1]===l)||(e&&e.destroy(),e=i.framebufferCopyTexture=new et.T(t,new et.j({width:o,height:l}),u.RGBA)),e.bind(u.LINEAR,u.CLAMP_TO_EDGE),u.copyTexImage2D(u.TEXTURE_2D,0,u.RGBA,0,0,o,l,0)}b&&r(!0,!1,e),w&&r(!1,!0,e)}}else b&&E(!0),w&&E(!1),(b||w)&&o.resetStencilClippingMasks()}}}},hillshade:function(e,t,i,r){if(("offscreen"===e.renderPass||"translucent"===e.renderPass)&&!e.style.disableElevatedTerrain){const c=e.context,h=e.terrain&&e.terrain.renderingToTexture,[u,d]="translucent"!==e.renderPass||h?[{},r]:e.stencilConfigForOverlap(r);for(const r of d){const c=t.getTile(r);if(c.needsHillshadePrepare&&"offscreen"===e.renderPass){a=void 0;n=void 0;o=void 0;s=void 0;l=void 0;void 0;a=void 0;s=void 0;var a=e;var n=c;var o=i;const p=a.context,f=p.gl;if(n.dem){var s=n.dem;if(p.activeTexture.set(f.TEXTURE1),qt(a,n,s),n.demTexture){n.demTexture.bind(f.NEAREST,f.CLAMP_TO_EDGE);var l=s.dim;p.activeTexture.set(f.TEXTURE0);let e=n.hillshadeFBO;if(!e){const a=new et.T(p,{width:l,height:l,data:null},f.RGBA);a.bind(f.LINEAR,f.CLAMP_TO_EDGE),(e=n.hillshadeFBO=p.createFramebuffer(l,l,!0,"renderbuffer")).colorAttachment.set(a.texture)}p.bindFramebuffer.set(e.framebuffer),p.viewport.set([0,0,l,l]);const{tileBoundsBuffer:m,tileBoundsIndexBuffer:_,tileBoundsSegments:g}=a.getMercatorTileBoundsBuffers(),y=[];a.linearFloatFilteringSupported()&&y.push("TERRAIN_DEM_FLOAT_FORMAT"),a.getOrCreateProgram("hillshadePrepare",{defines:y}).draw(a,f.TRIANGLES,et.af.disabled,et.ah.disabled,et.a.unblended,et.ag.disabled,(l=n.tileID,a=s.stride,s=et.ae.create(),et.ae.ortho(s,0,et.a4,-et.a4,0,0,1),et.ae.translate(s,s,[0,-et.a4,0]),{u_matrix:s,u_image:1,u_dimension:[a,a],u_zoom:l.overscaledZ}),o.id,m,_,g),n.needsHillshadePrepare=!1}}}else if("translucent"===e.renderPass){const t=e.depthModeForSublayer(0,et.af.ReadOnly),d=i.paint.get("hillshade-emissive-strength"),x=e.colorModeForDrapableLayerRenderPass(d),v=h&&e.terrain?e.terrain.stencilModeForRTTOverlap(r):u[r.overscaledZ];Gt(e,r,c,i,t,v,x)}}c.viewport.set([0,0,e.width,e.height]),e.resetStencilClippingMasks()}},raster:function(R,L,k,e,t,O){if("translucent"===R.renderPass&&0!==k.paint.get("raster-opacity")){const B="globe"===R.transform.projection.name,F=0!==k.paint.get("raster-elevation"),N=F&&B;if(!R.renderElevatedRasterBackface||N){const V=R.context,U=V.gl,j=L.getSource(),G=function(e,t,i,r){const a=t.paint.get("raster-color"),n="raster-array"===e.type,o=[],s=t.paint.get("raster-resampling"),l=t.paint.get("raster-color-mix");let c=t.paint.get("raster-color-range");var h=[l[0],l[1],l[2],0],u=l[3];let d="nearest"===s?r.NEAREST:r.LINEAR;if(n&&(o.push("RASTER_ARRAY"),a||o.push("RASTER_COLOR"),"linear"===s&&o.push("RASTER_ARRAY_LINEAR"),d=r.NEAREST,!c&&e.rasterLayers)){const et=e.rasterLayers.find(({id:e})=>e===t.sourceLayer);et&&et.fields&&et.fields.range&&(c=et.fields.range)}if(c=c||[0,1],a){o.push("RASTER_COLOR"),i.activeTexture.set(r.TEXTURE2),t.updateColorRamp(c);let e=t.colorRampTexture;(e=e||(t.colorRampTexture=new et.T(i,t.colorRamp,r.RGBA))).bind(r.LINEAR,r.CLAMP_TO_EDGE)}return{mix:h,range:c,offset:u,defines:o,resampling:d}}(j,k,V,U);if(!(j instanceof et.bo)||e.length||B){const q=k.paint.get("raster-emissive-strength"),$=R.colorModeForDrapableLayerRenderPass(q),Z=R.terrain&&R.terrain.renderingToTexture,W=!R.options.moving,H="nearest"===k.paint.get("raster-resampling")?U.NEAREST:U.LINEAR;if(j instanceof et.bo&&!e.length&&(j.onNorthPole||j.onSouthPole)){const e=F?R.stencilModeFor3D():et.ah.disabled;void xr(!!j.onNorthPole,null,R,L,k,q,G,et.ag.disabled,e)}else if(e.length){const[X,i]=j instanceof et.bo||Z?[{},e]:R.stencilConfigForOverlap(e),Y=i[i.length-1].overscaledZ;N&&G.defines.push("PROJECTION_GLOBE_VIEW"),F&&G.defines.push("RENDER_CUTOFF");e=(u,d,p)=>{for(const b of u){const u=b.toUnwrapped(),w=L.getTile(b);if(!Z||w&&w.hasData()){V.activeTexture.set(U.TEXTURE0);var f=function(e,t,i,r){if(e)return t instanceof tt&&e instanceof et.c5?t.getTextureDescriptor(e,i,!0):{texture:e.texture,mix:yr(r.mix),offset:r.offset,buffer:0,tileSize:1}}(w,j,k,G);if(f&&f.texture){const{texture:T,mix:E,offset:S,tileSize:M,buffer:I}=f;let e,t;t=Z?(e=et.af.disabled,b.projMatrix):F?(e=new et.af(U.LEQUAL,et.af.ReadWrite,R.depthRangeFor3D),B?Float32Array.from(R.transform.expandedFarZProjMatrix):R.transform.calculateProjMatrix(u,W)):(e=R.depthModeForSublayer(b.overscaledZ-Y,1===k.paint.get("raster-opacity")?et.af.ReadWrite:et.af.ReadOnly,U.LESS),R.transform.calculateProjMatrix(u,W));var f=R.terrain&&Z?R.terrain.stencilModeForRTTOverlap(b):X[b.overscaledZ],m=O?0:k.paint.get("raster-fade-duration");w.registerFadeDuration(m);const A=L.findLoadedParent(b,0),C=Ii(w,A,L,R.transform,m);let i,r;R.terrain&&R.terrain.prepareDrawTile(),V.activeTexture.set(U.TEXTURE0),T.bind(H,U.CLAMP_TO_EDGE),V.activeTexture.set(U.TEXTURE1),A?(A.texture&&A.texture.bind(H,U.CLAMP_TO_EDGE),i=Math.pow(2,A.tileID.overscaledZ-w.tileID.overscaledZ),r=[w.tileID.canonical.x*i%1,w.tileID.canonical.y*i%1]):T.bind(H,U.CLAMP_TO_EDGE),T.useMipmap&&V.extTextureFilterAnisotropic&&20>>16,2654435769),(Math.imul(e^e>>>16,2654435769)>>>0)/4294967296}const i=h*h,r=new Uint8Array(4*i);for(let e=0;eet.b$[e](o)));Le.push(o);var de=o.canonical.x,pe=o.canonical.y;for(const E of Le){const Ae=he.getTile(Ce?E.wrapped():E);if(Ae){const I=Ae.rasterParticleState;I&&(W=E.canonical.x+(1<e.tileID)),S&&(b.activeTexture.set(w.TEXTURE0),r.imageManager.bind(r.context,n.scope));for(const M of e){const e=r.isTileAffectedByFog(M),I=r.getOrCreateProgram(m,{overrideFog:e}),A=M.toUnwrapped(),C=o?M.projMatrix:r.transform.calculateProjMatrix(A);r.prepareDrawTile();var _=a?a.getTile(M):t?t[M.key]:new et.bA(M,E,T.zoom,r),g=S?(x=C,v=c,h=l,u=n.scope,g=i,y={tileID:M,tileSize:E},et.Q(function(e,t,i){var{width:r,height:a}=t.imageManager.getPixelSize(u),n=Math.pow(2,i.tileID.overscaledZ),o=i.tileSize*Math.pow(2,t.transform.tileZoom)/n,n=o*(i.tileID.canonical.x+i.tileID.wrap*n),o=o*i.tileID.canonical.y;return{u_image:0,u_pattern_tl:e.tl,u_pattern_br:e.br,u_texsize:[r,a],u_pattern_size:e.displaySize,u_tile_units_to_pixels:1/et.bD(i,1,t.transform.tileZoom),u_pixel_coord_upper:[n>>16,o>>16],u_pixel_coord_lower:[65535&n,65535&o]}}(g,r,y),{u_matrix:x,u_emissive_strength:v,u_opacity:h})):{u_matrix:C,u_emissive_strength:c,u_opacity:l,u_color:s.toRenderColor(n.lut)},{tileBoundsBuffer:y,tileBoundsIndexBuffer:x,tileBoundsSegments:v}=(r.uploadCommonUniforms(b,I,A),r.getTileBoundsBuffers(_));I.draw(r,w.TRIANGLES,p,d,f,et.ag.disabled,g,n.id,y,x,v)}}}},sky:function(t,e,i){var r=t._atmosphere?et.a2(t.transform.zoom):1,r=i.paint.get("sky-opacity")*r;if(0!=r){var a=t.context,n=i.paint.get("sky-type"),a=new et.af(a.gl.LEQUAL,et.af.ReadOnly,[0,1]),o=t.frameCounter/1e3%1;if("atmosphere"===n)if("offscreen"===t.renderPass)if(i.needsSkyboxCapture(t)){{var s=t;var l=i;const f=s.context,m=f.gl;let e=l.skyboxFbo;if(!e){e=l.skyboxFbo=f.createFramebuffer(32,32,!0,null),l.skyboxGeometry=new Pr(f),l.skyboxTexture=f.gl.createTexture(),m.bindTexture(m.TEXTURE_CUBE_MAP,l.skyboxTexture),m.texParameteri(m.TEXTURE_CUBE_MAP,m.TEXTURE_WRAP_S,m.CLAMP_TO_EDGE),m.texParameteri(m.TEXTURE_CUBE_MAP,m.TEXTURE_WRAP_T,m.CLAMP_TO_EDGE),m.texParameteri(m.TEXTURE_CUBE_MAP,m.TEXTURE_MIN_FILTER,m.LINEAR),m.texParameteri(m.TEXTURE_CUBE_MAP,m.TEXTURE_MAG_FILTER,m.LINEAR);for(let e=0;e<6;++e)m.texImage2D(m.TEXTURE_CUBE_MAP_POSITIVE_X+e,0,m.RGBA,32,32,0,m.RGBA,m.UNSIGNED_BYTE,null)}f.bindFramebuffer.set(e.framebuffer),f.viewport.set([0,0,32,32]);var c=l.getCenter(s,!0),h=s.getOrCreateProgram("skyboxCapture"),u=new Float64Array(16);et.ae.identity(u),et.ae.rotateY(u,u,.5*-Math.PI),E(s,l,h,u,c,0),et.ae.identity(u),et.ae.rotateY(u,u,.5*Math.PI),E(s,l,h,u,c,1),et.ae.identity(u),et.ae.rotateX(u,u,.5*-Math.PI),E(s,l,h,u,c,2),et.ae.identity(u),et.ae.rotateX(u,u,.5*Math.PI),E(s,l,h,u,c,3),et.ae.identity(u),E(s,l,h,u,c,4),et.ae.identity(u),et.ae.rotateY(u,u,Math.PI),E(s,l,h,u,c,5),f.viewport.set([0,0,s.width,s.height])}return void i.markSkyboxValid(t)}else return;else if("sky"===t.renderPass){l=t;h=i;u=a;c=r;s=o;const _=l.context,g=_.gl,y=l.transform,x=l.getOrCreateProgram("skybox");_.activeTexture.set(g.TEXTURE0),g.bindTexture(g.TEXTURE_CUBE_MAP,h.skyboxTexture);c={u_matrix:y.skyboxMatrix,u_sun_direction:h.getCenter(l,!1),u_cubemap:0,u_opacity:c,u_temporal_offset:s};l.uploadCommonUniforms(_,x),x.draw(l,g.TRIANGLES,u,et.ah.disabled,l.colorModeForRenderPass(),et.ag.backCW,c,"skybox",h.skyboxGeometry.vertexBuffer,h.skyboxGeometry.indexBuffer,h.skyboxGeometry.segment);return}else return;else if("gradient"===n&&"sky"===t.renderPass){n=t;t=i;i=a;a=r;r=o;const v=n.context,b=v.gl,w=n.transform,T=n.getOrCreateProgram("skyboxGradient");t.skyboxGeometry||(t.skyboxGeometry=new Pr(v)),v.activeTexture.set(b.TEXTURE0);let e=t.colorRampTexture;(e=e||(t.colorRampTexture=new et.T(v,t.colorRamp,b.RGBA))).bind(b.LINEAR,b.CLAMP_TO_EDGE);o=w.skyboxMatrix,d=t.getCenter(n,!1),p=t.paint.get("sky-gradient-radius"),a=a,r=r;var d,p,o={u_matrix:o,u_color_ramp:0,u_center_direction:d,u_radius:et.ac(p),u_opacity:a,u_temporal_offset:r};n.uploadCommonUniforms(v,T),T.draw(n,b.TRIANGLES,i,et.ah.disabled,n.colorModeForRenderPass(),et.ag.backCW,o,"skyboxGradient",t.skyboxGeometry.vertexBuffer,t.skyboxGeometry.indexBuffer,t.skyboxGeometry.segment);return}else return}},debug:function(t,i,r,a,n,o){for(let e=0;e{s&&(s.useNormalOffset=!0,l||(s.enabled=!0))}),h=i.getSource();if("light-beam"!==t.renderPass||"batched-model"===h.type){if("vector"===h.type||"geojson"===h.type)return function(e,t,i,r,a){const n=e.transform;if("mercator"!==n.projection.name)return et.w(`Drawing 3D models for ${n.projection.name} projection is not yet implemented`);var o,s,l=n.getFreeCameraOptions().position;if(e.modelManager){const p=e.modelManager,f=(i.modelManager=p,e.shadowRenderer);if(i._unevaluatedLayout._values.hasOwnProperty("model-id")){const m=i._unevaluatedLayout._values["model-id"],_={...i.layout.get("model-id").parameters},g=e.style.order.indexOf(i.fqid);for(const y of r){const r=t.getTile(y).getBucket(i);if(r&&r.projection.name===n.projection.name){var c=r.getModelUris(),c=(c&&!r.modelsRequested&&(p.addModelsFromBucket(c,a),r.modelsRequested=!0),function(e,t){const i=1<c&&(c=et.max)}var e=et.au(r.x,n,o)-r.x,h=et.au(r.y,s,l)-r.y,u=et.ay(c,t.center.lat)-r.z;return t._zoomFromMercatorZ(Math.sqrt(e*e+h*h+u*u))}(y,n));_.zoom=c;const x=m.possiblyEvaluate(_);if(c=e,o=r,s=y,u=void 0,u=o.updateZoomBasedPaintProperties(),s=function(t,i,r){let a,n,o,s=t.terrain?t.terrain.exaggeration():0;if(t.terrain&&0c[1]?s:c,o[0]=i.max[0],s=et.aB.transformMat4([],o,n),l=s[1]c[1]?s:c,o[1]=i.min[1],s=et.aB.transformMat4([],o,n),l=s[1]c[1]?s:c;var e=et.au(r[0],0,1),i=100*t.pixelsPerMeter*et.au(r[1],0,1),r=et.au(r[2],0,1),e=et.$.lerp([],l,c,e),h=Math.tan(.5*t.fovX),h=-e[2]*h;return 0==i?e[1]<-Math.abs(h)?r:1:(h=(-Math.abs(h)-e[1])/i,(e=(e,t,i)=>(1-i)*e+i*t)(1,et.au(e(1,r,h),r,1),et.au((t.pitch-20)/20,0,1)))}(h,c,o.aabb,E)),r*=(_=F,d=y,m=f=p=void 0,p=_.uniformValues.u_cutoff_params[0],f=_.uniformValues.u_cutoff_params[1],m=_.uniformValues.u_cutoff_params[2],_=_.uniformValues.u_cutoff_params[3],f===p||_===m?1:et.au(((d-p)/(f-p)-m)/(_-m),0,1))),0!==r?z.push({nodeInfo:o,depth:y,opacity:r,wvpForNode:g,wvpForTile:i,nodeModelMatrix:t,tileModelMatrix:h}):s.hidden=!0}}w||z.sort((e,t)=>!S||1===e.opacity&&1===t.opacity?e.deptht.depth?-1:1);for(const o of z){const a=o.nodeInfo,r=a.node;var I=et.ae.multiply([],y,o.tileModelMatrix);et.ae.multiply(I,g,I);const x=et.ae.invert([],I),b=(et.ae.transpose(x,x),et.ae.scale(x,x,jr),I=et.ae.multiply(I,I,r.matrix),"light-beam"===n.renderPass),T=j&et.cn.HasMapboxMeshFeatures,E=T?0:a.evaluatedRMEA[0][2];for(let e=0;et.depth-e.depth),"shadow"!==t.renderPass){if(1===n)for(const i of _)Fr(i,t,r,d[i.modelIndex],et.ah.disabled,t.colorModeForRenderPass());else{for(const i of _)Fr(i,t,r,d[i.modelIndex],et.ah.disabled,et.a.disabled);for(const et of _)Fr(et,t,r,d[et.modelIndex],t.stencilModeFor3D(),t.colorModeForRenderPass());t.resetStencilClippingMasks()}for(const i of m)Fr(i,t,r,d[i.modelIndex],et.ah.disabled,t.colorModeForRenderPass());c()}else{for(const et of _)Vr(et.mesh,et.nodeModelMatrix,t,r);for(const et of m)Vr(et.mesh,et.nodeModelMatrix,t,r);c()}}}}}}}},Wr={model:function(e,t,i){const r=t.getSource();if(r.loaded())if("vector"===r.type||"geojson"===r.type)i.modelManager&&i.modelManager.upload(i,"vector"===r.type?e.scope:"");else if("batched-model"!==r.type&&"model"===r.type)for(const e of r.getModels())e.upload(i.context)},raster:function(e,t,i){const r=t.getSource();if(r instanceof tt&&r.loaded()){var a=e.sourceLayer||r.rasterLayerIds&&r.rasterLayerIds[0];if(a){var n=e.paint.get("raster-array-band")||r.getInitialBand(a);if(null!=n)for(const e of t.getIds().map(e=>t.getTileByID(e)))e.updateNeeded(a,n)&&r.prepareTile(e,a,n)}}},"raster-particle":function(e,t,i){const r=t.getSource();if(r instanceof tt&&r.loaded()){var a=e.sourceLayer||r.rasterLayerIds&&r.rasterLayerIds[0];if(a){var n=e.paint.get("raster-particle-array-band")||r.getInitialBand(a);if(null!=n)for(const e of t.getIds().map(e=>t.getTileByID(e)))e.updateNeeded(a,n)&&r.prepareTile(e,a,n)}}}};class Hr{constructor(e,t,i,r){this.context=new ze(e,t),this.transform=i,this._tileTextures={},this.frameCopies=[],this.loadTimeStamps=[],this.tp=r,this._timeStamp=et.e.now(),this._averageFPS=0,this._fpsHistory=[],this._dt=0,this._debugParams={showTerrainProxyTiles:!1,fpsWindow:30,continousRedraw:!1,enabledLayers:{}};t=["fill","line","symbol","circle","heatmap","fill-extrusion","raster","raster-particle","hillshade","model","background","sky"];for(const et of t)this._debugParams.enabledLayers[et]=!0;r.registerParameter(this._debugParams,["Terrain"],"showTerrainProxyTiles",{},()=>{this.style.map.triggerRepaint()}),r.registerParameter(this._debugParams,["FPS"],"fpsWindow",{min:1,max:100,step:1}),r.registerBinding(this._debugParams,["FPS"],"continousRedraw",{readonly:!0,label:"continuous redraw"}),r.registerBinding(this,["FPS"],"_averageFPS",{readonly:!0,label:"value"}),r.registerBinding(this,["FPS"],"_averageFPS",{readonly:!0,label:"graph",view:"graph",min:0,max:200});for(const et of t)r.registerParameter(this._debugParams.enabledLayers,["Debug","Layers"],et);this.occlusionParams=new $r(r),this.setup(),this.numSublayers=et.bx.maxUnderzooming+et.bx.maxOverzooming+1,this.depthEpsilon=1/Math.pow(2,16),this.deferredRenderGpuTimeQueries=[],this.gpuTimers={},this.frameCounter=0,this._backgroundTiles={},this.conflationActive=!1,this.replacementSource=new et.cp,this.longestCutoffRange=0,this.minCutoffZoom=0,this._fogVisible=!1,this._cachedTileFogOpacities={},this._shadowRenderer=new xi(this),this._wireframeDebugCache=new qr,this.renderDefaultNorthPole=!0,this.renderDefaultSouthPole=!0,this.layersWithOcclusionOpacity=[];i=new et.j({width:1,height:1},Uint8Array.of(0,0,0,0));this.emptyDepthTexture=new et.T(this.context,i,e.RGBA)}updateTerrain(e,t){var i=!!e&&!!e.terrain&&this.transform.projection.supportsTerrain;if(i||this._terrain&&this._terrain.enabled){this._terrain||(this._terrain=new Ri(this,e));const r=this._terrain;this.transform.elevation=i?r:null,r.update(e,this.transform,t),this.transform.elevation&&!r.enabled&&(this.transform.elevation=null)}}_updateFog(e){const t=e.fog;var i;!t||"globe"===this.transform.projection.name||t.getOpacity(this.transform.pitch)<1||t.properties.get("horizon-blend")<.03?this.transform.fogCullDistSq=null:([e,i]=t.getFovAdjustedRange(this.transform._fov),this.transform.fogCullDistSq=it.overscaledZ-e.overscaledZ),r=e[e.length-1].overscaledZ,a=e[0].overscaledZ-r+1;if(1this._debugParams.fpsWindow&&this._fpsHistory.splice(0,this._fpsHistory.length-this._debugParams.fpsWindow),this._averageFPS=Math.round(this._fpsHistory.reduce((e,t)=>e+t/this._fpsHistory.length,0))}render(r,a){const n=et.e.now(),o=(this._dt=n-this._timeStamp,this._timeStamp=n,this._wireframeDebugCache.update(this.frameCounter),this._debugParams.continousRedraw=r.map.repaint,this.style=r,this.options=a,this.style._mergedLayers),s=this.style.order.filter(e=>{e=o[e];return!(e.type in this._debugParams.enabledLayers)||this._debugParams.enabledLayers[e.type]});let l=!1,c=!1;for(const et of s){const r=o[et];"circle"===r.type&&(l=!0),"symbol"===r.type&&(r.hasInitialOcclusionOpacityProperties?c=!0:l=!0)}const h=s.map(e=>o[e]),e=this.style._mergedSourceCaches;this.imageManager=r.imageManager,this.modelManager=r.modelManager,this.symbolFadeChange=r.placement.symbolFadeChange(et.e.now()),this.imageManager.beginFrame();let i=0,u=!1;for(const et in e){const r=e[et];r.used&&(r.prepare(this.context),r.getSource().usedInConflation&&++i)}let t=!1;for(const et of h)et.isHidden(this.transform.zoom)||("clip"===et.type&&(t=!0),this.prepareLayer(et));const d={},p={},f={},m={},_={};for(const et in e){const r=e[et];d[et]=r.getVisibleCoordinates(),p[et]=d[et].slice().reverse(),f[et]=r.getVisibleCoordinates(!0).reverse(),m[et]=r.getShadowCasterCoordinates(),_[et]=r.sortCoordinatesByDistance(d[et])}var g,y,x,v,b=e=>{const t=this.style.getLayerSourceCache(e);return t&&t.used?t.getSource():null};if(i||t){const r=[],a=[];let e=0;for(const et of h)this.isSourceForClippingOrConflation(et,b(et))&&(r.push(et),a.push(e)),e++;if(r&&(t||1{if(a.showOverdrawInspector)return et.C.black;const e=this.style.fog;if(e&&this.transform.projection.supportsFog){const a=this.style.getLut(e.scope);var t;if(!S)return t=e.properties.get("color").toRenderColor(a).toArray01(),new et.C(...t);if(S)return t=e.properties.get("space-color").toRenderColor(a).toArray01(),new et.C(...t)}return et.C.transparent})();if(this.context.clear({color:M,depth:1}),this.clearStencil(),this._showOverdrawInspector=a.showOverdrawInspector,this.renderPass="opaque",this.style.fog&&this.transform.projection.supportsFog&&this._atmosphere&&!this._showOverdrawInspector&&S&&this._atmosphere.drawStars(this,this.style.fog),!this.terrain)for(this.currentLayer=s.length-1;0<=this.currentLayer;this.currentLayer--){const et=h[this.currentLayer],a=r.getLayerSourceCache(et);if(!et.isSky()){const n=a?(et.is3D()?_:p)[a.id]:void 0;this._renderTileClippingMasks(et,a,n),this.renderLayer(this,a,et,n)}}if(this.style.fog&&this.transform.projection.supportsFog&&this._atmosphere&&!this._showOverdrawInspector&&S&&this._atmosphere.drawAtmosphereGlow(this,this.style.fog),this.renderPass="sky",(!this._atmosphere||0=this._lastOcclusionLayer&&0{const t=r.getLayerSourceCache(e);t&&!e.isHidden(this.transform.zoom)&&t.getVisibleCoordinates().length&&(!i||i.getSource().maxzoom(1-i)*e+i*t)(1-.3*Math.min(r,1),1,Math.min(n+1,1)),n=o(.92,1,Math.asin(et.au(s[2],-1,1))/Math.PI+.5)*r,o=[0,0,0],et.$.scale(o,i.slice(0,3),n),s=[0,0,0],et.$.scale(s,a.slice(0,3),l[2]),r=[0,0,0],et.$.add(r,o,s),et.ba(r))},t.setLightsUniformValues(e,i)))}uploadCommonUniforms(e,t,i,r,a){if(this.uploadCommonLightUniforms(e,t),!this.terrain||!this.terrain.renderingToTexture){const n=this.style.fog;if(n){const a=n.getOpacity(this.transform.pitch),o=((e,t,i,r,a,n,o,s,l,c,h,u)=>{const d=e.transform,p=t.properties.get("color").toRenderColor(e.style.getLut(t.scope)).toArray01();p[3]=r;var r=e.frameCounter/1e3%1,[f,m]=t.properties.get("vertical-range");return{u_fog_matrix:i?d.calculateFogTileMatrix(i):u||e.identityMat,u_fog_range:t.getFovAdjustedRange(d._fov),u_fog_color:p,u_fog_horizon_blend:t.properties.get("horizon-blend"),u_fog_vertical_limit:[Math.min(f,m),m],u_fog_temporal_offset:r,u_frustum_tl:a,u_frustum_tr:n,u_frustum_br:o,u_frustum_bl:s,u_globe_pos:l,u_globe_radius:c,u_viewport:h,u_globe_transition:et.a2(d.zoom),u_is_globe:+("globe"===d.projection.name)}})(this,n,i,a,this.transform.frustumCorners.TL,this.transform.frustumCorners.TR,this.transform.frustumCorners.BR,this.transform.frustumCorners.BL,this.transform.globeCenterInViewSpace,this.transform.globeRadius,[this.transform.width*et.e.devicePixelRatio,this.transform.height*et.e.devicePixelRatio],r);t.setFogUniformValues(e,o)}a&&t.setCutoffUniformValues(e,a.uniformValues)}}setTileLoadedFlag(e){this.tileLoaded=e}saveCanvasCopy(){var e=this.canvasCopy();e&&(this.frameCopies.push(e),this.tileLoaded=!1)}canvasCopy(){const e=this.context.gl,t=e.createTexture();return e.bindTexture(e.TEXTURE_2D,t),e.copyTexImage2D(e.TEXTURE_2D,0,e.RGBA,0,0,e.drawingBufferWidth,e.drawingBufferHeight,0),t}getCanvasCopiesAndTimestamps(){return{canvasCopies:this.frameCopies,timeStamps:this.loadTimeStamps}}averageElevationNeedsEasing(){if(!this.transform._elevation)return!1;const e=this.style&&this.style.fog;return!!e&&0!==e.getOpacity(this.transform.pitch)}getBackgroundTiles(){const e=this._backgroundTiles,t=this._backgroundTiles={},i=this.transform.coveringTiles({tileSize:512});for(const r of i)t[r.key]=e[r.key]||new et.bA(r,512,this.transform.tileZoom,this);return t}clearBackgroundTiles(){this._backgroundTiles={}}isSourceForClippingOrConflation(e,t){return!(!e.is3D()||e.minzoom&&e.minzoom>this.transform.zoom||(this.style._clipLayerIndices.length||"building"!==e.sourceLayer)&&"clip"!==e.type&&(!t||"batched-model"!==t.type))}isTileAffectedByFog(e){if(!this.style||!this.style.fog)return!1;if("globe"===this.transform.projection.name)return!0;let t=this._cachedTileFogOpacities[e.key];return t||(this._cachedTileFogOpacities[e.key]=t=this.style.fog.getOpacityForTile(e)),.05<=t[0]||.05<=t[1]}setupDepthForOcclusion(e,t,i){const r=this.context,a=r.gl,n=!!i;i=i||{u_dem:2,u_dem_prev:4,u_dem_tl:[0,0],u_dem_tl_prev:[0,0],u_dem_scale:0,u_dem_scale_prev:0,u_dem_size:0,u_dem_lerp:1,u_depth:3,u_depth_size_inv:[0,0],u_depth_range_unpack:[0,1],u_occluder_half_size:16,u_occlusion_depth_offset:-1e-4,u_exaggeration:0},r.activeTexture.set(a.TEXTURE3),e&&this.depthFBO&&this.depthTexture?(this.depthTexture.bind(a.NEAREST,a.CLAMP_TO_EDGE),i.u_depth_size_inv=[1/this.depthFBO.width,1/this.depthFBO.height],i.u_depth_range_unpack=[2/((e=this.depthRangeFor3D)[1]-e[0]),-1-2*e[0]/(e[1]-e[0])],i.u_occluder_half_size=.5*this.occlusionParams.occluderSize,i.u_occlusion_depth_offset=this.occlusionParams.depthOffset):this.emptyDepthTexture.bind(a.NEAREST,a.CLAMP_TO_EDGE),r.activeTexture.set(a.TEXTURE0),n||t.setTerrainUniformValues(r,i)}}class Xr{constructor(e,t,i,r){this.screenBounds=e,this.cameraPoint=t,this._screenRaycastCache={},this._cameraRaycastCache={},this.isAboveHorizon=i,this.screenGeometry=this.bufferedScreenGeometry(0),this.screenGeometryMercator=this._bufferedScreenMercator(0,r)}static createFromScreenPoints(e,t){let i,r;var a;return r=e instanceof et.P||"number"==typeof e[0]?(a=et.P.convert(e),i=[a],t.isPointAboveHorizon(a)):(a=et.P.convert(e[0]),e=et.P.convert(e[1]),i=[a,e],et.cx(a,e).every(e=>t.isPointAboveHorizon(e))),new Xr(i,t.getCameraPoint(),r,t)}isPointQuery(){return 1===this.screenBounds.length}bufferedScreenGeometry(e){return et.cx(this.screenBounds[0],1===this.screenBounds.length?this.screenBounds[0]:this.screenBounds[1],e)}bufferedCameraGeometry(e){const t=this.screenBounds[0],i=1===this.screenBounds.length?this.screenBounds[0].add(new et.P(1,1)):this.screenBounds[1],r=et.cx(t,i,0,!1);return this.cameraPoint.y>i.y&&(this.cameraPoint.x>t.x&&this.cameraPoint.x=i.x?r[2]=this.cameraPoint:this.cameraPoint.x<=t.x&&(r[3]=this.cameraPoint)),et.cy(r,e)}bufferedCameraGeometryGlobe(e){const t=this.screenBounds[0],i=1===this.screenBounds.length?this.screenBounds[0].add(new et.P(1,1)):this.screenBounds[1],r=et.cx(t,i,e),a=this.cameraPoint.clone();switch(3*((a.y>t.y)+(a.y>i.y))+((a.x>t.x)+(a.x>i.x))){case 0:r[0]=a,r[4]=a.clone();break;case 1:r.splice(1,0,a);break;case 2:r[1]=a;break;case 3:r.splice(4,0,a);break;case 5:r.splice(2,0,a);break;case 6:r[3]=a;break;case 7:r.splice(3,0,a);break;case 8:r[2]=a}return r}containsTile(t,e,i,r=0){const a=t.queryPadding/e._pixelsPerMercatorPixel+1,n=i?this._bufferedCameraMercator(a,e):this._bufferedScreenMercator(a,e);let o=t.tileID.wrap+(n.unwrapped?r:0);i=n.polygon.map(e=>et.cz(t.tileTransform,e,o));if(et.cA(i,0,0,et.a4,et.a4)){o=t.tileID.wrap+(this.screenGeometryMercator.unwrapped?r:0);const s=this.screenGeometryMercator.polygon.map(e=>et.cB(t.tileTransform,e,o)),l=s.map(e=>new et.P(e[0],e[1])),c=e.getFreeCameraOptions().position||new et._(0,0,0),h=et.cB(t.tileTransform,c,o),u=s.map(e=>{e=et.$.sub(e,e,h);return et.$.normalize(e,e),new et.aU(h,e)}),d=et.bD(t,1,e.zoom)*e._pixelsPerMercatorPixel;return{queryGeometry:this,tilespaceGeometry:l,tilespaceRays:u,bufferedTilespaceGeometry:i,bufferedTilespaceBounds:((r=et.cC(i)).min.x=et.au(r.min.x,0,et.a4),r.min.y=et.au(r.min.y,0,et.a4),r.max.x=et.au(r.max.x,0,et.a4),r.max.y=et.au(r.max.y,0,et.a4),r),tile:t,tileID:t.tileID,pixelToTileUnitsFactor:d}}}_bufferedScreenMercator(e,t){var i=Jr(e);if(this._screenRaycastCache[i])return this._screenRaycastCache[i];e="globe"===t.projection.name?this._projectAndResample(this.bufferedScreenGeometry(e),t):{polygon:this.bufferedScreenGeometry(e).map(e=>t.pointCoordinate3D(e)),unwrapped:!0};return this._screenRaycastCache[i]=e}_bufferedCameraMercator(e,t){var i=Jr(e);if(this._cameraRaycastCache[i])return this._cameraRaycastCache[i];e="globe"===t.projection.name?this._projectAndResample(this.bufferedCameraGeometryGlobe(e),t):{polygon:this.bufferedCameraGeometry(e).map(e=>t.pointCoordinate3D(e)),unwrapped:!0};return this._cameraRaycastCache[i]=e}_projectAndResample(e,t){var i=function(e,t){var i=et.ae.multiply([],t.pixelMatrix,t.globeMatrix),r=[0,-et.cF,0,1],a=[0,et.cF,0,1],n=[0,0,0,1],i=(et.aB.transformMat4(r,r,i),et.aB.transformMat4(a,a,i),et.aB.transformMat4(n,n,i),new et.P(r[0]/r[3],r[1]/r[3])),o=new et.P(a[0]/a[3],a[1]/a[3]),i=et.cD(e,i)&&r[3]new et.P(g(e.x),e.y)),l=l.map(e=>new et.P(g(e.x),e.y));const c=[...s];0===c.length&&c.push(l[l.length-1]);r=et.a3(c[c.length-1].y,(0===l.length?s:l)[0].y,n),o=i?[new et.P(0,r),new et.P(0,0),new et.P(1,0),new et.P(1,r)]:[new et.P(1,r),new et.P(1,1),new et.P(0,1),new et.P(0,r)];return c.push(...o),0===l.length?c.push(s[0]):c.push(...l),{polygon:c.map(e=>new et._(e.x,e.y)),unwrapped:!1}}(e,t);if(i)return i;const r=function(t,i){let r=!1,a=-1/0,n=0;for(let e=0;ea&&(a=t[e].x,n=e);for(let e=0;e{--e.x}),{polygon:t,unwrapped:r}}(Yr(e,t).map(e=>new et.P(g(e.x),e.y)),t);return{polygon:r.polygon.map(e=>new et._(e.x,e.y)),unwrapped:r.unwrapped}}}function Yr(e,i){return et.cE(e,e=>{var t=i.pointCoordinate3D(e);e.x=t.x,e.y=t.y},1/256)}function g(e){return e<0?1+e%1:e%1}function Jr(e){return 100*e|0}function Kr(r,e,t,i,a,n,o,s=!1){const l=r.tilesIn(i,o,s),c=(l.sort(Qr),[]);for(const i of l)c.push({wrappedTileID:i.tile.tileID.wrapped().key,queryResults:i.tile.queryRenderedFeatures(e,t,r._state,i,a,n,(h=r.transform,u=i.tile.tileID,d=void 0,d=et.ae.identity([]),et.ae.scale(d,d,[.5*h.width,.5*-h.height,1]),et.ae.translate(d,d,[1,-1,0]),et.ae.multiply(d,d,h.calculateProjMatrix(u.toUnwrapped())),Float32Array.from(d)),s)});var h,u,d;const p=function(e){const t={},i={};for(const r of e){const e=r.queryResults,a=r.wrappedTileID,n=i[a]=i[a]||{};for(const i in e){const o=e[i],s=n[i]=n[i]||{},l=t[i]=t[i]||[];for(const e of o)s[e.featureIndex]||(s[e.featureIndex]=!0,l.push(e))}}return t}(c);for(const e in p)p[e].forEach(e=>{const t=e.feature,i=t.layer;i&&"background"!==i.type&&"sky"!==i.type&&"slot"!==i.type&&(t.source=i.source,i["source-layer"]&&(t.sourceLayer=i["source-layer"]),t.state=void 0!==t.id?r.getFeatureState(i["source-layer"],t.id):{})});return p}function Qr(e,t){e=e.tileID,t=t.tileID;return e.overscaledZ-t.overscaledZ||e.canonical.y-t.canonical.y||e.wrap-t.wrap||e.canonical.x-t.canonical.x}class ea{constructor(e){this.style=e,this.layersGotHidden=!1,this.layers=[]}processLayersChanged(){this.layers=[];for(const i in this.style._mergedLayers){var e,t=this.style._mergedLayers[i];("fill-extrusion"===t.type||"model"===t.type&&(e=this.style.getLayerSource(t))&&"batched-model"===e.type)&&this.layers.push({layer:t,visible:!1,visibilityChanged:!1})}}onNewFrame(t){this.layersGotHidden=!1;for(const i of this.layers){const r=i.layer;let e=!1;"fill-extrusion"===r.type?e=!r.isHidden(t)&&0n.getSource().minzoom){let e=r.scaledTo(Math.min(n.getSource().maxzoom,r.overscaledZ-1));for(;e.overscaledZ>=n.getSource().minzoom&&(!(t=n.getTile(e))&&0!==e.overscaledZ);)e=e.scaledTo(e.overscaledZ-1)}this.currentBuildingBuckets.push({bucket:t?t.getBucket(a):null,tileID:t?t.tileID:r,verticalScale:e})}let a=i.hasAnyZOffset=!1;for(let e=0;e{e in t&&(i[e]=t[e])}),i}(t[e],i[t[e].ref]));return t}const z={setStyle:"setStyle",addLayer:"addLayer",removeLayer:"removeLayer",setPaintProperty:"setPaintProperty",setLayoutProperty:"setLayoutProperty",setSlot:"setSlot",setFilter:"setFilter",addSource:"addSource",removeSource:"removeSource",setGeoJSONSourceData:"setGeoJSONSourceData",setLayerZoomRange:"setLayerZoomRange",setLayerProperty:"setLayerProperty",setCenter:"setCenter",setZoom:"setZoom",setBearing:"setBearing",setPitch:"setPitch",setSprite:"setSprite",setGlyphs:"setGlyphs",setTransition:"setTransition",setLight:"setLight",setTerrain:"setTerrain",setFog:"setFog",setCamera:"setCamera",setLights:"setLights",setProjection:"setProjection",addImport:"addImport",removeImport:"removeImport",updateImport:"updateImport"};function ia(e,t,i){i.push({command:z.addSource,args:[e,t[e]]})}function ra(e,t,i){t.push({command:z.removeSource,args:[e]}),i[e]=!0}function aa(e,t,i,r,a,n){let o;for(o in t=t||{},e=e||{})!e.hasOwnProperty(o)||et.d(e[o],t[o])||i.push({command:n,args:[r,o,t[o],a]});for(o in t)!t.hasOwnProperty(o)||e.hasOwnProperty(o)||et.d(e[o],t[o])||i.push({command:n,args:[r,o,t[o],a]})}function na(e){return e.id}function oa(e,t){return e[t.id]=t,e}class sa{constructor(e,t){this.reset(e,t)}reset(e,t){this.points=e||[],this._distances=[0];for(let e=1;ethis.width||r<0||t>this.height)return!a&&[];const o=[];if(e<=0&&t<=0&&this.width<=i&&this.height<=r){if(a)return!0;for(let e=0;ethis.width||l<0||s>this.height)return!r&&[];var c=[];return this._forEachCell(n,s,o,l,this._queryCellCircle,c,{hitTest:r,circle:{x:e,y:t,radius:i},seenUids:{box:{},circle:{}}},a),r?0=a[0+c]&&r>=a[1+c]&&(!s||s(this.boxKeys[h]))){if(o.hitTest)return n.push(!0),!0;n.push({key:this.boxKeys[h],x1:a[c],y1:a[1+c],x2:a[2+c],y2:a[3+c]})}}}const h=this.circleCells[a];if(null!==h){const a=this.circles;for(const c of h)if(!l.circle[c]){l.circle[c]=!0;const h=3*c;if(this._circleAndRectCollide(a[h],a[1+h],a[2+h],e,t,i,r)&&(!s||s(this.circleKeys[c]))){if(o.hitTest)return n.push(!0),!0;{const e=a[h],t=a[1+h],i=a[2+h];n.push({key:this.circleKeys[c],x1:e-i,y1:t-i,x2:e+i,y2:t+i})}}}}}_queryCellCircle(e,t,i,r,a,n,o,s){const l=o.circle,c=o.seenUids,h=this.boxCells[a];if(null!==h){const e=this.bboxes;for(const t of h)if(!c.box[t]){c.box[t]=!0;const i=4*t;if(this._circleAndRectCollide(l.x,l.y,l.radius,e[0+i],e[1+i],e[2+i],e[3+i])&&(!s||s(this.boxKeys[t])))return n.push(!0),!0}}o=this.circleCells[a];if(null!==o){const e=this.circles;for(const t of o)if(!c.circle[t]){c.circle[t]=!0;const i=3*t;if(this._circlesCollide(e[i],e[1+i],e[2+i],l.x,l.y,l.radius)&&(!s||s(this.circleKeys[t])))return n.push(!0),!0}}}_forEachCell(i,r,a,n,o,s,l,c){var e=this._convertToXCellCoord(i),h=this._convertToYCellCoord(r),u=this._convertToXCellCoord(a),d=this._convertToYCellCoord(n);for(let t=e;t<=u;t++)for(let e=h;e<=d;e++)if(o.call(this,i,r,a,n,this.xCellCount*e+t,s,l,c))return}_convertToXCellCoord(e){return Math.max(0,Math.min(this.xCellCount-1,Math.floor(e*this.xScale)))}_convertToYCellCoord(e){return Math.max(0,Math.min(this.yCellCount-1,Math.floor(e*this.yScale)))}_circlesCollide(e,t,i,r,a,n){r-=e,e=a-t,a=i+n;return r*r+e*eO(e,t,i=y&&!T?y(re[3]<=0)&&(a=[]));let n=[];if(0=o.x&&e<=s.x&&r>=o.y&&i<=s.y&&(n=[a.map(e=>new et.P(e[0],e[1]))],(es.x||is.y)&&(n=et.cH(n,o.x,o.y,s.x,s.y)))}for(const et of n){r.reset(et,.25*t);var D=r.length<=.5*t?1:Math.ceil(r.paddedLength/e)+1;for(let e=0;e=this.screenRightBoundary||r<100||t>this.screenBottomBoundary}isInsideGrid(e,t,i,r){return 0<=i&&ee.collisionGroupID===t}}return this.collisionGroups[e]}}function ma(e,t,i,r,a){var{horizontalAlign:n,verticalAlign:o}=et.bS(e),n=-(n-.5)*t,t=-(o-.5)*i,o=et.bR(e,r);return new et.P(n+o[0]*a,t+o[1]*a)}function _a(e,t,i,r,a){const n=new et.P(e,t);return i&&n._rotate(r?a:-a),n}class ga{constructor(e,t,i,r,a,n){this.transform=e.clone(),this.projection=e.projection.name,this.collisionIndex=new ca(this.transform,a),this.buildingIndex=n,this.placements={},this.opacities={},this.variableOffsets={},this.stale=!1,this.commitTime=0,this.fadeDuration=t,this.retainedQueryData={},this.collisionGroups=new fa(i),this.collisionCircleArrays={},(this.prevPlacement=r)&&(r.prevPlacement=void 0),this.placedOrientations={}}getBucketParts(i,r,a,n){const o=a.getBucket(r),s=a.latestFeatureIndex;if(o&&s&&r.fqid===o.layerIds[0]){const m=o.layers[0].layout,_=a.collisionBoxArray,g=Math.pow(2,this.transform.zoom-a.tileID.overscaledZ),y=a.tileSize/et.a4,x=a.tileID.toUnwrapped();this.transform.setProjection(o.projection);h=a.tileID,c=o.getProjection(),l=this.transform;var l=c.name===this.projection?l.calculateProjMatrix(h.toUnwrapped()):ir(l,c,h),c="map"===m.get("text-pitch-alignment"),h="map"===m.get("text-rotation-alignment"),u=(r.compileFilter(),r.dynamicFilter()),r=r.dynamicFilterNeedsFeature(),d=this.transform.calculatePixelsToTileUnitsMatrix(a),p=ri(l,a.tileID.canonical,c,h,this.transform,o.getProjection(),d);let e=null;if(c){const i=ai(l,a.tileID.canonical,c,h,this.transform,o.getProjection(),d);e=et.ae.multiply([],this.transform.labelPlaneMatrix,i)}let t=null;u&&a.latestFeatureIndex&&(t={unwrappedTileID:x,dynamicFilter:u,dynamicFilterNeedsFeature:r,featureIndex:a.latestFeatureIndex}),this.retainedQueryData[o.bucketInstanceId]=new pa(o.bucketInstanceId,s,o.sourceLayerIndex,o.index,a.tileID);var f={bucket:o,layout:m,posMatrix:l,textLabelPlaneMatrix:p,labelToScreenMatrix:e,clippingData:t,scale:g,textPixelRatio:y,holdingForFade:a.holdingForFade(),collisionBoxArray:_,partiallyEvaluatedTextSize:et.aE(o.textSizeData,this.transform.zoom),partiallyEvaluatedIconSize:et.aE(o.iconSizeData,this.transform.zoom),collisionGroup:this.collisionGroups.get(o.sourceID)};if(n)for(const et of o.sortKeyRanges){const{sortKey:r,symbolInstanceStart:a,symbolInstanceEnd:n}=et;i.push({sortKey:r,symbolInstanceStart:a,symbolInstanceEnd:n,parameters:f})}else i.push({symbolInstanceStart:0,symbolInstanceEnd:o.symbolInstances.length,parameters:f})}}attemptAnchorPlacement(t,i,r,a,n,e,o,s,l,c,h,u,d,p,f,m,_,g){var{textOffset0:y,textOffset1:x,crossTileID:v}=u,y=[y,x],x=ma(t,r,a,y,n),i=this.collisionIndex.placeCollisionBox(p,n,i,_a(x.x,x.y,e,o,this.transform.angle),h,s,l,c.predicate);if(m){const t=p.getSymbolInstanceIconSize(g,this.transform.zoom,u.placedIconSymbolIndex);if(0===this.collisionIndex.placeCollisionBox(p,t,m,_a(x.x,x.y,e,o,this.transform.angle),h,s,l,c.predicate).box.length)return}if(0{const{crossTileID:g,numVerticalGlyphVertices:y}=f;if(P){const E={zoom:this.transform.zoom,pitch:this.transform.pitch};let e=null;if(P.dynamicFilterNeedsFeature){const et=this.retainedQueryData[S.bucketInstanceId];e=P.featureIndex.loadFeature({featureIndex:f.featureIndex,bucketIndex:et.bucketIndex,sourceLayerIndex:et.sourceLayerIndex,layoutVertexArrayOffset:0})}if(!(0,P.dynamicFilter)(E,e,this.retainedQueryData[S.bucketInstanceId].tileID.canonical,new et.P(f.tileAnchorX,f.tileAnchorY),this.transform.calculateDistanceTileData(P.unwrappedTileID)))return this.placements[g]=new ua(!1,!1,!1,!0),void T.add(g)}if(!T.has(g))if(i)this.placements[g]=new ua(!1,!1,!1);else{let h=!1,e=!1,t=!0,i=!1,r=!1,u=null,a={box:null,offscreen:null,occluded:null},n={box:null,offscreen:null,occluded:null},o,s=null,l=null,c=0,d=0,p=0;_.textFeatureIndex?c=_.textFeatureIndex:f.useRuntimeCollisionCircles&&(c=f.featureIndex),_.verticalTextFeatureIndex&&(d=_.verticalTextFeatureIndex);const b=e=>{e.tileID=this.retainedQueryData[S.bucketInstanceId].tileID;const t=this.transform.elevation;e.elevation=f.zOffset+(t?t.getAtTileOffset(e.tileID,e.tileAnchorX,e.tileAnchorY):0)},w=_.textBox;if(w){b(w);const T=e=>{let t=et.aF.horizontal;if(S.allowVerticalPlacement&&!e&&this.prevPlacement){const et=this.prevPlacement.placedOrientations[g];et&&(this.placedOrientations[g]=et,t=et,this.markUsedOrientation(S,t,f))}return t},E=(e,t)=>{if(S.allowVerticalPlacement&&0e!==et.anchor)).unshift(et.anchor)}const C=(t,e,i)=>{var r=S.getSymbolInstanceTextSize(D,f,this.transform.zoom,m),a=(t.x2-t.x1)*r+2*t.padding,n=(t.y2-t.y1)*r+2*t.padding,o=f.hasIconTextFit&&!F?e:null;o&&b(o);let s={box:[],offscreen:!1,occluded:!1};const l=B?2*c.length:c.length;for(let e=0;e=c.length,f,m,S,i,o,D,R);if(l&&((s=l.placedGlyphBoxes)&&s.box&&s.box.length)){h=!0,u=l.shift;break}}return s},P=(E(()=>C(w,_.iconBox,et.aF.horizontal),()=>{var e=_.verticalTextBox;return e&&b(e),S.allowVerticalPlacement&&!(a&&a.box&&a.box.length)&&0{var i=S.getSymbolInstanceTextSize(D,f,this.transform.zoom,m),i=this.collisionIndex.placeCollisionBox(S,i,e,new et.P(0,0),B,z,I,L.predicate);return i&&i.box&&i.box.length&&(this.markUsedOrientation(S,t,f),this.placedOrientations[g]=t),i};E(()=>M(w,et.aF.horizontal),()=>{var e=_.verticalTextBox;return S.allowVerticalPlacement&&0{b(e);var t=f.hasIconTextFit&&u?_a(u.x,u.y,N,V,this.transform.angle):new et.P(0,0),i=S.getSymbolInstanceIconSize(R,this.transform.zoom,f.placedIconSymbolIndex);return this.collisionIndex.placeCollisionBox(S,i,e,t,F,z,I,L.predicate)};e=0<(l=n&&n.box&&n.box.length&&_.verticalIconBox?T(_.verticalIconBox):T(_.iconBox)).box.length,t=t&&l.offscreen,r=l.occluded}var x=k||0===f.numHorizontalGlyphVertices&&0===y,v=O||0===f.numIconVertices;if(x||v?v?x||(e=e&&h):h=e&&h:e=h=e&&h,h&&o&&o.box&&this.collisionIndex.insertCollisionBox(o.box,M.get("text-ignore-placement"),S.bucketInstanceId,n&&n.box&&d?d:c,L.ID),e&&l&&this.collisionIndex.insertCollisionBox(l.box,M.get("icon-ignore-placement"),S.bucketInstanceId,p,L.ID),s&&(h&&this.collisionIndex.insertCollisionCircles(s.circles,M.get("text-ignore-placement"),S.bucketInstanceId,c,L.ID),E)){const et=S.bucketInstanceId;let t=this.collisionCircleArrays[et];void 0===t&&(t=this.collisionCircleArrays[et]=new da);for(let e=0;e{for(let e=0;eA||A>a.max.x||a.min.y>C||C>a.max.y)){const r=et.cK(A,C,l.canonical,a.footprintTileId.canonical);if(e=et.cL(r,a))break}if(b){const et=e?L:Ma(i.text),a=(x(r.text,p,E?L:et),x(r.text,f,S?L:et),i.text.isHidden()),{leftJustifiedTextSymbolIndex:n,centerJustifiedTextSymbolIndex:o,rightJustifiedTextSymbolIndex:s,verticalPlacedTextSymbolIndex:l}=h,c=r.text.placedSymbolArray,u=a||E?1:0,d=(0<=n&&(c.get(n).hidden=u),0<=o&&(c.get(o).hidden=u),0<=s&&(c.get(s).hidden=u),0<=l&&(c.get(l).hidden=a||S?1:0),this.variableOffsets[M]),m=(d&&this.markUsedJustification(r,d.anchor,h,T),this.placedOrientations[M]);m&&(this.markUsedJustification(r,"left",h,m),this.markUsedOrientation(r,m,h))}if(w){const et=e?L:Ma(i.icon),{placedIconSymbolIndex:a,verticalPlacedIconSymbolIndex:n}=h,o=r.icon.placedSymbolArray,s=i.icon.isHidden()?1:0;0<=a&&(x(r.icon,I,E?L:et),o.get(a).hidden=s),0<=n&&(x(r.icon,h.numVerticalIconVertices,S?L:et),o.get(n).hidden=s)}if(r.hasIconCollisionBoxData()||r.hasTextCollisionBoxData()){const a=r.collisionArrays[t];if(a){let e=new et.P(0,0),t=!0;if(a.textBox||a.verticalTextBox){if(m){const et=this.variableOffsets[M];et?(e=ma(et.anchor,et.width,et.height,et.textOffset,et.textScale),_&&e._rotate(g?this.transform.angle:-this.transform.angle)):t=!1}u&&(t=!i.clipped),a.textBox&&ya(r.textCollisionBox.collisionVertexArray,i.text.placed,!t||E,e.x,e.y),a.verticalTextBox&&ya(r.textCollisionBox.collisionVertexArray,i.text.placed,!t||S,e.x,e.y)}const s=t&&Boolean(!S&&a.verticalIconBox);a.iconBox&&ya(r.iconCollisionBox.collisionVertexArray,i.icon.placed,s,h.hasIconTextFit?e.x:0,h.hasIconTextFit?e.y:0),a.verticalIconBox&&ya(r.iconCollisionBox.collisionVertexArray,i.icon.placed,!s,h.hasIconTextFit?e.x:0,h.hasIconTextFit?e.y:0)}}}if(r.fullyClipped=0===v,r.sortFeatures(this.transform.angle),this.retainedQueryData[r.bucketInstanceId]&&(this.retainedQueryData[r.bucketInstanceId].featureSortOrder=r.featureSortOrder),r.hasTextData()&&r.text.opacityVertexBuffer&&r.text.opacityVertexBuffer.updateData(r.text.opacityVertexArray),r.hasIconData()&&r.icon.opacityVertexBuffer&&r.icon.opacityVertexBuffer.updateData(r.icon.opacityVertexArray),r.hasIconCollisionBoxData()&&r.iconCollisionBox.collisionVertexBuffer&&r.iconCollisionBox.collisionVertexBuffer.updateData(r.iconCollisionBox.collisionVertexArray),r.hasTextCollisionBoxData()&&r.textCollisionBox.collisionVertexBuffer&&r.textCollisionBox.collisionVertexBuffer.updateData(r.textCollisionBox.collisionVertexArray),r.bucketInstanceId in this.collisionCircleArrays){const et=this.collisionCircleArrays[r.bucketInstanceId];r.placementInvProjMatrix=et.invProjMatrix,r.placementViewportMatrix=et.viewportMatrix,r.collisionCircleArray=et.circles,delete this.collisionCircleArrays[r.bucketInstanceId]}}symbolFadeChange(e){return 0===this.fadeDuration?1:(e-this.commitTime)/this.fadeDuration+this.prevZoomAdjustment}zoomAdjustment(e){return Math.max(0,(this.transform.zoom-e)/1.5)}hasTransitions(e){return this.stale||e-this.lastPlacementChangeTimee}setStale(){this.stale=!0}}function ya(e,t,i,r,a){e.emplaceBack(t?1:0,i?1:0,r||0,a||0),e.emplaceBack(t?1:0,i?1:0,r||0,a||0),e.emplaceBack(t?1:0,i?1:0,r||0,a||0),e.emplaceBack(t?1:0,i?1:0,r||0,a||0)}const xa=Math.pow(2,25),va=Math.pow(2,24),ba=Math.pow(2,17),wa=Math.pow(2,16),Ta=Math.pow(2,9),Ea=Math.pow(2,8),Sa=Math.pow(2,1);function Ma(e){if(0===e.opacity&&!e.placed)return 0;if(1===e.opacity&&e.placed)return 4294967295;var t=e.placed?1:0,e=Math.floor(127*e.opacity);return e*xa+t*va+e*ba+t*wa+e*Ta+t*Ea+e*Sa+t}const L=0;class Ia{constructor(e){this._sortAcrossTiles="viewport-y"!==e.layout.get("symbol-z-order")&&void 0!==e.layout.get("symbol-sort-key").constantOr(1),this._currentTileIndex=0,this._currentPartIndex=0,this._seenCrossTileIDs=new Set,this._bucketParts=[]}continuePlacement(e,t,i,r,a){const n=this._bucketParts;for(;this._currentTileIndexe.sortKey-t.sortKey));this._currentPartIndex{var e=et.e.now()-a;return!this._forceFullPlacement&&2o)){const e=a,t=e.layout.get("symbol-z-elevate"),s=this._inProgressLayer=this._inProgressLayer||new Ia(e),l=et.am(a.source,a.scope);if(s.continuePlacement((t?r:i)[l],this.placement,this._showCollisionBoxes,a,n))return;delete this._inProgressLayer}this._currentPlacementIndex--}this._done=!0}commit(e){return this.placement.commit(e),this.placement}}const Ca=512/et.a4/2;class Pa{constructor(t,i,r){this.tileID=t,this.bucketInstanceId=r,this.index=new et.cN(i.length,16,Int32Array),this.keys=[],this.crossTileIDs=[];var a=t.canonical.x*et.a4,n=t.canonical.y*et.a4;for(let e=0;ee.overscaledZ)for(const i in a){const n=a[i];n.tileID.isChildOf(e)&&n.findMatches(t.symbolInstances,e,r)}else{const o=a[e.scaledTo(Number(i)).key];o&&o.findMatches(t.symbolInstances,e,r)}}for(let e=0;e{t[e]=!0});for(const e in this.layerIndexes)t[e]||delete this.layerIndexes[e]}}const La=new et.U({data:new et.W(et.N.colorTheme.data)}),y=(e,t)=>ct(e,t&&t.filter(e=>"source.canvas"!==e.identifier)),ka=et.ai(z,["addLayer","removeLayer","setLights","setPaintProperty","setLayoutProperty","setSlot","setFilter","addSource","removeSource","setLayerZoomRange","setLight","setTransition","setGeoJSONSourceData","setTerrain","setFog","setProjection","setCamera","addImport","removeImport","updateImport"]),Oa=et.ai(z,["setCenter","setZoom","setBearing","setPitch"]),Ba={version:8,layers:[],sources:{}},Fa={duration:300,delay:0};class x extends et.E{constructor(e,t={}){super(),this.map=e,this.scope=t.scope||"",this.globalId=null,this.fragments=[],this.importDepth=t.importDepth||0,this.importsCache=t.importsCache||new Map,this.resolvedImports=t.resolvedImports||new Set,this.transition=et.Q({},Fa),this._buildingIndex=new ea(this),this.crossTileSymbolIndex=new Ra,this._mergedOrder=[],this._drapedFirstOrder=[],this._mergedLayers={},this._mergedSourceCaches={},this._mergedOtherSourceCaches={},this._mergedSymbolSourceCaches={},this._clipLayerIndices=[],this._has3DLayers=!1,this._hasCircleLayers=!1,this._hasSymbolLayers=!1,this._changes=t.styleChanges||new j,this.dispatcher=t.dispatcher||new et.by(et.bz(),this),t.imageManager?this.imageManager=t.imageManager:(this.imageManager=new Re,this.imageManager.setEventedParent(this)),this.imageManager.createScope(this.scope),this.glyphManager=t.glyphManager||new et.cP(e._requestManager,t.localFontFamily?et.cQ.all:t.localIdeographFontFamily?et.cQ.ideographs:et.cQ.none,t.localFontFamily||t.localIdeographFontFamily),t.modelManager?this.modelManager=t.modelManager:(this.modelManager=new De(e._requestManager),this.modelManager.setEventedParent(this)),this._layers={},this._serializedLayers={},this._sourceCaches={},this._otherSourceCaches={},this._symbolSourceCaches={},this._loaded=!1,this._precompileDone=!1,this._shouldPrecompile=!1,this._availableImages=[],this._order=[],this._markersNeedUpdate=!1,this._styleColorTheme={lut:null,lutLoading:!1,lutLoadingCorrelationID:0,colorTheme:null},this._styleColorThemeForScope={},this.options=t.configOptions||new Map,this._configDependentLayers=t.configDependentLayers||new Set,this._config=t.config,this._initialConfig=t.initialConfig,this.dispatcher.broadcast("setReferrer",et.cR());const i=this;this._rtlTextPluginCallback=x.registerForPluginStateChange(e=>{i.dispatcher.broadcast("syncRTLPluginState",{pluginStatus:e.pluginStatus,pluginURL:e.pluginURL},(e,t)=>{if(et.cS(e),t&&t.every(e=>e))for(const et in i._sourceCaches){const e=i._sourceCaches[et],t=e.getSource().type;"vector"!==t&&"geojson"!==t||e.reload()}})}),this.on("data",e=>{if("source"===e.dataType&&"metadata"===e.sourceDataType){var t=this.getOwnSource(e.sourceId);if(t&&t.vectorLayerIds)for(const e in this._layers){var i=this._layers[e];i.source===t.id&&this._validateLayer(i)}}})}load(e){return e&&("string"==typeof e?this.loadURL(e):this.loadJSON(e)),this}_getGlobalId(e){if(!e)return null;if("string"!=typeof e)return"json://"+et.cV(JSON.stringify(e));{if(et.cT(e))return e;const t=et.cU(e);if(!t.startsWith("http"))try{return new URL(t,location.href).toString()}catch(e){return t}return t}}_diffStyle(e,i,r){this.globalId=this._getGlobalId(e);const a=(e,t)=>{try{t(null,this.setState(e,r))}catch(e){t(e,!1)}};if("string"==typeof e){const r=this.map._requestManager.normalizeStyleURL(e),t=this.map._requestManager.transformRequest(r,et.R.Style);et.h(t,(e,t)=>{e?this.fire(new et.f(e)):t&&a(t,i)})}else"object"==typeof e&&a(e,i)}loadURL(i,e={}){this.fire(new et.g("dataloading",{dataType:"style"}));const r="boolean"==typeof e.validate?e.validate:!et.cT(i);this.globalId=this._getGlobalId(i),i=this.map._requestManager.normalizeStyleURL(i,e.accessToken),this.resolvedImports.add(i);e=this.importsCache.get(i);if(e)return this._load(e,r);e=this.map._requestManager.transformRequest(i,et.R.Style);this._request=et.h(e,(e,t)=>{if(this._request=null,e)this.fire(new et.f(e));else if(t)return this.importsCache.set(i,t),this._load(t,r)})}loadJSON(e,t={}){this.fire(new et.g("dataloading",{dataType:"style"})),this.globalId=this._getGlobalId(e),this._request=et.e.frame(()=>{this._request=null,this._load(e,!1!==t.validate)})}loadEmpty(){this.fire(new et.g("dataloading",{dataType:"style"})),this._load(Ba,!1)}_loadImports(t,e,i){if(4<=this.importDepth)return et.w("Style doesn't support nesting deeper than 5"),Promise.resolve();const r=[];for(const et of t){const t=this._createFragmentStyle(et),n=new Promise(e=>{t.once("style.import.load",e),t.once("error",e)}).then(()=>this.mergeAll());if(r.push(n),this.resolvedImports.has(et.url))t.loadEmpty();else{var a=et.data||this.importsCache.get(et.url),a=(a?(t.loadJSON(a,{validate:e}),this._isInternalStyle(a)&&(t.globalId=null)):et.url?t.loadURL(et.url,{validate:e}):t.loadEmpty(),{style:t,id:et.id,config:et.config});if(i){const et=this.fragments.findIndex(({id:e})=>e===i);this.fragments=this.fragments.slice(0,et).concat(a).concat(this.fragments.slice(et))}else this.fragments.push(a)}}return Promise.allSettled(r)}getImportGlobalIds(e=this,t=new Set){for(const i of e.fragments)i.style.globalId&&t.add(i.style.globalId),this.getImportGlobalIds(i.style,t);return[...t.values()]}_createFragmentStyle(e){var t=this.scope?et.am(e.id,this.scope):e.id;let i;var r=this._initialConfig&&this._initialConfig[t];(e.config||r)&&(i=et.Q({},e.config,r));const a=new x(this.map,{scope:t,styleChanges:this._changes,importDepth:this.importDepth+1,importsCache:this.importsCache,resolvedImports:new Set(this.resolvedImports),dispatcher:this.dispatcher,imageManager:this.imageManager,glyphManager:this.glyphManager,modelManager:this.modelManager,config:i,configOptions:this.options,configDependentLayers:this._configDependentLayers});return a.setEventedParent(this.map,{style:a}),a}_reloadImports(){this.mergeAll(),this._updateMapProjection(),this.updateConfigDependencies(),this.map._triggerCameraUpdate(this.camera),this.dispatcher.broadcast("setLayers",{layers:this._serializeLayers(this._order),scope:this.scope,options:this.options}),this._shouldPrecompile=this.map._precompilePrograms&&this.isRootStyle()}_isInternalStyle(e){return this.isRootStyle()&&(e.fragment||!!e.schema&&!1!==e.fragment)}_load(r,a){const e=r.schema;if(this._isInternalStyle(r)){const e=et.Q({},Ba,{imports:[{id:"basemap",data:r,url:""}]});void this._load(e,a)}else if(this.updateConfig(this._config,e),!a||!y(this,o(r))){this._loaded=!0,this.stylesheet=et.cW(r);const t=()=>{for(const et in r.sources)this.addSource(et,r.sources[et],{validate:!1,isInitialLoad:!0});r.sprite?this._loadSprite(r.sprite):(this.imageManager.setLoaded(!0,this.scope),this.dispatcher.broadcast("spriteLoaded",{scope:this.scope,isLoaded:!0})),this.glyphManager.setURL(r.glyphs,this.scope);const e=ta(this.stylesheet.layers);if(this._order=e.map(e=>e.id),this.stylesheet.light&&et.w("The `light` root property is deprecated, prefer using `lights` with `flat` light type instead."),this.stylesheet.lights)if(1===this.stylesheet.lights.length&&"flat"===this.stylesheet.lights[0].type){const et=this.stylesheet.lights[0];this.light=new ut(et.properties,et.id)}else this.setLights(this.stylesheet.lights);this.light||(this.light=new ut(this.stylesheet.light)),this._layers={},this._serializedLayers={};for(const r of e){const a=et.c$(r,this.scope,this._styleColorTheme.lut,this.options),e=(0!==a.configDependencies.size&&this._configDependentLayers.add(a.fqid),a.setEventedParent(this,{layer:{id:a.id}}),this._layers[a.id]=a,this._serializedLayers[a.id]=a.serialize(),this.getOwnLayerSourceCache(a)),t=!!this.directionalLight&&this.directionalLight.shadowsEnabled();e&&a.canCastShadows()&&t&&(e.castsShadows=!0)}this.stylesheet.models&&this.modelManager.addModels(this.stylesheet.models,this.scope);const t=this.stylesheet.terrain,i=(t&&(this.checkCanvasFingerprintNoise(),this.disableElevatedTerrain||this.terrainSetForDrapingOnly()||this._createTerrain(t,1)),this.stylesheet.fog&&this._createFog(this.stylesheet.fog),this.stylesheet.transition&&this.setTransition(this.stylesheet.transition),this.fire(new et.g("data",{dataType:"style"})),this.isRootStyle());r.imports?this._loadImports(r.imports,a).then(()=>{this._reloadImports(),this.fire(new et.g(i?"style.load":"style.import.load"))}):(this._reloadImports(),this.fire(new et.g(i?"style.load":"style.import.load")))},i=this.stylesheet["color-theme"];if(this._styleColorTheme.colorTheme=i){const r=this._evaluateColorThemeData(i);this._loadColorTheme(r).then(()=>{t()}).catch(e=>{et.w("Couldn't load color theme from the stylesheet: "+e),t()})}else this._styleColorTheme.lut=null,t()}}isRootStyle(){return 0===this.importDepth}mergeAll(){let t,i,r,a,n,o,s,l;const c={};this.terrain&&this.terrain.scope!==this.scope&&delete this.terrain,this.forEachFragmentStyle(e=>{if(e.stylesheet){if(null!=e.light&&(t=e.light),e.stylesheet.lights)for(const t of e.stylesheet.lights)"ambient"===t.type&&null!=e.ambientLight&&(i=e.ambientLight),"directional"===t.type&&null!=e.directionalLight&&(r=e.directionalLight);a=this._prioritizeTerrain(a,e.terrain,e.stylesheet.terrain),e.stylesheet.fog&&null!=e.fog&&(n=e.fog),null!=e.stylesheet.camera&&(l=e.stylesheet.camera),null!=e.stylesheet.projection&&(o=e.stylesheet.projection),null!=e.stylesheet.transition&&(s=e.stylesheet.transition),c[e.scope]=e._styleColorTheme}}),this.light=t,this.ambientLight=i,this.directionalLight=r,this.fog=n,this._styleColorThemeForScope=c,null===a?delete this.terrain:this.terrain=a,this.camera=l||{"camera-projection":"perspective"},this.projection=o||{name:"mercator"},this.transition=et.Q({},Fa,s),this.mergeSources(),this.mergeLayers()}forEachFragmentStyle(t){const i=e=>{for(const t of e.fragments)i(t.style);t(e)};i(this)}_prioritizeTerrain(e,t,i){var r=e&&0===e.drapeRenderMode;return null===i?t&&0===t.drapeRenderMode?t:r?e:null:null!=t&&(!e||r||t&&1===t.drapeRenderMode)?t:e}mergeTerrain(){let t;this.terrain&&this.terrain.scope!==this.scope&&delete this.terrain,this.forEachFragmentStyle(e=>{t=this._prioritizeTerrain(t,e.terrain,e.stylesheet.terrain)}),null===t?delete this.terrain:this.terrain=t}mergeProjection(){let t;this.forEachFragmentStyle(e=>{null!=e.stylesheet.projection&&(t=e.stylesheet.projection)}),this.projection=t||{name:"mercator"}}mergeSources(){const t={},i={},r={};this.forEachFragmentStyle(e=>{for(const i in e._sourceCaches){const r=et.am(i,e.scope);t[r]=e._sourceCaches[i]}for(const t in e._otherSourceCaches){const r=et.am(t,e.scope);i[r]=e._otherSourceCaches[t]}for(const t in e._symbolSourceCaches){const i=et.am(t,e.scope);r[i]=e._symbolSourceCaches[t]}}),this._mergedSourceCaches=t,this._mergedOtherSourceCaches=i,this._mergedSymbolSourceCaches=r}mergeLayers(){const r={},a=[],n={};this._mergedSlots=[],this._has3DLayers=!1,this._hasCircleLayers=!1,this._hasSymbolLayers=!1,this.forEachFragmentStyle(e=>{for(const i of e._order){var t=e._layers[i];if("slot"===t.type){const a=et.cX(i);if(r[a])continue;r[a]=[]}(t.slot&&r[t.slot]?r[t.slot]:a).push(t)}}),this._mergedOrder=[],this._clipLayerIndices=[];let i=0;const o=(e=[])=>{for(const t of e)if("slot"===t.type){const e=et.cX(t.id);r[e]&&o(r[e]),this._mergedSlots.push(e)}else{const r=et.am(t.id,t.scope);this._mergedOrder.push(r),(n[r]=t).is3D()&&(this._has3DLayers=!0),"circle"===t.type&&(this._hasCircleLayers=!0),"symbol"===t.type&&(this._hasSymbolLayers=!0),"clip"===t.type&&this._clipLayerIndices.push(i),i++}};o(a),this._mergedOrder.sort((e,t)=>{const i=n[e],r=n[t];return i.hasInitialOcclusionOpacityProperties?r.is3D()?1:0:i.is3D()&&r.hasInitialOcclusionOpacityProperties?-1:0}),this._mergedLayers=n,this.updateDrapeFirstLayers(),this._buildingIndex.processLayersChanged()}terrainSetForDrapingOnly(){return!!this.terrain&&0===this.terrain.drapeRenderMode}getCamera(){return this.stylesheet.camera}setCamera(e){return this.stylesheet.camera=et.Q({},this.stylesheet.camera,e),this.camera=this.stylesheet.camera,this}_evaluateColorThemeData(a){return a.data?function(e,t){const i=et.Q({},a);for(const e of Object.keys(et.N.colorTheme))void 0===i[e]&&(i[e]=et.N.colorTheme[e].default);const r=new et.O(La,e,new Map(t));return r.setTransitionOrValue(i,t),r.untransitioned().possiblyEvaluate(new et.Y(0))}(this.scope,this.options).get("data"):null}_loadColorTheme(s){this._styleColorTheme.lutLoading=!0,this._styleColorTheme.lutLoadingCorrelationID+=1;const l=this._styleColorTheme.lutLoadingCorrelationID;return new Promise((r,a)=>{var e="data:image/png;base64,";if(!s||0===s.length)return this._styleColorTheme.lut=null,this._styleColorTheme.lutLoading=!1,void r();let t=s;t.startsWith(e)||(t=e+t);const n="mapbox-reserved-lut",o=new Image;o.src=t,o.onerror=()=>{this._styleColorTheme.lutLoading=!1,a(new Error("Failed to load image data"))},o.onload=()=>{var e,t,i;this._styleColorTheme.lutLoadingCorrelationID!==l?r():(this._styleColorTheme.lutLoading=!1,{width:i,height:e,data:t}=et.e.getImageData(o),32{r=null,p||(p=e,u=t,n())}),a=et.i(t.transformRequest(t.normalizeSpriteURL(e,i,".png"),et.R.SpriteImage),(e,t)=>{a=null,p||(p=e,d=t,n())});function n(){if(p)h(p);else if(u&&d){const e=et.e.getImageData(d),t={};for(const h in u){const{width:d,height:p,x:i,y:r,sdf:a,pixelRatio:n,stretchX:o,stretchY:s,content:l}=u[h],c=new et.j({width:d,height:p});et.j.copy(e,c,{x:i,y:r},{x:0,y:0},{width:d,height:p},null),t[h]={data:c,pixelRatio:n,sdf:a,stretchX:o,stretchY:s,content:l}}h(null,t)}}return{cancel(){r&&(r.cancel(),r=null),a&&(a.cancel(),a=null)}}}(e,this.map._requestManager,(e,t)=>{if(this._spriteRequest=null,e)this.fire(new et.f(e));else if(t)for(const et in t)this.imageManager.addImage(et,this.scope,t[et]);this.imageManager.setLoaded(!0,this.scope),this._availableImages=this.imageManager.listImages(this.scope),this.dispatcher.broadcast("setImages",{scope:this.scope,images:this._availableImages}),this.dispatcher.broadcast("spriteLoaded",{scope:this.scope,isLoaded:!0}),this.fire(new et.g("data",{dataType:"style"}))})}_validateLayer(e){const t=this.getOwnSource(e.source);var i;!t||(i=e.sourceLayer)&&("geojson"===t.type||t.vectorLayerIds&&-1===t.vectorLayerIds.indexOf(i))&&this.fire(new et.f(new Error(`Source layer "${i}" does not exist on source "${t.id}" as specified by style layer "${e.id}"`)))}loaded(){if(!this._loaded)return!1;if(Object.keys(this._changes.getUpdatedSourceCaches()).length)return!1;for(const t in this._sourceCaches)if(!this._sourceCaches[t].loaded())return!1;if(!this.imageManager.isLoaded())return!1;if(!this.modelManager.isLoaded())return!1;if(this._styleColorTheme.lutLoading)return!1;for(var{style:e}of this.fragments)if(!e.loaded())return!1;return!0}_serializeImports(){if(this.stylesheet.imports)return this.stylesheet.imports.map((e,t)=>{const i=this.fragments[t];return i&&i.style&&(e.data=i.style.serialize()),e})}_serializeSources(){const e={};for(const t in this._sourceCaches){const i=this._sourceCaches[t].getSource();e[i.id]||(e[i.id]=i.serialize())}return e}_serializeLayers(e){const t=[];for(const i of e){const e=this._layers[i];e&&"custom"!==e.type&&t.push(e.serialize())}return t}hasLightTransitions(){return!(!this.light||!this.light.hasTransition())||!(!this.ambientLight||!this.ambientLight.hasTransition())||!(!this.directionalLight||!this.directionalLight.hasTransition())}hasFogTransition(){return!!this.fog&&this.fog.hasTransition()}hasTransitions(){if(this.hasLightTransitions())return!0;if(this.hasFogTransition())return!0;for(const e in this._sourceCaches)if(this._sourceCaches[e].hasTransition())return!0;for(const t in this._layers)if(this._layers[t].hasTransition())return!0;return!1}get order(){return this.terrain?this._drapedFirstOrder:this._mergedOrder}isLayerDraped(e){return!!this.terrain&&e.isDraped(this.getLayerSourceCache(e))}_checkLoaded(){if(!this._loaded)throw new Error("Style is not done loading")}_checkLayer(e){var t=this.getOwnLayer(e);if(t)return t;this.fire(new et.f(new Error(`The layer '${e}' does not exist in the map's style.`)))}_checkSource(e){var t=this.getOwnSource(e);if(t)return t;this.fire(new et.f(new Error(`The source '${e}' does not exist in the map's style.`)))}precompilePrograms(t,i){const r=this.map.painter;if(r)for(let e=t.minzoom||0;e<(t.maxzoom||25.5);e++){var a=t.getProgramIds();if(a)for(const n of a){const o=t.getDefaultProgramParams(n,i.zoom,this._styleColorTheme.lut);o&&((r.style=this).fog&&(r._fogVisible=!0,o.overrideFog=!0,r.getOrCreateProgram(n,o)),r._fogVisible=!1,o.overrideFog=!1,r.getOrCreateProgram(n,o),(this.stylesheet.terrain||this.stylesheet.projection&&"globe"===this.stylesheet.projection.name)&&(o.overrideRtt=!0,r.getOrCreateProgram(n,o)))}}}update(t){if(this._loaded){this.ambientLight&&this.ambientLight.recalculate(t),this.directionalLight&&this.directionalLight.recalculate(t);const i=this.calculateLightsBrightness(),r=(t.brightness=i||0,i!==this._brightness&&(this._brightness=i,this.dispatcher.broadcast("setBrightness",i)),this._changes.isDirty());let e=!1;if(this._changes.isDirty()){const et=this._changes.getLayerUpdatesByScope();for(const t in et){const{updatedIds:i,removedIds:r}=et[t];(i||r)&&(this._updateWorkerLayers(t,i,r),e=!0)}this.updateSourceCaches(),this._updateTilesForChangedImages(),this.updateLayers(t),this.light&&this.light.updateTransitions(t),this.ambientLight&&this.ambientLight.updateTransitions(t),this.directionalLight&&this.directionalLight.updateTransitions(t),this.fog&&this.fog.updateTransitions(t),this._changes.reset()}const a={};for(const et in this._mergedSourceCaches){const t=this._mergedSourceCaches[et];a[et]=t.used,t.used=!1,t.tileCoverLift=0}for(const et of this._mergedOrder){const i=this._mergedLayers[et];if(i.recalculate(t,this._availableImages),!i.isHidden(t.zoom)){const et=this.getLayerSourceCache(i);et&&(et.used=!0,et.tileCoverLift=Math.max(et.tileCoverLift,i.tileCoverLift()))}!this._precompileDone&&this._shouldPrecompile&&("requestIdleCallback"in window?requestIdleCallback(()=>{this.precompilePrograms(i,t)}):this.precompilePrograms(i,t))}this._shouldPrecompile&&(this._precompileDone=!0),this.terrain&&e&&this.mergeLayers();for(const t in a){const i=this._mergedSourceCaches[t];a[t]!==i.used&&i.getSource().fire(new et.g("data",{sourceDataType:"visibility",dataType:"source",sourceId:i.getSource().id}))}this.light&&this.light.recalculate(t),this.terrain&&this.terrain.recalculate(t),this.fog&&this.fog.recalculate(t),this.z=t.zoom,this._markersNeedUpdate&&(this._updateMarkersOpacity(),this._markersNeedUpdate=!1),r&&this.fire(new et.g("data",{dataType:"style"}))}}_updateTilesForChangedImages(){var e=this._changes.getUpdatedImages();if(e.length){for(const t in this._sourceCaches)this._sourceCaches[t].reloadTilesForDependencies(["icons","patterns"],e);this._changes.resetUpdatedImages()}}_updateWorkerLayers(e,t,i){const r=this.getFragmentStyle(e);r&&this.dispatcher.broadcast("updateLayers",{layers:t?r._serializeLayers(t):[],scope:e,removedIds:i||[],options:r.options})}setState(e,t){if(this._checkLoaded(),y(this,o(e)))return!1;(e=et.cW(e)).layers=ta(e.layers);const i=function(a,s){if(!a)return[{command:z.setStyle,args:[s]}];let l=[];try{if(!et.d(a.version,s.version))return[{command:z.setStyle,args:[s]}];if(et.d(a.center,s.center)||l.push({command:z.setCenter,args:[s.center]}),et.d(a.zoom,s.zoom)||l.push({command:z.setZoom,args:[s.zoom]}),et.d(a.bearing,s.bearing)||l.push({command:z.setBearing,args:[s.bearing]}),et.d(a.pitch,s.pitch)||l.push({command:z.setPitch,args:[s.pitch]}),et.d(a.sprite,s.sprite)||l.push({command:z.setSprite,args:[s.sprite]}),et.d(a.glyphs,s.glyphs)||l.push({command:z.setGlyphs,args:[s.glyphs]}),!et.d(a.imports,s.imports)){var[n=[],o=[],c]=[a.imports,s.imports,l];o=o||[];const v=(n=n||[]).map(na),b=o.map(na),w=n.reduce(oa,{}),T=o.reduce(oa,{}),E=v.slice();let e,t,i,r;for(e=0,t=0;e{e.source&&g[e.source]?l.push({command:z.removeLayer,args:[e.id]}):x.push(e)});let e=a.terrain;e&&g[e.source]&&(l.push({command:z.setTerrain,args:[void 0]}),e=void 0),l=l.concat(y),et.d(e,s.terrain)||l.push({command:z.setTerrain,args:[s.terrain]});{var f=x;var m=s.layers;var _=l;m=m||[];const S=(f=f||[]).map(na),M=m.map(na),I=f.reduce(oa,{}),A=m.reduce(oa,{}),C=S.slice(),P=Object.create(null);let e,t,i,r,a,n,o;for(e=0,t=0;e!(e.command in Oa));if(0===i.length)return!1;const r=i.filter(e=>!(e.command in ka));if(0e.command).join(", ")}.`);const a=[];return i.forEach(e=>{a.push(this[e.command].apply(this,e.args))}),t&&Promise.all(a).then(t),this.stylesheet=e,this.mergeAll(),this.dispatcher.broadcast("setLayers",{layers:this._serializeLayers(this._order),scope:this.scope,options:this.options}),!0}addImage(e,t){return this.getImage(e)?this.fire(new et.f(new Error("An image with this name already exists."))):(this.imageManager.addImage(e,this.scope,t),this._afterImageUpdated(e),this)}updateImage(e,t){this.imageManager.updateImage(e,this.scope,t)}getImage(e){return this.imageManager.getImage(e,this.scope)}removeImage(e){return this.getImage(e)?(this.imageManager.removeImage(e,this.scope),this._afterImageUpdated(e),this):this.fire(new et.f(new Error("No image with this name exists.")))}_afterImageUpdated(e){this._availableImages=this.imageManager.listImages(this.scope),this._changes.updateImage(e),this.dispatcher.broadcast("setImages",{scope:this.scope,images:this._availableImages}),this.fire(new et.g("data",{dataType:"style"}))}listImages(){return this._checkLoaded(),this._availableImages.slice()}addModel(e,t,i={}){return this._checkLoaded(),this._validate(lt,"models."+e,t,null,i)||(this.modelManager.addModel(e,t,this.scope),this._changes.setDirty()),this}hasModel(e){return this.modelManager.hasModel(e,this.scope)}removeModel(e){return this.hasModel(e)?(this.modelManager.removeModel(e,this.scope),this):this.fire(new et.f(new Error("No model with this ID exists.")))}listModels(){return this._checkLoaded(),this.modelManager.listModels(this.scope)}addSource(e,t,i={}){if(this._checkLoaded(),void 0!==this.getOwnSource(e))throw new Error(`There is already a source with ID "${e}".`);if(!t.type)throw new Error(`The type property must be defined, but only the following properties were given: ${Object.keys(t).join(", ")}.`);if(!(0<=["vector","raster","geojson","video","image"].indexOf(t.type)&&this._validate(Ke,"sources."+e,t,null,i))){this.map&&this.map._collectResourceTiming&&(t.collectResourceTiming=!0);const a=Ai(e,t,this.dispatcher,this);a.scope=this.scope,a.setEventedParent(this,()=>({isSourceLoaded:this._isSourceCacheLoaded(a.id),source:a.serialize(),sourceId:a.id}));e=e=>{const t=(e?"symbol:":"other:")+a.id,i=et.am(t,this.scope),r=this._sourceCaches[t]=new et.bx(i,a,e);((e?this._symbolSourceCaches:this._otherSourceCaches)[a.id]=r).onAdd(this.map)};e(!1),"vector"!==t.type&&"geojson"!==t.type||e(!0),a.onAdd&&a.onAdd(this.map),i.isInitialLoad||(this.mergeSources(),this._changes.setDirty())}}removeSource(e){this._checkLoaded();const t=this.getOwnSource(e);if(!t)throw new Error("There is no source with this ID");for(const t in this._layers)if(this._layers[t].source===e)return this.fire(new et.f(new Error(`Source "${e}" cannot be removed while layer "${t}" is using it.`)));if(this.terrain&&this.terrain.scope===this.scope&&this.terrain.get().source===e)return this.fire(new et.f(new Error(`Source "${e}" cannot be removed while terrain is using it.`)));var i=this.getOwnSourceCaches(e);for(const e of i){const t=et.cX(e.id);delete this._sourceCaches[t],this._changes.discardSourceCacheUpdate(e.id),e.fire(new et.g("data",{sourceDataType:"metadata",dataType:"source",sourceId:e.getSource().id})),e.setEventedParent(null),e.clearTiles()}return delete this._otherSourceCaches[e],delete this._symbolSourceCaches[e],this.mergeSources(),t.setEventedParent(null),t.onRemove&&t.onRemove(this.map),this._changes.setDirty(),this}setGeoJSONSourceData(e,t){this._checkLoaded(),this.getOwnSource(e).setData(t),this._changes.setDirty()}getOwnSource(e){const t=this.getOwnSourceCache(e);return t&&t.getSource()}getOwnSources(){const e=[];for(const t in this._otherSourceCaches){const i=this.getOwnSourceCache(t);i&&e.push(i.getSource())}return e}areTilesLoaded(){const e=this._mergedSourceCaches;for(const r in e){var t=e[r]._tiles;for(const e in t){var i=t[e];if("loaded"!==i.state&&"errored"!==i.state)return!1}}return!0}setLights(e){if(this._checkLoaded(),!e)return delete this.ambientLight,void delete this.directionalLight;var t=this._getTransitionParameters();for(const i of e){if(this._validate(rt,"lights",i))return;switch(i.type){case"ambient":if(this.ambientLight){const et=this.ambientLight;et.set(i),et.updateTransitions(t)}else this.ambientLight=new wt(i,Tt=Tt||new et.U({color:new et.W(et.N.properties_light_ambient.color),intensity:new et.W(et.N.properties_light_ambient.intensity)}),this.scope,this.options);break;case"directional":if(this.directionalLight){const et=this.directionalLight;et.set(i),et.updateTransitions(t)}else this.directionalLight=new wt(i,Et=Et||new et.U({direction:new et.a6(et.N.properties_light_directional.direction),color:new et.W(et.N.properties_light_directional.color),intensity:new et.W(et.N.properties_light_directional.intensity),"cast-shadows":new et.W(et.N.properties_light_directional["cast-shadows"]),"shadow-intensity":new et.W(et.N.properties_light_directional["shadow-intensity"])}),this.scope,this.options)}}const i=new et.Y(this.z||0,t);this.ambientLight&&this.ambientLight.recalculate(i),this.directionalLight&&this.directionalLight.recalculate(i),this._brightness=this.calculateLightsBrightness(),this.dispatcher.broadcast("setBrightness",this._brightness)}calculateLightsBrightness(){const e=this.directionalLight,t=this.ambientLight;var i,r,a,n;if(e&&t)return i=e=>.2126*(e[0]<=.03928?e[0]/12.92:Math.pow((e[0]+.055)/1.055,2.4))+.7152*(e[1]<=.03928?e[1]/12.92:Math.pow((e[1]+.055)/1.055,2.4))+.0722*(e[2]<=.03928?e[2]/12.92:Math.pow((e[2]+.055)/1.055,2.4)),r=e.properties.get("color").toRenderColor(null).toArray01(),a=e.properties.get("intensity"),n=e.properties.get("direction"),n=1-et.ad(n.x,n.y,n.z)[2]/90,r=i(r)*a*n,a=t.properties.get("color").toRenderColor(null).toArray01(),n=t.properties.get("intensity"),(r+i(a)*n)/2}getBrightness(){return this._brightness}getLights(){if(!this.enable3dLights())return null;const e=[];return this.directionalLight&&e.push(this.directionalLight.get()),this.ambientLight&&e.push(this.ambientLight.get()),e}enable3dLights(){return!!this.ambientLight&&!!this.directionalLight}getFragmentStyle(t){if(!t)return this;if(et.cY(t)){const i=et.cZ(t),r=this.fragments.find(({id:e})=>e===i);if(!r)throw new Error("Style import not found: "+t);var e=et.cX(t);return r.style.getFragmentStyle(e)}{const et=this.fragments.find(({id:e})=>e===t);if(et)return et.style;throw new Error("Style import not found: "+t)}}getConfigProperty(e,t){const i=this.getFragmentStyle(e);if(!i)return null;const r=et.am(t,i.scope),a=i.options.get(r),n=a?a.value||a.default:null;return n?n.serialize():null}setConfigProperty(t,i,r){const e=this.getFragmentStyle(t);if(e){var a=e.stylesheet.schema;if(a&&a[i]){r=et.z(r);if("success"!==r.result)y(this,r.value);else{var r=r.value.expression,n=et.am(i,e.scope),o=e.options.get(n);if(o){let e;var{minValue:s,maxValue:l,stepValue:c,type:h,values:u}=a[i],a=et.z(a[i].default);(e="success"===a.result?a.value.expression:e)?(this.options.set(n,{...o,value:r,default:e,minValue:s,maxValue:l,stepValue:c,type:h,values:u}),this.updateConfigDependencies(i)):this.fire(new et.f(new Error(`No schema defined for the config option "${i}" in the "${t}" fragment.`)))}}}}}getConfig(e){const t=this.getFragmentStyle(e);if(!t)return null;const i=t.stylesheet.schema;if(!i)return null;const r={};for(const e in i){const i=et.am(e,t.scope),a=t.options.get(i),n=a?a.value||a.default:null;r[e]=n?n.serialize():null}return r}setConfig(e,t){const i=this.getFragmentStyle(e);i&&(i.updateConfig(t,i.stylesheet.schema),this.updateConfigDependencies())}getSchema(e){e=this.getFragmentStyle(e);return e?e.stylesheet.schema:null}setSchema(e,t){const i=this.getFragmentStyle(e);i&&(i.stylesheet.schema=t,i.updateConfig(i._config,t),this.updateConfigDependencies())}updateConfig(i,r){if((this._config=i)||r)if(r)for(const c in r){let e,t;var a=et.z(r[c].default);if("success"===a.result&&(e=a.value.expression),i&&void 0!==i[c]){const r=et.z(i[c]);"success"===r.result&&(t=r.value.expression)}var{minValue:a,maxValue:n,stepValue:o,type:s,values:l}=r[c];if(e){const i=et.am(c,this.scope);this.options.set(i,{default:e,value:t,minValue:a,maxValue:n,stepValue:o,type:s,values:l})}else this.fire(new et.f(new Error(`No schema defined for config option "${c}".`)))}else this.fire(new et.f(new Error("Attempting to set config for a style without schema.")))}updateConfigDependencies(e){for(const t of this._configDependentLayers){const i=this.getLayer(t);!i||e&&!i.configDependencies.has(e)||(i.possiblyEvaluateVisibility(),this._updateLayer(i))}this.ambientLight&&this.ambientLight.updateConfig(this.options),this.directionalLight&&this.directionalLight.updateConfig(this.options),this.fog&&this.fog.updateConfig(this.options),this.forEachFragmentStyle(e=>{var t;e._styleColorTheme.colorTheme&&(t=e._evaluateColorThemeData(e._styleColorTheme.colorTheme),(!e._styleColorTheme.lut&&""!==t||e._styleColorTheme.lut&&t!==e._styleColorTheme.lut.data)&&e.setColorTheme(e._styleColorTheme.colorTheme))}),this._changes.setDirty()}addLayer(i,r,a={}){this._checkLoaded();var n=i.id;if(this._layers[n])this.fire(new et.f(new Error(`Layer with id "${n}" already exists on this map`)));else{let e;if("custom"===i.type){if(y(this,et.c_(i)))return;e=et.c$(i,this.scope,this._styleColorTheme.lut,this.options)}else{if("object"==typeof i.source&&(this.addSource(n,i.source),i=et.cW(i),i=et.Q(i,{source:n})),this._validate(ot,"layers."+n,i,{arrayIndex:-1},a))return;e=et.c$(i,this.scope,this._styleColorTheme.lut,this.options),this._validateLayer(e),e.setEventedParent(this,{layer:{id:n}}),this._serializedLayers[e.id]=e.serialize()}0!==e.configDependencies.size&&this._configDependentLayers.add(e.fqid);let t=this._order.length;if(r){const i=this._order.indexOf(r);if(-1===i)return void this.fire(new et.f(new Error(`Layer with id "${r}" does not exist on this map.`)));e.slot===this._layers[r].slot?t=i:et.w(`Layer with id "${r}" has a different slot. Layers can only be rearranged within the same slot.`)}this._order.splice(t,0,n),this._layerOrderChanged=!0,this._layers[n]=e;const o=this.getOwnLayerSourceCache(e),s=!!this.directionalLight&&this.directionalLight.shadowsEnabled();o&&e.canCastShadows()&&s&&(o.castsShadows=!0);a=this._changes.getRemovedLayer(e);if(a&&e.source&&o&&"custom"!==e.type){this._changes.discardLayerRemoval(e);const i=et.am(e.source,e.scope);a.type!==e.type?this._changes.updateSourceCache(i,"clear"):(this._changes.updateSourceCache(i,"reload"),o.pause())}this._updateLayer(e),e.onAdd&&e.onAdd(this.map),e.scope=this.scope,this.mergeLayers()}}moveLayer(t,i){this._checkLoaded();var r=this._checkLayer(t);if(r&&t!==i){var a=this._order.indexOf(t);this._order.splice(a,1);let e=this._order.length;if(i){const t=this._order.indexOf(i);if(-1===t)return void this.fire(new et.f(new Error(`Layer with id "${i}" does not exist on this map.`)));r.slot===this._layers[i].slot?e=t:et.w(`Layer with id "${i}" has a different slot. Layers can only be rearranged within the same slot.`)}this._order.splice(e,0,t),this._changes.setDirty(),this._layerOrderChanged=!0,this.mergeLayers()}}removeLayer(e){this._checkLoaded();const t=this._checkLayer(e);if(t){t.setEventedParent(null);const i=this._order.indexOf(e),r=(this._order.splice(i,1),delete this._layers[e],delete this._serializedLayers[e],this._changes.setDirty(),this._layerOrderChanged=!0,this._configDependentLayers.delete(t.fqid),this._changes.removeLayer(t),this.getOwnLayerSourceCache(t));if(r&&r.castsShadows){let e=!1;for(const i in this._layers)if(this._layers[i].source===t.source&&this._layers[i].canCastShadows()){e=!0;break}r.castsShadows=e}t.onRemove&&t.onRemove(this.map),this.mergeLayers()}}getOwnLayer(e){return this._layers[e]}hasLayer(e){return e in this._mergedLayers}hasLayerType(e){for(const t in this._layers)if(this._layers[t].type===e)return!0;return!1}setLayerZoomRange(e,t,i){this._checkLoaded();const r=this._checkLayer(e);!r||r.minzoom===t&&r.maxzoom===i||(null!=t&&(r.minzoom=t),null!=i&&(r.maxzoom=i),this._updateLayer(r))}getSlots(){return this._checkLoaded(),this._mergedSlots}setSlot(e,t){this._checkLoaded();const i=this._checkLayer(e);i&&i.slot!==t&&(i.slot=t,this._updateLayer(i))}setFilter(e,t,i={}){this._checkLoaded();const r=this._checkLayer(e);if(r&&!et.d(r.filter,t))return null==t?(r.filter=void 0,void this._updateLayer(r)):void(this._validate(st,`layers.${r.id}.filter`,t,{layerType:r.type},i)||(r.filter=et.cW(t),this._updateLayer(r)))}getFilter(e){e=this._checkLayer(e);if(e)return et.cW(e.filter)}setLayoutProperty(e,t,i,r={}){this._checkLoaded();const a=this._checkLayer(e);a&&!et.d(a.getLayoutProperty(t),i)&&(null==i||r&&!1===r.validate||!y(a,(e=>s(Ue(e))).call(o,{key:`layers.${e}.layout.`+t,layerType:a.type,objectKey:t,value:i,styleSpec:et.N,style:{glyphs:!0,sprite:!0}})))&&(a.setLayoutProperty(t,i),0!==a.configDependencies.size&&this._configDependentLayers.add(a.fqid),this._updateLayer(a))}getLayoutProperty(e,t){const i=this._checkLayer(e);if(i)return i.getLayoutProperty(t)}setPaintProperty(e,t,i,r={}){this._checkLoaded();const a=this._checkLayer(e);a&&!et.d(a.getPaintProperty(t),i)&&(null==i||r&&!1===r.validate||!y(a,(e=>s(Ve(e))).call(o,{key:`layers.${e}.paint.`+t,layerType:a.type,objectKey:t,value:i,styleSpec:et.N})))&&(r=a.setPaintProperty(t,i),0!==a.configDependencies.size&&this._configDependentLayers.add(a.fqid),r&&this._updateLayer(a),this._changes.updatePaintProperties(a))}getPaintProperty(e,t){const i=this._checkLayer(e);if(i)return i.getPaintProperty(t)}setFeatureState(e,t){this._checkLoaded();var i=e.source,r=e.sourceLayer,a=this._checkSource(i);if(a){a=a.type;if("geojson"===a&&r)this.fire(new et.f(new Error("GeoJSON sources cannot have a sourceLayer parameter.")));else if("vector"!==a||r){void 0===e.id&&this.fire(new et.f(new Error("The feature id parameter must be provided.")));for(const et of this.getOwnSourceCaches(i))et.setFeatureState(r,e.id,t)}else this.fire(new et.f(new Error("The sourceLayer parameter must be provided for vector source types.")))}}removeFeatureState(e,t){this._checkLoaded();var i=e.source,r=this._checkSource(i);if(r){var r=r.type,a="vector"===r?e.sourceLayer:void 0;if("vector"!==r||a)if(t&&"string"!=typeof e.id&&"number"!=typeof e.id)this.fire(new et.f(new Error("A feature id is required to remove its specific state property.")));else for(const et of this.getOwnSourceCaches(i))et.removeFeatureState(a,e.id,t);else this.fire(new et.f(new Error("The sourceLayer parameter must be provided for vector source types.")))}}getFeatureState(e){this._checkLoaded();var t=e.source,i=e.sourceLayer,r=this._checkSource(t);if(r){if("vector"!==r.type||i)return void 0===e.id&&this.fire(new et.f(new Error("The feature id parameter must be provided."))),this.getOwnSourceCaches(t)[0].getFeatureState(i,e.id);this.fire(new et.f(new Error("The sourceLayer parameter must be provided for vector source types.")))}}setTransition(e){return this.stylesheet.transition=et.Q({},this.stylesheet.transition,e),this.transition=this.stylesheet.transition,this}getTransition(){return et.Q({},this.stylesheet.transition)}serialize(){this._checkLoaded();var e=this.getTerrain(),e=e&&this.terrain&&this.terrain.scope===this.scope?e:this.stylesheet.terrain;return et.d0({version:this.stylesheet.version,name:this.stylesheet.name,metadata:this.stylesheet.metadata,fragment:this.stylesheet.fragment,imports:this._serializeImports(),schema:this.stylesheet.schema,camera:this.stylesheet.camera,light:this.stylesheet.light,lights:this.stylesheet.lights,terrain:e,fog:this.stylesheet.fog,center:this.stylesheet.center,"color-theme":this.stylesheet["color-theme"],zoom:this.stylesheet.zoom,bearing:this.stylesheet.bearing,pitch:this.stylesheet.pitch,sprite:this.stylesheet.sprite,glyphs:this.stylesheet.glyphs,transition:this.stylesheet.transition,projection:this.stylesheet.projection,sources:this._serializeSources(),layers:this._serializeLayers(this._order)},e=>void 0!==e)}_updateLayer(e){this._changes.updateLayer(e);const t=this.getLayerSourceCache(e),i=et.am(e.source,e.scope),r=this._changes.getUpdatedSourceCaches();e.source&&!r[i]&&t&&"raster"!==t.getSource().type&&(this._changes.updateSourceCache(i,"reload"),t.pause()),e.invalidateCompiledFilter()}_flattenAndSortRenderedFeatures(i){const r=e=>"fill-extrusion"===this._mergedLayers[e].type||"model"===this._mergedLayers[e].type,a=this.order,n={},o=[];for(let e=a.length-1;0<=e;e--){var t=a[e];if(r(t)){n[t]=e;for(const r of i){const i=r[t];if(i)for(const r of i)o.push(r)}}}o.sort((e,t)=>t.intersectionZ-e.intersectionZ);const s=[];for(let t=a.length-1;0<=t;t--){var e=a[t];if(r(e))for(let e=o.length-1;0<=e;e--){const r=o[e].feature;if(r.layer&&n[r.layer.id]{const t=this.getLayer(e);return t&&t.is3D()}):this.has3DLayers(),s=Xr.createFromScreenPoints(e,i);for(const et in this._mergedSourceCaches){const e=this._mergedSourceCaches[et].getSource();var l;e&&e.scope===t.scope&&(l=this._mergedSourceCaches[et].getSource().id,t.layers&&!r[l]||a.push(Kr(this._mergedSourceCaches[et],this._mergedLayers,n,s,t,i,o,!!this.map._showQueryGeometry)))}return this.placement&&a.push(function(r,a,n,e,t,i,o){const s={},l=i.queryRenderedSymbols(e),c=[];for(const r of Object.keys(l).map(Number))c.push(o[r]);c.sort(Qr);for(const n of c){const e=n.featureIndex.lookupSymbolFeatures(l[n.bucketInstanceId],a,n.bucketIndex,n.sourceLayerIndex,t.filter,t.layers,t.availableImages,r);for(const r in e){const a=s[r]=s[r]||[],t=e[r];t.sort((e,t)=>{const i=n.featureSortOrder;if(i){const n=i.indexOf(e.featureIndex);return i.indexOf(t.featureIndex)-n}return t.featureIndex-e.featureIndex});for(const r of t)a.push(r)}}for(const a in s)s[a].forEach(e=>{const t=e.feature,i=n(r[a]);i&&(e=i.getFeatureState(t.layer["source-layer"],t.id),t.source=t.layer.source,t.layer["source-layer"]&&(t.sourceLayer=t.layer["source-layer"]),t.state=e)});return s}(this._mergedLayers,n,this.getLayerSourceCache.bind(this),s.screenGeometry,t,this.placement.collisionIndex,this.placement.retainedQueryData)),this._flattenAndSortRenderedFeatures(a)}querySourceFeatures(e,t){t&&t.filter&&this._validate(st,"querySourceFeatures.filter",t.filter,null,t);var i=this.getOwnSourceCaches(e);let r=[];for(const e of i)r=r.concat(function(t,i){const r=t.getRenderableIds().map(e=>t.getTileByID(e)),a=[],n={};for(let e=0;e{for(const e of this.map._markers)e._evaluateOpacity()})}getFog(){return this.fog?this.fog.get():null}setFog(e){if(this._checkLoaded(),!e)return delete this.fog,delete this.stylesheet.fog,void(this._markersNeedUpdate=!0);if(this.fog){const t=this.fog;if(!et.d(t.get(),e)){t.set(e,this.options),this.stylesheet.fog=t.get();const et=this._getTransitionParameters({duration:0});t.updateTransitions(et)}}else this._createFog(e);this._markersNeedUpdate=!0}setColorTheme(e){this._checkLoaded();const t=()=>{for(const e in this._layers)this._layers[e].lut=this._styleColorTheme.lut;for(const t in this._sourceCaches)this._sourceCaches[t].clearTiles()};if(!(this._styleColorTheme.colorTheme=e))return this._styleColorTheme.lut=null,void t();e=this._evaluateColorThemeData(e);this._loadColorTheme(e).then(()=>{this.fire(new et.g("colorthemeset")),t()}).catch(e=>{et.w("Couldn't set color theme: "+e)})}_getTransitionParameters(e){return{now:et.e.now(),transition:et.Q(this.transition,e)}}updateDrapeFirstLayers(){if(this.terrain){const e=[],t=[];for(const i of this._mergedOrder)(this.isLayerDraped(this._mergedLayers[i])?e:t).push(i);this._drapedFirstOrder=[],this._drapedFirstOrder.push(...e),this._drapedFirstOrder.push(...t)}}_createTerrain(e,t){const i=this.terrain=new pt(e,t,this.scope,this.options);1===t&&(this.stylesheet.terrain=e),this.mergeTerrain(),this.updateDrapeFirstLayers(),this._force3DLayerUpdate();t=this._getTransitionParameters({duration:0});i.updateTransitions(t)}_force3DLayerUpdate(){for(const t in this._layers){var e=this._layers[t];"fill-extrusion"===e.type&&this._updateLayer(e)}}_forceSymbolLayerUpdate(){for(const t in this._layers){var e=this._layers[t];"symbol"===e.type&&this._updateLayer(e)}}_validate(e,t,i,r,a={}){if(a&&!1===a.validate)return!1;a=et.Q({},this.serialize());return y(this,e.call(o,et.Q({key:t,style:a,value:i,styleSpec:et.N},r)))}_remove(){this._request&&(this._request.cancel(),this._request=null),this._spriteRequest&&(this._spriteRequest.cancel(),this._spriteRequest=null),et.d1.off("pluginStateChange",this._rtlTextPluginCallback);for(const et in this._mergedLayers)this._mergedLayers[et].setEventedParent(null);for(const et in this._mergedSourceCaches)this._mergedSourceCaches[et].clearTiles(),this._mergedSourceCaches[et].setEventedParent(null);this.setEventedParent(null),delete this.fog,delete this.terrain,delete this.ambientLight,delete this.directionalLight,this.isRootStyle()&&(this.imageManager.setEventedParent(null),this.modelManager.setEventedParent(null),this.dispatcher.remove())}clearSource(e){var t=this.getSourceCaches(e);for(const e of t)e.clearTiles()}clearSources(){for(const e in this._mergedSourceCaches)this._mergedSourceCaches[e].clearTiles()}reloadSource(e){var t=this.getSourceCaches(e);for(const e of t)e.resume(),e.reload()}reloadSources(){for(const e of this.getSources())e.reload&&e.reload()}updateSources(e){let t;this.directionalLight&&(t=bi(this.directionalLight));for(const i in this._mergedSourceCaches)this._mergedSourceCaches[i].update(e,void 0,void 0,t)}_generateCollisionBoxes(){for(const e in this._sourceCaches){const t=this._sourceCaches[e];t.resume(),t.reload()}}_updatePlacement(t,i,r,a,e,n,o=!1){let s=!1,l=!1;const c={},h={};for(const t of this._mergedOrder){const r=this._mergedLayers[t];if("symbol"===r.type){const a=et.am(r.source,r.scope);let e=c[a];if(!e){const et=this.getLayerSourceCache(r);if(!et)continue;const t=et.getRenderableIds(!0).map(e=>et.getTileByID(e));h[a]=t.slice(),e=c[a]=t.sort((e,t)=>t.tileID.overscaledZ-e.tileID.overscaledZ||(e.tileID.isLessThan(t.tileID)?-1:1))}const n=this.crossTileSymbolIndex.addLayer(r,e,i.center.lng,i.projection);s=s||n}}if(this.crossTileSymbolIndex.pruneUnusedLayers(this._mergedOrder),o=o||this._layerOrderChanged||0===a,this._layerOrderChanged&&this.fire(new et.g("neworder")),(o||!this.pauseablePlacement||this.pauseablePlacement.isDone()&&!this.placement.stillRecent(et.e.now(),i.zoom))&&(this.pauseablePlacement=new Aa(i,this._mergedOrder,o,r,a,e,this.placement,this.fog&&i.projection.supportsFog?this.fog.state:null,this._buildingIndex),this._layerOrderChanged=!1),this.pauseablePlacement.isDone()?this.placement.setStale():(this.pauseablePlacement.continuePlacement(this._mergedOrder,this._mergedLayers,c,h),this.pauseablePlacement.isDone()&&(this.placement=this.pauseablePlacement.commit(et.e.now()),l=!0),s&&this.pauseablePlacement.placement.setStale()),l||s){this._buildingIndex.onNewFrame(i.zoom);for(let t=0;tte===t.id)){if(!i)return e.push(t),this._loadImports([t],!0);var r=e.findIndex(({id:e})=>e===i);return-1===r&&this.fire(new et.f(new Error(`Import with id "${i}" does not exist on this map.`))),this.stylesheet.imports=e.slice(0,r).concat(t).concat(e.slice(r)),this._loadImports([t],!0,i)}this.fire(new et.f(new Error(`Import with id '${t.id}' already exists in the map's style.`)))}updateImport(e,t){this._checkLoaded();var i=this.stylesheet.imports||[],r=this.getImportIndex(e);return-1===r||("string"==typeof t?this.setImportUrl(e,t):(t.url&&t.url!==i[r].url&&this.setImportUrl(e,t.url),et.d(t.config,i[r].config)||this.setImportConfig(e,t.config),et.d(t.data,i[r].data)||this.setImportData(e,t.data))),this}moveImport(t,e){this._checkLoaded();let i=this.stylesheet.imports||[];var r=this.getImportIndex(t);if(-1===r)return this;e=this.getImportIndex(e);if(-1===e)return this;var a=i[r],r=this.fragments[r];return i=i.filter(({id:e})=>e!==t),this.fragments=this.fragments.filter(({id:e})=>e!==t),this.stylesheet.imports=i.slice(0,e).concat(a).concat(i.slice(e)),this.fragments=this.fragments.slice(0,e).concat(r).concat(this.fragments.slice(e)),this.mergeLayers(),this}setImportUrl(e,t){this._checkLoaded();const i=this.stylesheet.imports||[],r=this.getImportIndex(e);if(-1===r)return this;i[r].url=t;const a=this.fragments[r];return a.style=this._createFragmentStyle(i[r]),a.style.on("style.import.load",()=>this.mergeAll()),a.style.loadURL(t),this}setImportData(e,t){this._checkLoaded();const i=this.getImportIndex(e),r=this.stylesheet.imports||[];return-1===i?this:t?(this.fragments[i].style.setState(t),this._reloadImports(),this):(delete r[i].data,this.setImportUrl(e,r[i].url))}setImportConfig(e,t){this._checkLoaded();const i=this.getImportIndex(e),r=this.stylesheet.imports||[];if(-1===i)return this;t?r[i].config=t:delete r[i].config;const a=this.fragments[i],n=a.style.stylesheet&&a.style.stylesheet.schema;return a.config=t,a.style.updateConfig(t,n),this.updateConfigDependencies(),this}removeImport(e){this._checkLoaded();const t=this.stylesheet.imports||[],i=this.getImportIndex(e);-1!==i&&(t.splice(i,1),this.fragments[i].style._remove(),this.fragments.splice(i,1),this._reloadImports())}getImportIndex(t){var e=(this.stylesheet.imports||[]).findIndex(e=>e.id===t);return-1===e&&this.fire(new et.f(new Error(`Import '${t}' does not exist in the map's style and cannot be updated.`))),e}getLayer(e){return this._mergedLayers[e]}getSources(){const e=[];for(const t in this._mergedOtherSourceCaches){const i=this._mergedOtherSourceCaches[t];i&&e.push(i.getSource())}return e}getSource(e,t){const i=this.getSourceCache(e,t);return i&&i.getSource()}getLayerSource(e){const t=this.getLayerSourceCache(e);return t&&t.getSource()}getSourceCache(e,t){e=et.am(e,t);return this._mergedOtherSourceCaches[e]}getLayerSourceCache(e){var t=et.am(e.source,e.scope);return("symbol"===e.type?this._mergedSymbolSourceCaches:this._mergedOtherSourceCaches)[t]}getSourceCaches(e){if(null==e)return Object.values(this._mergedSourceCaches);const t=[];return this._mergedOtherSourceCaches[e]&&t.push(this._mergedOtherSourceCaches[e]),this._mergedSymbolSourceCaches[e]&&t.push(this._mergedSymbolSourceCaches[e]),t}updateSourceCaches(){var e=this._changes.getUpdatedSourceCaches();for(const i in e){var t=e[i];"reload"===t?this.reloadSource(i):"clear"===t&&this.clearSource(i)}}updateLayers(e){const t=this._changes.getUpdatedPaintProperties();for(const i of t){const t=this.getLayer(i);t&&t.updateTransitions(e)}}getImages(e,t,i){this.imageManager.getImages(t.icons,t.scope,i),this._updateTilesForChangedImages();i=e=>{e&&e.setDependencies(t.tileID.key,t.type,t.icons)};i(this._otherSourceCaches[t.source]),i(this._symbolSourceCaches[t.source])}getGlyphs(e,t,i){this.glyphManager.getGlyphs(t.stacks,t.scope,i)}getResource(e,t,i){return et.d2(t,i)}getOwnSourceCache(e){return this._otherSourceCaches[e]}getOwnLayerSourceCache(e){return("symbol"===e.type?this._symbolSourceCaches:this._otherSourceCaches)[e.source]}getOwnSourceCaches(e){const t=[];return this._otherSourceCaches[e]&&t.push(this._otherSourceCaches[e]),this._symbolSourceCaches[e]&&t.push(this._symbolSourceCaches[e]),t}_isSourceCacheLoaded(e){const t=this.getOwnSourceCaches(e);return 0===t.length?(this.fire(new et.f(new Error(`There is no source with ID '${e}'`))),!1):t.every(e=>e.loaded())}has3DLayers(){return this._has3DLayers}hasSymbolLayers(){return this._hasSymbolLayers}hasCircleLayers(){return this._hasCircleLayers}isLayerClipped(e,t){if(0===this._clipLayerIndices.length&&"fill-extrusion"!==e.type)return!1;const i="fill-extrusion"===e.type&&"building"===e.sourceLayer;let r=0;if(e.is3D()){if(i||t&&"batched-model"===t.type)return!0;"model"===e.type&&(r=et.cw.Model)}else"symbol"===e.type&&(r=et.cw.Symbol);for(const e of this._clipLayerIndices){const t=this._mergedLayers[this._mergedOrder[e]];if(t){const i=[];for(const e of t.layout.get("clip-layer-types"))i.push("model"===e?et.cw.Model:"symbol"===e?et.cw.Symbol:et.cw.FillExtrusion);for(const et of i)if(r&et)return!0}}return!1}_clearWorkerCaches(){this.dispatcher.broadcast("clearCaches")}destroy(){this._clearWorkerCaches(),this.fragments.forEach(e=>{e.style._remove()}),this.terrainSetForDrapingOnly()&&(delete this.terrain,delete this.stylesheet.terrain)}}function Na(e,t){let i=!1,r=null;const a=()=>{r=null,i&&(e(),r=setTimeout(a,t),i=!1)};return()=>(i=!0,r||a(),r)}x.getSourceType=function(e){return Ci[e]},x.setSourceType=function(e,t){Ci[e]=t},x.registerForPluginStateChange=et.cO;class Va{constructor(e){this._hashName=e&&encodeURIComponent(e),et.br(["_getCurrentHash","_onHashChange","_updateHash"],this),this._updateHash=Na(this._updateHashUnthrottled.bind(this),300)}addTo(e){return this._map=e,window.addEventListener("hashchange",this._onHashChange,!1),e.on("moveend",this._updateHash),this}remove(){return this._map&&(this._map.off("moveend",this._updateHash),window.removeEventListener("hashchange",this._onHashChange,!1),clearTimeout(this._updateHash()),this._map=void 0),this}getHashString(){const r=this._map;if(!r)return"";const a=Ua(r);if(this._hashName){const r=this._hashName;let i=!1;const e=location.hash.slice(1).split("&").map(e=>{var t=e.split("=")[0];return t===r?(i=!0,t+"="+a):e}).filter(e=>e);return i||e.push(r+"="+a),"#"+e.join("&")}return"#"+a}_getCurrentHash(){const e=location.hash.replace("#","");if(this._hashName){let t;return e.split("&").map(e=>e.split("=")).forEach(e=>{e[0]===this._hashName&&(t=e)}),(t&&t[1]||"").split("/")}return e.split("/")}_onHashChange(){const e=this._map;if(!e)return!1;const t=this._getCurrentHash();var i;return 3<=t.length&&!t.some(e=>isNaN(e))&&(i=e.dragRotate.isEnabled()&&e.touchZoomRotate.isEnabled()?+(t[3]||0):e.getBearing(),e.jumpTo({center:[+t[2],+t[1]],zoom:+t[0],bearing:i,pitch:+(t[4]||0)}),!0)}_updateHashUnthrottled(){history.replaceState(history.state,"",location.href.replace(/(#.+)?$/,this.getHashString()))}}function Ua(e,t){var i=e.getCenter(),r=Math.round(100*e.getZoom())/100,a=Math.ceil((r*Math.LN2+Math.log(512/360/.5))/Math.LN10),a=Math.pow(10,a),n=Math.round(i.lng*a)/a,i=Math.round(i.lat*a)/a,a=e.getBearing(),e=e.getPitch();let o=t?`/${n}/${i}/`+r:r+`/${i}/`+n;return(a||e)&&(o+="/"+Math.round(10*a)/10),e&&(o+="/"+Math.round(e)),o}const ja={linearity:.3,easing:et.d3(0,0,.3,1)},Ga=et.Q({deceleration:2500,maxSpeed:1400},ja),qa=et.Q({deceleration:20,maxSpeed:1400},ja),$a=et.Q({deceleration:1e3,maxSpeed:360},ja),Za=et.Q({deceleration:1e3,maxSpeed:90},ja);class Wa{constructor(e){this._map=e,this.clear()}clear(){this._inertiaBuffer=[]}record(e){this._drainInertiaBuffer(),this._inertiaBuffer.push({time:et.e.now(),settings:e})}_drainInertiaBuffer(){const e=this._inertiaBuffer,t=et.e.now();for(;0t.unproject(e)),o=a.reduce((e,t,i,r)=>e.add(t.div(r.length)),new et.P(0,0));super(e,{points:a,point:o,lngLats:n,lngLat:t.unproject(o),originalEvent:i}),this._defaultPrevented=!1}}class Ja extends et.g{preventDefault(){this._defaultPrevented=!0}get defaultPrevented(){return this._defaultPrevented}constructor(e,t){super("wheel",{originalEvent:t}),this._defaultPrevented=!1}}class Ka{constructor(e,t){this._map=e,this._clickTolerance=t.clickTolerance}reset(){this._mousedownPos=void 0}wheel(e){return this._firePreventable(new Ja(this._map,e))}mousedown(e,t){return this._mousedownPos=t,this._firePreventable(new b(e.type,this._map,e))}mouseup(e){this._map.fire(new b(e.type,this._map,e))}preclick(e){const t=et.Q({},e);t.type="preclick",this._map.fire(new b(t.type,this._map,t))}click(e,t){this._mousedownPos&&this._mousedownPos.dist(t)>=this._clickTolerance||(this.preclick(e),this._map.fire(new b(e.type,this._map,e)))}dblclick(e){return this._firePreventable(new b(e.type,this._map,e))}mouseover(e){this._map.fire(new b(e.type,this._map,e))}mouseout(e){this._map.fire(new b(e.type,this._map,e))}touchstart(e){return this._firePreventable(new Ya(e.type,this._map,e))}touchmove(e){this._map.fire(new Ya(e.type,this._map,e))}touchend(e){this._map.fire(new Ya(e.type,this._map,e))}touchcancel(e){this._map.fire(new Ya(e.type,this._map,e))}_firePreventable(e){if(this._map.fire(e),e.defaultPrevented)return{}}isEnabled(){return!0}isActive(){return!1}enable(){}disable(){}}class Qa{constructor(e){this._map=e}reset(){this._delayContextMenu=!1,this._contextMenuEvent=void 0}mousemove(e){this._map.fire(new b(e.type,this._map,e))}mousedown(){this._delayContextMenu=!0}mouseup(){this._delayContextMenu=!1,this._contextMenuEvent&&(this._map.fire(new b("contextmenu",this._map,this._contextMenuEvent)),delete this._contextMenuEvent)}contextmenu(e){this._delayContextMenu?this._contextMenuEvent=e:this._map.fire(new b(e.type,this._map,e)),this._map.listens("contextmenu")&&e.preventDefault()}isEnabled(){return!0}isActive(){return!1}enable(){}disable(){}}class en{constructor(e,t){this._map=e,this._el=e.getCanvasContainer(),this._container=e.getContainer(),this._clickTolerance=t.clickTolerance||1}isEnabled(){return!!this._enabled}isActive(){return!!this._active}enable(){this.isEnabled()||(this._enabled=!0)}disable(){this.isEnabled()&&(this._enabled=!1)}mousedown(e,t){this.isEnabled()&&e.shiftKey&&0===e.button&&(C(),this._startPos=this._lastPos=t,this._active=!0)}mousemoveWindow(e,t){if(this._active){const i=t,r=this._startPos,a=this._lastPos;if(!(!r||!a||a.equals(i)||!this._box&&i.dist(r){this._box&&(this._box.style.transform=`translate(${n}px,${s}px)`,this._box.style.width=o-n+"px",this._box.style.height=l-s+"px")})}}}mouseupWindow(e,t){if(this._active){const i=this._startPos,r=t;if(i&&0===e.button){if(this.reset(),F(),i.x!==r.x||i.y!==r.y)return this._map.fire(new et.g("boxzoomend",{originalEvent:e})),{cameraAnimation:e=>e.fitScreenCoordinates(i,r,this._map.getBearing(),{linear:!1})};this._fireEvent("boxzoomcancel",e)}}}keydown(e){this._active&&27===e.keyCode&&(this.reset(),this._fireEvent("boxzoomcancel",e))}blur(){this.reset()}reset(){this._active=!1,this._container.classList.remove("mapboxgl-crosshair"),this._box&&(this._box.remove(),this._box=null),P(),delete this._startPos,delete this._lastPos}_fireEvent(e,t){return this._map.fire(new et.g(e,{originalEvent:t}))}}function tn(t,i){const r={};for(let e=0;ethis.numTouches)&&(this.aborted=!0),this.aborted||(0===this.startTime&&(this.startTime=e.timeStamp),i.length===this.numTouches&&(this.centroid=function(e){const t=new et.P(0,0);for(const et of e)t._add(et);return t.div(e.length)}(t),this.touches=tn(i,t)))}touchmove(e,t,i){if(!this.aborted&&this.centroid){var r=tn(i,t);for(const e in this.touches){const t=r[e];(!t||30this.reset(),0),{cameraAnimation:e=>e.easeTo({duration:300,zoom:e.getZoom()+1,around:e.unproject(r)},{originalEvent:t})}):a?(this._active=!0,t.preventDefault(),setTimeout(()=>this.reset(),0),{cameraAnimation:e=>e.easeTo({duration:300,zoom:e.getZoom()-1,around:e.unproject(a)},{originalEvent:t})}):void 0}touchcancel(){this.reset()}enable(){this._enabled=!0}disable(){this._enabled=!1,this.reset()}isEnabled(){return this._enabled}isActive(){return this._active}}const on={0:1,2:2};class sn{constructor(e){this.reset(),this._clickTolerance=e.clickTolerance||1}blur(){this.reset()}reset(){this._active=!1,this._moved=!1,this._lastPoint=void 0,this._eventButton=void 0}_correctButton(e,t){return!1}_move(e,t){return{}}mousedown(e,t){var i;this._lastPoint||(i=V(e),this._correctButton(e,i)&&(this._lastPoint=t,this._eventButton=i))}mousemoveWindow(e,t){var i=this._lastPoint;if(i)if(e.preventDefault(),null!=this._eventButton&&function(e,t){t=on[t];return void 0===e.buttons||(e.buttons&t)!==t}(e,this._eventButton))this.reset();else if(this._moved||!(t.dist(i){this._alertContainer.classList.remove("mapboxgl-touch-pan-blocker-show"),this._alertContainer.removeAttribute("role")},500)}}class dn{constructor(){this.reset()}reset(){this._active=!1,this._firstTwoTouches=void 0}_start(e){}_move(e,t,i){return{}}touchstart(e,t,i){this._firstTwoTouches||i.length<2||(this._firstTwoTouches=[i[0].identifier,i[1].identifier],this._start([t[0],t[1]]))}touchmove(e,t,i){var r=this._firstTwoTouches;if(r){e.preventDefault();const[a,n]=r,o=pn(i,t,a),s=pn(i,t,n);if(o&&s)return r=this._aroundCenter?null:o.add(s).div(2),this._move([o,s],r,e)}}touchend(e,t,i){var r,a;this._firstTwoTouches&&([a,r]=this._firstTwoTouches,a=pn(i,t,a),i=pn(i,t,r),a&&i||(this._active&&F(),this.reset()))}touchcancel(){this.reset()}enable(e){this._enabled=!0,this._aroundCenter=!!e&&"center"===e.around}disable(){this._enabled=!1,this.reset()}isEnabled(){return this._enabled}isActive(){return this._active}}function pn(t,i,r){for(let e=0;eMath.abs(e.x)}class xn extends dn{constructor(e){super(),this._map=e}reset(){super.reset(),this._valid=void 0,this._firstMove=void 0,this._lastPoints=void 0}_start(e){yn((this._lastPoints=e)[0].sub(e[1]))&&(this._valid=!1)}_move(e,t,i){var r,a=this._lastPoints;if(a)return r=e[0].sub(a[0]),a=e[1].sub(a[1]),this._map._cooperativeGestures&&!et.d4()&&i.touches.length<3||(this._valid=this.gestureBeginsVertically(r,a,i.timeStamp),!this._valid)?void 0:(this._lastPoints=e,this._active=!0,{pitchDelta:(r.y+a.y)/2*-.5})}gestureBeginsVertically(e,t,i){if(void 0!==this._valid)return this._valid;var r=2<=e.mag(),a=2<=t.mag();if(r||a){if(!r||!a)return null==this._firstMove&&(this._firstMove=i),i-this._firstMove<100&&void 0;r=0{var t=e.getZoom();e.easeTo({duration:300,easeId:"keyboardHandler",easing:wn,zoom:i?Math.round(t)+i*(s.shiftKey?2:1):t,bearing:e.getBearing()+r*this._bearingStep,pitch:e.getPitch()+a*this._pitchStep,offset:[-n*this._panStep,-o*this._panStep],center:e.getCenter()},{originalEvent:s})}}}}enable(){this._enabled=!0}disable(){this._enabled=!1,this.reset()}isEnabled(){return this._enabled}isActive(){return this._active}disableRotation(){this._rotationDisabled=!0}enableRotation(){this._rotationDisabled=!1}}function wn(e){return e*(2-e)}const Tn=4.000244140625;class En{constructor(e,t){this._map=e,this._el=e.getCanvasContainer(),this._handler=t,this._delta=0,this._lastDelta=0,this._defaultZoomRate=.01,this._wheelZoomRate=1/450,et.br(["_onTimeout","_addScrollZoomBlocker","_showBlockerAlert"],this)}setZoomRate(e){this._defaultZoomRate=e}setWheelZoomRate(e){this._wheelZoomRate=e}isEnabled(){return!!this._enabled}isActive(){return this._active||void 0!==this._finishTimeout}isZooming(){return!!this._zooming}enable(e){this.isEnabled()||(this._enabled=!0,this._aroundCenter=!!e&&"center"===e.around,this._map._cooperativeGestures&&this._addScrollZoomBlocker())}disable(){this.isEnabled()&&(this._enabled=!1,this._map._cooperativeGestures&&(clearTimeout(this._alertTimer),this._alertContainer.remove()))}wheel(t){if(this.isEnabled()){if(this._map._cooperativeGestures){if(!(t.ctrlKey||t.metaKey||this.isZooming()||et.d4()))return void this._showBlockerAlert();"hidden"!==this._alertContainer.style.visibility&&(this._alertContainer.style.visibility="hidden",clearTimeout(this._alertTimer))}let e=t.deltaMode===WheelEvent.DOM_DELTA_LINE?40*t.deltaY:t.deltaY;var i=et.e.now(),r=i-(this._lastWheelEventTime||0);this._lastWheelEventTime=i,0!==e&&e%Tn==0?this._type="wheel":0!==e&&Math.abs(e)<4?this._type="trackpad":400r._terrainEnabled()&&this._aroundCoord?r.computeZoomRelativeTo(this._aroundCoord):r.zoom);if(0!==this._delta){const et="wheel"===this._type&&Math.abs(this._delta)>Tn?this._wheelZoomRate:this._defaultZoomRate;let e=2/(1+Math.exp(-Math.abs(this._delta*et)));this._delta<0&&0!==e&&(e=1/e);const o=a(),s=Math.pow(2,o),t="number"==typeof this._targetZoom?r.zoomScale(this._targetZoom):s;this._targetZoom=Math.min(r.maxZoom,Math.max(r.minZoom,r.scaleZoom(t*e))),"wheel"===this._type&&(this._startZoom=o,this._easing=this._smoothOutEasing(200)),this._lastDelta=this._delta,this._delta=0}const n="number"==typeof this._targetZoom?this._targetZoom:a(),o=this._startZoom,s=this._easing;let e,t=!1;if("wheel"===this._type&&o&&s){const r=Math.min((et.e.now()-this._lastWheelEventTime)/200,1),a=s(r);e=et.a3(o,n,a),r<1?this._frameId||(this._frameId=!0):t=!0}else e=n,t=!0;this._active=!0,t&&(this._active=!1,this._finishTimeout=window.setTimeout(()=>{this._zooming=!1,this._handler._triggerRenderFrame(),delete this._targetZoom,delete this._finishTimeout},200));let i=e-a();return i*this._lastDelta<0&&(i=0),{noInertia:!0,needsRenderFrame:!t,zoomDelta:i,around:this._aroundPoint,aroundCoord:this._aroundCoord,originalEvent:this._lastWheelEvent}}}_smoothOutEasing(e){let t=et.d5;if(this._prevEase){const e=this._prevEase,i=(et.e.now()-e.start)/e.duration,r=e.easing(.01+i)-e.easing(i),a=.27/Math.sqrt(r*r+1e-4)*.01,n=Math.sqrt(.0729-a*a);t=et.d3(a,n,.25,1)}return this._prevEase={start:et.e.now(),duration:e,easing:t},t}blur(){this.reset()}reset(){this._active=!1}_addScrollZoomBlocker(){this._map&&!this._alertContainer&&(this._alertContainer=c("div","mapboxgl-scroll-zoom-blocker",this._map._container),this._alertContainer.textContent=/(Mac|iPad)/i.test(navigator.userAgent)?this._map._getUIString("ScrollZoomBlocker.CmdMessage"):this._map._getUIString("ScrollZoomBlocker.CtrlMessage"),this._alertContainer.style.fontSize=Math.max(10,Math.min(24,Math.floor(.05*this._el.clientWidth)))+"px")}_showBlockerAlert(){this._alertContainer.style.visibility="visible",this._alertContainer.classList.add("mapboxgl-scroll-zoom-blocker-show"),this._alertContainer.setAttribute("role","alert"),clearTimeout(this._alertTimer),this._alertTimer=window.setTimeout(()=>{this._alertContainer.classList.remove("mapboxgl-scroll-zoom-blocker-show"),this._alertContainer.removeAttribute("role")},200)}}class Sn{constructor(e,t){this._clickZoom=e,this._tapZoom=t}enable(){this._clickZoom.enable(),this._tapZoom.enable()}disable(){this._clickZoom.disable(),this._tapZoom.disable()}isEnabled(){return this._clickZoom.isEnabled()&&this._tapZoom.isEnabled()}isActive(){return this._clickZoom.isActive()||this._tapZoom.isActive()}}class Mn{constructor(){this.reset()}reset(){this._active=!1}blur(){this.reset()}dblclick(t,i){return t.preventDefault(),{cameraAnimation:e=>{e.easeTo({duration:300,zoom:e.getZoom()+(t.shiftKey?-1:1),around:e.unproject(i)},{originalEvent:t})}}}enable(){this._enabled=!0}disable(){this._enabled=!1,this.reset()}isEnabled(){return this._enabled}isActive(){return this._active}}class In{constructor(){this._tap=new an({numTouches:1,numTaps:1}),this.reset()}reset(){this._active=!1,this._swipePoint=void 0,this._swipeTouch=0,this._tapTime=0,this._tap.reset()}touchstart(e,t,i){this._swipePoint||(this._tapTime&&500e.zoom||e.drag||e.pitch||e.rotate;class Dn extends et.g{}class Rn{constructor(){this.constants=[1,1,.01],this.radius=0}setup(e,t){t=et.$.sub([],t,e);this.radius=et.$.length(t[2]<0?et.$.div([],t,this.constants):[t[0],t[1],0])}projectRay(e){et.$.div(e,e,this.constants),et.$.normalize(e,e),et.$.mul(e,e,this.constants);const t=et.$.scale([],e,this.radius);if(0[e.x,e.y,e.z];if((p=this._eventsInProgress.drag)&&!this._handlersById[p.handlerName].isActive()&&!Ln(s)){const et=u.zoom;u.cameraElevationReference="sea",null!=this._originalZoom&&u._orthographicProjectionAtLowPitch&&"globe"!==u.projection.name&&0===u.pitch?(u.cameraElevationReference="ground",u.zoom=this._originalZoom):(u.recenterOnTerrain(),u.cameraElevationReference="ground"),et!==u.zoom&&this._map._update(!0)}if(u._isCameraConstrained&&h._stop(!0),Ln(s)){let{panDelta:e,zoomDelta:t,bearingDelta:i,pitchDelta:r,around:a,aroundCoord:n,pinchAround:o}=s;u._isCameraConstrained&&(00!==e&&-this._bearingSnap{this._frameId=void 0,this.handleEvent(new Dn("renderFrame",{timeStamp:e})),this._applyChanges()})}_triggerRenderFrame(){void 0===this._frameId&&(this._frameId=this._requestFrame())}}const On="map.setFreeCameraOptions(...) and map.getFreeCameraOptions() are not yet supported for non-mercator projections.";class Bn extends et.E{constructor(e,t){super(),this._moving=!1,this._zooming=!1,this.transform=e,this._bearingSnap=t.bearingSnap,this._respectPrefersReducedMotion=!1!==t.respectPrefersReducedMotion,et.br(["_renderFrameCallback"],this)}getCenter(){return new et.aJ(this.transform.center.lng,this.transform.center.lat)}setCenter(e,t){return this.jumpTo({center:e},t)}panBy(e,t,i){return e=et.P.convert(e).mult(-1),this.panTo(this.transform.center,et.Q({offset:e},t),i)}panTo(e,t,i){return this.easeTo(et.Q({center:e},t),i)}getZoom(){return this.transform.zoom}setZoom(e,t){return this.jumpTo({zoom:e},t),this}zoomTo(e,t,i){return this.easeTo(et.Q({zoom:e},t),i)}zoomIn(e,t){return this.zoomTo(this.getZoom()+1,e,t),this}zoomOut(e,t){return this.zoomTo(this.getZoom()-1,e,t),this}getBearing(){return this.transform.bearing}setBearing(e,t){return this.jumpTo({bearing:e},t),this}getPadding(){return this.transform.padding}setPadding(e,t){return this.jumpTo({padding:e},t),this}rotateTo(e,t,i){return this.easeTo(et.Q({bearing:e},t),i)}resetNorth(e,t){return this.rotateTo(0,et.Q({duration:1e3},e),t),this}resetNorthPitch(e,t){return this.easeTo(et.Q({bearing:0,pitch:0,duration:1e3},e),t),this}snapToNorth(e,t){return Math.abs(this.getBearing())e.aspect?i/(2*Math.tan(.5*e.fovX)*e.aspect):t/(2*Math.tan(.5*e.fovY)*e.aspect)}_cameraForBoundsOnGlobe(e,t,i,r,a,n){const o=e.clone(),s=this._extendCameraOptions(n),l=(o.bearing=r,o.pitch=a,et.aJ.convert(t)),c=et.aJ.convert(i),h=.5*(l.lat+c.lat),u=.5*(l.lng+c.lng),d=et.d7(h,u),p=et.$.normalize([],d),f=et.$.normalize([],et.$.cross([],p,[0,1,0])),m=et.$.cross([],f,p),_=[f[0],f[1],f[2],0,m[0],m[1],m[2],0,p[0],p[1],p[2],0,0,0,0,1],g=[d,et.d7(l.lat,l.lng),et.d7(c.lat,l.lng),et.d7(c.lat,c.lng),et.d7(l.lat,c.lng),et.d7(h,l.lng),et.d7(h,c.lng),et.d7(l.lat,u),et.d7(c.lat,u)];var e=et.b8.fromPoints(g.map(e=>[et.$.dot(f,e),et.$.dot(m,e),et.$.dot(p,e)])),y=et.$.transformMat4([],e.center,_),x=(0===et.$.squaredLength(y)&&et.$.set(y,0,0,1),et.$.normalize(y,y),et.$.scale(y,y,et.cF),o.center=et.d8(y),o.getWorldToCameraMatrix()),v=et.ae.invert(new Float64Array(16),x),e=et.b8.applyTransform(e,et.ae.multiply([],x,_)),b=this._extendAABB(e,o,s,r);{if(b)return e=b,et.$.transformMat4(y,y,x),b=.5*(e.max[2]-e.min[2]),x=this._minimumAABBFrustumDistance(o,e),e=et.$.scale([],[0,0,1],b),b=et.$.add(e,y,e),e=x+(0===o.pitch?0:et.$.distance(y,b)),x=o.globeCenterInViewSpace,b=et.$.sub([],y,[x[0],x[1],x[2]]),et.$.normalize(b,b),et.$.scale(b,b,e),x=et.$.add([],y,b),et.$.transformMat4(x,x,v),e=et.da/et.cF,y=et.$.length(x),b=et.ay(Math.max(y*e-et.da,Number.EPSILON),0),(v=Math.min(o.zoomFromMercatorZAdjusted(b),s.maxZoom))>.5*(et.b3+et.aV)?(o.setProjection({name:"mercator"}),o.zoom=v,this._cameraForBounds(o,t,i,r,a,n)):{center:o.center,zoom:v,bearing:r,pitch:a};et.w("Map cannot fit within canvas with the given bounds, padding, and/or offset.")}}_extendAABB(e,t,i,r){var a=.5*((i.padding.left||0)+(i.padding.right||0)),n=.5*((i.padding.top||0)+(i.padding.bottom||0)),o=n,s=a,l=t.width-(s+a),c=t.height-(o+n),h=et.$.sub([],e.max,e.min),l=Math.min(l/h[0],c/h[1]),c=Math.min(t.scaleZoom(t.scale*l),i.maxZoom);if(isNaN(c))return null;const u=t.scale/t.zoomScale(c),d=new et.b8([e.min[0]-s*u,e.min[1]-n*u,e.min[2]],[e.max[0]+a*u,e.max[1]+o*u,e.max[2]]),p=("number"==typeof i.offset.x&&"number"==typeof i.offset.y?new et.P(i.offset.x,i.offset.y):et.P.convert(i.offset)).rotate(-et.ac(r));return d.center[0]-=p.x*u,d.center[1]+=p.y*u,d}queryTerrainElevation(e,t){const i=this.transform.elevation;return i?(t=et.Q({},{exaggerated:!0},t),i.getAtPoint(et._.fromLngLat(e),null,t.exaggerated)):null}_cameraForBounds(e,t,i,r,a,n){if("globe"===e.projection.name)return this._cameraForBoundsOnGlobe(e,t,i,r,a,n);const o=e.clone(),s=this._extendCameraOptions(n);o.bearing=r,o.pitch=a;var e=et.aJ.convert(t),l=et.aJ.convert(i),c=new et.aJ(e.lng,l.lat),h=new et.aJ(l.lng,e.lat),u=o.project(e),d=o.project(l),e=this.queryTerrainElevation(e),l=this.queryTerrainElevation(l),c=this.queryTerrainElevation(c),h=this.queryTerrainElevation(h),u=[[u.x,u.y,Math.min(e||0,l||0,c||0,h||0)],[d.x,d.y,Math.max(e||0,l||0,c||0,h||0)]],d=et.b8.fromPoints(u),e=o.getWorldToCameraMatrix(),l=et.ae.invert(new Float64Array(16),e),c=(d=et.b8.applyTransform(d,e),this._extendAABB(d,o,s,r));{if(c)return h=.5*et.$.sub([],(d=c).max,d.min)[2],u=this._minimumAABBFrustumDistance(o,d),et.aB.transformMat4(c=[0,0,1,0],c,e),et.aB.normalize(c,c),e=et.$.scale([],c,u+h),c=et.$.add([],d.center,e),et.$.transformMat4(d.center,d.center,l),et.$.transformMat4(c,c,l),u=[d.center[0],d.center[1],c[2]*o.pixelsPerMeter],et.$.scale(u,u,1/o.worldSize),h=et.d9(u[0]),e=et.az(u[1]),l=Math.min(o._zoomFromMercatorZ(u[2]),s.maxZoom),d=new et.aJ(h,e),o.mercatorFromTransition&&l<.5*(et.b3+et.aV)?(o.setProjection({name:"globe"}),o.zoom=l,this._cameraForBounds(o,t,i,r,a,n)):{center:d,zoom:l,bearing:r,pitch:a};et.w("Map cannot fit within canvas with the given bounds, padding, and/or offset.")}}fitBounds(e,t,i){e=this.cameraForBounds(e,t);return this._fitInternal(e,t,i)}fitScreenCoordinates(e,t,i,r,a){var e=et.P.convert(e),t=et.P.convert(t),n=new et.P(Math.min(e.x,t.x),Math.min(e.y,t.y)),o=new et.P(Math.max(e.x,t.x),Math.max(e.y,t.y));if("mercator"===this.transform.projection.name&&this.transform.anyCornerOffEdge(e,t))return this;var e=this.transform.pointLocation3D(n),t=this.transform.pointLocation3D(o),s=this.transform.pointLocation3D(new et.P(n.x,o.y)),o=this.transform.pointLocation3D(new et.P(o.x,n.y)),n=[Math.min(e.lng,t.lng,s.lng,o.lng),Math.min(e.lat,t.lat,s.lat,o.lat)],e=[Math.max(e.lng,t.lng,s.lng,o.lng),Math.max(e.lat,t.lat,s.lat,o.lat)],t=r&&r.pitch?r.pitch:this.getPitch(),s=this._cameraForBounds(this.transform,n,e,i,t,r);return this._fitInternal(s,r,a)}_fitInternal(e,t,i){return e?(t=et.Q(e,t)).linear?this.easeTo(t,i):this.flyTo(t,i):this}jumpTo(e,t){this.stop();const i=e.preloadOnly?this.transform.clone():this.transform;let r=!1,a=!1,n=!1;if("zoom"in e&&i.zoom!==+e.zoom&&(r=!0,i.zoom=+e.zoom),void 0!==e.center&&(i.center=et.aJ.convert(e.center)),"bearing"in e&&i.bearing!==+e.bearing&&(a=!0,i.bearing=+e.bearing),"pitch"in e&&i.pitch!==+e.pitch&&(n=!0,i.pitch=+e.pitch),null!=e.padding){const et="number"==typeof e.padding?this._extendPadding(e.padding):e.padding;i.isPaddingEqual(et)||(i.padding=et)}return e.preloadOnly?(this._preloadTiles(i),this):(this.fire(new et.g("movestart",t)).fire(new et.g("move",t)),r&&this.fire(new et.g("zoomstart",t)).fire(new et.g("zoom",t)).fire(new et.g("zoomend",t)),a&&this.fire(new et.g("rotatestart",t)).fire(new et.g("rotate",t)).fire(new et.g("rotateend",t)),n&&this.fire(new et.g("pitchstart",t)).fire(new et.g("pitch",t)).fire(new et.g("pitchend",t)),this.fire(new et.g("moveend",t)))}getFreeCameraOptions(){return this.transform.projection.supportsFreeCamera||et.w(On),this.transform.getFreeCameraOptions()}setFreeCameraOptions(e,t){const i=this.transform;if(!i.projection.supportsFreeCamera)return et.w(On),this;this.stop();var r=i.zoom,a=i.pitch,n=i.bearing,e=(i.setFreeCameraOptions(e),r!==i.zoom),r=a!==i.pitch,a=n!==i.bearing;return this.fire(new et.g("movestart",t)).fire(new et.g("move",t)),e&&this.fire(new et.g("zoomstart",t)).fire(new et.g("zoom",t)).fire(new et.g("zoomend",t)),a&&this.fire(new et.g("rotatestart",t)).fire(new et.g("rotate",t)).fire(new et.g("rotateend",t)),r&&this.fire(new et.g("pitchstart",t)).fire(new et.g("pitch",t)).fire(new et.g("pitchend",t)),this.fire(new et.g("moveend",t)),this}easeTo(i,r){this._stop(!1,i.easeId),!1!==(i=et.Q({offset:[0,0],duration:500,easing:et.d5},i)).animate&&!this._prefersReducedMotion(i)||(i.duration=0);const t=this.transform,a=this.getZoom(),n=this.getBearing(),o=this.getPitch(),s=this.getPadding(),l="zoom"in i?+i.zoom:a,c="bearing"in i?this._normalizeBearing(i.bearing,n):n,h="pitch"in i?+i.pitch:o,u=this._extendPadding(i.padding),d=et.P.convert(i.offset);let p,f,m;if("globe"===t.projection.name){const r=et._.fromLngLat(t.center),a=d.rotate(-t.angle),n=(r.x+=a.x/t.worldSize,r.y+=a.y/t.worldSize,r.toLngLat()),o=et.aJ.convert(i.center||n);this._normalizeCenter(o),p=t.centerPoint.add(a),f=new et.P(r.x,r.y).mult(t.worldSize),m=new et.P(et.ak(o.lng),et.al(o.lat)).mult(t.worldSize).sub(f)}else{p=t.centerPoint.add(d);const r=t.pointLocation(p),a=et.aJ.convert(i.center||r);this._normalizeCenter(a),f=t.project(r),m=t.project(a).sub(f)}const _=t.zoomScale(l-a);let g,y;i.around&&(g=et.aJ.convert(i.around),y=t.locationPoint(g));const x=this._zooming||l!==a,v=this._rotating||n!==c,b=this._pitching||h!==o,w=!t.isPaddingEqual(u),e=t=>e=>{if(x&&(t.zoom=et.a3(a,l,e)),v&&(t.bearing=et.a3(n,c,e)),b&&(t.pitch=et.a3(o,h,e)),w&&(t.interpolatePadding(s,u,e),p=t.centerPoint.add(d)),g)t.setLocationAtPoint(g,y);else{const et=t.zoomScale(t.zoom-a),i=l>a?Math.min(2,_):Math.max(.5,_),r=Math.pow(i,1-e),n=t.unproject(f.add(m.mult(e*r)).mult(et));t.setLocationAtPoint(t.renderWorldCopies?n.wrap():n,p)}return i.preloadOnly||this._fireMoveEvents(r),t};if(i.preloadOnly){const et=this._emulate(e,i.duration,t);return this._preloadTiles(et),this}var T={moving:this._moving,zooming:this._zooming,rotating:this._rotating,pitching:this._pitching};return this._zooming=x,this._rotating=v,this._pitching=b,this._padding=w,this._easeId=i.easeId,this._prepareEase(r,i.noMoveStart,T),this._ease(e(t),e=>{"sea"===t.cameraElevationReference&&t.recenterOnTerrain(),this._afterEase(r,e)},i),this}_prepareEase(e,t,i={}){this._moving=!0,this.transform.cameraElevationReference="sea",this.transform._orthographicProjectionAtLowPitch&&0===this.transform.pitch&&"globe"!==this.transform.projection.name&&(this.transform.cameraElevationReference="ground"),t||i.moving||this.fire(new et.g("movestart",e)),this._zooming&&!i.zooming&&this.fire(new et.g("zoomstart",e)),this._rotating&&!i.rotating&&this.fire(new et.g("rotatestart",e)),this._pitching&&!i.pitching&&this.fire(new et.g("pitchstart",e))}_fireMoveEvents(e){this.fire(new et.g("move",e)),this._zooming&&this.fire(new et.g("zoom",e)),this._rotating&&this.fire(new et.g("rotate",e)),this._pitching&&this.fire(new et.g("pitch",e))}_afterEase(e,t){var i,r;this._easeId&&t&&this._easeId===t||(this._easeId=void 0,this.transform.cameraElevationReference="ground",t=this._zooming,i=this._rotating,r=this._pitching,this._moving=!1,this._zooming=!1,this._rotating=!1,this._pitching=!1,this._padding=!1,t&&this.fire(new et.g("zoomend",e)),i&&this.fire(new et.g("rotateend",e)),r&&this.fire(new et.g("pitchend",e)),this.fire(new et.g("moveend",e)))}flyTo(n,o){if(this._prefersReducedMotion(n)){const e=et.ai(n,["center","zoom","bearing","pitch","around","padding"]);return this.jumpTo(e,o)}this.stop(),n=et.Q({offset:[0,0],speed:1.2,curve:1.42,easing:et.d5},n);const e=this.transform,s=this.getZoom(),l=this.getBearing(),c=this.getPitch(),h=this.getPadding(),u="zoom"in n?et.au(+n.zoom,e.minZoom,e.maxZoom):s,d="bearing"in n?this._normalizeBearing(n.bearing,l):l,p="pitch"in n?+n.pitch:c,f=this._extendPadding(n.padding),t=e.zoomScale(u-s),m=et.P.convert(n.offset);let _=e.centerPoint.add(m);const i=e.pointLocation(_),g=et.aJ.convert(n.center||i),y=(this._normalizeCenter(g),e.project(i)),x=e.project(g).sub(y);let r=n.curve;const a=Math.max(e.width,e.height),v=a/t,b=x.mag();if("minZoom"in n){const o=et.au(Math.min(n.minZoom,s,u),e.minZoom,e.maxZoom),l=a/e.zoomScale(o-s);r=Math.sqrt(l/b*2)}const w=r*r;function T(e){e=(v*v-a*a+(e?-1:1)*w*w*b*b)/(2*(e?v:a)*w*b);return Math.log(Math.sqrt(e*e+1)-e)}function E(e){return(Math.exp(e)-Math.exp(-e))/2}function S(e){return(Math.exp(e)+Math.exp(-e))/2}const M=T(0);let I=function(e){return S(M)/S(M+r*e)},A=function(e){return a*((S(M)*(E(e=M+r*e)/S(e))-E(M))/w)/b},C=(T(1)-M)/r;if(Math.abs(b)<1e-6||!isFinite(C)){if(Math.abs(a-v)<1e-6)return this.easeTo(n,o);const et=vn.maxDuration&&(n.duration=0);const P=l!==d,z=p!==c,D=!e.isPaddingEqual(f),R=a=>e=>{var t=e*C,i=1/I(t);a.zoom=1===e?u:s+a.scaleZoom(i),P&&(a.bearing=et.a3(l,d,e)),z&&(a.pitch=et.a3(c,p,e)),D&&(a.interpolatePadding(h,f,e),_=a.centerPoint.add(m));const r=1===e?g:a.unproject(y.add(x.mult(A(t))).mult(i));return a.setLocationAtPoint(a.renderWorldCopies?r.wrap():r,_),a._updateCameraOnTerrain(),n.preloadOnly||this._fireMoveEvents(o),a};if(n.preloadOnly){const et=this._emulate(R,n.duration,e);return this._preloadTiles(et),this}return this._zooming=!0,this._rotating=P,this._pitching=z,this._padding=D,this._prepareEase(o,!1),this._ease(R(e),()=>this._afterEase(o),n),this}isEasing(){return!!this._easeFrameId}stop(){return this._stop()}_requestRenderFrame(e){}_cancelRenderFrame(e){}_stop(e,t){if(this._easeFrameId&&(this._cancelRenderFrame(this._easeFrameId),this._easeFrameId=void 0,this._onEaseFrame=void 0),this._onEaseEnd){const e=this._onEaseEnd;this._onEaseEnd=void 0,e.call(this,t)}if(!e){const e=this.handlers;e&&e.stop(!1)}return this}_ease(e,t,i){!1===i.animate||0===i.duration?(e(1),t()):(this._easeStart=et.e.now(),this._easeOptions=i,this._onEaseFrame=e,this._onEaseEnd=t,this._easeFrameId=this._requestRenderFrame(this._renderFrameCallback))}_renderFrameCallback(){const e=Math.min((et.e.now()-this._easeStart)/this._easeOptions.duration,1),t=this._onEaseFrame;t&&t(this._easeOptions.easing(e)),e<1?this._easeFrameId=this._requestRenderFrame(this._renderFrameCallback):this.stop()}_normalizeBearing(e,t){e=et.av(e,-180,180);var i=Math.abs(e-t);return Math.abs(e-360-t)(t.value&&(e+=t.key+"="+t.value+(ie.length-t.length),r=r.filter((t,i)=>{for(let e=i+1;ei.width||t.y>i.height,i.locationPoint(r).distSqr(t)i.center.lng?e.lng-=360:e.lng+=360}return e}const jn={center:"translate(-50%,-50%)",top:"translate(-50%,0)","top-left":"translate(0,0)","top-right":"translate(-100%,0)",bottom:"translate(-50%,-100%)","bottom-left":"translate(0,-100%)","bottom-right":"translate(-100%,-100%)",left:"translate(0,-50%)",right:"translate(-100%,-50%)"};class Gn extends et.E{constructor(e,t){if(super(),(e instanceof HTMLElement||t)&&(e=et.Q({element:e},t)),et.br(["_update","_onMove","_onUp","_addDragHandler","_onMapClick","_onKeyPress","_clearFadeTimer"],this),this._anchor=e&&e.anchor||"center",this._color=e&&e.color||"#3FB1CE",this._scale=e&&e.scale||1,this._draggable=e&&e.draggable||!1,this._clickTolerance=e&&e.clickTolerance||0,this._isDragging=!1,this._state="inactive",this._rotation=e&&e.rotation||0,this._rotationAlignment=e&&e.rotationAlignment||"auto",this._pitchAlignment=e&&e.pitchAlignment&&e.pitchAlignment||"auto",this._updateMoving=()=>this._update(!0),this._occludedOpacity=e&&e.occludedOpacity||.2,e&&e.element)this._element=e.element,this._offset=et.P.convert(e&&e.offset||[0,0]);else{this._defaultMarker=!0,this._element=c("div");const t=41,i=27,r=n("svg",{display:"block",height:41*this._scale+"px",width:27*this._scale+"px",viewBox:"0 0 27 41"},this._element),a=n("radialGradient",{id:"shadowGradient"},n("defs",{},r));n("stop",{offset:"10%","stop-opacity":.4},a),n("stop",{offset:"100%","stop-opacity":.05},a),n("ellipse",{cx:13.5,cy:34.8,rx:10.5,ry:5.25,fill:"url(#shadowGradient)"},r),n("path",{fill:this._color,d:"M27,13.5C27,19.07 20.25,27 14.75,34.5C14.02,35.5 12.98,35.5 12.25,34.5C6.75,27 0,19.22 0,13.5C0,6.04 6.04,0 13.5,0C20.96,0 27,6.04 27,13.5Z"},r),n("path",{opacity:.25,d:"M13.5,0C6.04,0 0,6.04 0,13.5C0,19.22 6.75,27 12.25,34.5C13,35.52 14.02,35.5 14.75,34.5C20.25,27 27,19.07 27,13.5C27,6.04 20.96,0 13.5,0ZM13.5,1C20.42,1 26,6.58 26,13.5C26,15.9 24.5,19.18 22.22,22.74C19.95,26.3 16.71,30.14 13.94,33.91C13.74,34.18 13.61,34.32 13.5,34.44C13.39,34.32 13.26,34.18 13.06,33.91C10.28,30.13 7.41,26.31 5.02,22.77C2.62,19.23 1,15.95 1,13.5C1,6.58 6.58,1 13.5,1Z"},r),n("circle",{fill:"white",cx:13.5,cy:13.5,r:5.5},r),this._offset=et.P.convert(e&&e.offset||[0,-14])}this._element.hasAttribute("aria-label")||this._element.setAttribute("aria-label","Map marker"),this._element.hasAttribute("role")||this._element.setAttribute("role","img"),this._element.classList.add("mapboxgl-marker"),this._element.addEventListener("dragstart",e=>{e.preventDefault()}),this._element.addEventListener("mousedown",e=>{e.preventDefault()});const i=this._element.classList;for(const et in jn)i.remove("mapboxgl-marker-anchor-"+et);i.add("mapboxgl-marker-anchor-"+this._anchor);const r=e&&e.className?e.className.trim().split(/\s+/):[];i.add(...r),this._popup=null}addTo(e){return e!==this._map&&(this.remove(),(this._map=e).getCanvasContainer().appendChild(this._element),e.on("move",this._updateMoving),e.on("moveend",this._update),e.on("remove",this._clearFadeTimer),e._addMarker(this),this.setDraggable(this._draggable),this._update(),e.on("click",this._onMapClick)),this}remove(){const e=this._map;return e&&(e.off("click",this._onMapClick),e.off("move",this._updateMoving),e.off("moveend",this._update),e.off("mousedown",this._addDragHandler),e.off("touchstart",this._addDragHandler),e.off("mouseup",this._onUp),e.off("touchend",this._onUp),e.off("mousemove",this._onMove),e.off("touchmove",this._onMove),e.off("remove",this._clearFadeTimer),e._removeMarker(this),this._map=void 0),this._clearFadeTimer(),this._element.remove(),this._popup&&this._popup.remove(),this}getLngLat(){return this._lngLat}setLngLat(e){return this._lngLat=et.aJ.convert(e),this._pos=null,this._popup&&this._popup.setLngLat(this._lngLat),this._update(!0),this}getElement(){return this._element}setPopup(e){var t;return this._popup&&(this._popup.remove(),this._popup=null,this._element.removeAttribute("role"),this._element.removeEventListener("keypress",this._onKeyPress),this._originalTabIndex||this._element.removeAttribute("tabindex")),e&&("offset"in e.options||(t=Math.sqrt(Math.pow(13.5,2)/2),e.options.offset=this._defaultMarker?{top:[0,0],"top-left":[0,0],"top-right":[0,0],bottom:[0,-38.1],"bottom-left":[t,-1*(24.6+t)],"bottom-right":[-t,-1*(24.6+t)],left:[13.5,-24.6],right:[-13.5,-24.6]}:this._offset),((this._popup=e)._marker=this)._lngLat&&this._popup.setLngLat(this._lngLat),this._element.setAttribute("role","button"),this._originalTabIndex=this._element.getAttribute("tabindex"),this._originalTabIndex||this._element.setAttribute("tabindex","0"),this._element.addEventListener("keypress",this._onKeyPress),this._element.setAttribute("aria-expanded","false")),this}_onKeyPress(e){var t=e.code,e=e.charCode||e.keyCode;"Space"!==t&&"Enter"!==t&&32!==e&&13!==e||this.togglePopup()}_onMapClick(e){const t=e.originalEvent.target,i=this._element;this._popup&&(t===i||i.contains(t))&&this.togglePopup()}getPopup(){return this._popup}togglePopup(){const e=this._popup;return e&&(e.isOpen()?(e.remove(),this._element.setAttribute("aria-expanded","false")):this._map&&(e.addTo(this._map),this._element.setAttribute("aria-expanded","true"))),this}_behindTerrain(){const e=this._map,t=this._pos;if(!e||!t)return!1;const i=e.unproject(t),r=e.getFreeCameraOptions();if(!r.position)return!1;const a=r.position.toLngLat();return a.distanceTo(i)<.9*a.distanceTo(this._lngLat)}_evaluateOpacity(){const t=this._map;if(t){var i=this._pos;if(!i||i.x<0||i.x>t.transform.width||i.y<0||i.y>t.transform.height)this._clearFadeTimer();else{i=t.unproject(i);let e;t._showingGlobe()&&et.dc(t.transform,this._lngLat)?e=0:(e=1-t._queryFogOpacity(i),t.transform._terrainEnabled()&&t.getTerrain()&&this._behindTerrain()&&(e*=this._occludedOpacity)),this._element.style.opacity=""+e,this._element.style.pointerEvents=0{this._element&&this._pos&&this._anchor&&(this._pos=this._pos.round(),this._updateDOM())}):this._pos=this._pos.round(),t._requestDomTask(()=>{this._map&&(this._element&&this._pos&&this._anchor&&this._updateDOM(),(t._showingGlobe()||t.getTerrain()||t.getFog())&&!this._fadeTimer&&(this._fadeTimer=window.setTimeout(this._evaluateOpacity.bind(this),60)))}))}getOffset(){return this._offset}setOffset(e){return this._offset=et.P.convert(e),this._update(),this}addClassName(e){return this._element.classList.add(e),this}removeClassName(e){return this._element.classList.remove(e),this}toggleClassName(e){return this._element.classList.toggle(e)}_onMove(e){const t=this._map;if(t){var i=this._pointerdownPos,r=this._positionDelta;if(i&&r){if(!this._isDragging){const et=this._clickTolerance||t._clickTolerance;if(e.point.dist(i)=this._endTime)return this._end;e=et.bb((e-this._startTime)/(this._endTime-this._startTime));return this._start*(1-e)+this._end*e}isEasing(e){return e>=this._startTime&&e<=this._endTime}jumpTo(e){this._startTime=-1/0,this._endTime=-1/0,this._start=e,this._end=e}easeTo(e,t,i){this._start=this.getValue(t),this._end=e,this._startTime=t,this._endTime=t+i}}const Hn={"AttributionControl.ToggleAttribution":"Toggle attribution","FullscreenControl.Enter":"Enter fullscreen","FullscreenControl.Exit":"Exit fullscreen","GeolocateControl.FindMyLocation":"Find my location","GeolocateControl.LocationNotAvailable":"Location not available","LogoControl.Title":"Mapbox homepage","Map.Title":"Map","NavigationControl.ResetBearing":"Reset bearing to north","NavigationControl.ZoomIn":"Zoom in","NavigationControl.ZoomOut":"Zoom out","ScrollZoomBlocker.CtrlMessage":"Use ctrl + scroll to zoom the map","ScrollZoomBlocker.CmdMessage":"Use ⌘ + scroll to zoom the map","TouchPanBlocker.Message":"Use two fingers to move the map"};class Xn{registerParameter(){}registerButton(){}registerBinding(){}refreshUI(){}}const Yn={center:[0,0],zoom:0,bearing:0,pitch:0,minZoom:-2,maxZoom:22,minPitch:0,maxPitch:85,interactive:!0,scrollZoom:!0,boxZoom:!0,dragRotate:!0,dragPan:!0,keyboard:!0,doubleClickZoom:!0,touchZoomRotate:!0,touchPitch:!0,cooperativeGestures:!1,performanceMetricsCollection:!0,bearingSnap:7,clickTolerance:3,pitchWithRotate:!0,hash:!1,attributionControl:!0,antialias:!1,failIfMajorPerformanceCaveat:!1,preserveDrawingBuffer:!1,trackResize:!0,renderWorldCopies:!0,refreshExpiredTiles:!0,minTileCacheSize:null,maxTileCacheSize:null,localIdeographFontFamily:"sans-serif",localFontFamily:null,transformRequest:null,accessToken:null,fadeDuration:300,respectPrefersReducedMotion:!0,crossSourceCollisions:!0,collectResourceTiming:!1,testMode:!1,precompilePrograms:!0},Jn={showCompass:!0,showZoom:!0,visualizePitch:!1};class Kn{constructor(e,t,i=!1){this._clickTolerance=10,this.element=t,this.mouseRotate=new cn({clickTolerance:e.dragRotate._mouseRotate._clickTolerance}),this.map=e,i&&(this.mousePitch=new hn({clickTolerance:e.dragRotate._mousePitch._clickTolerance})),et.br(["mousedown","mousemove","mouseup","touchstart","touchmove","touchend","reset"],this),t.addEventListener("mousedown",this.mousedown),t.addEventListener("touchstart",this.touchstart,{passive:!1}),t.addEventListener("touchmove",this.touchmove),t.addEventListener("touchend",this.touchend),t.addEventListener("touchcancel",this.reset)}down(e,t){this.mouseRotate.mousedown(e,t),this.mousePitch&&this.mousePitch.mousedown(e,t),C()}move(e,t){const i=this.map,r=this.mouseRotate.mousemoveWindow(e,t),a=r&&r.bearingDelta;if(a&&i.setBearing(i.getBearing()+a),this.mousePitch){const r=this.mousePitch.mousemoveWindow(e,t),a=r&&r.pitchDelta;a&&i.setPitch(i.getPitch()+a)}}off(){const e=this.element;e.removeEventListener("mousedown",this.mousedown),e.removeEventListener("touchstart",this.touchstart,{passive:!1}),e.removeEventListener("touchmove",this.touchmove),e.removeEventListener("touchend",this.touchend),e.removeEventListener("touchcancel",this.reset),this.offTemp()}offTemp(){P(),window.removeEventListener("mousemove",this.mousemove),window.removeEventListener("mouseup",this.mouseup)}mousedown(e){this.down(et.Q({},e,{ctrlKey:!0,preventDefault:()=>e.preventDefault()}),d(this.element,e)),window.addEventListener("mousemove",this.mousemove),window.addEventListener("mouseup",this.mouseup)}mousemove(e){this.move(e,d(this.element,e))}mouseup(e){this.mouseRotate.mouseupWindow(e),this.mousePitch&&this.mousePitch.mouseupWindow(e),this.offTemp()}touchstart(e){1!==e.targetTouches.length?this.reset():(this._startPos=this._lastPos=N(this.element,e.targetTouches)[0],this.down({type:"mousedown",button:0,ctrlKey:!0,preventDefault:()=>e.preventDefault()},this._startPos))}touchmove(e){1!==e.targetTouches.length?this.reset():(this._lastPos=N(this.element,e.targetTouches)[0],this.move({preventDefault:()=>e.preventDefault()},this._lastPos))}touchend(e){0===e.targetTouches.length&&this._startPos&&this._lastPos&&this._startPos.dist(this._lastPos)e.maxZoom)throw new Error("maxZoom must be greater than or equal to minZoom");if(null!=e.minPitch&&null!=e.maxPitch&&e.minPitch>e.maxPitch)throw new Error("maxPitch must be greater than or equal to minPitch");if(null!=e.minPitch&&e.minPitch<0)throw new Error("minPitch must be greater than or equal to 0");if(null!=e.maxPitch&&85{this._update()}),this._tp.registerParameter(this,["Debug","Wireframe"],"showTerrainWireframe"),this._tp.registerParameter(this,["Debug","Wireframe"],"showLayers2DWireframe"),this._tp.registerParameter(this,["Debug","Wireframe"],"showLayers3DWireframe"),this._setupPainter(),void 0===this.painter)throw new Error("Failed to initialize WebGL.");this.on("move",()=>this._update(!1)),this.on("moveend",()=>this._update(!1)),this.on("zoom",()=>this._update(!0)),this._fullscreenchangeEvent="onfullscreenchange"in document?"fullscreenchange":"webkitfullscreenchange",window.addEventListener("online",this._onWindowOnline,!1),window.addEventListener("resize",this._onWindowResize,!1),window.addEventListener("orientationchange",this._onWindowResize,!1),window.addEventListener(this._fullscreenchangeEvent,this._onWindowResize,!1),window.addEventListener("visibilitychange",this._onVisibilityChange,!1),this.handlers=new kn(this,e),this._localFontFamily=e.localFontFamily,this._localIdeographFontFamily=e.localIdeographFontFamily,!e.style&&e.testMode||this.setStyle(e.style||et.db.DEFAULT_STYLE,{config:e.config,localFontFamily:this._localFontFamily,localIdeographFontFamily:this._localIdeographFontFamily}),e.projection&&this.setProjection(e.projection),e.hash&&(this._hash=new Va("string"==typeof e.hash&&e.hash||void 0).addTo(this)),this._hash&&this._hash._onHashChange()||(null==t.center&&null==t.zoom||(this.transform._unmodified=!1),this.jumpTo({center:e.center,zoom:e.zoom,bearing:e.bearing,pitch:e.pitch}),(t=e.bounds)&&(this.resize(),this.fitBounds(t,et.Q({},e.fitBoundsOptions,{duration:0})))),this.resize(),e.attributionControl&&this.addControl(new Fn({customAttribution:e.customAttribution})),this._logoControl=new Nn,this.addControl(this._logoControl,e.logoPosition),this.on("style.load",()=>{this.transform.unmodified&&this.jumpTo(this.style.stylesheet),this._postStyleLoadEvent()}),this.on("data",e=>{this._update("style"===e.dataType),this.fire(new et.g(e.dataType+"data",e))}),this.on("dataloading",e=>{this.fire(new et.g(e.dataType+"dataloading",e))})}_getMapId(){return this._mapId}addControl(e,t){if(void 0===t&&(t=e.getDefaultPosition?e.getDefaultPosition():"top-right"),!e||!e.onAdd)return this.fire(new et.f(new Error("Invalid argument to map.addControl(). Argument must be a control with onAdd and onRemove methods.")));var i=e.onAdd(this);this._controls.push(e);const r=this._controlPositions[t];return-1!==t.indexOf("bottom")?r.insertBefore(i,r.firstChild):r.appendChild(i),this}removeControl(e){if(!e||!e.onRemove)return this.fire(new et.f(new Error("Invalid argument to map.removeControl(). Argument must be a control with onAdd and onRemove methods.")));var t=this._controls.indexOf(e);return-1=this.transform.minZoom)return this.transform.maxZoom=e,this._update(),this.getZoom()>e?this.setZoom(e):this.fire(new et.g("zoomstart")).fire(new et.g("zoom")).fire(new et.g("zoomend")),this;throw new Error("maxZoom must be greater than the current minZoom")}getMaxZoom(){return this.transform.maxZoom}setMinPitch(e){if((e=e??0)<0)throw new Error("minPitch must be greater than or equal to 0");if(0<=e&&e<=this.transform.maxPitch)return this.transform.minPitch=e,this._update(),this.getPitch()=this.transform.minPitch)return this.transform.maxPitch=e,this._update(),this.getPitch()>e?this.setPitch(e):this.fire(new et.g("pitchstart")).fire(new et.g("pitch")).fire(new et.g("pitchend")),this;throw new Error("maxPitch must be greater than or equal to minPitch")}getMaxPitch(){return this.transform.maxPitch}getRenderWorldCopies(){return this.transform.renderWorldCopies}setRenderWorldCopies(e){return this.transform.renderWorldCopies=e,this.transform.renderWorldCopies||this._forceMarkerAndPopupUpdate(!0),this._update()}getLanguage(){return this._language}_parseLanguage(e){return"auto"===e?navigator.language:Array.isArray(e)?0===e.length?void 0:e.map(e=>"auto"===e?navigator.language:e):e}setLanguage(e){e=this._parseLanguage(e);if(!this.style||e===this._language)return this;this._language=e,this.style.reloadSources();for(const e of this._controls)e._setLanguage&&e._setLanguage(this._language);return this}getWorldview(){return this._worldview}setWorldview(e){return this.style&&e!==this._worldview&&(this._worldview=e,this.style.reloadSources()),this}getProjection(){return this.transform.mercatorFromTransition?{name:"globe",center:[0,0]}:this.transform.getProjection()}_showingGlobe(){return"globe"===this.transform.projection.name}setProjection(e){return this._lazyInitEmptyStyle(),e?"string"==typeof e&&(e={name:e}):e=null,this._useExplicitProjection=!!e,this._prioritizeAndUpdateProjection(e,this.style.projection)}_updateProjectionTransition(){if("globe"===this.getProjection().name){const t=this.transform,i=t.projection.name;let e;"globe"===i&&t.zoom>=et.aV?(t.setMercatorFromTransition(),e=!0):"mercator"===i&&t.zoom=et.aV?this.transform.setMercatorFromTransition():this.transform.setProjection(e);return this.style.applyProjectionUpdate(),e&&(this.painter.clearBackgroundTiles(),this.style.clearSources(),this._update(!0),this._forceMarkerAndPopupUpdate(!0)),this}project(e){return this.transform.locationPoint3D(et.aJ.convert(e))}unproject(e){return this.transform.pointLocation3D(et.P.convert(e))}isMoving(){return this._moving||this.handlers&&this.handlers.isMoving()||!1}isZooming(){return this._zooming||this.handlers&&this.handlers.isZooming()||!1}isRotating(){return this._rotating||this.handlers&&this.handlers.isRotating()||!1}_isDragging(){return this.handlers&&this.handlers._isDragging()||!1}_createDelegatedListener(r,a,n){if("mouseenter"===r||"mouseover"===r){let i=!1;return{layers:new Set(a),listener:n,delegates:{mousemove:e=>{var t=a.filter(e=>this.getLayer(e)),t=t.length?this.queryRenderedFeatures(e.point,{layers:t}):[];t.length?i||(i=!0,n.call(this,new b(r,this,e.originalEvent,{features:t}))):i=!1},mouseout:()=>{i=!1}}}}if("mouseleave"===r||"mouseout"===r){let i=!1;return{layers:new Set(a),listener:n,delegates:{mousemove:e=>{var t=a.filter(e=>this.getLayer(e));(t.length?this.queryRenderedFeatures(e.point,{layers:t}):[]).length?i=!0:i&&(i=!1,n.call(this,new b(r,this,e.originalEvent)))},mouseout:e=>{i&&(i=!1,n.call(this,new b(r,this,e.originalEvent)))}}}}return{layers:new Set(a),listener:n,delegates:{[r]:e=>{var t=a.filter(e=>this.getLayer(e)),t=t.length?this.queryRenderedFeatures(e.point,{layers:t}):[];t.length&&(e.features=t,n.call(this,e),delete e.features)}}}}on(e,t,i){if("function"==typeof t||void 0===i)return super.on(e,t);if(t=Array.isArray(t)?t:[t])for(const e of t)if(!this._isValidId(e))return this;var r=this._createDelegatedListener(e,t,i);this._delegatedListeners=this._delegatedListeners||{},this._delegatedListeners[e]=this._delegatedListeners[e]||[],this._delegatedListeners[e].push(r);for(const e in r.delegates)this.on(e,r.delegates[e]);return this}once(e,t,i){if("function"==typeof t||void 0===i)return super.once(e,t);if(t=Array.isArray(t)?t:[t])for(const e of t)if(!this._isValidId(e))return this;var r=this._createDelegatedListener(e,t,i);for(const e in r.delegates)this.once(e,r.delegates[e]);return this}off(e,t,r){if("function"==typeof t||void 0===r)return super.off(e,t);const a=new Set(Array.isArray(t)?t:[t]);for(const e of a)if(!this._isValidId(e))return this;const i=this._delegatedListeners?this._delegatedListeners[e]:void 0;return i&&(t=>{for(let e=0;e{if(e.size!==t.size)return!1;for(const i of e)if(!t.has(i))return!1;return!0})(i.layers,a)){for(const t in i.delegates)this.off(t,i.delegates[t]);return t.splice(e,1)}}})(i),this}queryRenderedFeatures(e,t){if(!this.style)return[];if(void 0!==t||void 0===e||e instanceof et.P||Array.isArray(e)||(t=e,e=void 0),e=e||[[0,0],[this.transform.width,this.transform.height]],(t=t||{}).layers&&Array.isArray(t.layers))for(const et of t.layers)if(!this._isValidId(et))return[];return this.style.queryRenderedFeatures(e,t,this.transform)}querySourceFeatures(e,t){return this._isValidId(e)?this.style.querySourceFeatures(e,t):[]}isPointOnSurface(e){var t=this.transform.projection["name"];return"globe"!==t&&"mercator"!==t&&et.w(t+" projection does not support isPointOnSurface, this API may behave unexpectedly."),this.transform.isPointOnSurface(et.P.convert(e))}setStyle(i,r){return r=et.Q({},{localIdeographFontFamily:this._localIdeographFontFamily,localFontFamily:this._localFontFamily},r),this.style&&i&&!1!==r.diff&&r.localFontFamily===this._localFontFamily&&r.localIdeographFontFamily===this._localIdeographFontFamily&&!r.config?(this.style._diffStyle(i,(e,t)=>{e?(et.w(`Unable to perform style diff: ${String(e.message||e.error||e)}. Rebuilding the style from scratch.`),this._updateStyle(i,r)):t&&this._update(!0)},()=>{this._postStyleLoadEvent()}),this):(this._localIdeographFontFamily=r.localIdeographFontFamily,this._localFontFamily=r.localFontFamily,this._updateStyle(i,r))}_getUIString(e){var t=this._locale[e];if(null==t)throw new Error(`Missing UI string '${e}'`);return t}_updateStyle(e,t){if(this.style&&(this.style.setEventedParent(null),this.style._remove(),this.style=void 0),e){const i=et.Q({},t);t&&t.config&&(i.initialConfig=t.config,delete i.config),this.style=new x(this,i).load(e),this.style.setEventedParent(this,{style:this.style})}return this._updateTerrain(),this}_lazyInitEmptyStyle(){this.style||(this.style=new x(this,{}),this.style.setEventedParent(this,{style:this.style}),this.style.loadEmpty())}getStyle(){if(this.style)return this.style.serialize()}isStyleLoaded(){return this.style?this.style.loaded():(et.w("There is no style added to the map."),!1)}_isValidId(e){return null==e?(this.fire(new et.f(new Error("IDs can't be empty."))),!1):!et.cY(e)||(this.fire(new et.f(new Error(`IDs can't contain special symbols: "${e}".`))),!1)}addSource(e,t){return this._isValidId(e)?(this._lazyInitEmptyStyle(),this.style.addSource(e,t),this._update(!0)):this}isSourceLoaded(e){return!!this._isValidId(e)&&!!this.style&&this.style._isSourceCacheLoaded(e)}areTilesLoaded(){return this.style.areTilesLoaded()}addSourceType(e,t,i){this._lazyInitEmptyStyle(),this.style.addSourceType(e,t,i)}removeSource(e){return this._isValidId(e)?(this.style.removeSource(e),this._updateTerrain(),this._update(!0)):this}getSource(e){return this._isValidId(e)?this.style.getOwnSource(e):null}addImage(e,t,{pixelRatio:i=1,sdf:r=!1,stretchX:a,stretchY:n,content:o}={}){if(this._lazyInitEmptyStyle(),t instanceof HTMLImageElement||ImageBitmap&&t instanceof ImageBitmap){var{width:s,height:l,data:c}=et.e.getImageData(t);this.style.addImage(e,{data:new et.j({width:s,height:l},c),pixelRatio:i,stretchX:a,stretchY:n,content:o,sdf:r,version:0})}else if(void 0===t.width||void 0===t.height)this.fire(new et.f(new Error("Invalid arguments to map.addImage(). The second argument must be an `HTMLImageElement`, `ImageData`, `ImageBitmap`, or object with `width`, `height`, and `data` properties with the same format as `ImageData`")));else{const{width:h,height:u}=t,d=t;this.style.addImage(e,{data:new et.j({width:h,height:u},new Uint8Array(d.data)),pixelRatio:i,stretchX:a,stretchY:n,content:o,sdf:r,version:0,userImage:d}),d.onAdd&&d.onAdd(this,e)}}updateImage(e,t){this._lazyInitEmptyStyle();const i=this.style.getImage(e);var r,a,n;i?({width:n,height:r,data:a}=t instanceof HTMLImageElement||ImageBitmap&&t instanceof ImageBitmap?et.e.getImageData(t):t,void 0===n||void 0===r?this.fire(new et.f(new Error("Invalid arguments to map.updateImage(). The second argument must be an `HTMLImageElement`, `ImageData`, `ImageBitmap`, or object with `width`, `height`, and `data` properties with the same format as `ImageData`"))):n!==i.data.width||r!==i.data.height?this.fire(new et.f(new Error(`The width and height of the updated image (${n}, ${r}) + must be that same as the previous version of the image + (${i.data.width}, ${i.data.height})`))):(n=!(t instanceof HTMLImageElement||ImageBitmap&&t instanceof ImageBitmap),i.data.replace(a,n),this.style.updateImage(e,i))):this.fire(new et.f(new Error("The map has no image with that id. If you are adding a new image use `map.addImage(...)` instead.")))}hasImage(e){return e?!!this.style&&!!this.style.getImage(e):(this.fire(new et.f(new Error("Missing required image id"))),!1)}removeImage(e){this.style.removeImage(e)}loadImage(e,i){et.i(this._requestManager.transformRequest(e,et.R.Image),(e,t)=>{i(e,t instanceof HTMLImageElement?et.e.getImageData(t):t)})}listImages(){return this.style.listImages()}addModel(e,t){this._lazyInitEmptyStyle(),this.style.addModel(e,t)}hasModel(e){return e?this.style.hasModel(e):(this.fire(new et.f(new Error("Missing required model id"))),!1)}removeModel(e){this.style.removeModel(e)}listModels(){return this.style.listModels()}addLayer(e,t){return this._isValidId(e.id)?(this._lazyInitEmptyStyle(),this.style.addLayer(e,t),this._update(!0)):this}getSlot(e){e=this.getLayer(e);return e&&e.slot||null}setSlot(e,t){return this.style.setSlot(e,t),this.style.mergeLayers(),this._update(!0)}addImport(e,t){return this.style.addImport(e,t),this}updateImport(e,t){return"string"!=typeof t&&t.id!==e?(this.removeImport(e),this.addImport(t)):(this.style.updateImport(e,t),this._update(!0))}removeImport(e){return this.style.removeImport(e),this}moveImport(e,t){return this.style.moveImport(e,t),this._update(!0)}moveLayer(e,t){return this._isValidId(e)?(this.style.moveLayer(e,t),this._update(!0)):this}removeLayer(e){return this._isValidId(e)?(this.style.removeLayer(e),this._update(!0)):this}getLayer(e){if(!this._isValidId(e))return null;const t=this.style.getOwnLayer(e);return t?"custom"===t.type?t.implementation:t.serialize():void 0}getSlots(){return this.style.getSlots()}setLayerZoomRange(e,t,i){return this._isValidId(e)?(this.style.setLayerZoomRange(e,t,i),this._update(!0)):this}setFilter(e,t,i={}){return this._isValidId(e)?(this.style.setFilter(e,t,i),this._update(!0)):this}getFilter(e){return this._isValidId(e)?this.style.getFilter(e):null}setPaintProperty(e,t,i,r={}){return this._isValidId(e)?(this.style.setPaintProperty(e,t,i,r),this._update(!0)):this}getPaintProperty(e,t){return this._isValidId(e)?this.style.getPaintProperty(e,t):null}setLayoutProperty(e,t,i,r={}){return this._isValidId(e)?(this.style.setLayoutProperty(e,t,i,r),this._update(!0)):this}getLayoutProperty(e,t){return this._isValidId(e)?this.style.getLayoutProperty(e,t):null}getSchema(e){return this.style.getSchema(e)}setSchema(e,t){return this.style.setSchema(e,t),this._update(!0)}getConfig(e){return this.style.getConfig(e)}setConfig(e,t){return this.style.setConfig(e,t),this._update(!0)}getConfigProperty(e,t){return this.style.getConfigProperty(e,t)}setConfigProperty(e,t,i){return this.style.setConfigProperty(e,t,i),this._update(!0)}setLights(e){var t;return this._lazyInitEmptyStyle(),e&&1===e.length&&"flat"===e[0].type?(t=e[0]).properties?this.style.setFlatLight(t.properties,t.id,{}):this.style.setFlatLight({},"flat"):(this.style.setLights(e),this.painter.terrain&&(this.painter.terrain.invalidateRenderCache=!0)),this._update(!0)}getLights(){const e=this.style.getLights()||[];return 0===e.length&&e.push({id:this.style.light.id,type:"flat",properties:this.style.getFlatLight()}),e}setLight(e,t=0){return console.log("The `map.setLight` function is deprecated, prefer using `map.setLights` with `flat` light type instead."),this.setLights([{id:"flat",type:"flat",properties:e}])}getLight(){return console.log("The `map.getLight` function is deprecated, prefer using `map.getLights` instead."),this.style.getFlatLight()}setTerrain(e){return this._lazyInitEmptyStyle(),!e&&this.transform.projection.requiresDraping?this.style.setTerrainForDraping():this.style.setTerrain(e),this._averageElevationLastSampledAt=-1/0,this._update(!0)}getTerrain(){return this.style?this.style.getTerrain():null}setFog(e){return this._lazyInitEmptyStyle(),this.style.setFog(e),this._update(!0)}getFog(){return this.style?this.style.getFog():null}setColorTheme(e){return this._lazyInitEmptyStyle(),this.style.setColorTheme(e),this._update(!0)}setCamera(e){return this.style.setCamera(e),this._triggerCameraUpdate(e)}_triggerCameraUpdate(e){return this._update(this.transform.setOrthographicProjectionAtLowPitch("orthographic"===e["camera-projection"]))}getCamera(){return this.style.camera}_queryFogOpacity(e){return this.style&&this.style.fog?this.style.fog.getOpacityAtLatLng(et.aJ.convert(e),this.transform):0}setFeatureState(e,t){return this._isValidId(e.source)?(this.style.setFeatureState(e,t),this._update()):this}removeFeatureState(e,t){return this._isValidId(e.source)?(this.style.removeFeatureState(e,t),this._update()):this}getFeatureState(e){return this._isValidId(e.source)?this.style.getFeatureState(e):null}_updateContainerDimensions(){if(this._container){const a=this._container.getBoundingClientRect().width||400,n=this._container.getBoundingClientRect().height||300;let e,t,i,r=this._container;for(;r&&(!t||!i);){const a=window.getComputedStyle(r).transform;a&&"none"!==a&&((e=a.match(/matrix.*\((.+)\)/)[1].split(", "))[0]&&"0"!==e[0]&&"1"!==e[0]&&(t=e[0]),e[3]&&"0"!==e[3]&&"1"!==e[3]&&(i=e[3])),r=r.parentElement}this._containerWidth=t?Math.abs(a/t):a,this._containerHeight=i?Math.abs(n/i):n}}_detectMissingCSS(){"rgb(250, 128, 114)"!==window.getComputedStyle(this._missingCSSCanary).getPropertyValue("background-color")&&et.w("This page appears to be missing CSS declarations for Mapbox GL JS, which may cause the map to display incorrectly. Please ensure your page includes mapbox-gl.css, as described in https://www.mapbox.com/mapbox-gl-js/api/.")}_setupContainer(){const e=this._container,t=(e.classList.add("mapboxgl-map"),(this._missingCSSCanary=c("div","mapboxgl-canary",e)).style.visibility="hidden",this._detectMissingCSS(),this._canvasContainer=c("div","mapboxgl-canvas-container",e)),i=(this._canvas=c("canvas","mapboxgl-canvas",t),this._interactive&&(t.classList.add("mapboxgl-interactive"),this._canvas.setAttribute("tabindex","0")),this._canvas.addEventListener("webglcontextlost",this._contextLost,!1),this._canvas.addEventListener("webglcontextrestored",this._contextRestored,!1),this._canvas.setAttribute("aria-label",this._getUIString("Map.Title")),this._canvas.setAttribute("role","region"),this._updateContainerDimensions(),this._resizeCanvas(this._containerWidth,this._containerHeight),this._controlContainer=c("div","mapboxgl-control-container",e)),r=this._controlPositions={};["top-left","top-right","bottom-left","bottom-right"].forEach(e=>{r[e]=c("div","mapboxgl-ctrl-"+e,i)}),this._container.addEventListener("scroll",this._onMapScroll,!1)}_resizeCanvas(e,t){var i=et.e.devicePixelRatio||1;this._canvas.width=i*Math.ceil(e),this._canvas.height=i*Math.ceil(t),this._canvas.style.width=e+"px",this._canvas.style.height=t+"px"}_addMarker(e){this._markers.push(e)}_removeMarker(e){e=this._markers.indexOf(e);-1!==e&&this._markers.splice(e,1)}_addPopup(e){this._popups.push(e)}_removePopup(e){e=this._popups.indexOf(e);-1!==e&&this._popups.splice(e,1)}_setupPainter(){var e=et.Q({},T.webGLContextAttributes,{failIfMajorPerformanceCaveat:this._failIfMajorPerformanceCaveat,preserveDrawingBuffer:this._preserveDrawingBuffer,antialias:this._antialias||!1}),e=this._canvas.getContext("webgl2",e);e?(et.dk(e,!0),this.painter=new Hr(e,this._contextCreateOptions,this.transform,this._tp),this.on("data",e=>{"source"===e.dataType&&this.painter.setTileLoadedFlag(!0)}),et.dl.testSupport(e)):this.fire(new et.f(new Error("Failed to initialize WebGL")))}_contextLost(e){e.preventDefault(),this._frame&&(this._frame.cancel(),this._frame=null),this.fire(new et.g("webglcontextlost",{originalEvent:e}))}_contextRestored(e){this._setupPainter(),this.resize(),this._update(),this.fire(new et.g("webglcontextrestored",{originalEvent:e}))}_onMapScroll(e){if(e.target===this._container)return this._container.scrollTop=0,this._container.scrollLeft=0,!1}idle(){return!this.isMoving()&&this.loaded()}loaded(){return!this._styleDirty&&!this._sourcesDirty&&!!this.style&&this.style.loaded()}frameReady(){return this.loaded()&&!this._placementDirty}_update(e){return this.style&&(this._styleDirty=this._styleDirty||e,this._sourcesDirty=!0,this.triggerRepaint()),this}_requestRenderFrame(e){return this._update(),this._renderTaskQueue.add(e)}_cancelRenderFrame(e){this._renderTaskQueue.remove(e)}_requestDomTask(e){!this.loaded()||this.loaded()&&!this.isMoving()?e():this._domRenderTaskQueue.add(e)}_render(t){let i;this.fire(new et.g("renderstart")),++this._frameId;const r=this.painter.context.extTimerQuery,a=et.e.now(),n=this.painter.context.gl;if(this.listens("gpu-timing-frame")&&(i=n.createQuery(),n.beginQuery(r.TIME_ELAPSED_EXT,i)),this.painter.context.setDirty(),this.painter.setBaseState(),(this.isMoving()||this.isRotating()||this.isZooming())&&(this._interactionRange[0]=Math.min(this._interactionRange[0],performance.now()),this._interactionRange[1]=Math.max(this._interactionRange[1],performance.now())),this._renderTaskQueue.run(t),this._domRenderTaskQueue.run(t),!this._removed){this._updateProjectionTransition();var o=this._isInitialLoad?0:this._fadeDuration;if(this.style&&this._styleDirty){this._styleDirty=!1;const t=this.transform.zoom,i=this.transform.pitch,r=et.e.now(),a=new et.Y(t,{now:r,fadeDuration:o,pitch:i,transition:this.style.transition});this.style.update(a)}this.style&&this.style.hasFogTransition()&&(this.style._markersNeedUpdate=!0,this._sourcesDirty=!0);let e=!1;this.style&&this._sourcesDirty?(this._sourcesDirty=!1,this.painter._updateFog(this.style),this._updateTerrain(),e=this._updateAverageElevation(a),this.style.updateSources(this.transform),this._forceMarkerAndPopupUpdate()):e=this._updateAverageElevation(a);t=this.style&&this.style._updatePlacement(this.painter,this.painter.transform,this.showCollisionBoxes,o,this._crossSourceCollisions,this.painter.replacementSource);if(t&&(this._placementDirty=t.needsRerender),this.style&&this.painter.render(this.style,{showTileBoundaries:this.showTileBoundaries,showParseStatus:this.showParseStatus,wireframe:{terrain:this.showTerrainWireframe,layers2D:this.showLayers2DWireframe,layers3D:this.showLayers3DWireframe},showOverdrawInspector:this._showOverdrawInspector,showQueryGeometry:!!this._showQueryGeometry,showTileAABBs:this.showTileAABBs,rotating:this.isRotating(),zooming:this.isZooming(),moving:this.isMoving(),fadeDuration:o,isInitialLoad:this._isInitialLoad,showPadding:this.showPadding,gpuTiming:!!this.listens("gpu-timing-layer"),gpuTimingDeferredRender:!!this.listens("gpu-timing-deferred-render"),speedIndexTiming:this.speedIndexTiming}),this.fire(new et.g("render")),this.loaded()&&!this._loaded&&(this._loaded=!0,et.df.mark(et.dg.load),this.fire(new et.g("load"))),this.style&&this.style.hasTransitions()&&(this._styleDirty=!0),this.style&&!this._placementDirty&&this.style._releaseSymbolFadeTiles(),i){const t=et.e.now()-a;n.endQuery(r.TIME_ELAPSED_EXT),setTimeout(()=>{var e=n.getQueryParameter(i,n.QUERY_RESULT)/1e6;n.deleteQuery(i),this.fire(new et.g("gpu-timing-frame",{cpuTime:t,gpuTime:e}))},50)}if(this.listens("gpu-timing-layer")){const t=this.painter.collectGpuTimers();setTimeout(()=>{var e=this.painter.queryGpuTimers(t);this.fire(new et.g("gpu-timing-layer",{layerTimes:e}))},50)}if(this.listens("gpu-timing-deferred-render")){const t=this.painter.collectDeferredRenderGpuQueries();setTimeout(()=>{var e=this.painter.queryGpuTimeDeferredRender(t);this.fire(new et.g("gpu-timing-deferred-render",{gpuTime:e}))},50)}t=this._sourcesDirty||this._styleDirty||this._placementDirty||e;if(t||this._repaint)this.triggerRepaint();else{const t=this.idle();if(e=t?this._updateAverageElevation(a,!0):e)this.triggerRepaint();else if(this._triggerFrame(!1),t&&(this.fire(new et.g("idle")),this._isInitialLoad=!1,this.speedIndexTiming)){const t=this._calculateSpeedIndex();this.fire(new et.g("speedindexcompleted",{speedIndex:t})),this.speedIndexTiming=!1}}!this._loaded||this._fullyLoaded||t||(this._fullyLoaded=!0,et.df.mark(et.dg.fullLoad),this._performanceMetricsCollection&&et.dm(this._requestManager._customAccessToken,{width:this.painter.width,height:this.painter.height,interactionRange:this._interactionRange,visibilityHidden:this._visibilityHidden,terrainEnabled:!!this.painter.style.getTerrain(),fogEnabled:!!this.painter.style.getFog(),projection:this.getProjection().name,zoom:this.transform.zoom,renderer:this.painter.context.renderer,vendor:this.painter.context.vendor}),this._authenticate())}}_forceMarkerAndPopupUpdate(e){for(const t of this._markers)e&&!this.getRenderWorldCopies()&&(t._lngLat=t._lngLat.wrap()),t._update();for(const i of this._popups)!e||this.getRenderWorldCopies()||i._trackPointer||(i._lngLat=i._lngLat.wrap()),i._update()}_updateAverageElevation(t,i=!1){var r=e=>(this.transform.averageElevation=e,this._update(!1),!0);if(!this.painter.averageElevationNeedsEasing())return 0!==this.transform.averageElevation&&r(0);var a=this.transform.elevation&&this.transform.elevation.exaggeration()!==this._averageElevationExaggeration;if(a||(i||500{if(e&&(e.message===et.dp||401===e.status)){const e=this.painter.context.gl;et.dk(e,!1),this._logoControl instanceof Nn&&this._logoControl._updateLogo(),e&&e.clear(e.DEPTH_BUFFER_BIT|e.COLOR_BUFFER_BIT|e.STENCIL_BUFFER_BIT),this._silenceAuthErrors||this.fire(new et.f(new Error("A valid Mapbox access token is required to use Mapbox GL JS. To create an account or a new access token, visit https://account.mapbox.com/")))}}),et.dq(this._getMapId(),this._requestManager._skuToken,this._requestManager._customAccessToken,()=>{})}_postStyleLoadEvent(){this.style.globalId&&et.dr(this._requestManager._customAccessToken,{map:this,skuToken:this._requestManager._skuToken,style:this.style.globalId,importedStyles:this.style.getImportGlobalIds()})}_updateTerrain(){var e=this._isDragging();this.painter.updateTerrain(this.style,e)}_calculateSpeedIndex(){const e=this.painter.canvasCopy(),t=this.painter.getCanvasCopiesAndTimestamps(),i=(t.timeStamps.push(performance.now()),this.painter.context.gl),r=i.createFramebuffer();function a(e){i.framebufferTexture2D(i.FRAMEBUFFER,i.COLOR_ATTACHMENT0,i.TEXTURE_2D,e,0);e=new Uint8Array(i.drawingBufferWidth*i.drawingBufferHeight*4);return i.readPixels(0,0,i.drawingBufferWidth,i.drawingBufferHeight,i.RGBA,i.UNSIGNED_BYTE,e),e}return i.bindFramebuffer(i.FRAMEBUFFER,r),this._canvasPixelComparison(a(e),t.canvasCopies.map(a),t.timeStamps)}_canvasPixelComparison(i,r,a){let n=a[1]-a[0];var o=i.length/4;for(let e=0;e{var t=!!this._renderNextFrame;this._frame=null,this._renderNextFrame=null,t&&this._render(e)}))}_preloadTiles(i){var e=this.style?this.style.getSourceCaches():[];return et.dv(e,(e,t)=>e._preloadTiles(i,t),()=>{this.triggerRepaint()}),this}_onWindowOnline(){this._update()}_onWindowResize(e){this._trackResize&&this.resize({originalEvent:e})._update()}_onVisibilityChange(){"hidden"===document.visibilityState&&this._visibilityHidden++}get showTileBoundaries(){return!!this._showTileBoundaries}set showTileBoundaries(e){this._showTileBoundaries!==e&&(this._showTileBoundaries=e,this._tp.refreshUI(),this._update())}get showParseStatus(){return!!this._showParseStatus}set showParseStatus(e){this._showParseStatus!==e&&(this._showParseStatus=e,this._tp.refreshUI(),this._update())}get showTerrainWireframe(){return!!this._showTerrainWireframe}set showTerrainWireframe(e){this._showTerrainWireframe!==e&&(this._showTerrainWireframe=e,this._tp.refreshUI(),this._update())}get showLayers2DWireframe(){return!!this._showLayers2DWireframe}set showLayers2DWireframe(e){this._showLayers2DWireframe!==e&&(this._showLayers2DWireframe=e,this._tp.refreshUI(),this._update())}get showLayers3DWireframe(){return!!this._showLayers3DWireframe}set showLayers3DWireframe(e){this._showLayers3DWireframe!==e&&(this._showLayers3DWireframe=e,this._tp.refreshUI(),this._update())}get speedIndexTiming(){return!!this._speedIndexTiming}set speedIndexTiming(e){this._speedIndexTiming!==e&&(this._speedIndexTiming=e,this._update())}get showPadding(){return!!this._showPadding}set showPadding(e){this._showPadding!==e&&(this._showPadding=e,this._tp.refreshUI(),this._update())}get showCollisionBoxes(){return!!this._showCollisionBoxes}set showCollisionBoxes(e){this._showCollisionBoxes!==e&&(this._showCollisionBoxes=e,this._tp.refreshUI(),e?this.style._generateCollisionBoxes():this._update())}get showOverdrawInspector(){return!!this._showOverdrawInspector}set showOverdrawInspector(e){this._showOverdrawInspector!==e&&(this._showOverdrawInspector=e,this._tp.refreshUI(),this._update())}get repaint(){return!!this._repaint}set repaint(e){this._repaint!==e&&(this._repaint=e,this._tp.refreshUI(),this.triggerRepaint())}get vertices(){return!!this._vertices}set vertices(e){this._vertices=e,this._update()}get showTileAABBs(){return!!this._showTileAABBs}set showTileAABBs(e){this._showTileAABBs!==e&&(this._showTileAABBs=e,this._tp.refreshUI(),e&&this._update())}_setCacheLimits(e,t){et.dx(e,t)}get version(){return et.dw}},NavigationControl:class{constructor(e={}){this.options=et.Q({},Jn,e),this._container=c("div","mapboxgl-ctrl mapboxgl-ctrl-group"),this._container.addEventListener("contextmenu",e=>e.preventDefault()),this.options.showZoom&&(et.br(["_setButtonTitle","_updateZoomButtons"],this),this._zoomInButton=this._createButton("mapboxgl-ctrl-zoom-in",e=>{this._map&&this._map.zoomIn({},{originalEvent:e})}),c("span","mapboxgl-ctrl-icon",this._zoomInButton).setAttribute("aria-hidden","true"),this._zoomOutButton=this._createButton("mapboxgl-ctrl-zoom-out",e=>{this._map&&this._map.zoomOut({},{originalEvent:e})}),c("span","mapboxgl-ctrl-icon",this._zoomOutButton).setAttribute("aria-hidden","true")),this.options.showCompass&&(et.br(["_rotateCompassArrow"],this),this._compass=this._createButton("mapboxgl-ctrl-compass",e=>{const t=this._map;t&&(this.options.visualizePitch?t.resetNorthPitch({},{originalEvent:e}):t.resetNorth({},{originalEvent:e}))}),this._compassIcon=c("span","mapboxgl-ctrl-icon",this._compass),this._compassIcon.setAttribute("aria-hidden","true"))}_updateZoomButtons(){const e=this._map;if(e){const t=e.getZoom(),i=t===e.getMaxZoom(),r=t===e.getMinZoom();this._zoomInButton.disabled=i,this._zoomOutButton.disabled=r,this._zoomInButton.setAttribute("aria-disabled",i.toString()),this._zoomOutButton.setAttribute("aria-disabled",r.toString())}}_rotateCompassArrow(){const e=this._map;if(e){const t=this.options.visualizePitch?`scale(${1/Math.pow(Math.cos(e.transform.pitch*(Math.PI/180)),.5)}) rotateX(${e.transform.pitch}deg) rotateZ(${e.transform.angle*(180/Math.PI)}deg)`:`rotate(${e.transform.angle*(180/Math.PI)}deg)`;e._requestDomTask(()=>{this._compassIcon&&(this._compassIcon.style.transform=t)})}}onAdd(e){return this._map=e,this.options.showZoom&&(this._setButtonTitle(this._zoomInButton,"ZoomIn"),this._setButtonTitle(this._zoomOutButton,"ZoomOut"),e.on("zoom",this._updateZoomButtons),this._updateZoomButtons()),this.options.showCompass&&(this._setButtonTitle(this._compass,"ResetBearing"),this.options.visualizePitch&&e.on("pitch",this._rotateCompassArrow),e.on("rotate",this._rotateCompassArrow),this._rotateCompassArrow(),this._handler=new Kn(e,this._compass,this.options.visualizePitch)),this._container}onRemove(){const e=this._map;e&&(this._container.remove(),this.options.showZoom&&e.off("zoom",this._updateZoomButtons),this.options.showCompass&&(this.options.visualizePitch&&e.off("pitch",this._rotateCompassArrow),e.off("rotate",this._rotateCompassArrow),this._handler&&this._handler.off(),this._handler=void 0),this._map=void 0)}_createButton(e,t){const i=c("button",e,this._container);return i.type="button",i.addEventListener("click",t),i}_setButtonTitle(e,t){this._map&&(t=this._map._getUIString("NavigationControl."+t),e.setAttribute("aria-label",t),e.firstElementChild&&e.firstElementChild.setAttribute("title",t))}},GeolocateControl:class extends et.E{constructor(e={}){super();var t=navigator.geolocation;this.options=et.Q({geolocation:t},Qn,e),et.br(["_onSuccess","_onError","_onZoom","_finish","_setupUI","_updateCamera","_updateMarker","_updateMarkerRotation","_onDeviceOrientation"],this),this._updateMarkerRotationThrottled=Na(this._updateMarkerRotation,20),this._numberOfWatches=0}onAdd(e){return this._map=e,this._container=c("div","mapboxgl-ctrl mapboxgl-ctrl-group"),this._checkGeolocationSupport(this._setupUI),this._container}onRemove(){void 0!==this._geolocationWatchID&&(this.options.geolocation.clearWatch(this._geolocationWatchID),this._geolocationWatchID=void 0),this.options.showUserLocation&&this._userLocationDotMarker&&this._userLocationDotMarker.remove(),this.options.showAccuracyCircle&&this._accuracyCircleMarker&&this._accuracyCircleMarker.remove(),this._container.remove(),this._map.off("zoom",this._onZoom),this._map=void 0,this._numberOfWatches=0,this._noTimeout=!1}_checkGeolocationSupport(t){const i=(e=!!this.options.geolocation)=>{this._supportsGeolocation=e,t(e)};void 0!==this._supportsGeolocation?t(this._supportsGeolocation):void 0!==navigator.permissions?navigator.permissions.query({name:"geolocation"}).then(e=>i("denied"!==e.state)).catch(()=>i()):i()}_isOutOfMapMaxBounds(e){const t=this._map.getMaxBounds(),i=e.coords;return!!t&&(i.longitudet.getEast()||i.latitudet.getNorth())}_setErrorState(){switch(this._watchState){case"WAITING_ACTIVE":this._watchState="ACTIVE_ERROR",this._geolocateButton.classList.remove("mapboxgl-ctrl-geolocate-active"),this._geolocateButton.classList.add("mapboxgl-ctrl-geolocate-active-error");break;case"ACTIVE_LOCK":this._watchState="ACTIVE_ERROR",this._geolocateButton.classList.remove("mapboxgl-ctrl-geolocate-active"),this._geolocateButton.classList.add("mapboxgl-ctrl-geolocate-active-error"),this._geolocateButton.classList.add("mapboxgl-ctrl-geolocate-waiting");break;case"BACKGROUND":this._watchState="BACKGROUND_ERROR",this._geolocateButton.classList.remove("mapboxgl-ctrl-geolocate-background"),this._geolocateButton.classList.add("mapboxgl-ctrl-geolocate-background-error"),this._geolocateButton.classList.add("mapboxgl-ctrl-geolocate-waiting")}}_onSuccess(e){if(this._map){if(this._isOutOfMapMaxBounds(e))return this._setErrorState(),this.fire(new et.g("outofmaxbounds",e)),this._updateMarker(),void this._finish();if(this.options.trackUserLocation)switch(this._lastKnownPosition=e,this._watchState){case"WAITING_ACTIVE":case"ACTIVE_LOCK":case"ACTIVE_ERROR":this._watchState="ACTIVE_LOCK",this._geolocateButton.classList.remove("mapboxgl-ctrl-geolocate-waiting"),this._geolocateButton.classList.remove("mapboxgl-ctrl-geolocate-active-error"),this._geolocateButton.classList.add("mapboxgl-ctrl-geolocate-active");break;case"BACKGROUND":case"BACKGROUND_ERROR":this._watchState="BACKGROUND",this._geolocateButton.classList.remove("mapboxgl-ctrl-geolocate-waiting"),this._geolocateButton.classList.remove("mapboxgl-ctrl-geolocate-background-error"),this._geolocateButton.classList.add("mapboxgl-ctrl-geolocate-background")}this.options.showUserLocation&&"OFF"!==this._watchState&&this._updateMarker(e),this.options.trackUserLocation&&"ACTIVE_LOCK"!==this._watchState||this._updateCamera(e),this.options.showUserLocation&&this._userLocationDotMarker.removeClassName("mapboxgl-user-location-dot-stale"),this.fire(new et.g("geolocate",e)),this._finish()}}_updateCamera(e){const t=new et.aJ(e.coords.longitude,e.coords.latitude),i=e.coords.accuracy,r=this._map.getBearing(),a=et.Q({bearing:r},this.options.fitBoundsOptions);this._map.fitBounds(t.toBounds(i),a,{geolocateSource:!0})}_updateMarker(e){var t;e?(t=new et.aJ(e.coords.longitude,e.coords.latitude),this._accuracyCircleMarker.setLngLat(t).addTo(this._map),this._userLocationDotMarker.setLngLat(t).addTo(this._map),this._accuracy=e.coords.accuracy,this.options.showUserLocation&&this.options.showAccuracyCircle&&this._updateCircleRadius()):(this._userLocationDotMarker.remove(),this._accuracyCircleMarker.remove())}_updateCircleRadius(){var e=this._map.transform,e=et.ay(1,e._center.lat)*e.worldSize,e=Math.ceil(2*this._accuracy*e);this._circleElement.style.width=e+"px",this._circleElement.style.height=e+"px"}_onZoom(){this.options.showUserLocation&&this.options.showAccuracyCircle&&this._updateCircleRadius()}_updateMarkerRotation(){this._userLocationDotMarker&&"number"==typeof this._heading?(this._userLocationDotMarker.setRotation(this._heading),this._userLocationDotMarker.addClassName("mapboxgl-user-location-show-heading")):(this._userLocationDotMarker.removeClassName("mapboxgl-user-location-show-heading"),this._userLocationDotMarker.setRotation(0))}_onError(e){if(this._map){if(this.options.trackUserLocation)if(1===e.code){this._watchState="OFF",this._geolocateButton.classList.remove("mapboxgl-ctrl-geolocate-waiting"),this._geolocateButton.classList.remove("mapboxgl-ctrl-geolocate-active"),this._geolocateButton.classList.remove("mapboxgl-ctrl-geolocate-active-error"),this._geolocateButton.classList.remove("mapboxgl-ctrl-geolocate-background"),this._geolocateButton.classList.remove("mapboxgl-ctrl-geolocate-background-error"),this._geolocateButton.disabled=!0;const et=this._map._getUIString("GeolocateControl.LocationNotAvailable");this._geolocateButton.setAttribute("aria-label",et),this._geolocateButton.firstElementChild&&this._geolocateButton.firstElementChild.setAttribute("title",et),void 0!==this._geolocationWatchID&&this._clearWatch()}else{if(3===e.code&&this._noTimeout)return;this._setErrorState()}"OFF"!==this._watchState&&this.options.showUserLocation&&this._userLocationDotMarker.addClassName("mapboxgl-user-location-dot-stale"),this.fire(new et.g("error",e)),this._finish()}}_finish(){this._timeoutId&&clearTimeout(this._timeoutId),this._timeoutId=void 0}_setupUI(e){if(void 0!==this._map){if(this._container.addEventListener("contextmenu",e=>e.preventDefault()),this._geolocateButton=c("button","mapboxgl-ctrl-geolocate",this._container),c("span","mapboxgl-ctrl-icon",this._geolocateButton).setAttribute("aria-hidden","true"),!(this._geolocateButton.type="button")===e){et.w("Geolocation support is not available so the GeolocateControl will be disabled.");const e=this._map._getUIString("GeolocateControl.LocationNotAvailable");this._geolocateButton.disabled=!0,this._geolocateButton.setAttribute("aria-label",e),this._geolocateButton.firstElementChild&&this._geolocateButton.firstElementChild.setAttribute("title",e)}else{const et=this._map._getUIString("GeolocateControl.FindMyLocation");this._geolocateButton.setAttribute("aria-label",et),this._geolocateButton.firstElementChild&&this._geolocateButton.firstElementChild.setAttribute("title",et)}this.options.trackUserLocation&&(this._geolocateButton.setAttribute("aria-pressed","false"),this._watchState="OFF"),this.options.showUserLocation&&(this._dotElement=c("div","mapboxgl-user-location"),this._dotElement.appendChild(c("div","mapboxgl-user-location-dot")),this._dotElement.appendChild(c("div","mapboxgl-user-location-heading")),this._userLocationDotMarker=new Gn({element:this._dotElement,rotationAlignment:"map",pitchAlignment:"map"}),this._circleElement=c("div","mapboxgl-user-location-accuracy-circle"),this._accuracyCircleMarker=new Gn({element:this._circleElement,pitchAlignment:"map"}),this.options.trackUserLocation&&(this._watchState="OFF"),this._map.on("zoom",this._onZoom)),this._geolocateButton.addEventListener("click",this.trigger.bind(this)),this._setup=!0,this.options.trackUserLocation&&this._map.on("movestart",e=>{e.geolocateSource||"ACTIVE_LOCK"!==this._watchState||e.originalEvent&&"resize"===e.originalEvent.type||(this._watchState="BACKGROUND",this._geolocateButton.classList.add("mapboxgl-ctrl-geolocate-background"),this._geolocateButton.classList.remove("mapboxgl-ctrl-geolocate-active"),this.fire(new et.g("trackuserlocationend")))})}}_onDeviceOrientation(e){this._userLocationDotMarker&&(e.webkitCompassHeading?this._heading=e.webkitCompassHeading:!0===e.absolute&&(this._heading=-1*e.alpha),this._updateMarkerRotationThrottled())}trigger(){if(!this._setup)return et.w("Geolocate control triggered before added to a map"),!1;if(this.options.trackUserLocation){switch(this._watchState){case"OFF":this._watchState="WAITING_ACTIVE",this.fire(new et.g("trackuserlocationstart"));break;case"WAITING_ACTIVE":case"ACTIVE_LOCK":case"ACTIVE_ERROR":case"BACKGROUND_ERROR":this._numberOfWatches--,this._noTimeout=!1,this._watchState="OFF",this._geolocateButton.classList.remove("mapboxgl-ctrl-geolocate-waiting"),this._geolocateButton.classList.remove("mapboxgl-ctrl-geolocate-active"),this._geolocateButton.classList.remove("mapboxgl-ctrl-geolocate-active-error"),this._geolocateButton.classList.remove("mapboxgl-ctrl-geolocate-background"),this._geolocateButton.classList.remove("mapboxgl-ctrl-geolocate-background-error"),this.fire(new et.g("trackuserlocationend"));break;case"BACKGROUND":this._watchState="ACTIVE_LOCK",this._geolocateButton.classList.remove("mapboxgl-ctrl-geolocate-background"),this._lastKnownPosition&&this._updateCamera(this._lastKnownPosition),this.fire(new et.g("trackuserlocationstart"))}switch(this._watchState){case"WAITING_ACTIVE":this._geolocateButton.classList.add("mapboxgl-ctrl-geolocate-waiting"),this._geolocateButton.classList.add("mapboxgl-ctrl-geolocate-active");break;case"ACTIVE_LOCK":this._geolocateButton.classList.add("mapboxgl-ctrl-geolocate-active");break;case"ACTIVE_ERROR":this._geolocateButton.classList.add("mapboxgl-ctrl-geolocate-waiting"),this._geolocateButton.classList.add("mapboxgl-ctrl-geolocate-active-error");break;case"BACKGROUND":this._geolocateButton.classList.add("mapboxgl-ctrl-geolocate-background");break;case"BACKGROUND_ERROR":this._geolocateButton.classList.add("mapboxgl-ctrl-geolocate-waiting"),this._geolocateButton.classList.add("mapboxgl-ctrl-geolocate-background-error")}if("OFF"===this._watchState&&void 0!==this._geolocationWatchID)this._clearWatch();else if(void 0===this._geolocationWatchID){let e;this._geolocateButton.classList.add("mapboxgl-ctrl-geolocate-waiting"),this._geolocateButton.setAttribute("aria-pressed","true"),this._numberOfWatches++,1{"ondeviceorientationabsolute"in window?window.addEventListener("deviceorientationabsolute",this._onDeviceOrientation):window.addEventListener("deviceorientation",this._onDeviceOrientation)};"undefined"!=typeof DeviceMotionEvent&&"function"==typeof DeviceMotionEvent.requestPermission?DeviceOrientationEvent.requestPermission().then(e=>{"granted"===e&&t()}).catch(console.error):t()}_clearWatch(){this.options.geolocation.clearWatch(this._geolocationWatchID),window.removeEventListener("deviceorientation",this._onDeviceOrientation),window.removeEventListener("deviceorientationabsolute",this._onDeviceOrientation),this._geolocationWatchID=void 0,this._geolocateButton.classList.remove("mapboxgl-ctrl-geolocate-waiting"),this._geolocateButton.setAttribute("aria-pressed","false"),this.options.showUserLocation&&this._updateMarker(null)}},AttributionControl:Fn,ScaleControl:class{constructor(e={}){this.options=et.Q({},eo,e),this._isNumberFormatSupported=function(){try{return new Intl.NumberFormat("en",{style:"unit",unitDisplay:"short",unit:"meter"}),!0}catch(e){return!1}}(),et.br(["_update","_setScale","setUnit"],this)}getDefaultPosition(){return"bottom-left"}_update(){const e=this.options.maxWidth||100,t=this._map,i=t._containerHeight/2,r=t._containerWidth/2-e/2,a=t.unproject([r,i]),n=t.unproject([r+e,i]),o=a.distanceTo(n);if("imperial"===this.options.unit){const t=3.2808*o;5280{var e=function(e){var t=Math.pow(10,(""+Math.floor(e)).length-1);let i=e/t;return t*(i=10<=i?10:5<=i?5:3<=i?3:2<=i?2:1<=i?1:(e=i,t=Math.pow(10,Math.ceil(-Math.log(e)/Math.LN10)),Math.round(e*t)/t))}(r),t=e/r;this._container.innerHTML=this._isNumberFormatSupported&&"nautical-mile"!==a?new Intl.NumberFormat(this._language,{style:"unit",unitDisplay:"short",unit:a}).format(e):e+" "+to[a],this._container.style.width=i*t+"px"})}onAdd(e){return this._map=e,this._language=e.getLanguage(),this._container=c("div","mapboxgl-ctrl mapboxgl-ctrl-scale",e.getContainer()),this._container.dir="auto",this._map.on("move",this._update),this._update(),this._container}onRemove(){this._container.remove(),this._map.off("move",this._update),this._map=void 0}_setLanguage(e){this._language=e,this._update()}setUnit(e){this.options.unit=e,this._update()}},FullscreenControl:class{constructor(e={}){this._fullscreen=!1,e&&e.container&&(e.container instanceof HTMLElement?this._container=e.container:et.w("Full screen control 'container' must be a DOM element.")),et.br(["_onClickFullscreen","_changeIcon"],this),"onfullscreenchange"in document?this._fullscreenchange="fullscreenchange":"onwebkitfullscreenchange"in document&&(this._fullscreenchange="webkitfullscreenchange")}onAdd(e){return this._map=e,this._container||(this._container=this._map.getContainer()),this._controlContainer=c("div","mapboxgl-ctrl mapboxgl-ctrl-group"),this._checkFullscreenSupport()?this._setupUI():(this._controlContainer.style.display="none",et.w("This device does not support fullscreen mode.")),this._controlContainer}onRemove(){this._controlContainer.remove(),this._map=null,document.removeEventListener(this._fullscreenchange,this._changeIcon)}_checkFullscreenSupport(){return!(!document.fullscreenEnabled&&!document.webkitFullscreenEnabled)}_setupUI(){const e=this._fullscreenButton=c("button","mapboxgl-ctrl-fullscreen",this._controlContainer);c("span","mapboxgl-ctrl-icon",e).setAttribute("aria-hidden","true"),e.type="button",this._updateTitle(),this._fullscreenButton.addEventListener("click",this._onClickFullscreen),document.addEventListener(this._fullscreenchange,this._changeIcon)}_updateTitle(){var e=this._getTitle();this._fullscreenButton.setAttribute("aria-label",e),this._fullscreenButton.firstElementChild&&this._fullscreenButton.firstElementChild.setAttribute("title",e)}_getTitle(){return this._map._getUIString(this._isFullscreen()?"FullscreenControl.Exit":"FullscreenControl.Enter")}_isFullscreen(){return this._fullscreen}_changeIcon(){(document.fullscreenElement||document.webkitFullscreenElement)===this._container!==this._fullscreen&&(this._fullscreen=!this._fullscreen,this._fullscreenButton.classList.toggle("mapboxgl-ctrl-shrink"),this._fullscreenButton.classList.toggle("mapboxgl-ctrl-fullscreen"),this._updateTitle())}_onClickFullscreen(){this._isFullscreen()?document.exitFullscreen?document.exitFullscreen():document.webkitCancelFullScreen&&document.webkitCancelFullScreen():this._container.requestFullscreen?this._container.requestFullscreen():this._container.webkitRequestFullscreen&&this._container.webkitRequestFullscreen()}},Popup:class extends et.E{constructor(e){super(),this.options=et.Q(Object.create(qn),e),et.br(["_update","_onClose","remove","_onMouseEvent"],this),this._classList=new Set(e&&e.className?e.className.trim().split(/\s+/):[])}addTo(e){return this._map&&this.remove(),this._map=e,this.options.closeOnClick&&e.on("preclick",this._onClose),this.options.closeOnMove&&e.on("move",this._onClose),e.on("remove",this.remove),this._update(),e._addPopup(this),this._focusFirstElement(),this._trackPointer?(e.on("mousemove",this._onMouseEvent),e.on("mouseup",this._onMouseEvent),e._canvasContainer.classList.add("mapboxgl-track-pointer")):e.on("move",this._update),this.fire(new et.g("open")),this}isOpen(){return!!this._map}remove(){this._content&&this._content.remove(),this._container&&(this._container.remove(),this._container=void 0);const e=this._map;return e&&(e.off("move",this._update),e.off("move",this._onClose),e.off("preclick",this._onClose),e.off("click",this._onClose),e.off("remove",this.remove),e.off("mousemove",this._onMouseEvent),e.off("mouseup",this._onMouseEvent),e.off("drag",this._onMouseEvent),e._canvasContainer&&e._canvasContainer.classList.remove("mapboxgl-track-pointer"),e._removePopup(this),this._map=void 0),this.fire(new et.g("close")),this}getLngLat(){return this._lngLat}setLngLat(e){this._lngLat=et.aJ.convert(e),this._pos=null,this._trackPointer=!1,this._update();const t=this._map;return t&&(t.on("move",this._update),t.off("mousemove",this._onMouseEvent),t._canvasContainer.classList.remove("mapboxgl-track-pointer")),this}trackPointer(){this._trackPointer=!0,this._pos=null,this._update();const e=this._map;return e&&(e.off("move",this._update),e.on("mousemove",this._onMouseEvent),e.on("drag",this._onMouseEvent),e._canvasContainer.classList.add("mapboxgl-track-pointer")),this}getElement(){return this._container}setText(e){return this.setDOMContent(document.createTextNode(e))}setHTML(e){const t=document.createDocumentFragment(),i=document.createElement("body");var r;for(i.innerHTML=e;r=i.firstChild;)t.appendChild(r);return this.setDOMContent(t)}getMaxWidth(){return this._container&&this._container.style.maxWidth}setMaxWidth(e){return this.options.maxWidth=e,this._update(),this}setDOMContent(e){let t=this._content;if(t)for(;t.hasChildNodes();)t.firstChild&&t.removeChild(t.firstChild);else t=this._content=c("div","mapboxgl-popup-content",this._container||void 0);if(t.appendChild(e),this.options.closeButton){const e=this._closeButton=c("button","mapboxgl-popup-close-button",t);e.type="button",e.setAttribute("aria-label","Close popup"),e.setAttribute("aria-hidden","true"),e.innerHTML="×",e.addEventListener("click",this._onClose)}return this._update(),this._focusFirstElement(),this}addClassName(e){return this._classList.add(e),this._updateClassList(),this}removeClassName(e){return this._classList.delete(e),this._updateClassList(),this}setOffset(e){return this.options.offset=e,this._update(),this}toggleClassName(e){let t;return t=!this._classList.delete(e)&&(this._classList.add(e),!0),this._updateClassList(),t}_onMouseEvent(e){this._update(e.point)}_getAnchor(e){if(this.options.anchor)return this.options.anchor;var t=this._map,i=this._container,r=this._pos;if(!t||!i||!r)return"bottom";var a=i.offsetWidth,i=i.offsetHeight,n=r.xt.transform.width-a/2;if(r.y+et.transform.height-i){if(n)return"bottom-left";if(a)return"bottom-right"}return n?"left":a?"right":"bottom"}_updateClassList(){const e=this._container;if(e){const t=[...this._classList];t.push("mapboxgl-popup"),this._anchor&&t.push("mapboxgl-popup-anchor-"+this._anchor),this._trackPointer&&t.push("mapboxgl-popup-track-pointer"),e.className=t.join(" ")}}_update(t){const i=this._map,r=this._content;if(i&&(this._lngLat||this._trackPointer)&&r){let e=this._container;if(e||(e=this._container=c("div","mapboxgl-popup",i.getContainer()),this._tip=c("div","mapboxgl-popup-tip",e),e.appendChild(r)),this.options.maxWidth&&e.style.maxWidth!==this.options.maxWidth&&(e.style.maxWidth=this.options.maxWidth),i.transform.renderWorldCopies&&!this._trackPointer&&(this._lngLat=Un(this._lngLat,this._pos,i.transform)),!this._trackPointer||t){const r=this._pos=this._trackPointer&&t instanceof et.P?t:i.project(this._lngLat),c=Zn(this.options.offset),e=this._anchor=this._getAnchor(c.y),a=Zn(this.options.offset,e),n=r.add(a).round();i._requestDomTask(()=>{this._container&&e&&(this._container.style.transform=`${jn[e]} translate(${n.x}px,${n.y}px)`)})}if(!this._marker&&i._showingGlobe()){const t=et.dc(i.transform,this._lngLat)?0:1;this._setOpacity(t)}this._updateClassList()}}_focusFirstElement(){if(this.options.focusAfterOpen&&this._container){const e=this._container.querySelector($n);e&&e.focus()}}_onClose(){this.remove()}_setOpacity(e){this._container&&(this._container.style.opacity=""+e),this._content&&(this._content.style.pointerEvents=e?"auto":"none")}},Marker:Gn,Style:x,LngLat:et.aJ,LngLatBounds:et.aj,Point:et.P,MercatorCoordinate:et._,FreeCameraOptions:ei,Evented:et.E,config:et.db,prewarm:et.dA,clearPrewarmedResources:et.dB,get accessToken(){return et.db.ACCESS_TOKEN},set accessToken(e){et.db.ACCESS_TOKEN=e},get baseApiUrl(){return et.db.API_URL},set baseApiUrl(e){et.db.API_URL=e},get workerCount(){return et.dC.workerCount},set workerCount(e){et.dC.workerCount=e},get maxParallelImageRequests(){return et.db.MAX_PARALLEL_IMAGE_REQUESTS},set maxParallelImageRequests(e){et.db.MAX_PARALLEL_IMAGE_REQUESTS=e},clearStorage(e){et.dD(e)},get workerUrl(){return et.dE.workerUrl},set workerUrl(e){et.dE.workerUrl=e},get workerClass(){return et.dE.workerClass},set workerClass(e){et.dE.workerClass=e},get workerParams(){return et.dE.workerParams},set workerParams(e){et.dE.workerParams=e},get dracoUrl(){return et.dF()},set dracoUrl(e){et.dG(e)},get meshoptUrl(){return et.dH()},set meshoptUrl(e){et.dI(e)},setNow:et.e.setNow,restoreNow:et.e.restoreNow};return io}),o}); \ No newline at end of file diff --git a/src/ckanext-mappreview/ckanext/mappreview/assets/webassets.yml b/src/ckanext-mappreview/ckanext/mappreview/assets/webassets.yml new file mode 100644 index 00000000..5442395e --- /dev/null +++ b/src/ckanext-mappreview/ckanext/mappreview/assets/webassets.yml @@ -0,0 +1,18 @@ +mappreview-js: + filter: rjsmin + output: ckanext-mappreview/%(version)s-mappreview.js + contents: + - js/vendor/mapbox-gl.js + - js/vendor/mapbox-gl-legend.js + - js/mappreview.js + extra: + preload: + - base/main + +mappreview-css: + filter: cssrewrite + output: ckanext-mappreview/%(version)s-mappreview.css + contents: + - css/vendor/mapbox-gl.css + - css/vendor/mapbox-gl-legend.css + - css/mappreview.css diff --git a/src/ckanext-mappreview/ckanext/mappreview/i18n/.gitignore b/src/ckanext-mappreview/ckanext/mappreview/i18n/.gitignore new file mode 100644 index 00000000..e69de29b diff --git a/src/ckanext-mappreview/ckanext/mappreview/plugin.py b/src/ckanext-mappreview/ckanext/mappreview/plugin.py new file mode 100644 index 00000000..6bca385d --- /dev/null +++ b/src/ckanext-mappreview/ckanext/mappreview/plugin.py @@ -0,0 +1,14 @@ +import ckan.plugins as plugins +import ckan.plugins.toolkit as toolkit + + +class MappreviewPlugin(plugins.SingletonPlugin): + plugins.implements(plugins.IConfigurer) + + + # IConfigurer + + def update_config(self, config_): + toolkit.add_template_directory(config_, "templates") + toolkit.add_public_directory(config_, "public") + toolkit.add_resource("assets", "mappreview") diff --git a/src/ckanext-mappreview/ckanext/mappreview/public/.gitignore b/src/ckanext-mappreview/ckanext/mappreview/public/.gitignore new file mode 100644 index 00000000..e69de29b diff --git a/src/ckanext-mappreview/ckanext/mappreview/public/data/recreation/airport.geojson b/src/ckanext-mappreview/ckanext/mappreview/public/data/recreation/airport.geojson new file mode 100644 index 00000000..87dfa14f --- /dev/null +++ b/src/ckanext-mappreview/ckanext/mappreview/public/data/recreation/airport.geojson @@ -0,0 +1,10 @@ +{ +"type": "FeatureCollection", +"name": "airport", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, +"features": [ +{ "type": "Feature", "properties": { "ID": 0, "LAT": 24.15655, "LONG": -77.583891, "DESCRPTN": "Airport - Congo Town Airport, South Andros", "Shape_Leng": 3935.2341902500002, "Shape_Area": 207770.17975099999, "ORIG_FID": 0 }, "geometry": { "type": "Point", "coordinates": [ -77.589265812390096, 24.158600954146134 ] } }, +{ "type": "Feature", "properties": { "ID": 0, "LAT": 25.05354, "LONG": -78.042967, "DESCRPTN": "Airport - San Andros Airport, North Andros", "Shape_Leng": 4250.4613542799998, "Shape_Area": 243040.84105700001, "ORIG_FID": 2 }, "geometry": { "type": "Point", "coordinates": [ -78.050751553805981, 25.054633875025882 ] } }, +{ "type": "Feature", "properties": { "ID": 0, "LAT": 24.699217, "LONG": -77.789732, "DESCRPTN": "Airport - Andros Town, Central Andros", "Shape_Leng": 3705.3513320799998, "Shape_Area": 228149.874824, "ORIG_FID": 3 }, "geometry": { "type": "Point", "coordinates": [ -77.794287228801906, 24.698265476215532 ] } } +] +} diff --git a/src/ckanext-mappreview/ckanext/mappreview/public/data/recreation/airport.qmd b/src/ckanext-mappreview/ckanext/mappreview/public/data/recreation/airport.qmd new file mode 100644 index 00000000..b190199d --- /dev/null +++ b/src/ckanext-mappreview/ckanext/mappreview/public/data/recreation/airport.qmd @@ -0,0 +1,26 @@ + + + + + + dataset + + + + + + + + + + 0 + 0 + + + + + false + + + + diff --git a/src/ckanext-mappreview/ckanext/mappreview/public/data/recreation/andros-aoi.geojson b/src/ckanext-mappreview/ckanext/mappreview/public/data/recreation/andros-aoi.geojson new file mode 100644 index 00000000..2b28c4f9 --- /dev/null +++ b/src/ckanext-mappreview/ckanext/mappreview/public/data/recreation/andros-aoi.geojson @@ -0,0 +1,8 @@ +{ +"type": "FeatureCollection", +"name": "andros-aoi", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, +"features": [ +{ "type": "Feature", "properties": { "ID": 13, "NAME": "Andros", "tcount": 3028629.0, "tsum": 3601353.2387692332, "tmean": 1.189103465221139 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -77.837475806787353, 25.272093065046477 ], [ -77.836220079457135, 25.181188141122334 ], [ -77.723131867486359, 24.92765772643628 ], [ -77.580768025732496, 24.68342517522699 ], [ -77.489072892672894, 24.484195052339047 ], [ -77.447338185676699, 24.293680249862629 ], [ -77.35559342796067, 24.03992745055228 ], [ -77.254565394840185, 23.813478443058429 ], [ -77.046007945726231, 23.678417477847578 ], [ -76.916769701552127, 23.542807233229489 ], [ -76.905495524077281, 23.383571748636985 ], [ -77.048076967306585, 23.373024161715129 ], [ -77.396826475051128, 23.33005658616969 ], [ -77.752770951839821, 23.337508450156303 ], [ -77.960996650573108, 23.435491568972157 ], [ -78.091139050149323, 23.570411039964124 ], [ -78.192758540539828, 23.760061872226551 ], [ -78.314308731908397, 23.940369568568972 ], [ -78.436192731343269, 24.120616529075541 ], [ -78.587149496841022, 24.245923251170435 ], [ -78.70969713970419, 24.426024050674613 ], [ -78.774241851377681, 24.670487497868223 ], [ -78.718763790214823, 24.880275066713775 ], [ -78.653527051606403, 25.108389494086808 ], [ -78.587568920080543, 25.30925578933979 ], [ -78.530745205042308, 25.473643380598912 ], [ -78.462923888966017, 25.592703966819165 ], [ -78.32127793342363, 25.512559185445252 ], [ -78.150399368940498, 25.46900662799408 ], [ -77.919367745826719, 25.407708335495904 ], [ -77.837475806787353, 25.272093065046477 ] ] ] ] } } +] +} diff --git a/src/ckanext-mappreview/ckanext/mappreview/public/data/recreation/andros-aoi.qmd b/src/ckanext-mappreview/ckanext/mappreview/public/data/recreation/andros-aoi.qmd new file mode 100644 index 00000000..b190199d --- /dev/null +++ b/src/ckanext-mappreview/ckanext/mappreview/public/data/recreation/andros-aoi.qmd @@ -0,0 +1,26 @@ + + + + + + dataset + + + + + + + + + + 0 + 0 + + + + + false + + + + diff --git a/src/ckanext-mappreview/ckanext/mappreview/public/data/recreation/beaches.geojson b/src/ckanext-mappreview/ckanext/mappreview/public/data/recreation/beaches.geojson new file mode 100644 index 00000000..1af6c975 --- /dev/null +++ b/src/ckanext-mappreview/ckanext/mappreview/public/data/recreation/beaches.geojson @@ -0,0 +1,295 @@ +{ +"type": "FeatureCollection", +"name": "beaches", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, +"features": [ +{ "type": "Feature", "properties": { "FID_Merge": 0, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 124 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.663126421849697, 23.651612151734305 ], [ -77.663108015428364, 23.651613910322478 ], [ -77.663094112202742, 23.651616675126494 ], [ -77.663086189960239, 23.651619858765233 ], [ -77.663084639468039, 23.651621664939203 ], [ -77.663085171270154, 23.651623313951468 ] ], [ [ -77.663954466047272, 23.65139472448471 ], [ -77.663949087367655, 23.6513969191077 ], [ -77.663926956472295, 23.651412132136972 ], [ -77.663913394606467, 23.651419575724784 ], [ -77.663846956106397, 23.651450955470235 ], [ -77.663814507161675, 23.65147364087807 ], [ -77.663766268529258, 23.651504053751257 ], [ -77.6637558444787, 23.651509443477796 ], [ -77.663740208402842, 23.651514845546942 ], [ -77.663704500370287, 23.65152139468125 ], [ -77.663647105210202, 23.651527536500087 ], [ -77.663610823154158, 23.651533532672602 ], [ -77.663594484595777, 23.651538261642266 ], [ -77.663561157997037, 23.651552457601756 ], [ -77.663545739313491, 23.651557339622471 ], [ -77.66346135067738, 23.651574749665542 ], [ -77.663445949061881, 23.651579648965399 ], [ -77.663412762600331, 23.651593979869173 ], [ -77.663396707011231, 23.651598660288009 ], [ -77.663379206032872, 23.651601954190294 ], [ -77.663321088627256, 23.651606446997157 ], [ -77.663201849849685, 23.651607832690662 ], [ -77.66314959664625, 23.65160993756237 ], [ -77.663127283430526, 23.651612069416995 ] ], [ [ -77.663968486164691, 23.651205600848762 ], [ -77.66396334452952, 23.651208660192594 ], [ -77.663949510474168, 23.651211606034508 ], [ -77.663903905702128, 23.651214283623755 ], [ -77.6638912619145, 23.651217719890646 ], [ -77.663886384960833, 23.651220832773109 ], [ -77.663880619573334, 23.651229740241035 ], [ -77.663876966125088, 23.65124755435231 ], [ -77.663876552900049, 23.651267030639321 ], [ -77.663877912051078, 23.651279478049833 ], [ -77.663881348107054, 23.65129033980719 ], [ -77.663884287394623, 23.65129472729863 ], [ -77.663893860740615, 23.651301340627022 ], [ -77.663915625123323, 23.651312108576565 ], [ -77.6639299227094, 23.651334282189389 ], [ -77.663939234645625, 23.651342932917295 ], [ -77.663953775675125, 23.651348532479759 ], [ -77.663973575441844, 23.651350543553949 ] ], [ [ -77.663993600686183, 23.651169991489517 ], [ -77.663989928373724, 23.651171412566445 ], [ -77.663988878869674, 23.651172881207177 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 2, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 51 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.616916612974194, 23.6778356545755 ], [ -77.616915519726035, 23.677863400722256 ], [ -77.616916736044914, 23.677888805484169 ], [ -77.61692166420255, 23.677913441023247 ], [ -77.616926184525084, 23.677923428513811 ], [ -77.616932226593704, 23.677930980010537 ], [ -77.616952073971575, 23.677946843170592 ], [ -77.616972376795317, 23.677973180849488 ], [ -77.616991590860934, 23.677989266954039 ], [ -77.616997109211738, 23.677995402593471 ], [ -77.61700440892173, 23.678011062540712 ], [ -77.617014140371197, 23.678046632456482 ], [ -77.617017810887404, 23.678054443916725 ], [ -77.617022863012579, 23.678061049310177 ], [ -77.617029627326673, 23.678066097347525 ], [ -77.61703777684292, 23.678069935205084 ], [ -77.617084615900197, 23.678083806611525 ], [ -77.617092542634225, 23.678087838623807 ], [ -77.617117382848448, 23.67811021419157 ], [ -77.617125102071711, 23.678114428840555 ], [ -77.617179854388297, 23.678134555988159 ], [ -77.61718913847676, 23.678140051566807 ], [ -77.617196101318498, 23.678146204475677 ], [ -77.617202328440072, 23.678157844735303 ], [ -77.617202008639893, 23.678164657443816 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 3, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 108 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.617195502146558, 23.678417071218362 ], [ -77.617193290489979, 23.678429757087194 ], [ -77.617188739624766, 23.67844245447754 ], [ -77.617164563265504, 23.678496631860646 ], [ -77.617140417448979, 23.678565615973657 ], [ -77.617131875368969, 23.678585960241538 ], [ -77.617122455634885, 23.678602435402329 ], [ -77.617111616562667, 23.67861544457481 ], [ -77.617075065910399, 23.678651099885617 ], [ -77.617031120326672, 23.678679700637254 ], [ -77.617015131212952, 23.678687953843131 ], [ -77.616997344570308, 23.678694213675563 ], [ -77.616978155657549, 23.678698896415103 ], [ -77.616919801994982, 23.678709166027538 ], [ -77.616902717834904, 23.678712969313313 ], [ -77.61688837712974, 23.678717767228452 ], [ -77.616877992605055, 23.678724099456016 ], [ -77.616872688053292, 23.678732284375901 ], [ -77.616872573068918, 23.678741234394852 ], [ -77.616877263173009, 23.678749868501082 ], [ -77.616895248343326, 23.678767613870644 ], [ -77.616907796011219, 23.678775974842988 ], [ -77.616923493172493, 23.678782468314424 ], [ -77.616941829584064, 23.678787254709377 ], [ -77.616962046169547, 23.678790668039049 ], [ -77.617005785140748, 23.678794240970017 ], [ -77.617050899432613, 23.678794051751954 ], [ -77.617094197330985, 23.678789596900238 ], [ -77.617114092319596, 23.678785205395272 ], [ -77.617152728859978, 23.678772805851104 ], [ -77.617177445106677, 23.678767534069976 ], [ -77.617205689935858, 23.678763604914657 ], [ -77.617236008076688, 23.678760838216622 ], [ -77.617297016260906, 23.67875800323549 ], [ -77.617384366642028, 23.678758513305976 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 4, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 72 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.626800993311264, 23.695519445539826 ], [ -77.626750864751514, 23.695518710406795 ], [ -77.626747551764765, 23.695522078879836 ], [ -77.626747238251383, 23.695534725256667 ] ], [ [ -77.627286946973271, 23.695169164440919 ], [ -77.627265738648219, 23.69516872353142 ], [ -77.627240708889445, 23.69517421428047 ], [ -77.627228669667986, 23.695180168144137 ], [ -77.627218582485682, 23.695188727953767 ], [ -77.627210587479638, 23.695199484884565 ], [ -77.62720458403858, 23.69521165007809 ], [ -77.627200389804528, 23.695224360643468 ], [ -77.627190365504276, 23.695271175524077 ], [ -77.627181157772611, 23.695290053814087 ], [ -77.627175643913404, 23.69529624457644 ], [ -77.627131302172657, 23.695334322776425 ], [ -77.627112291126309, 23.6953423199291 ], [ -77.627070028087132, 23.695354244092464 ], [ -77.627060584996855, 23.695358302716826 ], [ -77.627031298121963, 23.695376382266293 ], [ -77.627020989954076, 23.695380265679766 ], [ -77.626997360668867, 23.695385142773183 ], [ -77.626933547045979, 23.695392781276702 ], [ -77.626922096221108, 23.695395569009548 ], [ -77.62691188956282, 23.695399550309801 ], [ -77.626904526970748, 23.6954040309177 ], [ -77.626891187887097, 23.695415877752691 ], [ -77.626869039025451, 23.695438870579181 ], [ -77.626856317982728, 23.695456755165438 ], [ -77.626848323875009, 23.695479339984008 ], [ -77.626845681929765, 23.695498355615051 ], [ -77.626845929015445, 23.695506806872363 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 6, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 52 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.733909582556507, 23.73579088119973 ], [ -77.733909189094732, 23.735815565834748 ], [ -77.733912595506325, 23.735830611966225 ], [ -77.733916072884767, 23.735837049969973 ], [ -77.733921671185612, 23.735842612194393 ], [ -77.733928630434107, 23.735846366942443 ], [ -77.733936296656751, 23.735848425228482 ], [ -77.733978878597839, 23.735851149599892 ], [ -77.734131611060789, 23.735854687253212 ], [ -77.734166213267244, 23.735854418352137 ], [ -77.734188299246796, 23.735850527920199 ], [ -77.734193824784128, 23.73584747297306 ], [ -77.734197873491098, 23.735843037337762 ], [ -77.734200787625866, 23.735836441447439 ], [ -77.734204627923731, 23.735808015220368 ], [ -77.734204207511468, 23.735767037794911 ] ], [ [ -77.734223021827376, 23.73576551566385 ], [ -77.73429214359534, 23.73576694733714 ], [ -77.734299260048985, 23.735765680951832 ], [ -77.734302344861291, 23.735761936895297 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 7, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 51 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.626887192180988, 23.735767532837052 ], [ -77.626887172417824, 23.73577252354422 ], [ -77.626891625366667, 23.735782102021656 ], [ -77.626919541412448, 23.735810706699567 ], [ -77.626944461576741, 23.735842545585918 ], [ -77.626971931159815, 23.735863296200534 ], [ -77.626989419561752, 23.735882003328214 ], [ -77.626996315928196, 23.735887325431154 ], [ -77.627005427540126, 23.735891655807048 ], [ -77.62701593333739, 23.735894709108479 ], [ -77.627051879423476, 23.735898912845762 ], [ -77.627088038410278, 23.735897870957043 ], [ -77.627107708820063, 23.735893541403662 ], [ -77.627114627644389, 23.735889618902196 ], [ -77.627118522739437, 23.735884694805797 ], [ -77.627120092096263, 23.735879013345723 ], [ -77.627119414766511, 23.735873211003231 ], [ -77.627116389240655, 23.735867921792792 ], [ -77.627110964314639, 23.735863659669292 ], [ -77.627103652926564, 23.735860245365373 ], [ -77.627066217433736, 23.735849594578436 ], [ -77.627048797303729, 23.735842131132777 ], [ -77.627041636832615, 23.73583653190359 ], [ -77.627019415207414, 23.735812746894943 ], [ -77.62699524244141, 23.735791038260231 ], [ -77.626986619513019, 23.735779177000794 ], [ -77.626984962121298, 23.735774692023458 ], [ -77.626985139988591, 23.735769671713182 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 22, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 355 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.508235822990713, 23.835637387150076 ], [ -77.50823713273472, 23.835632639382741 ], [ -77.508236070027763, 23.835623393651751 ], [ -77.508232147084911, 23.83561121199752 ], [ -77.508224613812914, 23.835597879144856 ], [ -77.50821428947539, 23.835586271032646 ], [ -77.508201172275619, 23.835575355610057 ], [ -77.508156685906116, 23.835544822988936 ], [ -77.508101460177386, 23.83549972413012 ], [ -77.508077692551566, 23.835475832451706 ], [ -77.508052563079815, 23.835453231656132 ], [ -77.508016988896259, 23.835409753975732 ], [ -77.50801093425126, 23.83540027650999 ], [ -77.508004950573152, 23.835385852420355 ], [ -77.508001092308973, 23.835369837521238 ], [ -77.507998906707911, 23.835352774954696 ], [ -77.50799854199191, 23.835317324414891 ], [ -77.508003292283135, 23.835282884555021 ], [ -77.508008042574332, 23.835267187640696 ], [ -77.508014942534018, 23.835253275454786 ], [ -77.508029451224161, 23.835236276143718 ], [ -77.508054196216989, 23.835213198720862 ], [ -77.508063420118347, 23.835206399980589 ], [ -77.508075898615985, 23.835199711347741 ], [ -77.508131415398807, 23.835178523005506 ], [ -77.508196201897107, 23.835142176765352 ], [ -77.508211942177539, 23.835132734613172 ], [ -77.508225917268419, 23.83512237462147 ], [ -77.508237077039155, 23.835110943953961 ], [ -77.508244438732945, 23.83509952561089 ], [ -77.5082515596782, 23.835078761249648 ], [ -77.508251088062664, 23.835067927954302 ], [ -77.508255605690238, 23.834924657045644 ], [ -77.50825466245918, 23.834898682248575 ], [ -77.508252110345481, 23.834890186678553 ], [ -77.508246820166761, 23.834884568706286 ], [ -77.508239158435686, 23.83488151115537 ], [ -77.508221599965168, 23.834877341020704 ], [ -77.508214192457316, 23.834873082963821 ], [ -77.508211491223278, 23.834869225075376 ], [ -77.508208161168497, 23.834859161696961 ], [ -77.508205388069243, 23.83483510802532 ], [ -77.508115464014338, 23.834809259752337 ], [ -77.507991388707282, 23.834780526478362 ], [ -77.507935481157276, 23.834763768685793 ], [ -77.507881558884037, 23.834741811980706 ], [ -77.507844549192626, 23.834721452661462 ], [ -77.507810775232912, 23.834699131113272 ], [ -77.507780241496377, 23.834676388027816 ], [ -77.507753651363956, 23.834653331047793 ], [ -77.507730392184655, 23.834630790093204 ], [ -77.507686659501687, 23.834583529015202 ], [ -77.507647101289848, 23.834533846359417 ], [ -77.50761296530905, 23.834481761843993 ], [ -77.507583038833644, 23.834430503120466 ], [ -77.50757049026744, 23.834405165867047 ], [ -77.507560442610966, 23.834379458841617 ], [ -77.507553223749383, 23.83435391450859 ], [ -77.507549876626598, 23.834327779364713 ], [ -77.50755046771809, 23.834301785548856 ], [ -77.50756520817356, 23.834211047912056 ], [ -77.507568036070097, 23.834170543568927 ], [ -77.50756761565853, 23.834144656543316 ], [ -77.507563488798112, 23.834118910024337 ], [ -77.507555403960552, 23.834093793749044 ], [ -77.507520875415977, 23.834014158870893 ], [ -77.507485538387641, 23.833944470711518 ], [ -77.507461727642735, 23.833902824933329 ], [ -77.507424902105953, 23.833851215933414 ], [ -77.507385466064989, 23.833802784458776 ], [ -77.50736710000902, 23.833777962293908 ], [ -77.507350222461454, 23.83375294537927 ], [ -77.50733554039644, 23.833726973634374 ], [ -77.507323379902431, 23.833700550766011 ], [ -77.507311675752604, 23.833658738924203 ], [ -77.507307477026984, 23.833616604958831 ], [ -77.507309928529367, 23.833536693693191 ], [ -77.507306589491478, 23.833497447999417 ], [ -77.507295471043207, 23.833460856418441 ], [ -77.507281298322965, 23.833438138588861 ], [ -77.507261508437253, 23.833415925285632 ], [ -77.507236767936007, 23.833395475370054 ], [ -77.507147874248759, 23.833338671310329 ], [ -77.50711751209046, 23.833317471981797 ], [ -77.507088885477316, 23.833294662917105 ], [ -77.507037774032554, 23.833250351297394 ], [ -77.506998859912798, 23.833213542714773 ], [ -77.506978636140786, 23.833189908632811 ], [ -77.506977652486299, 23.833184615167411 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 26, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 135 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.511768175656002, 23.852777722293769 ], [ -77.511771389828439, 23.852776420072402 ], [ -77.511777250437362, 23.852767655371427 ], [ -77.511814838643801, 23.852697651943231 ], [ -77.511862203215443, 23.852598284885463 ], [ -77.511874833528339, 23.852577263704582 ], [ -77.511885861246796, 23.852563038707494 ], [ -77.51191999992254, 23.852526537952695 ], [ -77.511970591242687, 23.852482819520983 ], [ -77.512005775557441, 23.85245520670475 ], [ -77.512021313716886, 23.85243941163559 ], [ -77.512033794909485, 23.852420492056766 ], [ -77.512043805734976, 23.852399184112048 ], [ -77.5120686854751, 23.85233019514946 ], [ -77.512078095327695, 23.852308225809139 ], [ -77.512094348546128, 23.852277538561655 ], [ -77.512124798739322, 23.852213515233746 ], [ -77.512141257671971, 23.852182922446904 ], [ -77.512149914736341, 23.852163266684421 ], [ -77.512171696187025, 23.852100773926448 ], [ -77.512192074469255, 23.852048290601477 ], [ -77.512198360879594, 23.852025352555501 ], [ -77.512202228126924, 23.852001265918616 ], [ -77.512203808263536, 23.851976681391875 ], [ -77.512203033915739, 23.851952262000655 ], [ -77.512199617622713, 23.851928728282473 ], [ -77.512193022191866, 23.851906908404121 ], [ -77.512185255357963, 23.851891304699453 ], [ -77.512163797300772, 23.85185730057902 ], [ -77.51211045713579, 23.851786714148719 ], [ -77.512077164673073, 23.851739650756016 ], [ -77.512068062942632, 23.851722409592963 ], [ -77.512063030580379, 23.851709387316731 ], [ -77.512062295759677, 23.851701854939478 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 30, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 78 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.511997594600018, 23.85446197985161 ], [ -77.511999028311337, 23.854417903861741 ], [ -77.511998040164514, 23.854409247720078 ], [ -77.511992227166331, 23.854406411634056 ], [ -77.511969055123359, 23.854406079716608 ] ], [ [ -77.511950998986237, 23.854370713259858 ], [ -77.511951705960485, 23.854360557733923 ], [ -77.51195010336599, 23.854337219167146 ], [ -77.51194435414817, 23.854308279897221 ], [ -77.511939216683075, 23.854294191472139 ], [ -77.511917658014582, 23.854257893313278 ], [ -77.511913120624058, 23.854246787213377 ], [ -77.511910187624693, 23.854234575267512 ], [ -77.511907263608421, 23.854207559290884 ], [ -77.511906518006739, 23.854178606846698 ], [ -77.511909301885822, 23.854073233533438 ], [ -77.511912329208329, 23.854029058825098 ], [ -77.511915995232968, 23.854001420047815 ], [ -77.511922371474881, 23.85397696488867 ], [ -77.511927203512784, 23.853966746893096 ], [ -77.511944892239043, 23.853943202038632 ], [ -77.511947959985719, 23.853934869568025 ], [ -77.511948593298001, 23.853926187103518 ], [ -77.511946696954439, 23.853917833270689 ], [ -77.511930632382217, 23.85389496456845 ], [ -77.511914065651752, 23.853861683965224 ], [ -77.5119061919183, 23.853849126097415 ], [ -77.511896552096971, 23.853837721728407 ], [ -77.511884979101154, 23.853828546308591 ], [ -77.511871821477214, 23.853822227526521 ], [ -77.511846849210613, 23.853816497817991 ], [ -77.511834660868416, 23.853816659673843 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 32, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 360 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.513869197664533, 23.857824749875387 ], [ -77.513862810642053, 23.857794269319118 ], [ -77.51385882481712, 23.857756887686392 ], [ -77.513855553152837, 23.857707475988342 ], [ -77.513848834652848, 23.857540789416369 ], [ -77.513843321691922, 23.857472407858179 ], [ -77.513833093474119, 23.857404354065796 ], [ -77.51382352102641, 23.857360827881546 ], [ -77.513800635546261, 23.857278342518232 ], [ -77.513720606434234, 23.857036091523536 ], [ -77.513676701274719, 23.856913278779281 ], [ -77.51365928563628, 23.856869615229183 ], [ -77.513630907856466, 23.856806522535756 ], [ -77.513604778559809, 23.856741004558188 ], [ -77.513592672863055, 23.856707700860632 ], [ -77.513575070375026, 23.856649660703606 ], [ -77.513536454495949, 23.85649409346706 ], [ -77.513524584157764, 23.856439622091685 ], [ -77.513507253859302, 23.856348435765181 ], [ -77.513499043257596, 23.856288803252834 ], [ -77.513493531195039, 23.856228336001923 ], [ -77.513481973470576, 23.856023095482268 ], [ -77.513474881271407, 23.855976931601724 ], [ -77.513462032667917, 23.855934440113501 ], [ -77.513450003327932, 23.855908990400195 ], [ -77.513435722809845, 23.855885302945818 ], [ -77.513419395031264, 23.855863842759067 ], [ -77.513401382013186, 23.855844134152925 ], [ -77.513381837367547, 23.85582668814391 ], [ -77.51331619028322, 23.855777822874572 ], [ -77.513216806968359, 23.855707416860536 ], [ -77.513165768287209, 23.855668941116434 ], [ -77.513065311485619, 23.855585923941607 ], [ -77.512992260486683, 23.855519881184762 ], [ -77.512903636294055, 23.855424204324372 ], [ -77.512847458351089, 23.855367287502283 ], [ -77.512815652600196, 23.855333116693444 ], [ -77.512756887509198, 23.855254912895443 ], [ -77.512701249453769, 23.855173753852991 ], [ -77.512670822616784, 23.855137622719909 ], [ -77.512635938339372, 23.855108053482059 ], [ -77.512610491762317, 23.855093450017502 ], [ -77.512584394805003, 23.855082776136811 ], [ -77.512558577223714, 23.855075828912224 ], [ -77.512533818756168, 23.855072909040295 ], [ -77.512511019514278, 23.855073526863489 ], [ -77.512491019422782, 23.855076855878995 ], [ -77.512474490421553, 23.855081589784902 ], [ -77.512461977787964, 23.85508687907414 ], [ -77.512452369407242, 23.855093620909127 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 34, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 88 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.514069508496888, 23.863161746073349 ], [ -77.514067304929924, 23.863253439407483 ], [ -77.514070294523236, 23.863322629576839 ], [ -77.514076826173607, 23.863356924792516 ], [ -77.514082122640531, 23.86337081999611 ], [ -77.514098498928163, 23.863401430679165 ], [ -77.514103586985954, 23.863416406999036 ], [ -77.514107034720027, 23.863432840694351 ], [ -77.514110635167683, 23.863468549717108 ], [ -77.514111166071984, 23.863525313463271 ], [ -77.514109067607464, 23.863562856092248 ], [ -77.514104192450404, 23.863597777242063 ], [ -77.514100092539508, 23.863613238235629 ], [ -77.514094333440212, 23.863626539453325 ], [ -77.514086319569543, 23.863636796119916 ], [ -77.514076485712152, 23.863642861395373 ], [ -77.514065084294558, 23.863645843509644 ], [ -77.51405306663267, 23.863646052175437 ], [ -77.514041349906435, 23.86364356543729 ], [ -77.514030871956962, 23.863638232135319 ], [ -77.514022286757779, 23.863629897002188 ], [ -77.514015150541169, 23.863619402916012 ], [ -77.513994643799862, 23.863584203276897 ], [ -77.513954260934582, 23.863541945131043 ], [ -77.513943344607242, 23.863532983993608 ], [ -77.513927745362366, 23.863523135614201 ], [ -77.513876905208818, 23.863497031818749 ], [ -77.513863152900143, 23.863488610416908 ], [ -77.513837571575394, 23.863469566763445 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 35, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 1291 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.513609979804869, 23.874064230610674 ], [ -77.513619669033957, 23.874064095888148 ], [ -77.513635494654338, 23.874061521454536 ], [ -77.513675639466086, 23.874052938092085 ], [ -77.513728391234494, 23.874037763389239 ], [ -77.513787203037808, 23.874013558449054 ], [ -77.513822880527641, 23.873993566738946 ], [ -77.5138574962088, 23.8739697183013 ], [ -77.513890387124619, 23.873941572834866 ], [ -77.513920604654132, 23.873909718497806 ], [ -77.513966238172287, 23.873842296004991 ], [ -77.513999698619998, 23.873766005872181 ], [ -77.514021550139233, 23.873686318155087 ], [ -77.514032691045415, 23.873608725101413 ], [ -77.51406222136373, 23.873225706778722 ], [ -77.514079342354748, 23.873054141816773 ], [ -77.514082472983503, 23.872994199912558 ], [ -77.514083662352959, 23.872934441987585 ], [ -77.514080937762714, 23.872767756119224 ], [ -77.51408239752503, 23.872697657531123 ], [ -77.514086046481694, 23.872627436507244 ], [ -77.514101744541293, 23.872452368854919 ], [ -77.514105442905333, 23.872384373864453 ], [ -77.514107163179091, 23.872315720024044 ], [ -77.514106780496775, 23.87224709818436 ], [ -77.514104023567171, 23.872179197554491 ], [ -77.514098461198941, 23.872112746775439 ], [ -77.514072357055056, 23.871896345514298 ], [ -77.514023641417239, 23.871597664799843 ], [ -77.514009813650077, 23.871532472212809 ], [ -77.513982102420201, 23.871424688038381 ], [ -77.513968024023058, 23.871359716339775 ], [ -77.513944462111454, 23.871225805961313 ], [ -77.513900555155317, 23.870995941749644 ], [ -77.513853523858629, 23.870772431230325 ], [ -77.513839333172058, 23.870711223199319 ], [ -77.51377861873695, 23.870477414990695 ], [ -77.513757030424046, 23.870385862310684 ], [ -77.513744260872301, 23.87031950672397 ], [ -77.513733740702023, 23.870251149163391 ], [ -77.513708666027455, 23.870073783087534 ], [ -77.513700614427592, 23.870006953347616 ], [ -77.513694461866194, 23.869938557833937 ], [ -77.513671741676021, 23.869623718998991 ], [ -77.513668010074369, 23.869556475000085 ], [ -77.513666965333698, 23.869488558172474 ], [ -77.513668399943157, 23.869420780961278 ], [ -77.513672277970286, 23.8693539985303 ], [ -77.513678738653795, 23.869289152300937 ], [ -77.513688092810852, 23.869227318419711 ], [ -77.513708595060564, 23.869123128784725 ], [ -77.513715521071418, 23.869076909604548 ], [ -77.513720080021471, 23.869030634546881 ], [ -77.513725000094325, 23.868907859462933 ], [ -77.513727992382499, 23.86886450965639 ], [ -77.513732559417406, 23.868823000785991 ], [ -77.513737467812106, 23.868793661402407 ], [ -77.513745032525122, 23.868765122961555 ], [ -77.513755421541376, 23.868737741989325 ], [ -77.513768015023359, 23.868710763539898 ], [ -77.513798417605813, 23.868658420846653 ], [ -77.513852097333952, 23.868581248667297 ], [ -77.513892545776258, 23.86853187149368 ], [ -77.513978832552553, 23.868436822825252 ], [ -77.514039351154935, 23.86836293236302 ], [ -77.51407932798169, 23.868316427854666 ], [ -77.514099425989556, 23.868294512157771 ], [ -77.514159673300725, 23.868237122062162 ], [ -77.514212345119091, 23.868189897061718 ], [ -77.514230072472884, 23.868177104815178 ], [ -77.51424963957642, 23.868166697353935 ], [ -77.51427127999159, 23.868159525742726 ], [ -77.514294869750998, 23.868155149663124 ], [ -77.514392433079024, 23.868146344106684 ], [ -77.514439787769234, 23.868139897870464 ], [ -77.514487429920322, 23.868129930725264 ], [ -77.514532908928189, 23.868115214541508 ], [ -77.514561176215267, 23.86810222512981 ], [ -77.514587657651532, 23.86808729206939 ], [ -77.51461192024901, 23.868070052260517 ], [ -77.514643176231075, 23.868039200341059 ], [ -77.514669198628198, 23.868004543266068 ], [ -77.514684095390521, 23.867980499853289 ], [ -77.514696564006698, 23.867955273487905 ], [ -77.514706583815368, 23.867929449893058 ], [ -77.514714123375526, 23.867903610684685 ], [ -77.514718425407438, 23.867877135636203 ], [ -77.514719295874954, 23.867850575968557 ], [ -77.514717062663181, 23.867824485367699 ], [ -77.514709890513913, 23.867785271414839 ], [ -77.514698271704034, 23.867747720151968 ], [ -77.514688076723886, 23.867724576226532 ], [ -77.514646034670278, 23.867639637910703 ], [ -77.514529736976939, 23.867387405410316 ], [ -77.514512159641797, 23.867344086311586 ], [ -77.514455211842659, 23.867187238061742 ], [ -77.514439118524365, 23.867123377365232 ], [ -77.514427766514103, 23.867055377933209 ], [ -77.514419772406384, 23.866984491721936 ], [ -77.514413987255992, 23.866911743135198 ], [ -77.514400647273987, 23.866690455937622 ], [ -77.514385464847379, 23.866504799326421 ], [ -77.51438174312716, 23.86643070402938 ], [ -77.51437160743582, 23.866130552538685 ], [ -77.514367299115676, 23.866057119159596 ], [ -77.514331712355713, 23.865684872267089 ], [ -77.514310123144526, 23.8655120346566 ], [ -77.514275818280439, 23.865194492151915 ], [ -77.514267268115546, 23.865058381144095 ], [ -77.514254351240069, 23.8647830123091 ], [ -77.514240503709971, 23.864609573790521 ], [ -77.514237395539112, 23.86454214070428 ], [ -77.514235686045083, 23.864474314077846 ], [ -77.514235396787583, 23.864339846985569 ], [ -77.514240668999975, 23.864152110212459 ], [ -77.514242804295435, 23.864117651725675 ], [ -77.514246707475323, 23.864083836476944 ], [ -77.514267921190779, 23.863958749883047 ], [ -77.514274691793048, 23.863895746080249 ], [ -77.514279045028914, 23.863821623001922 ], [ -77.514280803930276, 23.863737977660861 ], [ -77.514279883157101, 23.863649063864315 ], [ -77.514266547666679, 23.863340612672626 ], [ -77.514264492321345, 23.86321608481731 ], [ -77.514265572994915, 23.863166140393034 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 36, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 901 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.513663964062857, 23.881947122243396 ], [ -77.513661318523774, 23.881938533649897 ], [ -77.51365495575665, 23.881893849319649 ], [ -77.513652123368558, 23.881848803556402 ], [ -77.513652423405873, 23.881793202737654 ], [ -77.51365676945521, 23.881729980084643 ], [ -77.513665876575558, 23.88166232592226 ], [ -77.513684762756114, 23.881569664041596 ], [ -77.513731538032914, 23.881368443400241 ], [ -77.513774801795336, 23.881201465293355 ], [ -77.513813962053504, 23.881040463540739 ], [ -77.513850663622776, 23.880872528068277 ], [ -77.513882266354472, 23.880735944803714 ], [ -77.513908453143273, 23.880611113328577 ], [ -77.513924689293759, 23.880512272034043 ], [ -77.51397468952247, 23.880252804959895 ], [ -77.513989454232458, 23.880188392146724 ], [ -77.514026678621235, 23.880042317531252 ], [ -77.514039420325219, 23.879979877653156 ], [ -77.514049721306534, 23.879914952962089 ], [ -77.51405828584447, 23.87984833940661 ], [ -77.514085977311424, 23.879577965035434 ], [ -77.514098263569579, 23.879472930276879 ], [ -77.514104583217602, 23.879402710464177 ], [ -77.514107868356604, 23.879331583766188 ], [ -77.514108240259105, 23.87926033217332 ], [ -77.51409641393839, 23.879012276242271 ], [ -77.514087910485927, 23.878656398147232 ], [ -77.514076163216941, 23.878408764914251 ], [ -77.514076349168235, 23.878337675455622 ], [ -77.514079212997345, 23.878266708350523 ], [ -77.514095038617725, 23.878088022544194 ], [ -77.51409962361889, 23.878017163730643 ], [ -77.514104378401726, 23.87787301373654 ], [ -77.514102981521447, 23.877729346582552 ], [ -77.514093413565362, 23.877548633564508 ], [ -77.51409202836318, 23.877477035167445 ], [ -77.514094448424572, 23.87733213296131 ], [ -77.514103496256126, 23.877188412635284 ], [ -77.514123011257354, 23.87700823690145 ], [ -77.514128367013072, 23.876936752384925 ], [ -77.514133923093084, 23.876791739501527 ], [ -77.514134153960114, 23.876719195212864 ], [ -77.514132520822926, 23.876647266960937 ], [ -77.514121466155046, 23.876463126215356 ], [ -77.514117568365009, 23.876312754556857 ], [ -77.514117558483562, 23.876158330561918 ], [ -77.514123721824731, 23.875688652683291 ], [ -77.514122903459494, 23.875535073209189 ], [ -77.514120786130363, 23.875460127956639 ], [ -77.514116954815691, 23.875387083483375 ], [ -77.514084294766874, 23.875050208627737 ], [ -77.514081363564159, 23.874989634312001 ], [ -77.514082037300582, 23.874929948774131 ], [ -77.514086138109874, 23.874872611728129 ], [ -77.514096673551521, 23.874775856637534 ], [ -77.514097931192936, 23.874743689533815 ], [ -77.514097321236832, 23.874711347453477 ], [ -77.51409176515682, 23.874620269279561 ], [ -77.514086565707927, 23.874573564120698 ], [ -77.514072311241009, 23.874473803941182 ], [ -77.514059123074347, 23.874406098341602 ], [ -77.514035114700036, 23.874336919023136 ], [ -77.513998938645273, 23.874272426049423 ], [ -77.513949535796186, 23.874218658742524 ], [ -77.513916658355086, 23.874195325396858 ], [ -77.513880675438074, 23.874176547821268 ], [ -77.513829614299013, 23.874159260357459 ], [ -77.5137777204217, 23.874149632114023 ], [ -77.513728429862056, 23.87414616229896 ], [ -77.513694750225454, 23.874146484308309 ], [ -77.513653568757832, 23.874148847626955 ], [ -77.513624489393777, 23.874151928894996 ], [ -77.513611732418113, 23.874154481973846 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 47, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 7759 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.521552712428687, 23.943349345080172 ], [ -77.521533826687161, 23.943101118067574 ], [ -77.521527584294205, 23.943035452506969 ], [ -77.521519551558981, 23.94297216621483 ], [ -77.52149872771237, 23.942827724124662 ], [ -77.521494481376024, 23.942773394198518 ], [ -77.521493574077581, 23.942718580670633 ], [ -77.521495563845917, 23.942559626809029 ], [ -77.521491132456632, 23.942433355040642 ], [ -77.521485708428941, 23.942370917386739 ], [ -77.521466895011955, 23.942207250442266 ], [ -77.521449552137085, 23.942082726282322 ], [ -77.521437495847636, 23.942023010964867 ], [ -77.521428495626807, 23.94198712248344 ], [ -77.521360000883064, 23.941738492340214 ], [ -77.521347957170022, 23.941690087280524 ], [ -77.521317847438326, 23.941554610981132 ], [ -77.521306488241564, 23.941493874885836 ], [ -77.521278286531555, 23.941306947172865 ], [ -77.521267455544177, 23.941246128037371 ], [ -77.521229899677081, 23.941061566987127 ], [ -77.521218887229978, 23.940999599939357 ], [ -77.521195708000732, 23.940838628334816 ], [ -77.521189549151103, 23.940776983844415 ], [ -77.52118617058737, 23.940715194002312 ], [ -77.521182286272079, 23.94056566146039 ], [ -77.521176882007339, 23.940512463604335 ], [ -77.521162557471797, 23.940424560737178 ], [ -77.521152212472998, 23.940371371033233 ], [ -77.521118538226261, 23.940216347026706 ], [ -77.521103695362811, 23.940157033972838 ], [ -77.521065675965048, 23.940030165424989 ], [ -77.521049827886799, 23.939985426462922 ], [ -77.520982418307852, 23.939824725355976 ], [ -77.520966497466105, 23.939779806515961 ], [ -77.520927901349879, 23.939651967953456 ], [ -77.52091538152979, 23.939604071153767 ], [ -77.520884330363685, 23.939469683823141 ], [ -77.520872323481598, 23.939409606860984 ], [ -77.520850743253504, 23.939287362488599 ], [ -77.520838582759524, 23.939227444723102 ], [ -77.520823685997172, 23.939169913691043 ], [ -77.520800854415896, 23.939101920945511 ], [ -77.520755199338225, 23.938980384018635 ], [ -77.520736685958553, 23.938937767083051 ], [ -77.520721399327314, 23.938907271982885 ], [ -77.520688164356784, 23.938848105293776 ], [ -77.520650526742997, 23.938793017512754 ], [ -77.520609735144248, 23.938740675272772 ], [ -77.520588167492605, 23.938715399491404 ], [ -77.520472236311917, 23.93859703963675 ], [ -77.520429498064004, 23.93854637799291 ], [ -77.520410021690267, 23.938519274530744 ], [ -77.520392000587378, 23.938491150505683 ], [ -77.520365746424886, 23.938440570924651 ], [ -77.520239755909643, 23.938139610348902 ], [ -77.520221372785699, 23.938089470710811 ], [ -77.52017117313099, 23.937934715729867 ], [ -77.520132578811427, 23.937836268853822 ], [ -77.520091709059258, 23.937740153680075 ], [ -77.520072881269215, 23.937690537715962 ], [ -77.520043345560993, 23.937606720109901 ], [ -77.520028866515219, 23.937560961385252 ], [ -77.519977392151162, 23.937382201535318 ], [ -77.51995507710113, 23.937295972301598 ], [ -77.519943575970601, 23.937243717307059 ], [ -77.519928243525314, 23.937156551981403 ], [ -77.519922737750946, 23.937103346972766 ], [ -77.519920735406174, 23.937049508910423 ], [ -77.519919544240125, 23.936901238186127 ], [ -77.519916840311112, 23.936843647822339 ], [ -77.519912191529514, 23.936786234780605 ], [ -77.519890479249085, 23.936572098672194 ], [ -77.519871665832113, 23.936408660837927 ], [ -77.519850554524623, 23.936143592209071 ], [ -77.519843343747795, 23.936081799327585 ], [ -77.519820122297716, 23.935912297344366 ], [ -77.519814038008278, 23.935880640550167 ], [ -77.519805927119634, 23.935849593796132 ], [ -77.519729484980502, 23.935629980472697 ], [ -77.519714727457014, 23.935567052637339 ], [ -77.519705128958208, 23.935499474272579 ], [ -77.519699628573733, 23.935428649388989 ], [ -77.519697484295122, 23.935355752923147 ], [ -77.51969824067659, 23.935281804633085 ], [ -77.519701707275289, 23.935207732319942 ], [ -77.51970794517662, 23.935134441618171 ], [ -77.519717267892645, 23.935062875933298 ], [ -77.519730242260295, 23.934994081305994 ], [ -77.519764394410743, 23.934858868108552 ], [ -77.519800103341595, 23.934741898068896 ], [ -77.51981551214368, 23.934676031198677 ], [ -77.519826201197247, 23.934607091036167 ], [ -77.519832976291113, 23.934536400318166 ], [ -77.519836391685857, 23.934465175866546 ], [ -77.519836066495699, 23.934285217071722 ], [ -77.51983868508475, 23.934213409521163 ], [ -77.519844133366959, 23.934141758755285 ], [ -77.51985285421172, 23.934071412632651 ], [ -77.519865501592591, 23.934003607689942 ], [ -77.519914351079478, 23.933811861743834 ], [ -77.519935277334014, 23.933714076793159 ], [ -77.51994230934605, 23.933677698283166 ], [ -77.519950293572293, 23.933621558141006 ], [ -77.519954928879116, 23.933564170761588 ], [ -77.519956366183607, 23.933506301385421 ], [ -77.519954596502487, 23.9334486898011 ], [ -77.519940955584914, 23.933273426148769 ], [ -77.519934255949522, 23.933203917051664 ], [ -77.519893269416357, 23.932888553210436 ], [ -77.519850199690069, 23.932605195984685 ], [ -77.519823657168374, 23.932443958554252 ], [ -77.519799249043785, 23.932273592941169 ], [ -77.519791478616582, 23.932205159746356 ], [ -77.519786018656276, 23.93213478957804 ], [ -77.519773376665242, 23.931847184862775 ], [ -77.5197641087465, 23.931708733287415 ], [ -77.519756508999194, 23.931643555403909 ], [ -77.519745883726017, 23.931582493599453 ], [ -77.519730507263318, 23.931516227710674 ], [ -77.519721280667014, 23.93146668735757 ], [ -77.519712098088178, 23.931385564629092 ], [ -77.519711637252414, 23.931353252316878 ], [ -77.519713670139936, 23.931320918648247 ], [ -77.519731143270519, 23.931194695824022 ], [ -77.519737774633953, 23.931128892010062 ], [ -77.519747411760292, 23.930988083132299 ], [ -77.51975293819595, 23.930840429475808 ], [ -77.519754362025665, 23.930690639987027 ], [ -77.519753237334953, 23.930616124112134 ], [ -77.519750572931798, 23.930542467058835 ], [ -77.519738084552728, 23.930356683693194 ], [ -77.519734235271741, 23.930207791922523 ], [ -77.519735846849343, 23.930056398096738 ], [ -77.519742489890845, 23.929905738976437 ], [ -77.519748050462454, 23.929831831082694 ], [ -77.519755540615321, 23.92975965156047 ], [ -77.519765475982368, 23.929689960750782 ], [ -77.51977854287648, 23.92962371606027 ], [ -77.519803182766395, 23.929527690019288 ], [ -77.519819735123846, 23.929470344338426 ], [ -77.519838261978265, 23.929416898042454 ], [ -77.519872954016236, 23.929330210239804 ], [ -77.519883880225024, 23.929285584165608 ], [ -77.519888873061362, 23.929240102487253 ], [ -77.519888002593817, 23.929163889376547 ], [ -77.519877905530038, 23.929042980269088 ], [ -77.519874647340501, 23.928971453083637 ], [ -77.519875721725612, 23.928944174358087 ], [ -77.519878906253282, 23.928917832506986 ], [ -77.519894421056563, 23.928843725340386 ], [ -77.519897168104691, 23.928817817012323 ], [ -77.519897535515639, 23.928762867002067 ], [ -77.519893590114918, 23.928661178794172 ], [ -77.519896285959078, 23.92849158495692 ], [ -77.519894783077604, 23.928443719323717 ], [ -77.519891154782172, 23.928395410274565 ], [ -77.519873228900693, 23.928233304601317 ], [ -77.519852246950563, 23.928064933655882 ], [ -77.519830517602202, 23.927790311504328 ], [ -77.51981320527004, 23.927618107848016 ], [ -77.519792597019105, 23.927288662202393 ], [ -77.51977687290838, 23.927119712780751 ], [ -77.519772441519038, 23.927054246011028 ], [ -77.519757331855985, 23.926790283928231 ], [ -77.519741482879411, 23.926615498981917 ], [ -77.51972498801419, 23.92632784420076 ], [ -77.519719405882995, 23.926257210533702 ], [ -77.519711772898049, 23.926188366052536 ], [ -77.519683146284891, 23.925971349108785 ], [ -77.519657932371501, 23.925810082044755 ], [ -77.519634099168684, 23.925640280823878 ], [ -77.519626696152415, 23.925575177883985 ], [ -77.519617464166245, 23.92544012479534 ], [ -77.519604634427338, 23.925165117700413 ], [ -77.519590398825073, 23.924990639299143 ], [ -77.519572951745602, 23.924648109608235 ], [ -77.519567031847885, 23.92458171863316 ], [ -77.519558679312354, 23.924517443682262 ], [ -77.519529317877343, 23.92435245671005 ], [ -77.519515365244317, 23.924291220661818 ], [ -77.519490840338747, 23.924202740987216 ], [ -77.519474914107064, 23.92415055870093 ], [ -77.519428258306149, 23.924015294732872 ], [ -77.519365476847568, 23.923850528826105 ], [ -77.519348840946847, 23.923789529848513 ], [ -77.519336493603248, 23.923724798772053 ], [ -77.519326931935396, 23.923657643663965 ], [ -77.51930192463449, 23.923452976508219 ], [ -77.519290617540022, 23.923387338724869 ], [ -77.519257087023703, 23.923240643680746 ], [ -77.51922185509828, 23.923110099501987 ], [ -77.519196532488735, 23.923029635006174 ], [ -77.519160598080731, 23.92292879462963 ], [ -77.519120052620394, 23.922832446648904 ], [ -77.51903292502098, 23.922614841874314 ], [ -77.519014320911452, 23.922572282764467 ], [ -77.518962204251906, 23.922463885028606 ], [ -77.518883347441317, 23.922290286531851 ], [ -77.518837579175937, 23.922198327106809 ], [ -77.518748282145111, 23.922012135942765 ], [ -77.518693143552952, 23.921884664905043 ], [ -77.518600184989054, 23.921662746671636 ], [ -77.51857527829948, 23.921600209466067 ], [ -77.518561151393286, 23.921557167184982 ], [ -77.518537976655608, 23.921469904226736 ], [ -77.518523823698303, 23.921405757469355 ], [ -77.51850892603764, 23.921309725317482 ], [ -77.518482419448588, 23.921162586954061 ], [ -77.518469953527358, 23.921104414762016 ], [ -77.518437054526714, 23.920977467546546 ], [ -77.518423221369673, 23.920931934493904 ], [ -77.518399856189134, 23.920865573633563 ], [ -77.518349339429108, 23.920734851326728 ], [ -77.518330215195022, 23.920678212863198 ], [ -77.518294105615567, 23.920562829592271 ], [ -77.518247112048087, 23.920427625096089 ], [ -77.518209675656934, 23.920328418437073 ], [ -77.518194587553424, 23.920282763624087 ], [ -77.518156569952282, 23.920154466434791 ], [ -77.518119587210364, 23.920010626180929 ], [ -77.518107071881815, 23.919951023827881 ], [ -77.518074217796936, 23.919768167450719 ], [ -77.518060649642862, 23.919709501932886 ], [ -77.518050796022536, 23.919674278138775 ], [ -77.518035212947268, 23.91962177294786 ], [ -77.518018119804083, 23.919570581597942 ], [ -77.517946197089145, 23.919384076245631 ], [ -77.51790169993987, 23.919276457584001 ], [ -77.517885317364005, 23.919231973382075 ], [ -77.51784541240248, 23.919105378249345 ], [ -77.517803420654516, 23.918943540933391 ], [ -77.517788331652682, 23.918890512361259 ], [ -77.517754661897513, 23.918787921305874 ], [ -77.51770423407072, 23.91861115800647 ], [ -77.517667702283092, 23.918466192672177 ], [ -77.517655922674791, 23.918409995004062 ], [ -77.517618453944252, 23.918198968584026 ], [ -77.517584971038644, 23.917995742972028 ], [ -77.517571557394859, 23.917930469480464 ], [ -77.5175343321078, 23.917789798129082 ], [ -77.517492467022294, 23.917660793894786 ], [ -77.517449479042682, 23.917549650949134 ], [ -77.517423345254443, 23.91749546805104 ], [ -77.517408675765878, 23.917470999433725 ], [ -77.517399038639454, 23.917459538261816 ], [ -77.517377376664726, 23.917440790781331 ], [ -77.51736830907025, 23.917429755797897 ], [ -77.51736223376399, 23.917417310030402 ], [ -77.517355190073857, 23.917385295595366 ], [ -77.517352597535933, 23.917343523914706 ], [ -77.517353760854235, 23.917295760903009 ], [ -77.51736518922128, 23.917186879991792 ], [ -77.517369599051008, 23.917127350242126 ], [ -77.51736928194569, 23.917097030650059 ], [ -77.517360916833766, 23.917018531598629 ], [ -77.517352275040722, 23.916969534232539 ], [ -77.517319872808443, 23.916835819704325 ], [ -77.517280143018368, 23.916699189019791 ], [ -77.517197057837748, 23.91643444453668 ], [ -77.517181602323262, 23.916388841724462 ], [ -77.517149955574098, 23.916305880746364 ], [ -77.517129435358086, 23.916257302735474 ], [ -77.517099154946507, 23.916195360735966 ], [ -77.517019433956634, 23.916044124575592 ], [ -77.51695274482654, 23.915925770216589 ], [ -77.516813305633178, 23.915695051744041 ], [ -77.516768250630136, 23.915624339997688 ], [ -77.516739474896639, 23.915583294500149 ], [ -77.516718686084317, 23.915557576491523 ], [ -77.51656677468155, 23.915382448689783 ], [ -77.516525425229034, 23.915330604455658 ], [ -77.516505686547291, 23.915303746583522 ], [ -77.51648672221333, 23.915276461686425 ], [ -77.516460080876953, 23.915233597139164 ], [ -77.516382602082004, 23.915103126987681 ], [ -77.516328832522376, 23.915018075248103 ], [ -77.516290619986833, 23.91496351600297 ], [ -77.516192315548622, 23.914829657332049 ], [ -77.516098688638138, 23.914691481500622 ], [ -77.516044663956976, 23.914606406496567 ], [ -77.515986321074209, 23.914525577841211 ], [ -77.515865525516261, 23.914366990013171 ], [ -77.515742512916205, 23.914210536284138 ], [ -77.515663447696468, 23.914103383859679 ], [ -77.515620798381732, 23.914052623095014 ], [ -77.515575163965295, 23.914004442518653 ], [ -77.515526859755852, 23.913958564568112 ], [ -77.515501741063829, 23.913936581052607 ], [ -77.515475955821941, 23.913914922728583 ], [ -77.515342857836174, 23.913811121378483 ], [ -77.515292223396855, 23.913767114875963 ], [ -77.515146735846756, 23.913629221222855 ], [ -77.51512323322396, 23.913605428543647 ], [ -77.515100438473596, 23.913581258928357 ], [ -77.51503520820755, 23.913505503841922 ], [ -77.514951046845241, 23.91340246259708 ], [ -77.51491150839631, 23.913349068778661 ], [ -77.514836993143476, 23.913239801039097 ], [ -77.514798102379885, 23.913188317275193 ], [ -77.514739486409297, 23.913114952486112 ], [ -77.514719983984449, 23.913091851988124 ], [ -77.514679918224516, 23.913049943420418 ], [ -77.514639243406734, 23.913014198808593 ], [ -77.514598829998747, 23.912986099613125 ], [ -77.514578586463827, 23.912975848500814 ], [ -77.514557883889779, 23.912969279675011 ], [ -77.51452616886867, 23.912965193354342 ], [ -77.514492347298201, 23.912963394092138 ], [ -77.514450912505737, 23.912958311648545 ], [ -77.514407887695214, 23.912948043288665 ], [ -77.514367026926195, 23.91293136377184 ], [ -77.51433767177933, 23.912912820114638 ], [ -77.514283397366512, 23.912869899762459 ], [ -77.514220536856172, 23.912823491730663 ], [ -77.514132145327167, 23.91274808685549 ], [ -77.514062107277709, 23.912685023867553 ], [ -77.513973586391316, 23.912620020334025 ], [ -77.513930404375614, 23.912585425295013 ], [ -77.513895055669138, 23.912550454954356 ], [ -77.513749988530563, 23.912390187792226 ], [ -77.513703040777187, 23.912342762109134 ], [ -77.513580515962346, 23.912229470407905 ], [ -77.513511405872578, 23.912157826332852 ], [ -77.513487476550026, 23.912135192932944 ], [ -77.513462725269022, 23.912113185292075 ], [ -77.513410552015628, 23.912072334948764 ], [ -77.513382989007766, 23.912053693444104 ], [ -77.513325974733306, 23.912018827253451 ], [ -77.513209234170574, 23.911957798052622 ], [ -77.513153190076608, 23.911929823451601 ], [ -77.513070148913442, 23.911892836856314 ], [ -77.512864818293977, 23.911789537285678 ], [ -77.512800703735508, 23.911760043403159 ], [ -77.512732936627131, 23.91173278650021 ], [ -77.51268548312224, 23.911716460769682 ], [ -77.512548933809143, 23.911676500497034 ], [ -77.512491295205606, 23.911662231079799 ], [ -77.512392824579067, 23.911641719610934 ], [ -77.512321369886422, 23.911631406800907 ], [ -77.512247757440491, 23.911625051422501 ], [ -77.512173569174408, 23.91162207698374 ], [ -77.511987015141045, 23.911624353390202 ], [ -77.511915517329314, 23.911623808103837 ], [ -77.511846478206408, 23.911621587539951 ], [ -77.511699283857226, 23.911611366704278 ], [ -77.511629510810806, 23.911609682393284 ], [ -77.511606070171823, 23.911611613068654 ], [ -77.511585523006303, 23.911615750347426 ], [ -77.511568368777617, 23.911621975974377 ], [ -77.511513436798026, 23.911652947252847 ], [ -77.511496414621689, 23.911658729422374 ], [ -77.511466089294316, 23.91166191162749 ], [ -77.511432074586082, 23.911658088875299 ], [ -77.511408376130575, 23.911651679298021 ], [ -77.511371561373622, 23.911637853333779 ], [ -77.511334976585331, 23.911618529337268 ], [ -77.511311692253159, 23.911602148570914 ], [ -77.51128937271163, 23.911583625253343 ], [ -77.511268086232633, 23.911562731907093 ], [ -77.511227188632702, 23.911516784928775 ], [ -77.511174105385962, 23.91144976636587 ], [ -77.511145401517666, 23.91141697440338 ], [ -77.511109546161421, 23.911382953072184 ], [ -77.511046155645076, 23.911328269930902 ], [ -77.510968728952435, 23.911263124465652 ], [ -77.51086350299498, 23.911177485491752 ], [ -77.510787842390187, 23.911110630996369 ], [ -77.510715411228816, 23.911040898096896 ], [ -77.51062233857887, 23.910945089824196 ], [ -77.510538509593161, 23.91087154884179 ], [ -77.510500097631649, 23.91083179361279 ], [ -77.510471033538934, 23.910790882915329 ], [ -77.510446163680271, 23.910746348161013 ], [ -77.51043127140953, 23.910715448111414 ], [ -77.510410939839673, 23.910662589439756 ], [ -77.51039384759477, 23.910606932025669 ], [ -77.510362058013499, 23.910493577211017 ], [ -77.510343898570056, 23.910438888766077 ], [ -77.510276396464647, 23.910278133642365 ], [ -77.510252245258243, 23.910211318921714 ], [ -77.510237580261204, 23.910154881971906 ], [ -77.510226621713059, 23.910095224156279 ], [ -77.510218235939874, 23.910033329297466 ], [ -77.510199189859208, 23.909842339424845 ], [ -77.510180194982524, 23.909675461313171 ], [ -77.510163517759281, 23.909478654153215 ], [ -77.510146525227384, 23.909310041957269 ], [ -77.510126830563067, 23.908981277229795 ], [ -77.510111241199638, 23.908812703804053 ], [ -77.510094466060039, 23.908550581787281 ], [ -77.51008902676098, 23.908486134613479 ], [ -77.510037754517811, 23.908078427230947 ], [ -77.510015728725378, 23.907795716912965 ], [ -77.510008211623088, 23.907726789502973 ], [ -77.509997964540631, 23.90766023625995 ], [ -77.509979021766227, 23.907566906447812 ], [ -77.509934948621776, 23.90737804733681 ], [ -77.509878085264276, 23.907148955267211 ], [ -77.509772975189534, 23.906742219306231 ], [ -77.509742913966846, 23.906607203195598 ], [ -77.509706237550404, 23.906407992499382 ], [ -77.509692288510706, 23.90634308846456 ], [ -77.509657421301213, 23.906212254557438 ], [ -77.509642750016042, 23.906166322101836 ], [ -77.509568073066447, 23.905967899126466 ], [ -77.509513395310066, 23.905795357589597 ], [ -77.50939335433695, 23.905460559205672 ], [ -77.509377093932017, 23.905404270470797 ], [ -77.509334421261087, 23.905230088135209 ], [ -77.509317204150335, 23.905174632053047 ], [ -77.509291608452955, 23.905109103244531 ], [ -77.509194730539406, 23.904885973587628 ], [ -77.509168389240358, 23.904820847049063 ], [ -77.509139854255338, 23.904743200397451 ], [ -77.509098786873821, 23.904617762185001 ], [ -77.50906644123539, 23.904514083126447 ], [ -77.509050663225764, 23.904454439953671 ], [ -77.508986669939858, 23.90418753099793 ], [ -77.508972731679904, 23.904133623368683 ], [ -77.508956515292383, 23.904081699065639 ], [ -77.5089309672057, 23.904016128639871 ], [ -77.50883413959788, 23.903792957675808 ], [ -77.508807881842102, 23.903728003873361 ], [ -77.508788138668777, 23.903668141881365 ], [ -77.508752895963568, 23.903544726224638 ], [ -77.508732810532138, 23.903485162267401 ], [ -77.508705712851594, 23.903420940058872 ], [ -77.508690805309428, 23.903389887966103 ], [ -77.508657931461642, 23.903330692686492 ], [ -77.508604210411008, 23.903245611846227 ], [ -77.508554732103462, 23.903178850978978 ], [ -77.508521617507171, 23.903141629460379 ], [ -77.508488590047421, 23.903111997273871 ], [ -77.508417930363791, 23.903056738208843 ], [ -77.508366496423903, 23.903013688929281 ], [ -77.508317361272788, 23.90296863902309 ], [ -77.508294138026045, 23.902945066945364 ], [ -77.508272441915295, 23.902919919667983 ], [ -77.508232343816019, 23.902867003604406 ], [ -77.508106691067283, 23.902668383387123 ], [ -77.508047561260355, 23.90258847448122 ], [ -77.50802920149259, 23.90256041408259 ], [ -77.507994933459457, 23.902502402697952 ], [ -77.507944017847436, 23.902399897184569 ], [ -77.507917480715619, 23.902349573668285 ], [ -77.507847105797964, 23.902235322172032 ], [ -77.507814462817166, 23.902175838917689 ], [ -77.507795025071019, 23.902133989227298 ], [ -77.507709897121472, 23.901929104832778 ], [ -77.507690479138304, 23.901887213998652 ], [ -77.507626669108703, 23.901767170448014 ], [ -77.507578965872142, 23.901661961526667 ], [ -77.507553715127841, 23.901610731853371 ], [ -77.507519385110939, 23.901553251409737 ], [ -77.507462770586798, 23.901472408020432 ], [ -77.507423274358715, 23.901420577916902 ], [ -77.507360932176283, 23.901348136957935 ], [ -77.507298382483071, 23.901279744048409 ], [ -77.507256175139474, 23.901238175767048 ], [ -77.50723481140534, 23.901218938092679 ], [ -77.507212829630362, 23.901201600037648 ], [ -77.507144632228915, 23.901151025564147 ], [ -77.507078086829338, 23.901090140704948 ], [ -77.507033469305767, 23.901046477273127 ], [ -77.506988992817739, 23.90100085342663 ], [ -77.506923600854961, 23.900928821231169 ], [ -77.506797385760905, 23.900776345956963 ], [ -77.506751633665189, 23.900728203138151 ], [ -77.506727537256012, 23.900705277002309 ], [ -77.506702633261369, 23.900682795998261 ], [ -77.506650344125319, 23.900640265801204 ], [ -77.506566657971746, 23.900581447874796 ], [ -77.506482022298911, 23.900524519698386 ], [ -77.506455456421008, 23.900504182217041 ], [ -77.506379012485311, 23.90044237146444 ], [ -77.506332356684382, 23.900399253968914 ], [ -77.506310771964749, 23.900376888713026 ], [ -77.506290442191556, 23.900354356732166 ], [ -77.506254150254094, 23.900307893286818 ], [ -77.506224898413492, 23.900259946581059 ], [ -77.506208737721522, 23.900222895049829 ], [ -77.506183486078896, 23.900141588443866 ], [ -77.506173957648656, 23.900119370975165 ], [ -77.506161630966375, 23.90009762327913 ], [ -77.506146942613157, 23.900075896933014 ], [ -77.506111211224336, 23.900033638382652 ], [ -77.506046096841004, 23.899972123068959 ], [ -77.50597461879218, 23.89990981271831 ], [ -77.5058738341055, 23.899825931173261 ], [ -77.505824733090407, 23.899781596320846 ], [ -77.505754103051189, 23.89971177107396 ], [ -77.505709471154589, 23.899662693230184 ], [ -77.505667377897026, 23.89961127715301 ], [ -77.505628554507027, 23.899556948757144 ], [ -77.505602095528658, 23.899513679848706 ], [ -77.505525661474394, 23.899381516749347 ], [ -77.505481282004439, 23.899309850769473 ], [ -77.505452438897279, 23.899268619406207 ], [ -77.505431295250432, 23.899243037770933 ], [ -77.50540867028171, 23.89921848931759 ], [ -77.505384573872519, 23.899195459431017 ], [ -77.505333554055952, 23.899151575252716 ], [ -77.505306524647395, 23.899130808840088 ], [ -77.505277856711714, 23.899111698152709 ], [ -77.505247377772449, 23.899093896605262 ], [ -77.505194700564175, 23.899069167438796 ], [ -77.505024627921301, 23.899005058017877 ], [ -77.504971464724477, 23.898980476667528 ], [ -77.504940525847772, 23.898962839360983 ], [ -77.504881823638911, 23.898924989159113 ], [ -77.504769506380654, 23.898844603230739 ], [ -77.504683208824545, 23.898787198759198 ], [ -77.504628020825081, 23.89874739299955 ], [ -77.504601858290741, 23.898726757108147 ], [ -77.504554153257558, 23.898682404631678 ], [ -77.504532820066217, 23.898658729110366 ], [ -77.504494375765304, 23.898610270946264 ], [ -77.504477730881433, 23.898585440667791 ], [ -77.504463829452376, 23.898559326696603 ], [ -77.504452957142519, 23.898532388137347 ], [ -77.50444574636569, 23.898503989305002 ], [ -77.504442293241723, 23.898474636939429 ], [ -77.504442177359081, 23.898444827104147 ], [ -77.50444650903539, 23.898394764863916 ], [ -77.504456019499287, 23.898343570854529 ], [ -77.50447123785851, 23.898293451084132 ], [ -77.504493145073369, 23.898246696158189 ], [ -77.504523201804446, 23.898205788869284 ], [ -77.504559430859871, 23.898174537590673 ], [ -77.504601277080738, 23.898148341406571 ], [ -77.504747958491919, 23.898071995794027 ], [ -77.504805092242293, 23.898045173757957 ], [ -77.504900743057121, 23.898008599589211 ], [ -77.504938195617953, 23.897991462322441 ], [ -77.504972872384528, 23.897970633304592 ], [ -77.505007144909271, 23.897941705430789 ], [ -77.50503754030521, 23.897909110439027 ], [ -77.505056283653616, 23.897886545176043 ], [ -77.505089156603148, 23.897838761832819 ], [ -77.50510269241785, 23.897813498579954 ], [ -77.50512384414948, 23.897762025097542 ], [ -77.505133499242163, 23.897722659240618 ], [ -77.505137653052074, 23.897684158203862 ], [ -77.505137985428732, 23.897636547259488 ], [ -77.505139158628467, 23.89761317625031 ], [ -77.505142207510559, 23.897590409716365 ], [ -77.505148466073152, 23.897567777050856 ], [ -77.505158142725364, 23.897545784998478 ], [ -77.505184118410128, 23.897501259643001 ], [ -77.505199339464326, 23.89747862203409 ], [ -77.50526196192105, 23.897392406406013 ], [ -77.505294179998728, 23.897354352060855 ], [ -77.505331989190751, 23.897321687110061 ], [ -77.505372247190181, 23.897299488046833 ], [ -77.505416790153561, 23.897283034012339 ], [ -77.505463124357604, 23.897270778490181 ], [ -77.505576043487082, 23.897247102710445 ], [ -77.505611282599077, 23.89723570216427 ], [ -77.505642104694815, 23.897220701833202 ], [ -77.505670012655742, 23.897198947079236 ], [ -77.505691850700302, 23.897174702121134 ], [ -77.50571687237418, 23.897142513482667 ], [ -77.505731849086629, 23.897125990438433 ], [ -77.505749918698555, 23.897109901042032 ], [ -77.50578315097421, 23.897087990221092 ], [ -77.505821878244419, 23.897067532288418 ], [ -77.505849886816662, 23.897054064496771 ], [ -77.505889877118136, 23.897037240842813 ], [ -77.506039955957718, 23.896977264055153 ], [ -77.506178813042766, 23.896929279976799 ], [ -77.506305564431031, 23.896882581227828 ], [ -77.50634915787515, 23.896863220530495 ], [ -77.506380114718169, 23.896846819004175 ], [ -77.50640962886682, 23.896829366201025 ], [ -77.506437884475758, 23.896810557415048 ], [ -77.506490785364534, 23.896770201591377 ], [ -77.506539113828509, 23.896726369153768 ], [ -77.506627239456208, 23.896635107718858 ], [ -77.506667211791395, 23.89658914886396 ], [ -77.506702992587464, 23.896542780158935 ], [ -77.50674894321088, 23.896471800864106 ], [ -77.506818276082853, 23.896373336349416 ], [ -77.506934873813464, 23.896219462757628 ], [ -77.506992623808145, 23.896138296542759 ], [ -77.507011227917673, 23.896110620761373 ], [ -77.50703949700133, 23.896061437243976 ], [ -77.507091884053764, 23.895959888382908 ], [ -77.50717220152498, 23.895816341512845 ], [ -77.507198735961865, 23.895757854024829 ], [ -77.507215306285588, 23.895706732889916 ], [ -77.507227054452883, 23.895654820807504 ], [ -77.507243999374069, 23.895548370831243 ], [ -77.507250002815113, 23.895521881726303 ], [ -77.507257767852423, 23.895497151055455 ], [ -77.507268784791094, 23.895473608825657 ], [ -77.507291659491457, 23.895441191437644 ], [ -77.507339342965068, 23.895389140445978 ], [ -77.507381392205232, 23.895347018345362 ], [ -77.507447768721519, 23.895283600271625 ], [ -77.507541489056806, 23.895205524091903 ], [ -77.507589209361328, 23.895171246349147 ], [ -77.507637445298826, 23.895142509216537 ], [ -77.507738705194299, 23.895096425811921 ], [ -77.507765051883297, 23.895078130098636 ], [ -77.507778496069804, 23.895063391518224 ], [ -77.507788846458524, 23.895047158134197 ], [ -77.507830415998313, 23.89496353379328 ], [ -77.507907413296252, 23.894840488456751 ], [ -77.507956422683208, 23.89475799247808 ], [ -77.508004803249463, 23.89467136848171 ], [ -77.508054784613535, 23.894586479060848 ], [ -77.508085834881356, 23.894528778665368 ], [ -77.50810606943314, 23.894483595212449 ], [ -77.508134836183459, 23.894407295894471 ], [ -77.508144319697919, 23.894376399331232 ], [ -77.508175917938047, 23.894251411002973 ], [ -77.508269315778122, 23.893949495756075 ], [ -77.508316740536927, 23.893813591571945 ], [ -77.508372020164572, 23.893640304474978 ], [ -77.508452254092489, 23.893416898770759 ], [ -77.508469340947514, 23.893354755276846 ], [ -77.508532016404871, 23.89308667354295 ], [ -77.508583137731023, 23.892888746291678 ], [ -77.508599441255157, 23.892835905792339 ], [ -77.5086303019784, 23.892751331380499 ], [ -77.50865037573179, 23.892701948643943 ], [ -77.508678999649987, 23.892638685326858 ], [ -77.508700741574827, 23.892583977829997 ], [ -77.508774164476222, 23.892376465631635 ], [ -77.50878608512005, 23.892332344236927 ], [ -77.508795515633906, 23.892287516477044 ], [ -77.508816826367408, 23.892160152463063 ], [ -77.508828763180901, 23.892110629051899 ], [ -77.508848906104504, 23.892045838576806 ], [ -77.508907651432523, 23.891882141539924 ], [ -77.508937153903048, 23.891789825370907 ], [ -77.508962143237653, 23.891707954129508 ], [ -77.508978638102889, 23.891648035649585 ], [ -77.509018046296106, 23.891491176605793 ], [ -77.5090318767582, 23.891431033798906 ], [ -77.509062827313016, 23.891277987169453 ], [ -77.509088941338291, 23.891108473218662 ], [ -77.509120311406349, 23.890955715321152 ], [ -77.509134366447284, 23.890895683968356 ], [ -77.509205624408878, 23.890616345493353 ], [ -77.509243217106899, 23.890453632266077 ], [ -77.509265868126775, 23.89033845034772 ], [ -77.509291486282066, 23.890184038162154 ], [ -77.509299863072073, 23.890115746123683 ], [ -77.509304891841055, 23.890046182597082 ], [ -77.509306970542582, 23.889976367699369 ], [ -77.509304042034756, 23.889799299701423 ], [ -77.509305398490881, 23.88972907070826 ], [ -77.509309209144291, 23.889658824428604 ], [ -77.509315747981219, 23.889589534988627 ], [ -77.509356463223185, 23.889220913887108 ], [ -77.509387685069214, 23.88902465711222 ], [ -77.509394027175105, 23.888992103405045 ], [ -77.509402027571014, 23.888959916015562 ], [ -77.509427568471182, 23.888880728005319 ], [ -77.509445789898407, 23.888833615670684 ], [ -77.509473167853315, 23.888772418645143 ], [ -77.509507055899093, 23.888685485094115 ], [ -77.509553016403999, 23.888556120804868 ], [ -77.509580005388386, 23.888469013801277 ], [ -77.509594104446776, 23.888415025696599 ], [ -77.509606269432339, 23.888359762815302 ], [ -77.509634861909518, 23.888213768883009 ], [ -77.509648665422134, 23.888117622540967 ], [ -77.509662157219395, 23.887989427307076 ], [ -77.5096704441779, 23.887943520411469 ], [ -77.509681793493186, 23.887898868545506 ], [ -77.509703988168951, 23.887834612312478 ], [ -77.509716726279677, 23.887803057086639 ], [ -77.509744600104639, 23.887741413571781 ], [ -77.509809098243736, 23.887576145561855 ], [ -77.509891808826865, 23.887379951179806 ], [ -77.509911268132569, 23.887324912089987 ], [ -77.509927883372072, 23.887267317697301 ], [ -77.509957448724663, 23.887149622835565 ], [ -77.510001424851112, 23.886987183692543 ], [ -77.510012331296963, 23.886932919810157 ], [ -77.510020067588158, 23.886877239860272 ], [ -77.510025173612263, 23.886821119631065 ], [ -77.510032918886637, 23.88666791723632 ], [ -77.510039891609878, 23.886606726578663 ], [ -77.510051012753095, 23.886547149070129 ], [ -77.510059810852965, 23.886512783609966 ], [ -77.510109901811546, 23.886339330671181 ], [ -77.510126291573911, 23.886287326120687 ], [ -77.510145297230366, 23.886237678076249 ], [ -77.510159843649788, 23.886206658819393 ], [ -77.510180984601661, 23.88616681469 ], [ -77.510206531790033, 23.886129704910381 ], [ -77.510241644239585, 23.886096988663589 ], [ -77.510298708819647, 23.886065496259953 ], [ -77.510365694393755, 23.886043301014411 ], [ -77.510436472654987, 23.886028563868663 ], [ -77.510478852475131, 23.886022802730107 ], [ -77.510520287267624, 23.886019863021563 ], [ -77.510560547063733, 23.886019279843829 ], [ -77.510635027282248, 23.886021665122836 ], [ -77.510683185964623, 23.886026718234454 ], [ -77.510721240396705, 23.886033607123533 ], [ -77.510755127543391, 23.886042637342058 ] ], [ [ -77.510758026406648, 23.886041899745681 ], [ -77.510760656674734, 23.886039274624608 ], [ -77.510785527431679, 23.886032601758057 ], [ -77.510892396407769, 23.886009982676295 ], [ -77.510960764489113, 23.885991228170656 ], [ -77.511040634599354, 23.885962151412329 ], [ -77.511117074941808, 23.885927705301821 ], [ -77.51121979280299, 23.885874447163079 ], [ -77.511356560406668, 23.885811146830438 ], [ -77.511393725506608, 23.885788829155885 ], [ -77.511415570737682, 23.88577172066104 ], [ -77.511434959974764, 23.885753431842584 ], [ -77.511451714453145, 23.885733669467825 ], [ -77.511466077616234, 23.885713196597237 ], [ -77.511505501080791, 23.885651667901133 ], [ -77.511535301792023, 23.88561383351686 ], [ -77.511580514000272, 23.885561325168908 ], [ -77.511607479628438, 23.885519829045109 ], [ -77.511619848531595, 23.885497795517914 ], [ -77.511630631009965, 23.885474501989311 ], [ -77.511642071953403, 23.885436109014275 ], [ -77.511648107733805, 23.885395416982412 ], [ -77.511652381917912, 23.885311323963794 ], [ -77.511656648017194, 23.885271820432159 ], [ -77.511664484021438, 23.88523175259904 ], [ -77.511676462157425, 23.885192478208744 ], [ -77.511688256138783, 23.885164269472284 ], [ -77.51170189975133, 23.885136451707769 ], [ -77.511717482826583, 23.88510954402954 ], [ -77.511735096992666, 23.885084062266593 ], [ -77.511754400889814, 23.885059367383718 ], [ -77.511775204973475, 23.885035904571126 ], [ -77.511820488148629, 23.884991427477779 ], [ -77.511869742775687, 23.884950419073249 ], [ -77.511970503207806, 23.884873211430708 ], [ -77.512016499645284, 23.884833288859166 ], [ -77.512037242643544, 23.884812485649412 ], [ -77.512055753328298, 23.88479032386574 ], [ -77.512120321535946, 23.884697187821509 ], [ -77.512158720022796, 23.88465133479049 ], [ -77.512180089146725, 23.884629163943998 ], [ -77.512203256697916, 23.884608312239678 ], [ -77.512253077263566, 23.884568159598235 ], [ -77.512359241062157, 23.884489920887187 ], [ -77.512433297275905, 23.884439449944473 ], [ -77.512468695389643, 23.884412354023588 ], [ -77.512493365822294, 23.884389886615253 ], [ -77.512516298014887, 23.884365961240103 ], [ -77.512547275519125, 23.884326348175193 ], [ -77.512592917122106, 23.88425484141651 ], [ -77.512617303687122, 23.884208998085413 ], [ -77.512654821824924, 23.884130217040415 ], [ -77.512747319553142, 23.883903454316886 ], [ -77.512763912334748, 23.883853946636904 ], [ -77.512778269209591, 23.88380367340142 ], [ -77.512786769967136, 23.883770313417013 ], [ -77.512796538247542, 23.88371881545406 ], [ -77.512802782437092, 23.883666526470094 ], [ -77.512810198928079, 23.883578034592066 ], [ -77.51281642694795, 23.883523274801281 ], [ -77.512828801240985, 23.883426795594769 ], [ -77.512850136228963, 23.88323881297524 ], [ -77.512859262213937, 23.883176460064583 ], [ -77.512870778615905, 23.883115909265587 ], [ -77.51288576970137, 23.883058328605852 ], [ -77.512897379528098, 23.883023788083097 ], [ -77.512916779544966, 23.882973340389029 ], [ -77.512939286834396, 23.882925733065239 ], [ -77.512956479690629, 23.882896296667578 ], [ -77.512975112546258, 23.882867951078556 ], [ -77.512995038975873, 23.882841079891417 ], [ -77.513016037095653, 23.882814956991776 ], [ -77.51303839975634, 23.88279012860944 ], [ -77.513062442266602, 23.882767163152387 ], [ -77.513113737865964, 23.882724034836084 ], [ -77.513140964903911, 23.882703852264196 ], [ -77.513250488401638, 23.882635586669018 ], [ -77.513310106892121, 23.882593927791405 ], [ -77.513344523147268, 23.882565557494175 ], [ -77.513377211942156, 23.882535582998095 ], [ -77.513422484337539, 23.882487770163351 ], [ -77.51346347087069, 23.882439890777562 ], [ -77.51351117859879, 23.882380837867878 ], [ -77.513531175097015, 23.882354361673151 ], [ -77.513561938802241, 23.882309520598916 ], [ -77.513579343660865, 23.882280875891563 ], [ -77.513582537171317, 23.882272827810542 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 48, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 341 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.521963135154522, 23.951164076188807 ], [ -77.521967128166139, 23.951066792855784 ], [ -77.521977448910434, 23.950925979460788 ], [ -77.522007755373195, 23.950617045226135 ], [ -77.522013136281728, 23.950532620291607 ], [ -77.522015568021203, 23.950454130076032 ], [ -77.522014955370182, 23.950384950410445 ], [ -77.522004581625282, 23.950206980858269 ], [ -77.522001844458615, 23.950131946726376 ], [ -77.521995613743769, 23.949824554016399 ], [ -77.521988683241403, 23.949673356426928 ], [ -77.521971354739577, 23.949494744712592 ], [ -77.521954521209452, 23.949296359572806 ], [ -77.521935839844787, 23.949121088708832 ], [ -77.521915040252694, 23.948834919151782 ], [ -77.521907686643772, 23.948765891319752 ], [ -77.52189770186942, 23.948699777104025 ], [ -77.521876169252039, 23.94859063451257 ], [ -77.521867549916891, 23.948535874356857 ], [ -77.521861269794755, 23.948480998419715 ], [ -77.521851050560088, 23.948343709957058 ], [ -77.52184757857151, 23.948312359975514 ], [ -77.521842360258006, 23.948282323556484 ], [ -77.521835470179809, 23.948254123666093 ], [ -77.521827680887966, 23.948227133075491 ], [ -77.521805976692377, 23.948162991403649 ], [ -77.521792754389679, 23.948131510021 ], [ -77.521778283428844, 23.948112466514697 ], [ -77.521770443542934, 23.948109862107476 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 50, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 325 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.80825939893775, 23.963586066377015 ], [ -77.8082703485032, 23.963686259317477 ], [ -77.80827438373548, 23.963738644792787 ], [ -77.808275846192714, 23.963798063568561 ], [ -77.80827430198876, 23.963861442252547 ], [ -77.808269575053728, 23.963925465297464 ], [ -77.808257804428578, 23.964035727726511 ], [ -77.808250839790176, 23.964144008456131 ], [ -77.808250057357554, 23.964195987409763 ], [ -77.808251120064568, 23.964247674930199 ], [ -77.808254254286581, 23.964298480805432 ], [ -77.808259852587398, 23.964347781989378 ], [ -77.808268480007399, 23.964394883199475 ], [ -77.80829637898519, 23.964502469985437 ], [ -77.808328993219874, 23.964606689442576 ], [ -77.808349424502708, 23.964677416219597 ], [ -77.808359403887209, 23.964724254628653 ], [ -77.808366692817444, 23.964773457144613 ], [ -77.808372150981086, 23.964824261991762 ], [ -77.808388935103878, 23.965031381155764 ], [ -77.808405191915568, 23.965171578267984 ], [ -77.808407889556364, 23.965224234027907 ], [ -77.80840846807142, 23.965277574374468 ], [ -77.808407021783779, 23.965331002532388 ], [ -77.808403455472131, 23.965383892996613 ], [ -77.808397464607509, 23.965435549668427 ], [ -77.808388506607429, 23.965485148393952 ], [ -77.808351423254237, 23.965633219627009 ], [ -77.80834029312787, 23.965669454503374 ], [ -77.80830953840578, 23.965748603645846 ], [ -77.808291422081453, 23.965791345525187 ], [ -77.808271347429766, 23.965833850159093 ], [ -77.808249150957451, 23.965874369096095 ], [ -77.808225399501325, 23.965911522457102 ], [ -77.808178680818386, 23.965976005812003 ], [ -77.808139734359202, 23.966023034190698 ], [ -77.80812418362332, 23.966036848583887 ], [ -77.808112825324869, 23.966042814654436 ], [ -77.808106338590207, 23.966042335267407 ], [ -77.808102515360332, 23.966042930396878 ], [ -77.808100661237631, 23.966045963504985 ], [ -77.808099646141343, 23.966083734930173 ], [ -77.808098890658187, 23.966087294213747 ], [ -77.808080896504734, 23.966088146274711 ], [ -77.808066912430689, 23.966092792387286 ], [ -77.808055395130452, 23.966102133864005 ], [ -77.808039467102148, 23.966121902002602 ], [ -77.808013026988377, 23.966134868428849 ], [ -77.808005404783188, 23.966143256875203 ], [ -77.808001383025655, 23.966155463996888 ], [ -77.807999448952884, 23.966169669108723 ], [ -77.80799708009549, 23.966263725707648 ], [ -77.807993272136969, 23.966292191724854 ], [ -77.807987749294597, 23.966302964778482 ], [ -77.807965316565316, 23.966316694592408 ], [ -77.807954049895031, 23.966326126348161 ], [ -77.807947838044839, 23.966337616836174 ], [ -77.807945474577323, 23.966347895724432 ], [ -77.807945725207247, 23.966352945697206 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 53, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 2389 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.528204033267116, 23.972839716764462 ], [ -77.528203895825243, 23.972832330156077 ], [ -77.528199329688647, 23.972814866282032 ], [ -77.528172313754823, 23.97274183416754 ], [ -77.528075476265485, 23.972513090395715 ], [ -77.528009716891717, 23.972340632057122 ], [ -77.527966175549921, 23.972231756546236 ], [ -77.527916487934917, 23.972113789435252 ], [ -77.527896433944505, 23.972072530429688 ], [ -77.527862238674942, 23.972014464913432 ], [ -77.52784340459668, 23.971986820169651 ], [ -77.527823084704949, 23.97196071365644 ], [ -77.527780438983456, 23.97190999863049 ], [ -77.527735281572447, 23.971861468637247 ], [ -77.52771135494487, 23.971838253066661 ], [ -77.527561645312872, 23.971705293096424 ], [ -77.52746305880369, 23.971615427536783 ], [ -77.527366310247572, 23.971523964572778 ], [ -77.527320753086258, 23.97147578164677 ], [ -77.527299666931597, 23.971450342367916 ], [ -77.527279857282963, 23.97142354542466 ], [ -77.527242846693241, 23.971367930627277 ], [ -77.527192674886322, 23.97127973523137 ], [ -77.527115238312192, 23.971127203496728 ], [ -77.52706584803957, 23.971038328283537 ], [ -77.527048550978733, 23.971009347008373 ], [ -77.527011924868006, 23.970953396309909 ], [ -77.526972055839067, 23.970900266804982 ], [ -77.526950622934692, 23.97087488322947 ], [ -77.526882964522443, 23.970802144696254 ], [ -77.52686006017764, 23.970778039967133 ], [ -77.526812356042782, 23.970731724990383 ], [ -77.526762283948855, 23.970687470302053 ], [ -77.526607554531026, 23.970558878473156 ], [ -77.52658265772294, 23.970536752742888 ], [ -77.526535776444916, 23.970489721907075 ], [ -77.526471798430393, 23.970413536447563 ], [ -77.526369950138417, 23.970282483463244 ], [ -77.526310598447566, 23.970202274114975 ], [ -77.526273882505293, 23.970146401866955 ], [ -77.526239392588238, 23.970088594048139 ], [ -77.526190649102645, 23.969999158303651 ], [ -77.526143798367315, 23.969907828810811 ], [ -77.52609350888109, 23.969819737483704 ], [ -77.52605705794177, 23.969763636054193 ], [ -77.526019187664346, 23.969708768330094 ], [ -77.525939678676863, 23.969602311269206 ], [ -77.52586180462319, 23.969494434056411 ], [ -77.525787457355335, 23.969383239710599 ], [ -77.525751864307139, 23.969326391120003 ], [ -77.525717695088687, 23.969268303845052 ], [ -77.525685080853961, 23.969208864607239 ], [ -77.525611639087913, 23.96905285330492 ], [ -77.525580569057212, 23.968991822340602 ], [ -77.525547649395293, 23.968932646468041 ], [ -77.525494597589599, 23.968846948074081 ], [ -77.525438894855412, 23.968763552930813 ], [ -77.525400540386059, 23.96870934064113 ], [ -77.525364356246413, 23.968652745396433 ], [ -77.52522795874863, 23.968419789956595 ], [ -77.525211686665585, 23.96839013745539 ], [ -77.525188979051762, 23.968343804382595 ], [ -77.525153146153457, 23.968265058231406 ], [ -77.5251260951853, 23.968200436476486 ], [ -77.525094883220731, 23.968117607304855 ], [ -77.525066502745958, 23.968032266261993 ], [ -77.525052637249573, 23.967985491440029 ], [ -77.525017013658683, 23.967854821789263 ], [ -77.524976359502176, 23.967691244643795 ], [ -77.524961019870361, 23.967638211476178 ], [ -77.524938231408228, 23.967569988300621 ], [ -77.524924531201847, 23.967522861983291 ], [ -77.524892602381698, 23.967388543963143 ], [ -77.524880500278186, 23.967319490765888 ], [ -77.52487142998875, 23.967247988904518 ], [ -77.524847401851531, 23.966991046154867 ], [ -77.524843177074757, 23.966919022863546 ], [ -77.524842379370753, 23.966846097403355 ], [ -77.524844739245054, 23.9667733442833 ], [ -77.524850255799208, 23.966701873311798 ], [ -77.524859197629553, 23.966632901833073 ], [ -77.52488684687566, 23.966474935394334 ], [ -77.524925637027948, 23.966289143847128 ], [ -77.524963933106832, 23.966145913203015 ], [ -77.524981914683892, 23.966090205011778 ], [ -77.525006630930591, 23.966024963231614 ], [ -77.525072568170785, 23.965861247499568 ], [ -77.525088993865751, 23.965815846025546 ], [ -77.525131231752084, 23.965688537281643 ], [ -77.525201891435657, 23.965442372757508 ], [ -77.525219526263058, 23.965373637016114 ], [ -77.525228765435742, 23.965326894064223 ], [ -77.525235553106029, 23.96527949111346 ], [ -77.525247408172831, 23.965149619071362 ], [ -77.525253603853358, 23.965101684128857 ], [ -77.525261899795012, 23.96505409721933 ], [ -77.525280067323308, 23.964971501616915 ], [ -77.525303747812501, 23.964876350668646 ], [ -77.525347988941931, 23.964723803967605 ], [ -77.525366889495515, 23.964666534674521 ], [ -77.52539140721457, 23.964600418760241 ], [ -77.525407512210975, 23.964548781454798 ], [ -77.525433429505242, 23.964441865365185 ], [ -77.525451906952327, 23.964353927910892 ], [ -77.525460379862054, 23.96430104851628 ], [ -77.525471934891556, 23.964177373954453 ], [ -77.525487531441527, 23.964034984829432 ], [ -77.525493333659966, 23.963961597223026 ], [ -77.525518794610036, 23.963491202532403 ], [ -77.525530280469283, 23.963336519889932 ], [ -77.525548554897085, 23.963151536496945 ], [ -77.525551874172095, 23.963080109486928 ], [ -77.525552405076411, 23.963008683258227 ], [ -77.525550000286387, 23.962937991684715 ], [ -77.525543672553539, 23.962826782652893 ], [ -77.525530422403094, 23.962456251828218 ], [ -77.525525250802019, 23.962383611976136 ], [ -77.525517671715932, 23.962312988193879 ], [ -77.525493473797127, 23.962135560474586 ], [ -77.525482917694262, 23.962067437819197 ], [ -77.525469934343448, 23.962001429750714 ], [ -77.525443486144837, 23.961892435505693 ], [ -77.525429805701378, 23.961824869288773 ], [ -77.525395516108659, 23.961616641687947 ], [ -77.525381144860745, 23.961550022641443 ], [ -77.52537175387279, 23.961514568922091 ], [ -77.525307888147637, 23.961295422049897 ], [ -77.525289405310687, 23.961240620497414 ], [ -77.525264553418353, 23.961178843741166 ], [ -77.52522524134487, 23.961092305336965 ], [ -77.525213640501306, 23.961063557423685 ], [ -77.525203692557838, 23.961034580472813 ], [ -77.525196038911602, 23.961004551942104 ], [ -77.52519048283159, 23.960973755041525 ], [ -77.525160877953084, 23.960764944867549 ], [ -77.52512359068227, 23.960542871842804 ], [ -77.525113645433734, 23.960473305197169 ], [ -77.525088582437334, 23.96025846056045 ], [ -77.525077605922846, 23.960188785401662 ], [ -77.525040567485405, 23.960001134470719 ], [ -77.525000446029864, 23.959771496282489 ], [ -77.524955691962376, 23.959535221451638 ], [ -77.524939965156733, 23.959471799595292 ], [ -77.524918829594711, 23.959402569765931 ], [ -77.524904456550161, 23.959348999596166 ], [ -77.524866058063338, 23.959184209021082 ], [ -77.524821039891222, 23.959003682153682 ], [ -77.524774303241912, 23.958780396067358 ], [ -77.524720528292377, 23.958489869175043 ], [ -77.524682797253817, 23.958258775270703 ], [ -77.524665022289284, 23.958127481713099 ], [ -77.52465490546254, 23.958062904952122 ], [ -77.524642305692382, 23.958000487177092 ], [ -77.52462580633555, 23.957941463054429 ], [ -77.52460055020137, 23.957875625266837 ], [ -77.524572706919088, 23.957812284686256 ], [ -77.524555638928717, 23.957768430276325 ], [ -77.524512888104354, 23.957644434213798 ], [ -77.524471099375631, 23.957504926700143 ], [ -77.524458814015844, 23.957456911748405 ], [ -77.524429013304598, 23.957321652312487 ], [ -77.524418080807564, 23.957260720051412 ], [ -77.524391645185403, 23.957072390879198 ], [ -77.524381427747343, 23.957010837059528 ], [ -77.524344591430804, 23.956822995152997 ], [ -77.524309198706902, 23.956663249235838 ], [ -77.52429402975504, 23.956603067813052 ], [ -77.524268072934902, 23.956515827727138 ], [ -77.524251246591334, 23.956464425253134 ], [ -77.524220446055182, 23.956381398905929 ], [ -77.524200574422764, 23.956332645519705 ], [ -77.52417146721092, 23.956270158769851 ], [ -77.524156121290929, 23.956239482236224 ], [ -77.524074940538711, 23.956090707347695 ], [ -77.524001181667373, 23.955934737634404 ], [ -77.523967966459722, 23.955876071313849 ], [ -77.523936061894091, 23.955816017589306 ], [ -77.523907897014993, 23.95575246583801 ], [ -77.523895096022187, 23.955719821402511 ], [ -77.523878337052253, 23.955668361145761 ], [ -77.523761611760861, 23.955220064560411 ], [ -77.523746990781291, 23.95516674468087 ], [ -77.523729993757797, 23.955115491079745 ], [ -77.523703094604954, 23.955051084386533 ], [ -77.523673804136791, 23.954988757919669 ], [ -77.523570551778064, 23.954785560671034 ], [ -77.52354890687127, 23.954745687612697 ], [ -77.523513117990305, 23.954689013173933 ], [ -77.523318607578531, 23.954419185333755 ], [ -77.52328076514884, 23.954364297943606 ], [ -77.523245240372631, 23.954307148832207 ], [ -77.523195040717923, 23.954219231556628 ], [ -77.523122184653459, 23.954062478040679 ], [ -77.523040896103353, 23.953913552049467 ], [ -77.522952944748837, 23.953770423409885 ], [ -77.52291589912484, 23.953714842043691 ], [ -77.522876755934618, 23.953661086439755 ], [ -77.522834995053714, 23.953609608121656 ], [ -77.522769957925419, 23.953534598134802 ], [ -77.522689003548649, 23.953429161291435 ], [ -77.522669794872954, 23.953402091330759 ], [ -77.522614902419221, 23.953317104227157 ], [ -77.522451092830522, 23.953072971742863 ], [ -77.522385717037423, 23.952965242425559 ], [ -77.522336850482617, 23.952874828540782 ], [ -77.522317090241259, 23.952831611973671 ], [ -77.522311286226227, 23.95281223913835 ], [ -77.522311765028732, 23.952803239038296 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 63, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 1408 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.527374581934012, 24.007386793127544 ], [ -77.527374062708517, 24.007377895308149 ], [ -77.527369960225883, 24.007362994061992 ] ], [ [ -77.527364606125374, 24.007346738869419 ], [ -77.527349708482831, 24.007307210853813 ], [ -77.527260689929761, 24.007090279572097 ], [ -77.527234960383367, 24.007032363605216 ], [ -77.52720647750067, 24.006980940257606 ], [ -77.527185717434463, 24.00695240609658 ], [ -77.527164078815886, 24.006928203096525 ], [ -77.527142078176269, 24.006907371969398 ], [ -77.527109495382604, 24.006881917533747 ], [ -77.527074785378332, 24.006862920458232 ], [ -77.527030792183936, 24.006849509259663 ], [ -77.526983861498536, 24.006843521281795 ], [ -77.526937890213901, 24.006843957024749 ], [ -77.526911900156051, 24.006847352701421 ], [ -77.526887159654834, 24.006854059531886 ], [ -77.52685610848873, 24.006868073056207 ], [ -77.526796078569859, 24.00690181399268 ], [ -77.526772584930228, 24.006912466302488 ], [ -77.526748902644385, 24.006921366613927 ], [ -77.526725559023419, 24.006928426301851 ], [ -77.526702687916298, 24.006932631915983 ], [ -77.526680459104583, 24.006933537866843 ], [ -77.526648792592496, 24.00692654793087 ], [ -77.526621464943233, 24.006908542156086 ], [ -77.526599201995566, 24.00687506135408 ], [ -77.526584590897414, 24.006830591778371 ], [ -77.52657590329035, 24.00677854304627 ], [ -77.526571864464827, 24.006721685524635 ], [ -77.526571575207285, 24.0066623275812 ], [ -77.526580748802999, 24.00651276569489 ], [ -77.526586044371555, 24.006366815144869 ], [ -77.526600210803608, 24.006203477297348 ], [ -77.526604087034059, 24.00613118625861 ], [ -77.526606022903536, 24.006057677389247 ], [ -77.526605931275341, 24.005983990404726 ], [ -77.526599340336105, 24.00580343557305 ], [ -77.526599122943807, 24.00573428562485 ], [ -77.526600745301224, 24.005664468478912 ], [ -77.526604172374036, 24.005594563489137 ], [ -77.526609478722406, 24.005525131136508 ], [ -77.526630412163485, 24.005341998100516 ], [ -77.526637029153861, 24.005265723296716 ], [ -77.526646119206191, 24.005109822965014 ], [ -77.526650358356051, 24.004952487179665 ], [ -77.526650502086497, 24.004874326358436 ], [ -77.526649001899983, 24.004797096894841 ], [ -77.5266454373849, 24.004721323988502 ], [ -77.526639219246533, 24.004647632135505 ], [ -77.526612346144788, 24.00439579278131 ], [ -77.526588491382441, 24.00421825397941 ], [ -77.526572095331872, 24.004078123987494 ], [ -77.526548243264429, 24.003907279421892 ], [ -77.526524705607343, 24.003716099465596 ], [ -77.526514754968957, 24.003654198648885 ], [ -77.526488808030251, 24.003515292421721 ], [ -77.526461325870798, 24.003377648994668 ], [ -77.526436534165555, 24.003237557477533 ], [ -77.526427198873151, 24.00317204401027 ], [ -77.526419962943507, 24.003104676701877 ], [ -77.526401828652894, 24.002899352758501 ], [ -77.526364573721438, 24.002593779717561 ], [ -77.526355088410369, 24.002529107894805 ], [ -77.526343079731632, 24.002467132649763 ], [ -77.526327282857366, 24.002409177673115 ], [ -77.526303263703298, 24.002345666138112 ], [ -77.526277438935495, 24.002286158461004 ], [ -77.526265939601558, 24.002256075536579 ], [ -77.52625602848903, 24.002225787445628 ], [ -77.526244182405378, 24.002170492868746 ], [ -77.526238966786849, 24.002114176573262 ], [ -77.526239415944445, 24.002059242208748 ], [ -77.526244890277823, 24.002008223089724 ], [ -77.526257826017897, 24.001931664830263 ], [ -77.526256638445119, 24.001893605204543 ], [ -77.526247327407177, 24.001856296453258 ], [ -77.526230037532898, 24.001821209164248 ], [ -77.526160583388389, 24.001710660670913 ], [ -77.526125106222892, 24.0016453630756 ], [ -77.526086431054949, 24.001565430120891 ], [ -77.526040133681832, 24.001475866057319 ], [ -77.525979509078269, 24.001352773736389 ], [ -77.525945780034277, 24.001294292225236 ], [ -77.525913436192496, 24.001234257208527 ], [ -77.525842803458303, 24.001074586872914 ], [ -77.52581165707079, 24.001013525946988 ], [ -77.525777786092974, 24.000954875228704 ], [ -77.525668680311867, 24.000785681760881 ], [ -77.525635663631917, 24.000726440072732 ], [ -77.525613904639116, 24.00067923069178 ], [ -77.525574136221479, 24.000581591654594 ], [ -77.525552608095694, 24.000534217270118 ], [ -77.525536793255114, 24.000504158555582 ], [ -77.525502806394655, 24.000445853098306 ], [ -77.525466772273631, 24.000389092076812 ], [ -77.525368282782551, 24.000255274459587 ], [ -77.525349878098964, 24.000227489702148 ], [ -77.525316376328774, 24.000168555501077 ], [ -77.525300855237305, 24.000138266098148 ], [ -77.525281879225247, 24.000096059191392 ], [ -77.525159267273793, 23.999792242256557 ], [ -77.525140717961506, 23.999749669224919 ], [ -77.525109738660618, 23.999688801344558 ], [ -77.525092978792344, 23.999659349716485 ], [ -77.525056290697847, 23.999603445931857 ], [ -77.525036742458937, 23.999576664694136 ], [ -77.524995666992581, 23.999524330722437 ], [ -77.524973536097221, 23.999499794780451 ], [ -77.524950359562908, 23.999475921923217 ], [ -77.524827542795563, 23.999363571716753 ], [ -77.524803990765449, 23.999340025455361 ], [ -77.524643600164708, 23.999172295558093 ], [ -77.524622708944477, 23.999146435828788 ], [ -77.524603361029904, 23.999119478054627 ], [ -77.524574943724204, 23.99907081141659 ], [ -77.524479240807068, 23.998875678546113 ], [ -77.52443669569692, 23.9987808300246 ], [ -77.524385924713684, 23.998649091109414 ], [ -77.524362289140242, 23.998581569610845 ], [ -77.524335557073996, 23.998494957851772 ], [ -77.524307347279148, 23.998387345292166 ], [ -77.524291948358538, 23.998334652207291 ], [ -77.52425717277724, 23.998232944184938 ], [ -77.524208257713411, 23.998099633137372 ], [ -77.524162804756656, 23.997962937530016 ], [ -77.524111099525527, 23.997787305287055 ], [ -77.524071393091646, 23.997645145348102 ], [ -77.52405778990331, 23.997590561962792 ], [ -77.524037357722179, 23.997497827355122 ], [ -77.524026626447792, 23.997433303974233 ], [ -77.524018670967649, 23.997366378463997 ], [ -77.524012515711334, 23.997297939605115 ], [ -77.523993196542818, 23.997051068979108 ], [ -77.523989156818956, 23.996984204820368 ], [ -77.523987474274463, 23.996916220410348 ], [ -77.523989867386376, 23.996779749230935 ], [ -77.523998889166791, 23.996648002522765 ], [ -77.524005859195057, 23.996586468429879 ], [ -77.524030561068741, 23.99643907946777 ], [ -77.524032867044085, 23.996403114221064 ], [ -77.524030367930948, 23.996370686073604 ], [ -77.524022516655364, 23.996343660422671 ], [ -77.524012994513384, 23.996328062669601 ], [ -77.524001002902651, 23.996315899440965 ], [ -77.523986835572259, 23.996305857657113 ], [ -77.52390936126892, 23.996264350350526 ], [ -77.523879027856736, 23.996254228136426 ], [ -77.523844053747766, 23.996250736981871 ], [ -77.523814856704391, 23.996254150992971 ], [ -77.523784134321701, 23.996262885444477 ], [ -77.523752809169409, 23.996276562003924 ], [ -77.523721586425097, 23.996293849534045 ], [ -77.523690934110959, 23.996314218697865 ], [ -77.523661565489348, 23.996336322765835 ], [ -77.523633943192721, 23.996359708724476 ], [ -77.5236087732968, 23.996383065955243 ], [ -77.523567976308101, 23.996427176403468 ], [ -77.523553820655877, 23.996446252163153 ], [ -77.523543449964194, 23.996466720804722 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 67, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 417 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.522610277892085, 24.009088853946636 ], [ -77.522617259598576, 24.009062310193769 ], [ -77.522623024087721, 24.009052562356715 ], [ -77.522631619168351, 24.009047144794298 ], [ -77.522650290651541, 24.009042016080791 ], [ -77.522657794279084, 24.009037721911401 ], [ -77.522662579604628, 24.009030754245849 ], [ -77.522669263070327, 24.009014048587069 ], [ -77.522674231652147, 24.009007256527401 ], [ -77.522681862840514, 24.009003085446025 ], [ -77.522700151641388, 24.008997646546046 ], [ -77.522707776541509, 24.008993468078994 ], [ -77.522712713682338, 24.008986647297483 ], [ -77.522721333017472, 24.008966018369943 ], [ -77.522727782921223, 24.008960298004453 ], [ -77.522737478438074, 24.008957343042894 ], [ -77.522750199480797, 24.008956199133845 ], [ -77.522808464210129, 24.008958038907249 ], [ -77.522921390526193, 24.008961350006771 ], [ -77.522947581806605, 24.008960885550255 ], [ -77.522970238216374, 24.008958871810815 ], [ -77.522990115238656, 24.008954190317926 ], [ -77.522998419265164, 24.008950279363372 ], [ -77.523017569550404, 24.008933978247413 ], [ -77.523024540476982, 24.008929108016794 ], [ -77.523033341271827, 24.008925327536076 ], [ -77.523043398809776, 24.008922753329784 ], [ -77.523066028270065, 24.008920016645593 ], [ -77.523129149291847, 24.008919461102828 ], [ -77.523417027899356, 24.008926752909414 ], [ -77.523431399147299, 24.008929062063473 ], [ -77.523462885097999, 24.008927017961604 ], [ -77.523507584368218, 24.008920155326209 ], [ -77.523561111382733, 24.008907546063526 ], [ -77.5236437797451, 24.008880195628134 ], [ -77.52382247890958, 24.008809762280929 ], [ -77.523887847516164, 24.008789642094438 ], [ -77.523952446266563, 24.008774443018396 ], [ -77.524167477792773, 24.008737247863476 ], [ -77.52434150122626, 24.008711140595263 ], [ -77.524398385245007, 24.008701359907725 ], [ -77.524452954305247, 24.008689357044389 ], [ -77.524527879189819, 24.008668784690386 ], [ -77.524582042211577, 24.008656392040574 ], [ -77.524750867094511, 24.008625294706697 ], [ -77.524805419086761, 24.008613275424263 ], [ -77.525030289860254, 24.008552683354743 ], [ -77.525068594023978, 24.008543204635004 ], [ -77.525124047924763, 24.008532051075235 ], [ -77.525356116000339, 24.008497275792688 ], [ -77.525662392104849, 24.008445837439226 ], [ -77.525788136481708, 24.008428572877222 ], [ -77.52584974474054, 24.008418726520411 ], [ -77.526007930875537, 24.008389947319376 ], [ -77.526330921034258, 24.008322984015962 ], [ -77.52647529377515, 24.00829042511479 ], [ -77.526531655872276, 24.008275759373575 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 79, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 65 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.797583017007739, 24.035884862168672 ], [ -77.797582354949313, 24.035911528370068 ] ], [ [ -77.797587086375955, 24.035884947492669 ], [ -77.797583017007739, 24.035884862168672 ] ], [ [ -77.797535040683371, 24.035838743730899 ], [ -77.797533847720729, 24.035873718364694 ], [ -77.79753583299744, 24.035882166259185 ], [ -77.797545358732705, 24.035884382221354 ], [ -77.797583017007739, 24.035884862168672 ] ], [ [ -77.797583017007739, 24.035884862168672 ], [ -77.797583324231582, 24.035872484448671 ] ], [ [ -77.797573380779468, 24.035839546925153 ], [ -77.797535040683371, 24.035838743730899 ] ], [ [ -77.797537985360805, 24.035720065370562 ], [ -77.797537907207456, 24.035716932167691 ], [ -77.797532319686368, 24.035711501781563 ], [ -77.797520054089489, 24.035706356082464 ], [ -77.79750403982294, 24.035702726526704 ], [ -77.797473905836696, 24.035700821502111 ], [ -77.79746131774462, 24.035701947123865 ], [ -77.797450737387209, 24.035705046685795 ], [ -77.797443721544852, 24.035711626486016 ], [ -77.797440185775898, 24.035721608583891 ], [ -77.797436961722326, 24.035765629240544 ], [ -77.797436565565278, 24.035798243536163 ], [ -77.797437825003314, 24.03581638637791 ], [ -77.79744078225724, 24.035826567010051 ], [ -77.797447377688044, 24.035833497124781 ], [ -77.797457751432944, 24.035837062683868 ], [ -77.797471402231992, 24.035838698607609 ], [ -77.797535040683371, 24.035838743730899 ] ], [ [ -77.797535040683371, 24.035838743730899 ], [ -77.797537934156836, 24.035722130376797 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 86, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 264 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.701807089322273, 24.082524822291258 ], [ -77.701772260740796, 24.082649594362561 ], [ -77.701733367282259, 24.082775063421487 ], [ -77.701719861111954, 24.08283647914757 ], [ -77.701711541814092, 24.082898295063934 ], [ -77.701708420168472, 24.082956558182186 ], [ -77.701709004971747, 24.083042034545791 ], [ -77.701706912795458, 24.083089319457819 ], [ -77.701702361930231, 24.083136765096075 ], [ -77.701695063118535, 24.083183429141968 ], [ -77.7016599318044, 24.083355826560137 ], [ -77.70164911249509, 24.083400418905367 ], [ -77.70163621897585, 24.083443188110859 ], [ -77.701623797970413, 24.083477010628165 ], [ -77.701597860913239, 24.083543981498813 ], [ -77.701583624412606, 24.083576055497939 ], [ -77.701553206558742, 24.083637075543525 ], [ -77.701537212953411, 24.083677629533103 ], [ -77.701523918785554, 24.083719870490711 ], [ -77.70149247595397, 24.083835644727216 ], [ -77.701485459213302, 24.083867451295525 ], [ -77.701469672220512, 24.08395976517544 ], [ -77.701461193022539, 24.083990000371887 ], [ -77.701437997623557, 24.084048903503721 ], [ -77.701424298315473, 24.084078213589635 ], [ -77.701376565434543, 24.084163876191411 ], [ -77.701328846028332, 24.084254134653051 ], [ -77.70127736627434, 24.084342236973768 ], [ -77.701159990602704, 24.084569780433021 ], [ -77.701138158846362, 24.084609038351491 ], [ -77.70106230869699, 24.084732178018641 ], [ -77.701043060495394, 24.084764373916851 ], [ -77.701040683551611, 24.084770505066725 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 90, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 259 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.700780039168791, 24.085344618759155 ], [ -77.700776165634608, 24.085346802700329 ], [ -77.700768688058176, 24.085357081096912 ], [ -77.700613778977342, 24.085602838108869 ], [ -77.700562802279904, 24.085674690771565 ], [ -77.700494471029515, 24.085764602905538 ], [ -77.700417018285691, 24.085873264999716 ], [ -77.7003984447189, 24.085900426818402 ], [ -77.70034722457801, 24.085984475060563 ], [ -77.700280050357705, 24.086086570412238 ], [ -77.700265618024346, 24.086111102119357 ], [ -77.70023051186304, 24.086186308711479 ], [ -77.70020292460066, 24.086238682010343 ], [ -77.70012150220164, 24.086376379349538 ], [ -77.700088756812903, 24.086435148528562 ], [ -77.700046527011395, 24.086516800910395 ], [ -77.700023382816369, 24.086556091036464 ], [ -77.699983286513714, 24.086609895256284 ], [ -77.699961396366859, 24.086634975509067 ], [ -77.699915245419135, 24.086683156283012 ], [ -77.69984323377102, 24.086752391408361 ], [ -77.699820840567625, 24.086777004997764 ], [ -77.699799991568185, 24.086802686349255 ], [ -77.699781246423157, 24.086830424499265 ], [ -77.699764314078365, 24.086859612574802 ], [ -77.699733246742611, 24.08691915406326 ], [ -77.699719410890523, 24.086951158329665 ], [ -77.699693198948893, 24.087026042131203 ], [ -77.699680744705816, 24.087065900427515 ], [ -77.69967001253309, 24.087107253745359 ], [ -77.699644577634132, 24.087227487877328 ], [ -77.699634810252036, 24.087263782800786 ], [ -77.699606937325413, 24.087349449014177 ], [ -77.699597809543022, 24.087386300749969 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 91, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 81 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.546335470858878, 24.087794613231814 ], [ -77.546332274653068, 24.087875300321141 ], [ -77.546334002113369, 24.087909645706567 ], [ -77.546337654663319, 24.087920504521488 ], [ -77.546344646251143, 24.087927073443865 ], [ -77.546354109104399, 24.087929480408498 ], [ -77.546364126218151, 24.087928844018521 ], [ -77.546372598229581, 24.087924856740177 ], [ -77.546375904029816, 24.087920857980361 ], [ -77.546381274158591, 24.087903669708602 ], [ -77.546384242192275, 24.087853815588446 ], [ -77.546382852498553, 24.087818738667085 ], [ -77.546376772700697, 24.087806197836997 ], [ -77.546371433114658, 24.087801401945072 ], [ -77.546358660867938, 24.087796303439426 ], [ -77.546345585888986, 24.087794517281154 ], [ -77.546335470858878, 24.087794613231814 ] ], [ [ -77.546335470858878, 24.087794613231814 ], [ -77.546339376733741, 24.087688625445434 ], [ -77.546338392180175, 24.087646274263285 ], [ -77.54633556248703, 24.087631912812004 ], [ -77.546329491672353, 24.087621378729171 ], [ -77.546324472784846, 24.087618250897773 ], [ -77.546312401224071, 24.087616653358271 ], [ -77.546306465156661, 24.087618055715822 ], [ -77.546301332183134, 24.087621089236634 ], [ -77.546297579021882, 24.087625665350568 ], [ -77.546294809515842, 24.087631551151439 ], [ -77.546291283628378, 24.087645901941571 ], [ -77.546288782718619, 24.087670756466313 ], [ -77.546287453211974, 24.087705852290405 ], [ -77.546287099275759, 24.087740794747774 ], [ -77.546288376680096, 24.087758083912568 ], [ -77.546294154643988, 24.087775061440524 ], [ -77.546299031597684, 24.087782185571996 ], [ -77.54630527219399, 24.087787749069847 ], [ -77.546320910066413, 24.08779386038827 ], [ -77.546335470858878, 24.087794613231814 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 98, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 11658 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.547128614084727, 24.100350983929541 ], [ -77.547079174404487, 24.100342194232841 ], [ -77.547046065198089, 24.100332554186686 ], [ -77.547012036116797, 24.100315903867017 ], [ -77.54699145391703, 24.100300115376751 ], [ -77.546974014024116, 24.100280980419274 ], [ -77.546960896824316, 24.100258326790787 ], [ -77.546952888343569, 24.100232961380591 ], [ -77.546950081108307, 24.100205847700696 ], [ -77.54695166843139, 24.10017683814797 ], [ -77.546957224511431, 24.100146866714571 ], [ -77.546971180737671, 24.100100041563444 ], [ -77.546991510510878, 24.100054268471315 ], [ -77.547008326074689, 24.100026166638283 ], [ -77.547026671469396, 24.099999365339571 ], [ -77.547101912560976, 24.099893463910139 ], [ -77.547135441280631, 24.099839158499595 ], [ -77.54714990415674, 24.09981141250551 ], [ -77.547169149663347, 24.09976337443047 ], [ -77.547182818428723, 24.099715523300738 ], [ -77.547191929142357, 24.099670925152708 ], [ -77.547195190026827, 24.099646926591429 ], [ -77.54719531848589, 24.099617606946289 ], [ -77.547190153173034, 24.099592943342493 ], [ -77.54717945244137, 24.099575039942835 ], [ -77.547167870462431, 24.099567230933953 ], [ -77.54715398160981, 24.09956384836925 ], [ -77.547138197311952, 24.099563646645418 ], [ -77.547121080812531, 24.099565920548887 ], [ -77.54706561703027, 24.099577794375261 ], [ -77.54704709466742, 24.099580837453118 ], [ -77.547029148124651, 24.099581837052074 ], [ -77.547012234644498, 24.099580169960408 ], [ -77.546996692891739, 24.09957466601568 ], [ -77.546983390639056, 24.099564819267854 ], [ -77.546969449684127, 24.099541781745263 ], [ -77.546962511096851, 24.099511372274755 ], [ -77.546961177997019, 24.099488334742581 ], [ -77.546961835563778, 24.099444475350211 ], [ -77.546965351569824, 24.099396281334393 ], [ -77.546971707150448, 24.099346634230169 ], [ -77.546986383825555, 24.099257360580001 ], [ -77.546992445657082, 24.099226617294629 ], [ -77.547009292661926, 24.09916440252568 ], [ -77.547070701494746, 24.098976828955475 ], [ -77.547130688294473, 24.098803987600625 ], [ -77.547180436096596, 24.098672899868482 ], [ -77.547227469189934, 24.098555088161355 ], [ -77.547247502519056, 24.098490595043511 ], [ -77.547263351495616, 24.098422509372632 ], [ -77.547287956351283, 24.098281562923191 ], [ -77.547304899475833, 24.09817312701762 ], [ -77.54731188208055, 24.09811458380883 ], [ -77.54731636467379, 24.098055252528884 ], [ -77.547318635614843, 24.097995839218875 ], [ -77.547318383188255, 24.097839710326184 ], [ -77.547320410685842, 24.097780244434492 ], [ -77.54732447646083, 24.097720854777766 ], [ -77.547330812278517, 24.097662280201181 ], [ -77.5473696724994, 24.09738161387871 ], [ -77.547379864784617, 24.097325436094764 ], [ -77.547391908497644, 24.097273612647417 ], [ -77.54740648366311, 24.097227828704913 ], [ -77.547428023467006, 24.097179878224352 ], [ -77.547457547497146, 24.097124230092167 ], [ -77.547464013570519, 24.097105799067251 ], [ -77.547467010350303, 24.097086036308482 ], [ -77.547466555802814, 24.09706541907363 ], [ -77.547463712634936, 24.097043495524829 ], [ -77.547458668594615, 24.097020860184539 ], [ -77.547451613226343, 24.096998110035688 ], [ -77.54743889937015, 24.096962999536075 ], [ -77.54742355255182, 24.096928589334578 ], [ -77.547387274987372, 24.0968633786891 ], [ -77.547375993045762, 24.096838607950698 ], [ -77.547361521186545, 24.096789392832839 ], [ -77.54735312553187, 24.096733914278037 ], [ -77.547350207803817, 24.096674804587902 ], [ -77.547352573067954, 24.096614524681211 ], [ -77.547360439614891, 24.096555519900512 ], [ -77.547374457824944, 24.096500382379112 ], [ -77.547395746998845, 24.096452022428455 ], [ -77.547411791808116, 24.096428142989328 ], [ -77.547429670977252, 24.096406952443555 ], [ -77.547448648785902, 24.0963879440101 ], [ -77.547468850998342, 24.096371901644513 ], [ -77.54749040966685, 24.096359624063176 ], [ -77.547513071466526, 24.096351046484241 ], [ -77.547544613112791, 24.096346543665085 ], [ -77.5475761655388, 24.096349797569026 ], [ -77.547605461396884, 24.096360593345942 ], [ -77.54763818612436, 24.096385262492301 ], [ -77.547692235958351, 24.096447256381389 ], [ -77.547719320164205, 24.096471569615641 ], [ -77.547741550772542, 24.096481927483417 ], [ -77.54776330527379, 24.096484587678283 ], [ -77.547781907586668, 24.096479323050911 ], [ -77.547792426858649, 24.096470050909975 ], [ -77.547800125420608, 24.096456985283833 ], [ -77.547809249608974, 24.096430465330595 ], [ -77.547828669388778, 24.096341054342112 ], [ -77.547839190457381, 24.096305692731185 ], [ -77.547853112547671, 24.096270428694922 ], [ -77.547906960260761, 24.096167373812758 ], [ -77.547919365994815, 24.096140282233343 ], [ -77.547933928583902, 24.096096502878485 ], [ -77.547943698660902, 24.096050423301545 ], [ -77.547959851268033, 24.095920484086367 ], [ -77.547963014236146, 24.095874038708558 ], [ -77.547963679887772, 24.095826150044246 ], [ -77.547961811391971, 24.095777721775772 ], [ -77.547948848702433, 24.095623919915838 ], [ -77.547935172750542, 24.095508863204763 ], [ -77.547925340689773, 24.09545609105405 ], [ -77.547912362728837, 24.095408895169214 ], [ -77.54789515549956, 24.095369474090472 ], [ -77.547881774195119, 24.095349478991775 ], [ -77.547867081350319, 24.095333149481199 ], [ -77.547851382392423, 24.095321045649385 ], [ -77.547835185767866, 24.095312526223946 ], [ -77.547773607153431, 24.095290665518462 ], [ -77.547761275081186, 24.095282751282841 ], [ -77.547751564292994, 24.0952720308591 ], [ -77.547745541089014, 24.095258221331566 ], [ -77.547743345606477, 24.095242077959139 ], [ -77.547744579891642, 24.095224345340498 ], [ -77.547753464229785, 24.095174114388257 ], [ -77.547785958090245, 24.09502357968211 ], [ -77.547827096438709, 24.094864470400797 ], [ -77.547842410917653, 24.094813557029173 ], [ -77.547860296374964, 24.094765132478148 ], [ -77.547881848755267, 24.094721369874314 ], [ -77.547943517201219, 24.094632430040249 ], [ -77.547956035224701, 24.094609270263668 ], [ -77.547970304963002, 24.094569295406693 ], [ -77.547979124622458, 24.094524503575826 ], [ -77.547982887665185, 24.094476618507318 ], [ -77.547981719855315, 24.094427211410682 ], [ -77.547972585785502, 24.094348520346159 ], [ -77.54796516300631, 24.094302057997503 ], [ -77.547955766628462, 24.09425564155482 ], [ -77.547934420860656, 24.09416917056863 ], [ -77.547871938541078, 24.093947090936506 ], [ -77.54783531602358, 24.093832182789104 ], [ -77.547821926634242, 24.093794232399596 ], [ -77.547801763049378, 24.09374357281909 ], [ -77.54778775921244, 24.093696704324714 ], [ -77.547784673499422, 24.093674335730491 ], [ -77.547785948208784, 24.093609991045504 ], [ -77.547784835196182, 24.093586965572907 ], [ -77.547773937733481, 24.093495304010457 ], [ -77.547765882540304, 24.093322213343541 ], [ -77.547760937314663, 24.093274429512526 ], [ -77.547751444817052, 24.093227140157726 ], [ -77.547698531351898, 24.093059114622701 ], [ -77.54767880704317, 24.093006472672137 ], [ -77.547610083229003, 24.092857663282636 ], [ -77.547598121262681, 24.092827280927505 ], [ -77.547583506571328, 24.09277291183713 ], [ -77.547575074085742, 24.092715306768834 ], [ -77.54757173594615, 24.092656127979701 ], [ -77.547569675210866, 24.092488298510535 ], [ -77.547566095424472, 24.092420487650447 ], [ -77.547559613181406, 24.092353377087278 ], [ -77.54753497957968, 24.092182608115987 ], [ -77.547522409453919, 24.092117427037341 ], [ -77.547505869672918, 24.09205528262159 ], [ -77.54748165199112, 24.091988781174837 ], [ -77.547453064903863, 24.091925840414007 ], [ -77.547420952827409, 24.091865570573912 ], [ -77.547385650833363, 24.09180848009872 ], [ -77.54735159480262, 24.091750013527864 ], [ -77.547328426353104, 24.091703900405118 ], [ -77.547278953435466, 24.091592550975623 ], [ -77.547253514943279, 24.091526574131688 ], [ -77.547234792256106, 24.091469247326067 ], [ -77.547200349051494, 24.09135205306637 ], [ -77.547152340387782, 24.091203067080784 ], [ -77.547130706260788, 24.091148617754456 ], [ -77.547100066523072, 24.091087838285361 ], [ -77.547015915940534, 24.090944806527098 ], [ -77.546992513929041, 24.09090114840755 ], [ -77.546940790731625, 24.090800694574721 ], [ -77.546917300685223, 24.090740974473754 ], [ -77.54690786837476, 24.090710548973 ], [ -77.546900590224354, 24.090679032768474 ], [ -77.546895485098545, 24.09064678833164 ], [ -77.546880751829605, 24.090497466935918 ], [ -77.546872868214692, 24.090437327635779 ], [ -77.546847639029906, 24.090278162634725 ], [ -77.546836142390902, 24.090216633203674 ], [ -77.546806750413126, 24.090083158463457 ], [ -77.546794781260289, 24.090035226630892 ], [ -77.54676816148347, 24.089941552518283 ], [ -77.546750095464787, 24.089883925675242 ], [ -77.546728776646447, 24.089829049347816 ], [ -77.546697862922585, 24.089768015028543 ], [ -77.546663230173451, 24.08971018144755 ], [ -77.546625261979656, 24.089655234518972 ], [ -77.546542991570973, 24.089551106572166 ], [ -77.546512962687657, 24.089503733015118 ], [ -77.546458020826563, 24.089404569713938 ], [ -77.546414041106885, 24.089332878238057 ], [ -77.546385418086984, 24.089291666692372 ], [ -77.546328653544194, 24.089224180533201 ], [ -77.54630137979386, 24.089189480404535 ], [ -77.546282996669859, 24.089161411451858 ], [ -77.546266625772134, 24.089131840922072 ], [ -77.546245697720991, 24.089080820301923 ], [ -77.546229744539829, 24.089025480283674 ], [ -77.546217164532564, 24.088967210903263 ], [ -77.54618612594291, 24.088786588202883 ], [ -77.546173876515667, 24.088728037424694 ], [ -77.546136055645562, 24.088585014513722 ], [ -77.546092390336241, 24.08844731134662 ], [ -77.546061812582295, 24.088342014613744 ], [ -77.546048367497448, 24.088283233187678 ], [ -77.546016489881296, 24.088099504666133 ], [ -77.546004751595433, 24.088039212524166 ], [ -77.54596306168142, 24.08785556402168 ], [ -77.545923088447921, 24.087669737912336 ], [ -77.545891673464126, 24.087535334634762 ], [ -77.545834193862333, 24.087305131954405 ], [ -77.545785900432676, 24.087125335207826 ], [ -77.545741179602885, 24.086940953049673 ], [ -77.545693144888006, 24.086759355677838 ], [ -77.545649769734496, 24.086575144393816 ], [ -77.54563950468571, 24.086525853985137 ], [ -77.545622031555169, 24.086427427289674 ], [ -77.545616146691714, 24.086391589745102 ], [ -77.545609433581632, 24.086334990531665 ], [ -77.54560589242277, 24.086279361472407 ], [ -77.545605097413727, 24.086226429701433 ], [ -77.545606798822845, 24.086178172486296 ], [ -77.545610912208559, 24.086136919741204 ], [ -77.545617508537703, 24.086105474580879 ], [ -77.545626817778995, 24.086087238795461 ], [ -77.545634018674306, 24.086084117487442 ], [ -77.545645000578659, 24.086091162163076 ], [ -77.545656282520312, 24.086108184197307 ], [ -77.545664022404793, 24.086122873859992 ], [ -77.54569565657755, 24.086209765247006 ], [ -77.545705464383801, 24.086221605046852 ], [ -77.545711281873622, 24.086219608100688 ], [ -77.545718814247266, 24.086202762403083 ], [ -77.545724064900099, 24.086172290719222 ], [ -77.545727207206923, 24.086131638286648 ], [ -77.545728282490344, 24.086083628706675 ], [ -77.545727202715383, 24.086030587781174 ], [ -77.545723744201553, 24.085974461607606 ], [ -77.545717543131119, 24.085916916631177 ], [ -77.545693817726146, 24.085752120102008 ], [ -77.545665566608776, 24.085582584793368 ], [ -77.545640373356605, 24.08540769970724 ], [ -77.545632386435443, 24.085333784326401 ], [ -77.545627370242897, 24.085257562761367 ], [ -77.545624700449892, 24.085179820671193 ], [ -77.545623945865017, 24.085101259245828 ], [ -77.545627317242293, 24.084944424108883 ], [ -77.545631415356624, 24.084867681542612 ], [ -77.545637377475174, 24.084793322170764 ], [ -77.545645610534748, 24.08472260486722 ], [ -77.545675527128637, 24.084512732634025 ], [ -77.545684640537232, 24.084474041383654 ], [ -77.545697605921703, 24.084439595023859 ], [ -77.5457150862388, 24.084411255213816 ], [ -77.545731289151604, 24.084395127697277 ], [ -77.545749681258727, 24.084383342676283 ], [ -77.545777073586649, 24.084375618033189 ], [ -77.545805986762403, 24.084376912171333 ], [ -77.545833954910478, 24.084387211148492 ], [ -77.545853192332288, 24.084400924254176 ], [ -77.545870668157846, 24.084418992156412 ], [ -77.545892887088044, 24.084454354587294 ], [ -77.545911040243325, 24.084497396538456 ], [ -77.545926546961766, 24.084545753619917 ], [ -77.545940684647718, 24.08459744853679 ], [ -77.545949609410044, 24.084632965099395 ], [ -77.545962607133887, 24.084698970095637 ], [ -77.54597286050452, 24.084768313727253 ], [ -77.545995445947412, 24.084951406518822 ], [ -77.546002310872822, 24.08502673024692 ], [ -77.546006509598456, 24.085104250180589 ], [ -77.546010014824702, 24.085263018114638 ], [ -77.546013079876445, 24.085581916407641 ], [ -77.546015828721224, 24.085659600026478 ], [ -77.546028200319299, 24.08584850689866 ], [ -77.546031081216441, 24.085921484604984 ], [ -77.546036074951061, 24.086219431778936 ], [ -77.546040723732659, 24.086367067932919 ], [ -77.546045318615356, 24.08643912437201 ], [ -77.546052306609951, 24.086509266658986 ], [ -77.546081235057059, 24.086731663437899 ], [ -77.546090812894604, 24.086791187763676 ], [ -77.546121164273117, 24.086960483645754 ], [ -77.546133793687702, 24.087024360934624 ], [ -77.546165990205779, 24.087171789497472 ], [ -77.546178576501248, 24.087223920465725 ], [ -77.546192890256975, 24.087271930438654 ], [ -77.546239467006146, 24.087398002662233 ], [ -77.54624964401998, 24.087421772251574 ], [ -77.546259253298558, 24.087433179750285 ], [ -77.546265400470077, 24.087432017677994 ], [ -77.546272896012795, 24.087415428828969 ], [ -77.546277216909317, 24.087384454716084 ], [ -77.546278521263133, 24.087343147412948 ], [ -77.546276774938235, 24.087294821730428 ], [ -77.546271751559161, 24.087242221696954 ], [ -77.546232801506704, 24.086958041398795 ], [ -77.546221545616234, 24.086826460149513 ], [ -77.546207388167304, 24.086625900299541 ], [ -77.546190738791864, 24.08645165713483 ], [ -77.546183263910407, 24.086313167659412 ], [ -77.54617519164924, 24.086076494639492 ], [ -77.546178097699183, 24.085879904556034 ], [ -77.546177437437464, 24.085816404764515 ], [ -77.546174586184733, 24.085746629505046 ], [ -77.546139437802637, 24.085333591601309 ], [ -77.546131377219567, 24.085250016954326 ], [ -77.546115142865744, 24.085118078024696 ], [ -77.546113242928641, 24.085090050831219 ] ], [ [ -77.54606915720764, 24.084901815329939 ], [ -77.546065028550984, 24.084900747543031 ], [ -77.546057910300718, 24.084878714478513 ], [ -77.546051375057004, 24.084834075081226 ], [ -77.546045310530545, 24.084770950382129 ], [ -77.5460258179872, 24.08451448275305 ], [ -77.546003793991332, 24.08428783968024 ], [ -77.545984763182062, 24.08401333839258 ], [ -77.545978792978659, 24.083949340686281 ], [ -77.545971002788562, 24.083886924951912 ], [ -77.545922785715646, 24.083550682684617 ], [ -77.545885950297446, 24.083178866811537 ], [ -77.545881798284199, 24.08310420383529 ], [ -77.545873844600649, 24.082798032608114 ], [ -77.545867110829263, 24.082647341482222 ], [ -77.545850199145761, 24.082469540947407 ], [ -77.545833758179413, 24.082272497542874 ], [ -77.545815855654141, 24.08209835425664 ], [ -77.545794679667935, 24.081739379043999 ], [ -77.545776782532528, 24.081556425187433 ], [ -77.545760464635407, 24.081332858942019 ], [ -77.545744197942227, 24.081147915681477 ], [ -77.545738549335681, 24.081000730331112 ], [ -77.54573502254992, 24.080623558129286 ], [ -77.545729656014402, 24.080476126955702 ], [ -77.545714622708104, 24.080295982732864 ], [ -77.54569682259077, 24.080017934810094 ], [ -77.545680192978239, 24.079839750902742 ], [ -77.54566412481276, 24.079551812697549 ], [ -77.545658964889753, 24.079480820214648 ], [ -77.545623900050984, 24.079160892222902 ], [ -77.545600289630343, 24.078983533833032 ], [ -77.545584381364989, 24.078843263128668 ], [ -77.545561641411865, 24.07867175196461 ], [ -77.545540813971996, 24.078478519704088 ], [ -77.545502534961088, 24.07819943772833 ], [ -77.545479104203551, 24.078043936738652 ], [ -77.545450295232428, 24.077827068313532 ], [ -77.54544214930938, 24.077760768624014 ], [ -77.545422842717358, 24.077557410158782 ], [ -77.545415086663155, 24.077490772425158 ], [ -77.54540504619321, 24.077426118617538 ], [ -77.545377509236516, 24.077288861931166 ], [ -77.5453425611787, 24.07715070948413 ], [ -77.545277921105793, 24.07692095400602 ], [ -77.545191237274139, 24.076644808922172 ], [ -77.545175409857137, 24.076585185566305 ], [ -77.545124788892551, 24.076365259562508 ], [ -77.545051770232988, 24.076018288656229 ], [ -77.545039823538033, 24.075955291663167 ], [ -77.545011739507316, 24.075789158577493 ], [ -77.54500265214989, 24.075726611744177 ], [ -77.544981714217286, 24.075533475105903 ], [ -77.544960820302094, 24.075358153923258 ], [ -77.544941407708791, 24.075137267033984 ], [ -77.544920424860337, 24.074966415252998 ], [ -77.544888856264649, 24.074680350865876 ], [ -77.54488410238018, 24.074612919347743 ], [ -77.544870018593144, 24.074338858284655 ], [ -77.544864550548041, 24.07427201957529 ], [ -77.544850952749556, 24.074168420450089 ], [ -77.544832697186351, 24.074052070740212 ], [ -77.544822219236906, 24.073995056809501 ], [ -77.544809587127332, 24.073939906301579 ], [ -77.54477875425188, 24.073834669828226 ], [ -77.544733385736748, 24.07369796209974 ], [ -77.544688902960516, 24.073575273596912 ], [ -77.544671207946053, 24.073531954038067 ], [ -77.54465674057839, 24.073500787928765 ], [ -77.544611318164371, 24.073409116103036 ], [ -77.544589049826797, 24.073355659842061 ], [ -77.544548972388696, 24.073246105440294 ], [ -77.544515525415733, 24.073161896292682 ], [ -77.544493417876581, 24.073111609123249 ], [ -77.544467587718913, 24.073066148724333 ], [ -77.544449545056438, 24.073042284612519 ], [ -77.544429820747723, 24.073020562820954 ], [ -77.544408507319304, 24.07300149596664 ], [ -77.544328796210877, 24.072944082138246 ], [ -77.54429579749727, 24.072915623320725 ], [ -77.544269733777597, 24.072885550370145 ], [ -77.544246071254676, 24.072852120388717 ], [ -77.544159015520506, 24.072715665050858 ], [ -77.544127330143795, 24.072676746329037 ], [ -77.544098571478287, 24.072648316979002 ], [ -77.544065973413254, 24.072620514246342 ], [ -77.544011215706789, 24.072581666031834 ], [ -77.543952551227193, 24.072545404680351 ], [ -77.543873556974361, 24.072500884017149 ], [ -77.543834904264301, 24.072481065792473 ], [ -77.54370473298971, 24.072422630595387 ], [ -77.54365546039655, 24.072398010149193 ] ], [ [ -77.543653564052775, 24.072393207119642 ], [ -77.543654214433062, 24.072388896202998 ], [ -77.54366160936452, 24.072383446863416 ], [ -77.543689162490935, 24.07237214629065 ], [ -77.543730549672674, 24.07235810218209 ], [ -77.543778858373713, 24.072339503557664 ], [ -77.543808426421279, 24.072324932063466 ], [ -77.543837037763097, 24.072306413812836 ], [ -77.543880412916565, 24.072264885121118 ], [ -77.543916796482208, 24.072212522517638 ], [ -77.54394589471093, 24.072153582780665 ], [ -77.543959532035203, 24.072117021938318 ], [ -77.543971647613446, 24.072066834422557 ], [ -77.543976290106855, 24.072017227583181 ], [ -77.543973943707357, 24.071970155118592 ], [ -77.543969591369802, 24.071935468363691 ], [ -77.543953961582147, 24.071840225118745 ], [ -77.543943625566499, 24.071792685078989 ], [ -77.543906209836592, 24.071651433758216 ], [ -77.543824001411707, 24.07136955810001 ], [ -77.543807910788331, 24.071317573241473 ], [ -77.543789417171567, 24.071268069456966 ], [ -77.54376054262336, 24.071206837655303 ], [ -77.543744696341761, 24.071177820718113 ], [ -77.543660108279667, 24.0710460526718 ], [ -77.543610457495575, 24.070977407809487 ], [ -77.543597319634571, 24.070954253601077 ], [ -77.543586741972078, 24.07093091894486 ], [ -77.543579319192915, 24.070906817398257 ], [ -77.543558761247652, 24.070769928565472 ], [ -77.543525980824597, 24.070606043494909 ], [ -77.543491540314918, 24.070414453428214 ], [ -77.543477284949645, 24.070351168251921 ], [ -77.543467747536312, 24.070316285030767 ], [ -77.543447593832937, 24.070246840079616 ], [ -77.543354556217224, 24.069944644033281 ], [ -77.54328299013352, 24.069740685905682 ], [ -77.543220653340995, 24.069597295684751 ], [ -77.543205315505816, 24.069555000041905 ], [ -77.543167102970258, 24.069432078737769 ], [ -77.543152853893261, 24.069379522228669 ], [ -77.543131174850487, 24.069289611727633 ], [ -77.543119251511712, 24.069226954277084 ], [ -77.543091990337814, 24.069030704992276 ], [ -77.54308170732277, 24.068966183894819 ], [ -77.543068760802839, 24.068903951976171 ], [ -77.543039473927976, 24.068797357199816 ], [ -77.542997261194458, 24.068658165417141 ], [ -77.542984521287082, 24.068610458514822 ], [ -77.54295302096331, 24.068476474892108 ], [ -77.542941089539724, 24.068416340845779 ], [ -77.542910094069185, 24.068231816131465 ], [ -77.542897571554136, 24.068172224953781 ], [ -77.542870354397621, 24.068064243402279 ], [ -77.542857573167794, 24.06800489000986 ], [ -77.542824410960762, 24.067822343071295 ], [ -77.542811106911358, 24.067763453811025 ], [ -77.542730995154358, 24.067481577810899 ], [ -77.542689177679577, 24.067319795689208 ], [ -77.542673400568219, 24.067267467156668 ], [ -77.542590191420075, 24.067032331349697 ], [ -77.542557399318923, 24.066928997050905 ], [ -77.54254121976237, 24.066866011177481 ], [ -77.542513368395277, 24.06673612358048 ], [ -77.542498207528254, 24.066672253408623 ], [ -77.542459182915692, 24.066530554346858 ], [ -77.54242405699145, 24.066385222338948 ], [ -77.542411261388551, 24.06631709500715 ], [ -77.542380025169436, 24.066106497914088 ], [ -77.542366664526227, 24.066038860931872 ], [ -77.542345458895639, 24.065954808637937 ], [ -77.542332216830061, 24.065907615015078 ], [ -77.542317209574918, 24.065861956027621 ], [ -77.542304581058644, 24.065829150872563 ], [ -77.542277307308311, 24.065764802053987 ], [ -77.542247635056157, 24.065703029552822 ], [ -77.542226881278168, 24.065655027908214 ], [ -77.5421943245356, 24.065573501680937 ], [ -77.542176252228757, 24.065523168884319 ], [ -77.542147755871284, 24.06543811474684 ], [ -77.542097095380839, 24.065262011204162 ], [ -77.542064733572744, 24.065158549163009 ], [ -77.542049797284506, 24.065101088351621 ], [ -77.542010229191177, 24.06492414852454 ], [ -77.541994186178528, 24.064867648106397 ], [ -77.541956209899908, 24.064754388820425 ], [ -77.541918206671795, 24.064626228969967 ], [ -77.541859438885922, 24.06441337918146 ], [ -77.541840912031475, 24.064341667989851 ], [ -77.541828389516368, 24.064282102073076 ], [ -77.541798655280544, 24.064096585480591 ], [ -77.541787563781682, 24.064035768579519 ], [ -77.541753480801503, 24.063874798255252 ], [ -77.541738234594519, 24.063814642366058 ], [ -77.541711768429607, 24.06372776779267 ], [ -77.541694510894672, 24.06367668538806 ], [ -77.541656885857321, 24.063577696509963 ], [ -77.541639287860903, 24.063526888828083 ], [ -77.541611735632813, 24.063440893364373 ], [ -77.541596922413774, 24.063387643752673 ], [ -77.541575134674886, 24.063296602852088 ], [ -77.541563520356576, 24.063231108517186 ], [ -77.54155492078435, 24.063162993454714 ], [ -77.541535917822841, 24.062952861187419 ], [ -77.541528437551435, 24.062883926547141 ], [ -77.541518645914863, 24.062817120420615 ], [ -77.541492737603747, 24.06267950441492 ], [ -77.541441389003793, 24.062453113120363 ], [ -77.541430847273944, 24.062400022227887 ], [ -77.541416934166818, 24.062311668598873 ], [ -77.541412403962852, 24.062257699975824 ], [ -77.541411642191505, 24.062202946346204 ], [ -77.541416078072345, 24.062033615316484 ], [ -77.541414373968266, 24.061895532564684 ], [ -77.541410239022994, 24.061827060801633 ], [ -77.541402834210146, 24.061760400950931 ], [ -77.54139104022876, 24.061696792425092 ], [ -77.541357056063219, 24.061567162897926 ], [ -77.541327611983178, 24.061446469147374 ], [ -77.541292721417562, 24.061315529411473 ], [ -77.541277909096806, 24.061265878221679 ], [ -77.541264119058866, 24.061226688621041 ], [ -77.541232294443333, 24.061143126972013 ], [ -77.541214627276645, 24.061100645623601 ], [ -77.541182790084662, 24.061025490760255 ], [ -77.541149549724167, 24.060953902355049 ], [ -77.541113925234995, 24.06089102674467 ], [ -77.541075611189797, 24.060841424606426 ], [ -77.541053124561586, 24.060820370904118 ], [ -77.541031138294997, 24.060804412676102 ], [ -77.541004696384633, 24.060791573909057 ], [ -77.540983737790754, 24.060787022265622 ], [ -77.540971007764611, 24.060790184382391 ] ], [ [ -77.54096854009272, 24.060783717423107 ], [ -77.540971032917653, 24.060775773168206 ], [ -77.540983440448372, 24.060758787143957 ], [ -77.54102758366146, 24.060708369611941 ], [ -77.541053850400345, 24.060672883335169 ], [ -77.541085379470204, 24.060613616752505 ], [ -77.541110451449754, 24.060542446452811 ], [ -77.541127772765094, 24.060463640259467 ], [ -77.541136691239217, 24.060382123857806 ], [ -77.541138136628547, 24.060336326739773 ], [ -77.541137210465465, 24.060257444955269 ], [ -77.5411323182404, 24.060184526467872 ], [ -77.541124791256649, 24.06011557803636 ], [ -77.541115142452156, 24.060047645060134 ], [ -77.541036574899096, 24.059575261421955 ], [ -77.541023351698129, 24.05950926318118 ], [ -77.540942150284664, 24.059182500066797 ], [ -77.540930048181153, 24.059126865790937 ], [ -77.54090867007406, 24.059013584211847 ], [ -77.540864652625089, 24.058799505361886 ], [ -77.540851560578147, 24.058740560282754 ], [ -77.540818917597349, 24.058607257026651 ], [ -77.54081013566713, 24.058563955381107 ], [ -77.540787468477561, 24.058423211192334 ], [ -77.540767055161055, 24.058340699315952 ], [ -77.540749709591225, 24.058255797911116 ], [ -77.540732257121903, 24.058198102689499 ], [ -77.540678218965951, 24.058044975954296 ], [ -77.540664596912976, 24.058000651227918 ], [ -77.540629037102491, 24.057874214607423 ], [ -77.540583144869544, 24.057695298595235 ], [ -77.540542072098148, 24.057555204759659 ], [ -77.540495151294238, 24.057375255563272 ], [ -77.540454401916307, 24.057234593740112 ], [ -77.540409026214689, 24.057053430888821 ], [ -77.540383126886724, 24.056958579357051 ], [ -77.540366545783215, 24.056899498084832 ], [ -77.540347698230235, 24.056842392041258 ], [ -77.540280416212042, 24.056681149380175 ], [ -77.540263843193401, 24.05663675855957 ], [ -77.540174498551863, 24.056376461325854 ], [ -77.54014175855302, 24.056294833229103 ], [ -77.540120522379695, 24.05624708727753 ], [ -77.540105138730439, 24.056216571562885 ], [ -77.540040331570935, 24.05609694900555 ], [ -77.539994771714646, 24.056004735653701 ], [ -77.539939922380029, 24.055877571105864 ], [ -77.539896470869735, 24.055771334640415 ], [ -77.539872575683191, 24.055721264595164 ], [ -77.539824710749897, 24.055639237417633 ], [ -77.539810637742647, 24.055611291548452 ], [ -77.539798359569346, 24.055582834628122 ], [ -77.539784357529015, 24.055537867578888 ], [ -77.539775245018774, 24.055491445305993 ], [ -77.539759896403822, 24.055373981098121 ], [ -77.539734458809946, 24.05523457624103 ], [ -77.539728169704631, 24.055184921057958 ], [ -77.539720549296092, 24.055055196360669 ], [ -77.539716037956737, 24.05500863610273 ], [ -77.539702677313485, 24.054927915209564 ], [ -77.539679702900088, 24.054823407974787 ], [ -77.539646003500494, 24.054695958431754 ], [ -77.539632401210497, 24.054649981278924 ], [ -77.539604309993265, 24.054565837033724 ], [ -77.539561063298848, 24.054451715538836 ], [ -77.53954433127835, 24.054401468613367 ], [ -77.539501141177794, 24.054248421840015 ], [ -77.539464627356466, 24.054132922768783 ], [ -77.53945071065607, 24.054094265009521 ], [ -77.53941765804349, 24.054014108732865 ], [ -77.539403308355176, 24.053969392968416 ], [ -77.539318634953105, 24.053625562336158 ], [ -77.539303067149234, 24.053573803256224 ], [ -77.53927918903068, 24.053507586187777 ], [ -77.539224466358505, 24.053335369314027 ], [ -77.539189141008293, 24.053234353671247 ], [ -77.539174955711616, 24.053187896112178 ], [ -77.53913985314361, 24.053056968458201 ], [ -77.539125653473903, 24.052995822301515 ], [ -77.539091495035223, 24.052834733949439 ], [ -77.539053936473195, 24.052647054041959 ], [ -77.539018746768576, 24.052486998851347 ], [ -77.539003741310054, 24.052426634185483 ], [ -77.53897990451398, 24.052344837872759 ], [ -77.5389654883503, 24.05229865151702 ], [ -77.538949468693843, 24.052253861326356 ], [ -77.538880063058343, 24.052094761317548 ], [ -77.538863007644352, 24.052050878329197 ], [ -77.538818978517355, 24.051927952561254 ], [ -77.538740929292175, 24.051702519303902 ], [ -77.538698682422705, 24.051592975124155 ], [ -77.538679391101994, 24.051536366296279 ], [ -77.538591578986342, 24.051246296522006 ], [ -77.538551117967629, 24.051105606653898 ], [ -77.538505076614371, 24.050925740292225 ], [ -77.538460602821289, 24.050744265835807 ], [ -77.538422122587775, 24.050616530049798 ], [ -77.538406246661722, 24.050571628527788 ], [ -77.538379422967353, 24.050507137524551 ], [ -77.538320627333732, 24.050382631142739 ], [ -77.538294194406433, 24.050317799607352 ], [ -77.538276923396822, 24.050266772569714 ], [ -77.538230968281823, 24.050108597893725 ], [ -77.538139606024174, 24.049836288401231 ], [ -77.538101209333973, 24.049737827807707 ], [ -77.537975261039549, 24.049429762354716 ], [ -77.537912518208543, 24.049286638196097 ], [ -77.537886212842054, 24.049221429572292 ], [ -77.537858706428082, 24.049142823153243 ], [ -77.537821949163302, 24.049013516465397 ], [ -77.537770687699904, 24.048793719571425 ], [ -77.537746289456805, 24.048704989883497 ], [ -77.537700098983166, 24.04854724888505 ], [ -77.537686640423615, 24.048488400820304 ], [ -77.537675727689546, 24.048427339444057 ], [ -77.537604071774254, 24.047971178034405 ], [ -77.537575152310325, 24.047809138338224 ], [ -77.537530201511828, 24.047572999688338 ], [ -77.537522970972077, 24.047521394854762 ], [ -77.537509986722995, 24.047386134899327 ], [ -77.537501539864365, 24.047335588241822 ], [ -77.537486225385408, 24.047268998798231 ], [ -77.537442521448526, 24.047097642307698 ], [ -77.537430461565833, 24.047036345649413 ], [ -77.537403009050749, 24.046842198627676 ], [ -77.537393001818472, 24.046777722978586 ], [ -77.537380640101858, 24.046715165284013 ], [ -77.537330347920673, 24.046517032492453 ], [ -77.537308880880317, 24.046425708907833 ], [ -77.537297079712417, 24.046365420966602 ], [ -77.53726857347354, 24.04617860282131 ], [ -77.537222031758674, 24.045928733291234 ], [ -77.537211260060076, 24.045858805076737 ], [ -77.537186457575118, 24.04564253197357 ], [ -77.537176490766996, 24.045571927625776 ], [ -77.5371381866033, 24.045341270625521 ], [ -77.537095018960642, 24.045114862695918 ], [ -77.53705079130593, 24.044911399983707 ], [ -77.537036332023149, 24.044857928569318 ], [ -77.537014409536937, 24.044789423106653 ], [ -77.536998046724037, 24.044730268963885 ], [ -77.53696041539844, 24.04457244432734 ], [ -77.536913420932692, 24.044349136856692 ], [ -77.536876181272589, 24.044205648533438 ], [ -77.536826881729795, 24.044028864483629 ], [ -77.536795717375938, 24.043909201036588 ], [ -77.536778999728526, 24.043850355768576 ], [ -77.536750960613546, 24.043764909077073 ], [ -77.536719833988968, 24.043682148230136 ], [ -77.536699714421559, 24.043633598544126 ], [ -77.536678155752995, 24.043586299909578 ], [ -77.536646721904617, 24.043526063139236 ], [ -77.536602010058004, 24.043433098319021 ], [ -77.536548625875568, 24.043303644776884 ], [ -77.536499143076469, 24.043170800488948 ], [ -77.536463875218431, 24.04306962589963 ], [ -77.536412859893417, 24.042893841967654 ], [ -77.536368333099759, 24.042756690266359 ], [ -77.536270281986489, 24.042490207113548 ], [ -77.536228806769827, 24.04239467457052 ], [ -77.536188977266733, 24.042297465095935 ], [ -77.536105635167942, 24.042062222014032 ], [ -77.536090114076472, 24.042009675626534 ], [ -77.536048240906126, 24.041847958202524 ], [ -77.536009062681671, 24.041720832957605 ], [ -77.535992898396415, 24.04167618264459 ], [ -77.535965437796506, 24.041612247497525 ], [ -77.535911952104485, 24.041497558266453 ], [ -77.535890443741636, 24.041457553728939 ], [ -77.535836718199462, 24.041372915988617 ], [ -77.535812160954507, 24.041328224535231 ], [ -77.535774335592848, 24.041251286877124 ], [ -77.535753285370774, 24.041203546816362 ], [ -77.535719314680009, 24.041123257792922 ], [ -77.535680263117982, 24.041025372995414 ], [ -77.535632733256307, 24.040890586126597 ], [ -77.53554953488792, 24.040669895868625 ], [ -77.535532041994415, 24.040626401123383 ], [ -77.535503797165248, 24.04056339413858 ], [ -77.535419288154898, 24.040350934334967 ], [ -77.535398853278792, 24.040302659042304 ], [ -77.535355017289561, 24.040209179141883 ], [ -77.535312747962166, 24.040114092017987 ], [ -77.535260049194378, 24.039983799146299 ], [ -77.5352172804037, 24.039889391964941 ], [ -77.535180669564241, 24.039803815476574 ], [ -77.53516155880493, 24.03976172660041 ], [ -77.535130916372253, 24.039700803823944 ], [ -77.53507408715079, 24.039574347540555 ], [ -77.535033510249391, 24.039477790610505 ], [ -77.53498313811815, 24.039345474805526 ], [ -77.534956154523641, 24.039281125836482 ], [ -77.534829792105882, 24.038995477423661 ], [ -77.53481693990912, 24.038962869682603 ], [ -77.534798157933153, 24.038905820472962 ], [ -77.534756073658713, 24.038751871653773 ], [ -77.534715264991974, 24.038589231273729 ], [ -77.534699292946271, 24.038537077260276 ], [ -77.53466083696722, 24.038438675276637 ], [ -77.534557086043492, 24.038221423237694 ], [ -77.534472405454935, 24.038031127837719 ], [ -77.534410304021023, 24.037909747427694 ], [ -77.534387692526991, 24.037856026975184 ], [ -77.534303055057549, 24.037621669187306 ], [ -77.534285586418562, 24.037578153720027 ], [ -77.534211732325772, 24.037422964486019 ], [ -77.53415700785699, 24.037294434415298 ], [ -77.534113203308763, 24.037200682409342 ], [ -77.534082471942924, 24.037139591874112 ], [ -77.534018624184114, 24.037019483906626 ], [ -77.533925684484785, 24.036836615600194 ], [ -77.533823127422053, 24.036618080999606 ], [ -77.533794973322728, 24.036554751265058 ], [ -77.533774134204762, 24.036499490319567 ], [ -77.533735326086202, 24.036386474281667 ], [ -77.533698203207109, 24.036287160804605 ], [ -77.533683095340635, 24.036241593833847 ], [ -77.533644037490419, 24.036114366230713 ], [ -77.533603071618487, 24.035974121682397 ], [ -77.533554501507723, 24.035796217090557 ], [ -77.533528160208647, 24.035716635174389 ], [ -77.533512198044349, 24.035671810485212 ], [ -77.533494445537727, 24.035628542125611 ], [ -77.533449594452208, 24.035535946523733 ], [ -77.533435318425717, 24.035504578387616 ], [ -77.533417914465403, 24.035461006414259 ], [ -77.533374682144057, 24.035337408424667 ], [ -77.533319509415875, 24.035165242661687 ], [ -77.533281169319579, 24.035066986592732 ], [ -77.533244930382722, 24.034966659686614 ], [ -77.53322729196212, 24.03490861762398 ], [ -77.533145977360903, 24.034612919054609 ], [ -77.533111000556985, 24.034467468867874 ], [ -77.533098124105706, 24.034399416485165 ], [ -77.533066044368624, 24.034189567772593 ], [ -77.533052230076137, 24.034122330754219 ], [ -77.53303361069527, 24.034050710939276 ], [ -77.532973695760759, 24.033839135459999 ], [ -77.53292741365901, 24.033659489405718 ], [ -77.532883770807558, 24.033477547514064 ], [ -77.532842126707621, 24.033293622362873 ], [ -77.532817370935049, 24.033197987809338 ], [ -77.532801472551085, 24.033138433696489 ], [ -77.532783416413878, 24.033080754263175 ], [ -77.532743300348287, 24.032969368716898 ], [ -77.532687523952276, 24.032790637880964 ], [ -77.532661849203123, 24.032703140108602 ], [ -77.532619691266859, 24.032541675151489 ], [ -77.532603924935287, 24.03248934310788 ], [ -77.532567783016475, 24.032389177457496 ], [ -77.532521229623526, 24.032253793267525 ], [ -77.532488953155337, 24.03215002157043 ], [ -77.532475299661343, 24.032095852386366 ], [ -77.532463492205252, 24.032040080025254 ], [ -77.532422314330915, 24.031833983473604 ], [ -77.532401526416947, 24.03171997961288 ], [ -77.532389718960857, 24.031664205447687 ], [ -77.532367765033612, 24.031573473513419 ], [ -77.532307697385548, 24.031339773754048 ], [ -77.532272125896881, 24.031209517108344 ], [ -77.532215931784307, 24.031024057743686 ], [ -77.532168556432865, 24.030845362763255 ], [ -77.532127076724606, 24.030661542144557 ], [ -77.532116041819663, 24.030605098027408 ], [ -77.532096595988705, 24.030489926386135 ], [ -77.532042856971742, 24.030195694474497 ], [ -77.532027779648075, 24.030131758536481 ], [ -77.531981997907906, 24.029973934834331 ], [ -77.531959194174419, 24.029883942583009 ], [ -77.531945754479437, 24.029818582168655 ], [ -77.531895710233272, 24.029510131728184 ], [ -77.531875592462484, 24.029373531858511 ], [ -77.531863509223584, 24.029306992996997 ], [ -77.531828402163995, 24.029146983381345 ], [ -77.531812560373965, 24.02908737898353 ], [ -77.531791135554414, 24.029018446672541 ], [ -77.531777033801148, 24.028964667531199 ], [ -77.531734918085618, 24.028759388156324 ], [ -77.531724696156019, 24.028702235959713 ], [ -77.531691666899647, 24.028489057500664 ], [ -77.531654610495863, 24.028204290894717 ], [ -77.531642344000659, 24.028135709272256 ], [ -77.531617853231054, 24.02802541805298 ], [ -77.531605676567395, 24.027956757569562 ], [ -77.531596103221389, 24.027885835823465 ], [ -77.531579625424143, 24.027741669449501 ], [ -77.531555012483693, 24.027560796463909 ], [ -77.53153780435612, 24.027417265594931 ], [ -77.531527605782657, 24.027346886707058 ], [ -77.5315146188386, 24.027278931472118 ], [ -77.531497441253748, 24.027206306039055 ], [ -77.531486312025706, 24.027146799198633 ], [ -77.531477817556379, 24.027085002373649 ], [ -77.531471130497408, 24.027021632659824 ], [ -77.531454797328905, 24.026828284893966 ], [ -77.531437873967278, 24.026660852576011 ], [ -77.53141832213511, 24.026331938255307 ], [ -77.531402961842076, 24.026163148208713 ], [ -77.531386692453921, 24.025900562408765 ], [ -77.531381345681368, 24.025836027839969 ], [ -77.531374251685563, 24.025773013601917 ], [ -77.531345114829307, 24.025556450690924 ], [ -77.53133573282453, 24.025498568475633 ], [ -77.53129742596586, 24.025289978628987 ], [ -77.531284775890015, 24.025234938474036 ], [ -77.531248102168576, 24.02510564217993 ], [ -77.531232645755765, 24.025060378928558 ], [ -77.531206878480162, 24.024995222825215 ], [ -77.531188842105877, 24.024944864275437 ], [ -77.531160990738812, 24.024859260603026 ], [ -77.531144675536623, 24.024800069386476 ], [ -77.531106695664718, 24.024642557488907 ], [ -77.531025329859531, 24.024273535399221 ], [ -77.531013884424524, 24.024213045886103 ], [ -77.530983789065871, 24.024027889035079 ], [ -77.530971425552622, 24.023968197751827 ], [ -77.530933976585032, 24.023824900815946 ], [ -77.530891861767884, 24.023685904785257 ], [ -77.530878790382189, 24.023638569268812 ], [ -77.53084521135689, 24.023506581763854 ], [ -77.530831167994052, 24.023445415795948 ], [ -77.530785804868799, 24.023235623041352 ], [ -77.53074575977007, 24.023035883591024 ], [ -77.530707704439692, 24.022805063053415 ], [ -77.530681457463757, 24.022607756559697 ], [ -77.530669884467912, 24.022544442894706 ], [ -77.530654722702565, 24.022484248771455 ], [ -77.530631567727767, 24.022416574861772 ], [ -77.530541989524281, 24.022187014336506 ], [ -77.530451581277489, 24.021913904732084 ], [ -77.530438283516318, 24.021866765486166 ], [ -77.530405134784019, 24.021734405290069 ], [ -77.530368131380826, 24.021555255136462 ], [ -77.53035446531041, 24.021496695835879 ], [ -77.530337799765277, 24.021440744105508 ], [ -77.530312330730339, 24.021375080729932 ], [ -77.530227116542434, 24.021185748284456 ], [ -77.530207486556904, 24.021136775736561 ], [ -77.530177061516525, 24.021053406259096 ], [ -77.530103318814866, 24.020809813244593 ], [ -77.530089636574758, 24.02075016067247 ], [ -77.530079444289527, 24.020687471328767 ], [ -77.530071578640914, 24.020622757730916 ], [ -77.530051960333452, 24.020425140192259 ], [ -77.530043625764208, 24.020360821133448 ], [ -77.53003276064085, 24.020298696119234 ], [ -77.529985714971119, 24.020097805834219 ], [ -77.529965841542079, 24.020005170323792 ], [ -77.52995415895181, 24.01993599929272 ], [ -77.529920243956568, 24.019648070301127 ], [ -77.529887223683346, 24.019394964703409 ], [ -77.52987611421824, 24.019325424106107 ], [ -77.529861610019665, 24.019258971121761 ], [ -77.529810775256053, 24.019085465227491 ], [ -77.529801357318632, 24.019050686234227 ], [ -77.529788074828815, 24.01899073007019 ], [ -77.529748116866671, 24.018751103703025 ], [ -77.529735424570021, 24.018698571578067 ], [ -77.529708219989956, 24.018613579146148 ], [ -77.529694336527257, 24.018558833165795 ], [ -77.529658438051854, 24.018375539810588 ], [ -77.529612542225678, 24.018157672093334 ], [ -77.529535220635935, 24.017763782202447 ], [ -77.529522369337457, 24.017708824161211 ], [ -77.529449366847587, 24.017449479458627 ], [ -77.52943142299975, 24.017391622312097 ], [ -77.529394688192838, 24.017291607363113 ], [ -77.529329564826369, 24.017128450779666 ], [ -77.529304800070591, 24.017062137793271 ], [ -77.529287818318437, 24.017010839896017 ], [ -77.529261720462827, 24.016923680112633 ], [ -77.529245849028385, 24.016860417804345 ], [ -77.529217534130623, 24.016730921080018 ], [ -77.529201464168509, 24.016667839196966 ], [ -77.529169627874836, 24.016563922808523 ], [ -77.529120920321787, 24.016386133302767 ], [ -77.529094259222504, 24.016299494143905 ], [ -77.529048718230825, 24.016163230609941 ], [ -77.528968471726515, 24.015947325182303 ], [ -77.528944892746921, 24.015880020361767 ], [ -77.528930617618755, 24.01583373145591 ], [ -77.528894897908089, 24.015703607616746 ], [ -77.528851926996495, 24.015520842730314 ], [ -77.528806597108925, 24.015340622122086 ], [ -77.52876119984775, 24.015148961081032 ], [ -77.528742046867592, 24.01508856902371 ], [ -77.528715344445772, 24.015023981435249 ], [ -77.528657382448685, 24.014898767809338 ], [ -77.528630066477518, 24.01483471266711 ], [ -77.528611155144134, 24.014785117358723 ], [ -77.528581386772274, 24.014701183321709 ], [ -77.528527178834764, 24.014528189050182 ], [ -77.528490631775753, 24.014428381116851 ], [ -77.528445212954963, 24.014291770964785 ], [ -77.528401342829767, 24.014168735216611 ], [ -77.528383821190161, 24.01412526924776 ], [ -77.528369457128733, 24.014093977942377 ], [ -77.528261350274235, 24.013880534833355 ], [ -77.528218826723602, 24.013785677680126 ], [ -77.528201922226557, 24.013741675753412 ], [ -77.528122570444268, 24.013517413722941 ], [ -77.528072696878013, 24.013384922667473 ], [ -77.528031910669142, 24.013288555305266 ], [ -77.528003452040963, 24.013225494709392 ], [ -77.527911291181013, 24.013027291403887 ], [ -77.527891670178576, 24.012985651635905 ], [ -77.527870513057024, 24.012945346100064 ], [ -77.527853215996217, 24.012916606478594 ], [ -77.527816008675458, 24.012861152382801 ], [ -77.527717246994825, 24.012727633296766 ], [ -77.527699118094091, 24.012699370378332 ], [ -77.527665767240833, 24.012640563334887 ], [ -77.527645892015158, 24.012599144175418 ], [ -77.527554741759928, 24.012385388408944 ], [ -77.52751580787718, 24.012287411153267 ], [ -77.527454989237498, 24.012120412034886 ], [ -77.527419562377645, 24.012033814313146 ], [ -77.527399453589993, 24.011992598460967 ], [ -77.527364745382386, 24.011934971082209 ], [ -77.527289303068201, 24.011825203441955 ], [ -77.527237578074093, 24.011738347860291 ], [ -77.527156798868845, 24.011588702432782 ], [ -77.527055724924637, 24.011413171667638 ], [ -77.526995512647773, 24.011289424184667 ], [ -77.526963555081522, 24.011229405320169 ], [ -77.526929583492446, 24.011171138367171 ], [ -77.526858082985711, 24.011057697153095 ], [ -77.526824089837035, 24.010999448175102 ], [ -77.526763910797854, 24.01087591692789 ], [ -77.526721066548674, 24.010781090381986 ], [ -77.526691129293539, 24.010719312769858 ], [ -77.526627474672495, 24.010598796080103 ], [ -77.526549414667542, 24.010469029642824 ], [ -77.526522183138027, 24.010426660366797 ], [ -77.526482459636156, 24.010373380570122 ], [ -77.526376842911588, 24.010245768765582 ], [ -77.526333175805604, 24.010195652256151 ], [ -77.526286256798357, 24.01014859897888 ], [ -77.52618632910449, 24.010059997695649 ], [ -77.526138030284883, 24.01001410139779 ], [ -77.526115228348004, 24.00999009755617 ], [ -77.526029027809997, 24.009888928847325 ], [ -77.525961931743112, 24.009815404892812 ], [ -77.525919166545691, 24.009764552146869 ], [ -77.525840690620768, 24.009656349161116 ], [ -77.525822049680329, 24.009628609104496 ], [ -77.52576864034512, 24.009542427385927 ], [ -77.525712080618177, 24.009459236665705 ], [ -77.525549377753933, 24.009249927397299 ], [ -77.525418842661665, 24.009088034173377 ], [ -77.525388877558726, 24.009053661132221 ], [ -77.5253675838932, 24.009033250493523 ], [ -77.525345239198884, 24.009014648441557 ], [ -77.525321398809567, 24.008998672289096 ], [ -77.52529560997435, 24.008986143452407 ], [ -77.525267773878653, 24.008976543316617 ], [ -77.525227406284742, 24.008966324451766 ], [ -77.525184037419436, 24.008958056139672 ], [ -77.525104464651577, 24.00894716274442 ], [ -77.525050930450519, 24.008944341539586 ], [ -77.524995913130951, 24.008945799736484 ], [ -77.524958676165809, 24.008948952461587 ], [ -77.524901475041787, 24.008954998603759 ], [ -77.524738244866398, 24.008977093935567 ], [ -77.524603166095474, 24.008993461514279 ], [ -77.524535538225948, 24.009002623451334 ], [ -77.524469424017653, 24.009013624339762 ], [ -77.524309017247248, 24.009046837892079 ], [ -77.524164392079797, 24.009079771613312 ], [ -77.523868769994479, 24.009152708443324 ], [ -77.523667803390737, 24.009200115760521 ], [ -77.52360729466983, 24.009213151702902 ], [ -77.52347733988924, 24.009238405452567 ], [ -77.523443086229122, 24.009243133708935 ], [ -77.523429157850629, 24.009242766903895 ], [ -77.523374472907733, 24.00924109863854 ], [ -77.523334923679016, 24.009242886710453 ], [ -77.523324848174809, 24.009244674782366 ], [ -77.523310113109204, 24.009250990885622 ], [ -77.523286535027921, 24.009274602621907 ], [ -77.523271011241519, 24.009280140801856 ], [ -77.523241897741457, 24.009282852860554 ], [ -77.523166775227494, 24.009282282548675 ], [ -77.523136344797265, 24.009283730894698 ], [ -77.52311884741215, 24.009287375146503 ], [ -77.523111655499974, 24.009290691161237 ], [ -77.523088077418763, 24.009314303710816 ], [ -77.523073357624497, 24.009320615707715 ], [ -77.523037735830201, 24.009324063836896 ], [ -77.522969180000985, 24.009322531790982 ], [ -77.522966600937821, 24.009322681959322 ], [ -77.522962669011804, 24.009327265788329 ], [ -77.522948894245246, 24.009353935037137 ], [ -77.522944634434182, 24.009358463064736 ], [ -77.522938673213972, 24.009362129470428 ], [ -77.52293210293594, 24.009364121868128 ], [ -77.522917643653159, 24.009365572675023 ], [ -77.522845260102514, 24.009365075396154 ], [ -77.522823805638581, 24.009367475628068 ], [ -77.522817822858769, 24.009369397454808 ], [ -77.52280939486478, 24.009375578154231 ], [ -77.522797029554894, 24.009396740400842 ], [ -77.522788803681806, 24.009403114758644 ], [ -77.522776375489897, 24.009406514470719 ], [ -77.522739001082442, 24.009408963116773 ], [ -77.522723729722642, 24.00941205838912 ], [ -77.522716879170275, 24.00941551636301 ], [ -77.522711341954874, 24.009420396422275 ], [ -77.522709372697477, 24.009423430548985 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 104, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 677 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.54989326705558, 24.105560690883724 ], [ -77.54988950166863, 24.105555956417547 ], [ -77.549824396268406, 24.105481604132535 ], [ -77.549782299417515, 24.105430486706496 ], [ -77.549722731232748, 24.105350080446467 ], [ -77.54968112755698, 24.105298283205396 ], [ -77.549637757793406, 24.105247995525243 ], [ -77.549570012244544, 24.105174776273373 ], [ -77.549520677667459, 24.105129681478484 ], [ -77.549494427098253, 24.105108639148742 ], [ -77.549467043753467, 24.105088338897712 ], [ -77.549350437039649, 24.105014309413566 ], [ -77.549322209278486, 24.104994762710056 ], [ -77.549267936662289, 24.10495402769175 ], [ -77.549190859414296, 24.104889303281393 ], [ -77.549117871297412, 24.104820795441263 ], [ -77.549000941190144, 24.104702852452068 ], [ -77.548955104652791, 24.104654810471811 ], [ -77.548865457278978, 24.104556696177557 ], [ -77.548771851029784, 24.104462226638447 ], [ -77.54867408468246, 24.104371323144065 ], [ -77.548597147571627, 24.104306383603003 ], [ -77.548488473880141, 24.104224953294825 ], [ -77.548377057632067, 24.104146119831654 ], [ -77.548231429046439, 24.104054260828129 ], [ -77.548010120093011, 24.103926708516806 ], [ -77.547969582717485, 24.103900489405707 ], [ -77.547921611782996, 24.103862267303096 ], [ -77.54788079323481, 24.103821268708273 ], [ -77.547795280806284, 24.103710096268983 ], [ -77.547755972326101, 24.103664329386973 ], [ -77.547734523252061, 24.103641895294132 ], [ -77.547665881184557, 24.103576147693083 ], [ -77.547533494664521, 24.103431902351492 ], [ -77.547438907454989, 24.103338846468006 ], [ -77.547392816694384, 24.1032909409147 ], [ -77.547348466868797, 24.1032413928992 ], [ -77.547264826529343, 24.103137408833653 ], [ -77.547220513534668, 24.10308762870066 ], [ -77.547173374440135, 24.103040272448986 ], [ -77.547148817195222, 24.103017570108904 ], [ -77.547046124486897, 24.102930449862029 ], [ -77.546901602625638, 24.102792053637749 ], [ -77.546800764040086, 24.102706858587077 ], [ -77.546777229976286, 24.102684660485288 ], [ -77.546755030808939, 24.102661976122057 ], [ -77.546715211187347, 24.102614093275452 ], [ -77.54669797970358, 24.10258880951142 ], [ -77.546682796378661, 24.102562896805118 ], [ -77.546664619867187, 24.10252185679456 ], [ -77.546651301444797, 24.102479858194215 ], [ -77.546644800337063, 24.102452234131803 ], [ -77.546640925004922, 24.102424318964232 ], [ -77.546639741025402, 24.102396616170051 ], [ -77.546640779477841, 24.102369617747897 ], [ -77.546645273749235, 24.102315995625638 ], [ -77.546647338976072, 24.102262321000982 ], [ -77.546646146013373, 24.102236258168915 ], [ -77.54664207035691, 24.102210188771529 ], [ -77.546634920665582, 24.102184523628267 ], [ -77.546625412896617, 24.102158628060213 ], [ -77.546613503930885, 24.10213302194656 ], [ -77.546599152445921, 24.102108222707226 ], [ -77.546514980303797, 24.101979143257328 ], [ -77.546498843866317, 24.101950868006529 ], [ -77.546478075715299, 24.101904505995343 ], [ -77.546460895435473, 24.101854640923062 ], [ -77.546446081318123, 24.101802717628001 ], [ -77.546424058220637, 24.101715246413917 ], [ -77.546412743041316, 24.10165564456106 ], [ -77.54640489535899, 24.101595546578885 ], [ -77.546399910607477, 24.101536740073342 ], [ -77.546398450845146, 24.101502817362469 ], [ -77.546401480862599, 24.101446848026889 ], [ -77.546412584039487, 24.101393378039042 ], [ -77.546433090780795, 24.10134490923507 ], [ -77.546457892367485, 24.101310547770982 ], [ -77.546491903482462, 24.101276300278339 ], [ -77.54656463468109, 24.101212867977342 ], [ -77.546598950324977, 24.10118472539823 ], [ -77.546670989820882, 24.101130534515946 ], [ -77.546724835737308, 24.101091185718538 ], [ -77.54677764409962, 24.101055991060164 ], [ -77.546811874403531, 24.101036260891092 ], [ -77.546844697945659, 24.101019445841636 ], [ -77.546884560686394, 24.101002265067049 ], [ -77.546951345933692, 24.100979451667019 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 107, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 242 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.677036987695274, 24.112389999646748 ], [ -77.677033954084806, 24.112443151823882 ], [ -77.677029742782722, 24.11247440275454 ], [ -77.677007810415091, 24.112579321339801 ], [ -77.676995714599784, 24.112615327023576 ], [ -77.676979175717094, 24.11264974940876 ], [ -77.676959354390306, 24.112682630313177 ], [ -77.676936950407139, 24.112712280679105 ], [ -77.676913360647802, 24.112738730846267 ], [ -77.676864404261465, 24.112781623086207 ], [ -77.676811312929829, 24.112821395475258 ], [ -77.676783073490569, 24.112839942308337 ], [ -77.676753731818451, 24.112857858612166 ], [ -77.676660073466891, 24.112905984427112 ], [ -77.676600671470425, 24.112941427547081 ], [ -77.67651406309723, 24.112997154078798 ], [ -77.676455431855288, 24.113033088311219 ], [ -77.676314517628256, 24.113128997880956 ], [ -77.676255317752691, 24.113164554089241 ], [ -77.676223743767096, 24.113180307376322 ], [ -77.676157829883124, 24.113209411554745 ], [ -77.676123123472124, 24.113222155699734 ], [ -77.676015172924423, 24.113256963287903 ], [ -77.675864919811687, 24.113297216006877 ], [ -77.675826222185862, 24.113306125341417 ], [ -77.675666943699468, 24.113338054961307 ], [ -77.675609247603745, 24.113347622694764 ], [ -77.675543032784134, 24.113356179456975 ], [ -77.675346292753773, 24.113379254670697 ], [ -77.675289782434191, 24.113384260326274 ], [ -77.675237537315553, 24.113387250600688 ], [ -77.675156428428551, 24.113389024103149 ], [ -77.675123846532756, 24.113387989359499 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 112, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 340 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.555387042984677, 24.116736466589611 ], [ -77.555390427837466, 24.116727974002 ], [ -77.555406700818864, 24.116724782928681 ], [ -77.555433882941017, 24.11673139710852 ], [ -77.555456418078194, 24.116741582797154 ], [ -77.555481614025339, 24.116755878671771 ], [ -77.555509003658329, 24.116774239636133 ], [ -77.555537950071724, 24.116795888418284 ], [ -77.555568084956221, 24.116820800419472 ], [ -77.555729593959526, 24.116965162681197 ], [ -77.555794464899449, 24.117019920794455 ], [ -77.555855263776166, 24.117065771451887 ], [ -77.555911898063258, 24.117103782997102 ], [ -77.555954120678237, 24.117130398697132 ], [ -77.555998001583248, 24.117152591834628 ], [ -77.556055241334832, 24.11716945477945 ], [ -77.556114831977496, 24.117176144367356 ], [ -77.556172481360903, 24.117173194356674 ], [ -77.556223785943374, 24.117160186596333 ], [ -77.556263902907361, 24.117135758404117 ], [ -77.556285756223275, 24.117105692551981 ], [ -77.55629741276239, 24.117069283918827 ], [ -77.55630030264264, 24.117042811689284 ], [ -77.556300339473594, 24.117004241771305 ], [ -77.55629650546399, 24.116963246564943 ], [ -77.556288700002455, 24.116921283038252 ], [ -77.556270828019862, 24.116857925720144 ], [ -77.556224182100422, 24.116713001701967 ], [ -77.556202898316386, 24.116657387475296 ], [ -77.556173117368118, 24.116593721741648 ], [ -77.556133173779017, 24.116515839607523 ], [ -77.556107800863771, 24.116470099440587 ], [ -77.556070711222333, 24.116412261518501 ], [ -77.556031497963573, 24.116356438904486 ], [ -77.555948412782939, 24.116249759791359 ], [ -77.555923479143914, 24.116211756191536 ], [ -77.555827619919924, 24.116042949920811 ], [ -77.555782142708679, 24.115949511285784 ], [ -77.555666489107395, 24.115663321117768 ], [ -77.555600895023687, 24.115487330039933 ], [ -77.555573000537507, 24.115402376292259 ], [ -77.555557817212559, 24.115349550845604 ], [ -77.555530509326232, 24.115237813655597 ], [ -77.5555262629899, 24.115212198678837 ], [ -77.555526452533599, 24.115201747221104 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 115, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 87 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.556607294704492, 24.118882424711369 ], [ -77.556607285721313, 24.118841113623841 ], [ -77.556602546209902, 24.118815656787543 ], [ -77.556597949530584, 24.118804538226389 ], [ -77.556591930818172, 24.118795830148208 ], [ -77.556572008880138, 24.118778039299208 ], [ -77.556551087117185, 24.118752189721729 ], [ -77.556524116099055, 24.118731839980871 ], [ -77.556502944604489, 24.118706206845825 ], [ -77.556476102045409, 24.118685746412119 ], [ -77.556455004212694, 24.11866004767629 ], [ -77.556428203874489, 24.118639550340003 ], [ -77.556407230009242, 24.118613745008773 ], [ -77.556380004767931, 24.118593330474344 ], [ -77.556356450941195, 24.118572494511117 ], [ -77.556346544320263, 24.118566496166849 ], [ -77.556322496420066, 24.118558775224933 ], [ -77.556301313247374, 24.118556130246759 ], [ -77.556291710256687, 24.118556281110003 ] ], [ [ -77.556272676389156, 24.118531865813445 ], [ -77.556275522615508, 24.118458812065196 ], [ -77.556274876726889, 24.118443046309462 ], [ -77.556272978586676, 24.11843381101437 ], [ -77.556268649605329, 24.118426686947913 ], [ -77.556265100361614, 24.118424298594114 ], [ -77.556241422567368, 24.118417506584613 ], [ -77.556233663818261, 24.118413301343374 ], [ -77.556231249146734, 24.118410220178049 ], [ -77.556228452691272, 24.118402289333584 ], [ -77.556227329797181, 24.118392905634504 ], [ -77.556227188761667, 24.118351589474013 ], [ -77.5562247803784, 24.118341716293703 ], [ -77.556222044110044, 24.118337342971408 ], [ -77.556218192134139, 24.118333794463808 ], [ -77.556208490329041, 24.118329808131922 ], [ -77.556190621041381, 24.118328469242581 ] ], [ [ -77.556180743166536, 24.11829455508115 ], [ -77.556181724126859, 24.118241359414299 ], [ -77.556180748556443, 24.118239378545336 ], [ -77.55617742029834, 24.118237960125118 ], [ -77.556164171944104, 24.118237659227503 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 117, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 110 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.557472798125261, 24.121430327585621 ], [ -77.557472112709974, 24.121396558539058 ], [ -77.557465753536093, 24.121351926129513 ], [ -77.557460136370622, 24.121327789793511 ], [ -77.557446596064352, 24.121283334453345 ], [ -77.557441972435569, 24.121261220740326 ], [ -77.557439835343516, 24.121240085136542 ], [ -77.557440062617289, 24.121221120563565 ], [ -77.557445903463261, 24.121185237002784 ], [ -77.557451464034884, 24.121168452475516 ], [ -77.557465829892877, 24.121136812586094 ], [ -77.557472153134171, 24.121117553661726 ], [ -77.557476845933223, 24.121096663177671 ], [ -77.557482655338163, 24.121051928178773 ], [ -77.557484754700965, 24.12100570180549 ], [ -77.557482947290637, 24.120960547816715 ], [ -77.557480027765962, 24.120939267044811 ], [ -77.557475199321317, 24.12091947270973 ], [ -77.557467821457848, 24.120901778901757 ], [ -77.55744793365578, 24.12087495409699 ], [ -77.557425032005952, 24.120850407731353 ], [ -77.557383395092543, 24.120820278801332 ], [ -77.557370942646074, 24.120809030053454 ], [ -77.557360796174905, 24.120795693070967 ], [ -77.557329008390312, 24.12073580658371 ], [ -77.557318413659814, 24.120723766644073 ], [ -77.557304916472702, 24.12071488488192 ], [ -77.557288617440179, 24.120708923532661 ], [ -77.557268129563496, 24.120705951466665 ], [ -77.557244620652483, 24.120705907193155 ], [ -77.557219755285416, 24.120708633295063 ], [ -77.557195107310676, 24.12071390102567 ], [ -77.557130091741968, 24.120733434670619 ], [ -77.557099046864082, 24.120739465708503 ], [ -77.557089576824339, 24.120740263451793 ], [ -77.557085714966618, 24.120739291078479 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 120, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 1356 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.564139692615726, 24.131253144510836 ], [ -77.564128506794503, 24.131114812517943 ], [ -77.564124445511098, 24.131079491665091 ], [ -77.564115410255965, 24.131029464157749 ], [ -77.564100736275833, 24.130978420060931 ], [ -77.564079111132003, 24.13092911313122 ], [ -77.564041852607232, 24.130873580506677 ], [ -77.563997221608986, 24.1308243096084 ], [ -77.563951244036119, 24.130779875603992 ], [ -77.563900356271901, 24.130732337760797 ], [ -77.563825225673142, 24.130666913145948 ], [ -77.563743673018351, 24.130606513974893 ], [ -77.563575541634833, 24.130488989898694 ], [ -77.563456046837416, 24.130417411605276 ], [ -77.56339931553228, 24.130378753899336 ], [ -77.563372417277748, 24.130358274016945 ], [ -77.563346917700088, 24.130336334034403 ], [ -77.563298251469561, 24.130290675051196 ], [ -77.56325140881907, 24.130243431341178 ], [ -77.563206389748586, 24.130194601263085 ], [ -77.563119060028271, 24.1300943291041 ], [ -77.56300774169658, 24.129971258468949 ], [ -77.562854043544718, 24.129796911137614 ], [ -77.562832889118113, 24.12977150403076 ], [ -77.562792660763037, 24.129718737804662 ], [ -77.56273708558966, 24.1296354995572 ], [ -77.562689362590206, 24.12956827732825 ], [ -77.562658335678606, 24.129530347369158 ], [ -77.562635613691796, 24.129507339833957 ], [ -77.562586970817478, 24.129464708985164 ], [ -77.562561468544899, 24.129445075015155 ], [ -77.562509624074892, 24.129407735293135 ], [ -77.562457508313699, 24.129373155090398 ], [ -77.562404744867152, 24.129342597759305 ], [ -77.562323441045706, 24.129304569354268 ], [ -77.56226885132422, 24.129275581972372 ], [ -77.562241973730934, 24.129259472402971 ], [ -77.562188673990192, 24.129224527337737 ], [ -77.562137239151966, 24.129185806964497 ], [ -77.562024543702876, 24.129091167862814 ], [ -77.561988402682417, 24.129057609078604 ], [ -77.561966155904429, 24.12903322578882 ], [ -77.561945465008478, 24.129007631609721 ], [ -77.561917482487345, 24.128966068829524 ], [ -77.561865877867518, 24.1288787875209 ], [ -77.561837570156314, 24.128837213221214 ], [ -77.561794228240501, 24.128787085637544 ], [ -77.56177110111355, 24.128763033506988 ], [ -77.561722394458783, 24.128717319853383 ], [ -77.561670318223477, 24.128674600199776 ], [ -77.561586544933334, 24.128615829089352 ], [ -77.561528532630618, 24.128578762948518 ], [ -77.561438316623253, 24.128527144812377 ], [ -77.561351441450441, 24.128474077195143 ], [ -77.561297643144684, 24.12843656912441 ], [ -77.561199294689061, 24.128359476317527 ], [ -77.561151253685992, 24.128324799091242 ], [ -77.561077899954839, 24.128279861661724 ], [ -77.56102771557147, 24.128246840474432 ], [ -77.560947098961236, 24.128196426538004 ], [ -77.560894216038804, 24.128159006107939 ], [ -77.560842738979758, 24.128118837587508 ], [ -77.560817885290774, 24.128097680981142 ], [ -77.560794169767306, 24.128075074906437 ], [ -77.560771615765461, 24.128051518640991 ], [ -77.560750301438702, 24.12802649486957 ], [ -77.560710047032515, 24.127974282950998 ], [ -77.560690949747865, 24.127947030855953 ], [ -77.560672678913278, 24.127919241763859 ], [ -77.560649938061914, 24.127880378344337 ], [ -77.560606162259774, 24.127800995403611 ], [ -77.56053555827171, 24.127686744812571 ], [ -77.560391838606051, 24.127415539647085 ], [ -77.560336249957928, 24.127287803195571 ], [ -77.560245373688844, 24.127058628726381 ], [ -77.560203211260998, 24.126963621582362 ], [ -77.560157878678481, 24.126856208536363 ], [ -77.56013250666156, 24.126804856973365 ], [ -77.560115337161591, 24.126775983802816 ], [ -77.560013039711961, 24.126615824409026 ], [ -77.559986906822047, 24.126579817745174 ], [ -77.559942664794292, 24.126530435334058 ], [ -77.559819867789912, 24.126417939713473 ], [ -77.559796870020307, 24.126394131450851 ], [ -77.559775410166466, 24.126368740884921 ], [ -77.559755578958288, 24.126342181216188 ], [ -77.559726509475681, 24.12629404241736 ], [ -77.559700755674783, 24.126243021026212 ], [ -77.559629310863613, 24.126100056410337 ], [ -77.559548445420049, 24.12592827730176 ], [ -77.559525381175149, 24.125882224038328 ], [ -77.559476881132966, 24.125792645052069 ], [ -77.559432747801353, 24.12569898643817 ], [ -77.559406486452332, 24.125633857673826 ], [ -77.559390955479401, 24.125588544628002 ], [ -77.559353201982958, 24.125459826631669 ], [ -77.559340832181505, 24.12541173669187 ], [ -77.559309634589994, 24.125277283660118 ], [ -77.559296822817416, 24.125214894624467 ], [ -77.559229097031505, 24.124853779093382 ], [ -77.55921369900922, 24.124791700575891 ], [ -77.55920329023003, 24.124758235766929 ], [ -77.559188524621703, 24.12471461131144 ], [ -77.559172373811208, 24.124672967610472 ], [ -77.559153824498878, 24.124634393433482 ], [ -77.559138050980835, 24.124608099037768 ], [ -77.559104856434445, 24.124559306981467 ], [ -77.559088048057149, 24.124536593700196 ], [ -77.559037067766496, 24.124474714253854 ], [ -77.559021421809163, 24.124452007516421 ], [ -77.559003540843449, 24.124417835902264 ], [ -77.558988670132237, 24.124380297127473 ], [ -77.558975867342795, 24.124340670985713 ], [ -77.558967424975734, 24.124310237070812 ], [ -77.55895878857261, 24.124267573335523 ], [ -77.558953015100286, 24.124223393669052 ], [ -77.558944627530479, 24.124099772999575 ], [ -77.558939557439032, 24.124053597738794 ], [ -77.558932048421582, 24.124007738926949 ], [ -77.55890812628553, 24.123906015685709 ], [ -77.558873453112227, 24.12378048525429 ], [ -77.55885943669881, 24.123734999381277 ], [ -77.558836146976759, 24.123668368451082 ], [ -77.558777612752863, 24.123514537783368 ], [ -77.558759102068109, 24.123471833609479 ], [ -77.558728091326145, 24.123410745635784 ], [ -77.558711388051805, 24.123381091189465 ], [ -77.558657967936753, 24.123295437599147 ], [ -77.558624701525204, 24.123236194235329 ], [ -77.558594404045593, 24.123174374830068 ], [ -77.558528451534073, 24.12301082406313 ], [ -77.558514215931766, 24.12297931170847 ], [ -77.558484579612227, 24.122916891217166 ], [ -77.558405847667473, 24.122766524404202 ], [ -77.558344174729939, 24.12262516530442 ], [ -77.558321506642073, 24.122580960474771 ], [ -77.558275886598665, 24.122509838522689 ], [ -77.558255045684092, 24.122474013534056 ], [ -77.558238377443985, 24.122435556755292 ], [ -77.558225615078754, 24.122395313469422 ], [ -77.55819945164609, 24.122277252213372 ], [ -77.558186428769417, 24.122230427777325 ], [ -77.558164561978785, 24.12216913424318 ], [ -77.55812535141493, 24.122078281856396 ], [ -77.558076171348063, 24.121948827362701 ], [ -77.558020759668096, 24.121778089658847 ], [ -77.557996037133179, 24.121712753930062 ], [ -77.557977810316018, 24.121656500734577 ], [ -77.557945468270844, 24.121544184480452 ], [ -77.557920963128225, 24.12146655132165 ], [ -77.557906605355043, 24.121423860402114 ], [ -77.557890845311675, 24.121387152922914 ], [ -77.557869732207593, 24.121360832443763 ], [ -77.557850996944012, 24.121351708862314 ], [ -77.557829214595003, 24.121349245134496 ], [ -77.55780497715034, 24.121352230303536 ], [ -77.557778896362663, 24.121359946977531 ], [ -77.557751215675523, 24.121370921838395 ], [ -77.557693041676032, 24.121398052352831 ], [ -77.557664410571306, 24.121414133396684 ], [ -77.55763702273488, 24.121432339556097 ], [ -77.557611324629562, 24.121452471600517 ], [ -77.557587949567576, 24.121473120983087 ], [ -77.557567315265487, 24.121493658039423 ], [ -77.557535482565086, 24.121528578980456 ], [ -77.557518720899765, 24.12155067625422 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 132, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 1585 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.57211969498286, 24.143478783297631 ], [ -77.57212028697306, 24.143470412985042 ], [ -77.572116089145723, 24.143450868057215 ], [ -77.572084448684791, 24.143349366853716 ], [ -77.572067183065073, 24.143299935995792 ], [ -77.572004194993951, 24.143133630418419 ], [ -77.571974411350681, 24.143045707088728 ], [ -77.571956126143121, 24.142980275658111 ], [ -77.571942251663557, 24.142917977232361 ], [ -77.571935564604544, 24.142879786457552 ], [ -77.5719307864656, 24.142825633724403 ], [ -77.571930551106959, 24.142771032571204 ], [ -77.571934138978193, 24.142716495334348 ], [ -77.571941253635245, 24.142663087675288 ], [ -77.571960322173794, 24.142559085638613 ], [ -77.57196706043672, 24.142505015563433 ], [ -77.571970305151581, 24.142449449438228 ], [ -77.571970047335057, 24.14239341029818 ], [ -77.571966096544486, 24.142337871995654 ], [ -77.571954607990278, 24.142252422920276 ], [ -77.571937327997475, 24.14215414481361 ], [ -77.571907369182753, 24.142020562736281 ], [ -77.571895271570796, 24.1419722257227 ], [ -77.571851896417314, 24.141817410423112 ], [ -77.571832354466622, 24.141759877430008 ], [ -77.571792475556208, 24.141660690666161 ], [ -77.571767868903976, 24.141592798467702 ], [ -77.571748998893099, 24.141531060072484 ], [ -77.571714773080743, 24.141405951894942 ], [ -77.57169525179134, 24.141346866114056 ], [ -77.571669273411629, 24.141284757893533 ], [ -77.571655265083109, 24.141255601080037 ], [ -77.571625229911561, 24.141202470705537 ], [ -77.571579936854931, 24.141134916820185 ], [ -77.571550722743581, 24.141101493995958 ], [ -77.57153673956789, 24.141089427282036 ], [ -77.571523027683369, 24.141081627364059 ], [ -77.57151008026517, 24.141078231960861 ], [ -77.57149815872306, 24.141080075577932 ], [ -77.571484762147222, 24.141090432295091 ], [ -77.571474090161644, 24.141107098623532 ], [ -77.571451250495514, 24.141162404651968 ], [ -77.571440317100226, 24.141180068605607 ], [ -77.571426557605037, 24.141192033662115 ], [ -77.571414329737365, 24.141195533170393 ], [ -77.571401426336635, 24.141194038768042 ], [ -77.571388751107975, 24.141187651284032 ], [ -77.57137661486847, 24.14117720358264 ], [ -77.571360558381073, 24.141154344877958 ], [ -77.571346705461082, 24.141125658570875 ], [ -77.571338510130744, 24.141104793487834 ], [ -77.571329235923741, 24.141070830440636 ], [ -77.571323516350347, 24.141036025501219 ], [ -77.57132167300739, 24.141013639767102 ], [ -77.571323802912943, 24.140981032562674 ], [ -77.57133218778776, 24.14095193552172 ], [ -77.57134096522644, 24.140935778238209 ], [ -77.571375853097138, 24.140890564885161 ], [ -77.571385520766214, 24.140869393996667 ], [ -77.571386977833569, 24.140853207191661 ], [ -77.5713841616152, 24.140835879290847 ], [ -77.57137798479927, 24.140817127479586 ], [ -77.571357426853979, 24.140776672742952 ], [ -77.571280554421875, 24.140659418694749 ], [ -77.571247754235955, 24.140605517504905 ], [ -77.5712327065566, 24.140576486778404 ], [ -77.571212098305651, 24.140522801968466 ], [ -77.571196227769505, 24.140464186317896 ], [ -77.571183442946406, 24.140402528533297 ], [ -77.571161271626877, 24.140276705244947 ], [ -77.571149122810965, 24.140215672023402 ], [ -77.571116887665312, 24.140077755509516 ], [ -77.57108541698598, 24.139953326308007 ], [ -77.571076245186944, 24.139924033111178 ], [ -77.571053084822253, 24.139866900127366 ], [ -77.570958422154263, 24.139665978234408 ], [ -77.570928198336489, 24.139613631708777 ], [ -77.570890276855096, 24.13955422867231 ], [ -77.570867685124043, 24.13952329586467 ], [ -77.570852158642666, 24.13950609402659 ], [ -77.570836706721465, 24.139491452296394 ], [ -77.570821589871855, 24.139479975657636 ], [ -77.570790629435564, 24.139462066360799 ], [ -77.570778118598653, 24.139452062828418 ], [ -77.570772207684058, 24.139442191276611 ], [ -77.570768695271283, 24.139423941773963 ], [ -77.570770317628686, 24.139401654948607 ], [ -77.570776878025242, 24.139377466274787 ], [ -77.570811506282794, 24.139299705399786 ], [ -77.570818458344789, 24.139277930083743 ], [ -77.57082249357704, 24.139254325876362 ], [ -77.570823284094473, 24.139229462510912 ], [ -77.570821042797846, 24.139203921197652 ], [ -77.570816703036684, 24.139177107608834 ], [ -77.570810360930807, 24.139149540653058 ], [ -77.570792690170848, 24.13909300083116 ], [ -77.570750296875957, 24.138970055262448 ], [ -77.570703089509465, 24.138840094854693 ], [ -77.570665560591834, 24.138741525567646 ], [ -77.570608964932333, 24.138557979304004 ], [ -77.570586973275837, 24.138499343898008 ], [ -77.570556923731246, 24.138436874416637 ], [ -77.570473449580149, 24.138288382621987 ], [ -77.570340580664762, 24.138028448811795 ], [ -77.570316431254966, 24.13798321639576 ], [ -77.570282301562386, 24.137925115216191 ], [ -77.570250225418519, 24.137865019509086 ], [ -77.570229000024995, 24.137817322804739 ], [ -77.570190118244568, 24.137718869956498 ], [ -77.570169051852844, 24.13767107236572 ], [ -77.570153585558586, 24.137640693268246 ], [ -77.570120495216784, 24.13758157541557 ], [ -77.57000098784296, 24.137377818433905 ], [ -77.569953340301993, 24.137287344107847 ], [ -77.569909201580458, 24.137193826714487 ], [ -77.569863747725421, 24.137086532929725 ], [ -77.569838834747642, 24.137034788702763 ], [ -77.569804272965399, 24.136976994508274 ], [ -77.569766085582657, 24.136922352327677 ], [ -77.56974568753752, 24.136896042422922 ], [ -77.569679702686656, 24.136822011663657 ], [ -77.569617190722653, 24.136744472213966 ], [ -77.569537053812795, 24.136638461824734 ], [ -77.569482790179734, 24.136553757398001 ], [ -77.56943420928917, 24.136464114564809 ], [ -77.569374752495463, 24.13633964413669 ], [ -77.569292359017567, 24.136191806550972 ], [ -77.569148804641912, 24.135920736648995 ], [ -77.569067333733869, 24.135772098470078 ], [ -77.56901013620309, 24.135645666443718 ], [ -77.568907459664445, 24.135427142853136 ], [ -77.568874576833451, 24.135367892811235 ], [ -77.568822681159475, 24.135281378273312 ], [ -77.56873841199932, 24.135134925725293 ], [ -77.568692214339208, 24.135043213571375 ], [ -77.568649589278948, 24.134948150054331 ], [ -77.56862685561407, 24.134901853281882 ], [ -77.568600545756027, 24.134858664314972 ], [ -77.568580357916659, 24.134832417109461 ], [ -77.568535812258361, 24.13478330021735 ], [ -77.568342219924716, 24.134600462309926 ], [ -77.568296260318164, 24.134552569277453 ], [ -77.568253031590032, 24.134502301290055 ], [ -77.568211536610477, 24.134450524865347 ], [ -77.568114450287794, 24.134315162346564 ], [ -77.568077978687256, 24.134259003230504 ], [ -77.568027269687789, 24.134170909019105 ], [ -77.568000224109554, 24.134128323993767 ], [ -77.56796895644942, 24.134089401796075 ], [ -77.567927704913259, 24.134052212632678 ], [ -77.567808090639943, 24.133965972655776 ], [ -77.567728641839594, 24.133903233706256 ], [ -77.56762672617397, 24.133815889363301 ], [ -77.567402074589424, 24.133615588386277 ], [ -77.567325308158459, 24.133551256397425 ], [ -77.567067137735677, 24.133350405740334 ], [ -77.566996242693492, 24.133293328844871 ], [ -77.566903204179496, 24.133227724364275 ], [ -77.566833600914663, 24.133172141090323 ], [ -77.566786279462136, 24.133132033989749 ], [ -77.566717639191253, 24.133066129379152 ], [ -77.566673883152077, 24.133018661249018 ], [ -77.566652779031102, 24.132993780274983 ], [ -77.566612451861388, 24.132942106534518 ], [ -77.566515259537539, 24.132807817180495 ], [ -77.566474208325658, 24.132755404722392 ], [ -77.566429271900219, 24.132706505100224 ], [ -77.566380238258745, 24.132661100282405 ], [ -77.566354138606442, 24.132639879662843 ], [ -77.566272399102161, 24.13257891493879 ], [ -77.566214600598443, 24.132540785020495 ], [ -77.566167239620043, 24.132516030203423 ], [ -77.566017005371933, 24.132448759480312 ], [ -77.565954616477143, 24.132414760521804 ], [ -77.565895116564306, 24.132378221796987 ], [ -77.565866481866266, 24.132359098193202 ], [ -77.565812474253079, 24.132317761128842 ], [ -77.565762323107421, 24.132273089899527 ], [ -77.565738586024324, 24.13224948931791 ], [ -77.565693733142226, 24.132200355037643 ], [ -77.565607995236505, 24.132099335147327 ], [ -77.565562758773765, 24.132052043736703 ], [ -77.565539056725015, 24.132029929425705 ], [ -77.565514594701469, 24.132008675909123 ], [ -77.565489300838038, 24.131988946412012 ], [ -77.565462036969208, 24.13197058107248 ], [ -77.565414129815096, 24.131947601849717 ], [ -77.565360680954001, 24.131929939899809 ], [ -77.565323537413619, 24.131921107284331 ], [ -77.565285337454483, 24.131915790006939 ], [ -77.565226499600001, 24.131916206469633 ], [ -77.565168561857433, 24.131926132709797 ], [ -77.565131821660628, 24.131937227176042 ], [ -77.565097230233974, 24.131950401494809 ], [ -77.565007571182079, 24.131991969863723 ], [ -77.564972394053896, 24.132005719682002 ], [ -77.564946642049648, 24.132012839713077 ], [ -77.564933826683344, 24.132012341274589 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 133, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 35 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.572204173450217, 24.143996789568504 ], [ -77.57220611560858, 24.143946443316764 ], [ -77.572205322396158, 24.143931096306378 ], [ -77.572202803520113, 24.143920005339968 ], [ -77.572197525019519, 24.143911595714442 ], [ -77.572193599381734, 24.143908750426309 ], [ -77.572174075397356, 24.143900693284671 ], [ -77.572165950135599, 24.143895241249705 ], [ -77.572163036000831, 24.143890999138453 ], [ -77.572159757150018, 24.143880299180605 ], [ -77.572158276726427, 24.143854488285026 ], [ -77.572161127979143, 24.14376394394673 ], [ -77.572159121142832, 24.143743585069362 ], [ -77.572152684713799, 24.143731386627838 ], [ -77.572147625402138, 24.143726916625432 ], [ -77.572136186255307, 24.143722358091761 ], [ -77.572120842131511, 24.143721302280284 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 134, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 55 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.5727056175337, 24.144771897784555 ], [ -77.572709322186356, 24.144773312627194 ], [ -77.572714266513671, 24.14478432810472 ], [ -77.572723916216461, 24.144824002013937 ], [ -77.572730701191816, 24.144843300814095 ], [ -77.572739851431251, 24.144855523741281 ], [ -77.572755355454788, 24.144868328672313 ], [ -77.572763458258592, 24.144880724559084 ], [ -77.572767676747191, 24.144898415869548 ], [ -77.572769452716543, 24.144928913742039 ], [ -77.572764314353094, 24.145126075487536 ], [ -77.572761928427724, 24.145169736425697 ], [ -77.572755985173771, 24.145192496865288 ], [ -77.572751080372328, 24.145202725372371 ], [ -77.572744847860875, 24.145211289840592 ], [ -77.572737365792833, 24.1452176222021 ], [ -77.572730384984837, 24.145221025692596 ], [ -77.572717460024521, 24.145223718483006 ], [ -77.572710842135379, 24.145223080742774 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 135, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 647 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.574361766862751, 24.146034546673665 ], [ -77.574361253026936, 24.146038973965336 ], [ -77.574364309095543, 24.146050809871344 ], [ -77.574383994776696, 24.146104291528914 ], [ -77.574391863120255, 24.146133657084047 ], [ -77.57439665653061, 24.146165621135594 ], [ -77.574397628507768, 24.146197943395418 ], [ -77.574394177180437, 24.146228154876699 ], [ -77.574385740203283, 24.146253681670984 ], [ -77.574371798350057, 24.14627199331682 ], [ -77.574352545656907, 24.146284116101903 ], [ -77.57432946973384, 24.146292941987156 ], [ -77.574225147481613, 24.146317929395348 ], [ -77.57418752873248, 24.146328510290306 ], [ -77.574162589703562, 24.146333081846507 ], [ -77.574136341829274, 24.146335753300967 ], [ -77.574082252469381, 24.146336346775271 ], [ -77.574055505131795, 24.146334381916077 ], [ -77.574029711805039, 24.146330746475591 ], [ -77.574005522869385, 24.146325129781378 ], [ -77.573983700994503, 24.146317053938571 ], [ -77.573968228412056, 24.146308548563997 ], [ -77.57394018031394, 24.146288821273476 ], [ -77.57392735326998, 24.146277887077499 ], [ -77.573915835071404, 24.146265661007526 ], [ -77.573895092971526, 24.146239306301766 ], [ -77.573886038851739, 24.146225049789923 ], [ -77.573876604744612, 24.146203598621973 ], [ -77.573869571834265, 24.146180084222845 ], [ -77.573852906289133, 24.146105852270935 ], [ -77.573845686529211, 24.146082605901487 ], [ -77.573814590447313, 24.146006647566669 ], [ -77.573803589678334, 24.145983435607377 ], [ -77.573749947679474, 24.145896865954231 ], [ -77.573733389033819, 24.145874811418111 ], [ -77.573720720991702, 24.145861085223714 ], [ -77.573698329584929, 24.145840353708149 ], [ -77.573689556637873, 24.145834004163387 ], [ -77.573682829154691, 24.145831003991084 ], [ -77.573679014009684, 24.145831226954702 ] ], [ [ -77.573679014009684, 24.145831226954702 ], [ -77.573680493534951, 24.145837024008902 ], [ -77.573674963506065, 24.145843896534348 ], [ -77.573662879368882, 24.145850515766146 ], [ -77.573644700162461, 24.145856211994012 ], [ -77.573611846077583, 24.145862475467155 ], [ -77.57357092332478, 24.145866974904806 ], [ -77.573524679850593, 24.145869120929099 ], [ -77.57348791450093, 24.145868576635678 ], [ -77.573450318209723, 24.145864941181959 ], [ -77.573412732698216, 24.145857534200847 ], [ -77.573376031128959, 24.145846035181577 ], [ -77.573340941137317, 24.145831056453101 ], [ -77.573307866066912, 24.145812547191827 ], [ -77.573277423958572, 24.14579132957472 ], [ -77.573250057681705, 24.145767339662306 ], [ -77.573225876830904, 24.145741607840929 ], [ -77.573204915542078, 24.145715209582008 ], [ -77.573169938738147, 24.145659391558716 ], [ -77.573154400578701, 24.145629374216778 ], [ -77.573140367097338, 24.145598131385402 ], [ -77.573120326581659, 24.145538820479473 ], [ -77.573104492876425, 24.145475601933633 ], [ -77.573034194315596, 24.145161524435839 ], [ -77.572995399671726, 24.145003644769972 ], [ -77.572978606565798, 24.14494437375464 ], [ -77.572943779780559, 24.144842026960585 ], [ -77.572899988707078, 24.144702460410237 ], [ -77.572850028004254, 24.14452271804387 ], [ -77.572758751086539, 24.144244152985607 ], [ -77.572720456804291, 24.144144228752857 ], [ -77.572693944825332, 24.144079851238196 ], [ -77.572634593134481, 24.143937432829929 ], [ -77.572617686840829, 24.143901672044191 ], [ -77.572590918841996, 24.143856941742573 ], [ -77.572577381230687, 24.143839222417053 ], [ -77.572563633413566, 24.143825876359781 ], [ -77.572550244024256, 24.143817051943639 ], [ -77.572537544541078, 24.143813795147786 ], [ -77.572526549162035, 24.143816410913121 ], [ -77.572518603563324, 24.143826685435315 ], [ -77.572514237751008, 24.143845438444583 ], [ -77.572513152586154, 24.143871337873001 ], [ -77.572514887232984, 24.143916514103552 ], [ -77.572519734542269, 24.143970879504693 ], [ -77.572527522935786, 24.144031065790873 ], [ -77.572584267715641, 24.144384068421029 ], [ -77.572587120765007, 24.144410581716848 ], [ -77.572586158669139, 24.144418320773354 ] ], [ [ -77.573807263787387, 24.145292830963903 ], [ -77.57379411874031, 24.145294467125975 ], [ -77.57378123330588, 24.14529832965906 ], [ -77.573742515917118, 24.1453133535347 ], [ -77.573722146618081, 24.145318990766491 ], [ -77.573699721075286, 24.14532326889811 ], [ -77.573653351836953, 24.145328192970958 ], [ -77.573574362075732, 24.145332510448988 ], [ -77.573540315028126, 24.145338775587291 ], [ -77.573525918627382, 24.145344355437352 ], [ -77.573514138120757, 24.145352339532685 ], [ -77.573505001355983, 24.145364073037005 ], [ -77.573498845201357, 24.145378362433831 ], [ -77.573494942021441, 24.145394351112859 ], [ -77.573492814810862, 24.145411361983065 ], [ -77.573492998965506, 24.145446265737263 ], [ -77.573495313025674, 24.14546318069317 ], [ -77.57349939227538, 24.145479072634409 ], [ -77.573505671499191, 24.14549336611703 ], [ -77.573519162398142, 24.145511405724243 ], [ -77.573548563359083, 24.145545896311695 ], [ -77.573581266527, 24.145577103907875 ], [ -77.57361705091634, 24.14562008678303 ], [ -77.573623349903116, 24.145633121978907 ], [ -77.573630850835713, 24.145663557377297 ], [ -77.573642660088453, 24.1457644271985 ], [ -77.573651724089672, 24.145802359719465 ], [ -77.573657753581884, 24.145816533486869 ], [ -77.573664653541584, 24.145826334870314 ], [ -77.573670355148678, 24.145830721187963 ], [ -77.573675377629428, 24.145832311443222 ], [ -77.573679014009684, 24.145831226954702 ] ], [ [ -77.573679014009684, 24.145831226954702 ], [ -77.57367904814565, 24.145808493679635 ], [ -77.573681788007249, 24.145777194331309 ], [ -77.573689019445325, 24.14574332597358 ], [ -77.573695056124038, 24.145728288213316 ], [ -77.573703127486851, 24.145716073566852 ], [ -77.573713185923097, 24.145707604219965 ], [ -77.573746753270328, 24.145693490280038 ], [ -77.573756782062134, 24.145688267023452 ], [ -77.573764928883477, 24.145681643684568 ], [ -77.573770576591642, 24.145673114495878 ], [ -77.573773941680713, 24.14566318768345 ], [ -77.57377536730705, 24.145652482135965 ], [ -77.573772922991125, 24.14563086118978 ], [ -77.573768921894867, 24.145620939292414 ], [ -77.57374973837203, 24.145594659048349 ], [ -77.573744267631909, 24.145584495330557 ], [ -77.573726781924933, 24.145539385267288 ], [ -77.573721270760686, 24.145529179739277 ], [ -77.573701720725111, 24.14550261913163 ], [ -77.573697469897184, 24.145492502130644 ], [ -77.573694201826186, 24.145470171278561 ], [ -77.573697456422494, 24.145448115849078 ], [ -77.573701910269634, 24.145438453789346 ], [ -77.57371638212885, 24.145423053676112 ], [ -77.57373358576487, 24.145408071619297 ], [ -77.573744830875569, 24.145400122775481 ], [ -77.573758825729428, 24.145393259243114 ], [ -77.573774958573622, 24.145388532725789 ], [ -77.573810883998433, 24.145383883262244 ], [ -77.573843802762042, 24.145383297980686 ], [ -77.573867192196658, 24.145384390674607 ] ], [ [ -77.572606402204045, 24.144453922385743 ], [ -77.572628314808952, 24.144454255195292 ], [ -77.572633440595951, 24.144456708641311 ], [ -77.572634318250024, 24.14446417636346 ], [ -77.57263310911749, 24.144500888700186 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 138, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 330 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.574832126542162, 24.148969490012796 ], [ -77.574835806042074, 24.148970763820376 ], [ -77.574843682470529, 24.148970758082481 ], [ -77.574854525135976, 24.14896912770099 ], [ -77.574867002735289, 24.14896536118361 ], [ -77.574879753422451, 24.148958896216545 ], [ -77.574893436560856, 24.148947316325987 ], [ -77.574905059862317, 24.148931862535445 ], [ -77.574914415815996, 24.148913506187313 ], [ -77.574921465794318, 24.148893385023335 ], [ -77.574926219678801, 24.148872704001352 ], [ -77.574928687350891, 24.148852687752591 ], [ -77.57492845648386, 24.148797444069977 ], [ -77.57492409785813, 24.148763479787995 ], [ -77.57491987757291, 24.148748197292594 ], [ -77.574913698062062, 24.148734600099832 ], [ -77.574904934996482, 24.148723243147568 ], [ -77.574893229050019, 24.148714551041444 ], [ -77.574879339299073, 24.14870776391923 ], [ -77.574833897122119, 24.148690731355796 ], [ -77.574820328069777, 24.148683700781188 ], [ -77.574809050619649, 24.148674686529795 ], [ -77.574800946019209, 24.148663342687477 ], [ -77.574795268666605, 24.148649896310644 ], [ -77.574788768457196, 24.14861879848506 ], [ -77.574781803818766, 24.148533042941626 ], [ -77.574775529086523, 24.148501786065335 ], [ -77.574769914615999, 24.148488310981993 ], [ -77.5747638420047, 24.148478987689121 ], [ -77.574741595226683, 24.148454438424483 ], [ -77.5747245523891, 24.148439886247079 ], [ -77.574710880030452, 24.148432852379869 ], [ -77.574693451815648, 24.14842678740067 ], [ -77.574608748769194, 24.148403075042484 ], [ -77.57459106453453, 24.148395984613725 ], [ -77.574562451396076, 24.148380686500087 ], [ -77.574552371400628, 24.148376819142083 ] ], [ [ -77.574545363642812, 24.148364735901989 ], [ -77.574536064282924, 24.148262494308867 ], [ -77.574532881551917, 24.148207795474299 ], [ -77.57453232279974, 24.148146087324445 ], [ -77.574534857845492, 24.148080742934411 ], [ -77.574543489757048, 24.147961749613451 ], [ -77.574549638725173, 24.147834838638182 ], [ -77.574550058238444, 24.147688161936049 ], [ -77.574552513334098, 24.14766497405358 ], [ -77.574562181003216, 24.147607780592427 ], [ -77.574562019306427, 24.147586599340499 ], [ -77.57455879615118, 24.147564165571094 ], [ -77.574545730155393, 24.147517604502934 ], [ -77.574512505066295, 24.147424828232875 ], [ -77.574507523908053, 24.147402323120382 ], [ -77.574505731769037, 24.147380435245061 ], [ -77.5745087339387, 24.147358541627934 ], [ -77.574516574434512, 24.147337232460039 ], [ -77.574565195749287, 24.147242836311801 ], [ -77.57457743439673, 24.147206337072081 ], [ -77.574586012409384, 24.14716625650621 ], [ -77.57459145081009, 24.147124051236968 ], [ -77.574597062585681, 24.147002504443005 ], [ -77.574601335871492, 24.146957426029257 ], [ -77.574608269068847, 24.146912786145627 ], [ -77.574618535914198, 24.146869869282241 ], [ -77.574629258205448, 24.14683750784609 ], [ -77.574645454830019, 24.146795444278744 ], [ -77.574664446113459, 24.146756188215495 ], [ -77.574687980177245, 24.146722124205649 ], [ -77.574709330436605, 24.146701389550898 ], [ -77.57473290492463, 24.146684114084813 ], [ -77.57475781790238, 24.146669721550044 ], [ -77.574784052301951, 24.146659202161864 ], [ -77.57486497074612, 24.146637977307876 ], [ -77.574889882825559, 24.146628619452041 ], [ -77.574913329752803, 24.146614572010691 ], [ -77.574933854460411, 24.146595184948843 ], [ -77.574954580390653, 24.146561631578191 ], [ -77.574968211426778, 24.146523613212512 ], [ -77.574976242365409, 24.146485950591771 ], [ -77.574986339429188, 24.146419715961688 ], [ -77.574990998091479, 24.146401556807369 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 140, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 42 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.575610932655948, 24.150159757221488 ], [ -77.575614484595022, 24.150161476110174 ], [ -77.575628655518628, 24.150185498805033 ], [ -77.575634579907899, 24.150192015350601 ], [ -77.575642046704544, 24.150197119567874 ], [ -77.575659508157031, 24.150203050853403 ], [ -77.575702072131833, 24.150210009211573 ], [ -77.575715227959165, 24.150216128205773 ], [ -77.575719982742001, 24.150220826675046 ], [ -77.57573557030878, 24.150242659964295 ], [ -77.575758901353353, 24.150257712767523 ], [ -77.575763798069943, 24.150262320249592 ], [ -77.575769850918334, 24.150274920535914 ], [ -77.575773089344921, 24.150298921897495 ], [ -77.575772780324485, 24.150334159570168 ], [ -77.575769926376807, 24.150359633903935 ], [ -77.575765106915313, 24.150374066187997 ], [ -77.575759735888226, 24.150379765492961 ], [ -77.575751828917106, 24.150383731153358 ], [ -77.575741907923131, 24.150386287766473 ], [ -77.575719296429114, 24.150388296006948 ], [ -77.575683400648217, 24.150386918112606 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 144, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 80 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.577932084128719, 24.153008494262998 ], [ -77.577918865419747, 24.153007631962371 ], [ -77.577888363124259, 24.1530099262276 ], [ -77.577869943169361, 24.153013201641564 ], [ -77.577851230363663, 24.153018466402116 ], [ -77.577822038710195, 24.153031795925635 ], [ -77.577782714060348, 24.153054298407387 ], [ -77.577772078905653, 24.153061723823804 ], [ -77.57774651914086, 24.153085064005783 ], [ -77.577719333425449, 24.153106503362828 ], [ -77.577694560584845, 24.15313025665149 ], [ -77.577669054718996, 24.153151751738648 ], [ -77.577637655006512, 24.153187977149141 ], [ -77.577634033897638, 24.153194240262916 ], [ -77.577632632525805, 24.153200657474748 ], [ -77.5776336134861, 24.153206767309321 ], [ -77.577637061220173, 24.153211964848818 ], [ -77.577644398659388, 24.153216312388334 ], [ -77.577654352891059, 24.153218697633349 ], [ -77.577665917802022, 24.153219255829899 ], [ -77.577678208551745, 24.153217994354943 ], [ -77.577690408571627, 24.153214791077396 ], [ -77.577719801447742, 24.153200374687977 ], [ -77.577773336547097, 24.153177264854943 ], [ -77.577785192512181, 24.153169619773003 ], [ -77.577795312033871, 24.153160185346294 ], [ -77.577821329041114, 24.153128071404858 ], [ -77.577831673141603, 24.153119020581748 ], [ -77.57784683850025, 24.15311233451321 ], [ -77.577865460576106, 24.15310880172461 ], [ -77.577886007741597, 24.153108132052161 ], [ -77.577906942080972, 24.153110022217035 ], [ -77.577926764306014, 24.153114155825531 ], [ -77.57794408562134, 24.153120169762541 ], [ -77.577957728335548, 24.153127556650553 ], [ -77.577965397253166, 24.153133696816528 ], [ -77.577974380405564, 24.153144764036821 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 146, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 300 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.578095054803057, 24.154231295910837 ], [ -77.578091480294873, 24.15423301946603 ], [ -77.578088616055155, 24.154233225159473 ] ], [ [ -77.578061934974471, 24.154232962962279 ], [ -77.578061850263481, 24.15423295881082 ], [ -77.578023727559511, 24.154228994089546 ], [ -77.577975284111162, 24.15422180070626 ], [ -77.577860076972598, 24.154199095972729 ], [ -77.577701438086706, 24.154162482327418 ], [ -77.577650365269491, 24.154145395573462 ], [ -77.577609177513708, 24.154123199019384 ], [ -77.577589217846466, 24.154105243414072 ], [ -77.577575768270037, 24.15408568453903 ], [ -77.577567199240505, 24.154063872398037 ], [ -77.577562512729671, 24.154040347969932 ], [ -77.577560987390328, 24.154015803052445 ], [ -77.577560227415574, 24.153945704315802 ], [ -77.577557942999789, 24.15389824967632 ], [ -77.577553470288009, 24.153849126175668 ], [ -77.577546227171865, 24.153800069868794 ], [ -77.577512794571959, 24.15364105743674 ], [ -77.577507507986496, 24.153609444434135 ], [ -77.577504198592976, 24.15357697077064 ], [ -77.577503539229596, 24.15351092424164 ], [ -77.577513285950431, 24.153268295146617 ], [ -77.57751315030481, 24.153235070577182 ], [ -77.577498414340894, 24.153011681967559 ], [ -77.577497846605624, 24.152955938442787 ], [ -77.577501485680813, 24.152843654597014 ], [ -77.577500646654357, 24.152815589767673 ], [ -77.577497044410066, 24.152787815097039 ], [ -77.577490160620044, 24.152760804357222 ], [ -77.577480033911854, 24.152735052632405 ], [ -77.577467327242161, 24.152709893527454 ], [ -77.57740379569033, 24.152611548051972 ], [ -77.577389233999568, 24.152584692193582 ], [ -77.577372552284743, 24.152546216601124 ], [ -77.577358850281726, 24.152505677051888 ], [ -77.577340351275083, 24.152433393867614 ], [ -77.5773341879339, 24.152388539502052 ], [ -77.577331965501884, 24.152339158042153 ], [ -77.577333447722097, 24.152287863435198 ], [ -77.57734616427328, 24.152138345099964 ], [ -77.577347238658362, 24.152104154654854 ], [ -77.577345443824427, 24.152071050275548 ], [ -77.577340791449529, 24.15203995492185 ], [ -77.577333911252808, 24.15201165958608 ], [ -77.577301974349012, 24.151907457781828 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 147, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 264 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.576160234485869, 24.154166233122172 ], [ -77.576161800249835, 24.154166474099654 ], [ -77.576166114858154, 24.154158332359483 ], [ -77.576195738601285, 24.15405082166879 ], [ -77.576212140041733, 24.153999296603001 ], [ -77.576228397751777, 24.153956865723188 ], [ -77.576253403256018, 24.153899504587248 ], [ -77.576282572451575, 24.153845316359682 ], [ -77.576317311201905, 24.153799225610619 ], [ -77.576347355356631, 24.153772769180414 ], [ -77.576379480009521, 24.153753376647142 ], [ -77.576411723239985, 24.15374068817966 ], [ -77.57644386585919, 24.153732962803954 ], [ -77.57648876814865, 24.153728768560029 ], [ -77.576534814891801, 24.153731252975412 ], [ -77.576579906725783, 24.153740029166247 ], [ -77.576612520062184, 24.153750473381656 ], [ -77.577037080035126, 24.153900704580376 ], [ -77.577139155600875, 24.153940766640712 ], [ -77.577171001776037, 24.153954670654642 ], [ -77.57722897994276, 24.153984684401696 ], [ -77.577254847829693, 24.154000292498193 ], [ -77.577277162879668, 24.154017228452801 ], [ -77.577295021387542, 24.154036059474411 ], [ -77.577308368556004, 24.154055963436644 ], [ -77.577316458783457, 24.154077357549095 ], [ -77.577319855313519, 24.154099511488592 ], [ -77.57732383934183, 24.154156646306927 ], [ -77.577329027112611, 24.154192390288813 ], [ -77.577338003078921, 24.154228468684064 ], [ -77.577352224308157, 24.154262763477849 ], [ -77.577368027470669, 24.154287644410566 ], [ -77.577387263994169, 24.154310746665747 ], [ -77.577410036286608, 24.154331245661751 ], [ -77.577435566407004, 24.154349762705511 ], [ -77.577463223737951, 24.15436680189158 ], [ -77.577493341554487, 24.154381332082746 ], [ -77.577525481478702, 24.154393652457301 ], [ -77.577558667041941, 24.154404254814573 ], [ -77.577595008386737, 24.154412761289578 ], [ -77.577651613927756, 24.154417780093198 ], [ -77.577714475336407, 24.154415230118051 ], [ -77.577779290580779, 24.15440543185235 ], [ -77.577827405245685, 24.154393951634802 ], [ -77.577874315269867, 24.154380821431797 ], [ -77.578036751334466, 24.154331207137478 ], [ -77.578071437084191, 24.15432262524785 ], [ -77.57809527657524, 24.154318854789977 ], [ -77.57810511851703, 24.154320471173332 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 148, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 46 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.57644425303296, 24.154576127634112 ], [ -77.576444882752085, 24.154559024539545 ], [ -77.57644386226589, 24.15455468278337 ], [ -77.576438965549272, 24.154553541812106 ], [ -77.576418616013072, 24.154553237718087 ] ], [ [ -77.576396237182692, 24.154533256786227 ], [ -77.57639853597162, 24.154484242542644 ], [ -77.576398151492697, 24.154459652628873 ], [ -77.576395329884335, 24.154439833154967 ], [ -77.576388665283275, 24.154426746398912 ], [ -77.576361064546177, 24.154406936755823 ], [ -77.576341173150851, 24.15438018127394 ], [ -77.576312526774728, 24.154361273254622 ], [ -77.576292691074926, 24.154334453829307 ], [ -77.576265418222945, 24.154314323683021 ], [ -77.576259123727723, 24.154302163135441 ], [ -77.576252003680793, 24.154263725764693 ], [ -77.576251070538618, 24.154261797613088 ] ], [ [ -77.576245924953383, 24.154251165289473 ], [ -77.576245206129016, 24.154249679982374 ], [ -77.576239791084504, 24.154244757072941 ], [ -77.576233134568227, 24.154241802999366 ], [ -77.576225932774591, 24.154240607107749 ], [ -77.57621315962956, 24.154242264470916 ], [ -77.576209048040539, 24.154244444780463 ], [ -77.576207203798205, 24.154248307866634 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 150, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 148 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.577057215771077, 24.155554724608521 ], [ -77.577073627094151, 24.155495323239226 ], [ -77.577076820605015, 24.155472401522804 ], [ -77.577076463075514, 24.15544760770452 ], [ -77.577071833158527, 24.155422649130287 ], [ -77.577062911091147, 24.155399108559173 ], [ -77.577041010164493, 24.155354217530576 ], [ -77.57703250671203, 24.155329473688443 ], [ -77.577027018903962, 24.155302959379377 ], [ -77.577023646628419, 24.155274346738643 ], [ -77.577020974140424, 24.155213163304552 ], [ -77.577024671606125, 24.154986671640319 ], [ -77.577023704120577, 24.154923700388022 ], [ -77.57701835555136, 24.154864522497153 ], [ -77.577012855166856, 24.154837379411244 ], [ -77.577004529580819, 24.154812681370107 ], [ -77.576996866951447, 24.154797348779173 ], [ -77.576969815084993, 24.154754599315876 ], [ -77.576907081237124, 24.154676772387369 ], [ -77.576880916906134, 24.154640657233841 ], [ -77.576866814254529, 24.154623649231461 ], [ -77.576854881932576, 24.15461232067117 ], [ -77.576828709516803, 24.154592075815852 ], [ -77.576814293353081, 24.154583453780209 ], [ -77.576792675395794, 24.154574835842364 ], [ -77.576767973522095, 24.154569498195944 ], [ -77.57673876300403, 24.15456809001461 ], [ -77.576706864726617, 24.154570599823195 ], [ -77.576674369967805, 24.154576911229341 ], [ -77.576643253224688, 24.154586825054444 ], [ -77.576621587656675, 24.154596297080314 ], [ -77.576582667248672, 24.15461630505245 ], [ -77.576539560691444, 24.154640923624211 ], [ -77.576527536741366, 24.154646033401459 ], [ -77.576522261833588, 24.154645778490572 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 154, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 87 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.581093836823527, 24.162725737941084 ], [ -77.581098256535171, 24.162716931217947 ], [ -77.581116922628496, 24.16269182161636 ], [ -77.581125635388418, 24.162675142530507 ], [ -77.581132971929335, 24.162655451370917 ], [ -77.581138613349339, 24.162633795599877 ], [ -77.581142382680255, 24.162611382504014 ], [ -77.581144146073143, 24.162589489857695 ], [ -77.581143778662209, 24.162569423302759 ], [ -77.58114124631139, 24.162552133589951 ], [ -77.581136980212136, 24.162536301145021 ], [ -77.58113072434449, 24.162521973506106 ], [ -77.581124622987062, 24.162512432400856 ], [ -77.581090667567636, 24.162466701310422 ], [ -77.581069064881717, 24.162440249953722 ], [ -77.581042780176489, 24.162391426437722 ], [ -77.581035449923803, 24.162380564106538 ], [ -77.581028449352758, 24.162372782700007 ], [ -77.581006645444191, 24.162353837341954 ], [ -77.580993115917693, 24.162345671535189 ], [ -77.580986038989877, 24.162344528174682 ], [ -77.58097907435149, 24.162345652684074 ], [ -77.580972801415882, 24.162349146695409 ], [ -77.580966205086739, 24.162357585433121 ], [ -77.580961480846653, 24.16236941900786 ], [ -77.580956396382149, 24.162399505362565 ], [ -77.580956251753349, 24.162433439791943 ], [ -77.580958148096968, 24.162450406593415 ], [ -77.580961676679408, 24.162466642298348 ], [ -77.580967266895399, 24.16248154695063 ], [ -77.581015653749844, 24.162555448920234 ], [ -77.581030515477934, 24.162582841167314 ], [ -77.581037277097067, 24.1626019561511 ], [ -77.581044850793234, 24.162640195125711 ], [ -77.581044964400618, 24.162641853724242 ] ], [ [ -77.581046763476493, 24.162668119124429 ], [ -77.581046916020071, 24.162670346165928 ], [ -77.58104581468541, 24.162682949327369 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 155, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 110 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.84470889273635, 24.162286134598421 ], [ -77.844704345561482, 24.162299010123412 ], [ -77.84469707100429, 24.162325481180112 ], [ -77.844673607907396, 24.162428814717089 ], [ -77.844666992713641, 24.162448163313503 ], [ -77.844652282800865, 24.162480068369604 ], [ -77.844646123951279, 24.162497299080052 ], [ -77.844627469536107, 24.16257200180134 ], [ -77.844615351262931, 24.162606750878723 ], [ -77.844606852302007, 24.162621818617378 ], [ -77.844596297995764, 24.162634811098187 ], [ -77.844572721711089, 24.162658625725189 ], [ -77.844560059957175, 24.162669792928121 ], [ -77.844517859800078, 24.162698994851816 ], [ -77.844505750510024, 24.162710621033348 ], [ -77.844495644463066, 24.162726075616025 ], [ -77.844488236056961, 24.162744074268534 ], [ -77.844482867724807, 24.162763949826815 ], [ -77.844479048088218, 24.162785175280327 ], [ -77.844474772107432, 24.162830048124881 ], [ -77.844473983386663, 24.162876014313198 ], [ -77.844476981963055, 24.162920660913553 ], [ -77.844480520426956, 24.162941572430686 ], [ -77.844486056744074, 24.162960867674773 ], [ -77.844494325736264, 24.162977851617963 ], [ -77.844505290572627, 24.162991696456043 ], [ -77.84453435736026, 24.163021388432242 ], [ -77.84454862530194, 24.163038566614745 ], [ -77.844560748964994, 24.163057758573437 ], [ -77.844570783146722, 24.163077673424034 ], [ -77.844592795464436, 24.163127084336825 ], [ -77.84459835783268, 24.163135684485937 ], [ -77.844601672616093, 24.163138504757733 ], [ -77.844603854623443, 24.163138451487612 ] ], [ [ -77.844749839840233, 24.162239180782116 ], [ -77.844745507266097, 24.162237757108301 ], [ -77.844739207381025, 24.162239470921101 ], [ -77.844731808856366, 24.162244527119469 ], [ -77.844721809708915, 24.162257102455168 ], [ -77.844718110163711, 24.162264554937515 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 156, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 216 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.844552759348389, 24.16345319621372 ], [ -77.84451469593364, 24.163437808102785 ], [ -77.844489066100252, 24.163429389107019 ], [ -77.844457793050296, 24.163422534739212 ], [ -77.844422344630843, 24.163418127715754 ], [ -77.844306857217944, 24.163410815187383 ], [ -77.844271117744341, 24.163405719694126 ], [ -77.844239177246109, 24.163395828682834 ], [ -77.84421314766243, 24.163380020111131 ], [ -77.844194652249001, 24.163358175953363 ], [ -77.844179775249629, 24.163331549385486 ], [ -77.844166452335671, 24.163301863218546 ], [ -77.844140120918041, 24.163239014088983 ], [ -77.844103689741701, 24.163137060608079 ], [ -77.844064535771679, 24.163036292200243 ], [ -77.844050367543062, 24.163004002886382 ], [ -77.844018371349307, 24.162944779562352 ], [ -77.843970377058568, 24.162866328163435 ], [ -77.84395374654774, 24.16284588381178 ], [ -77.843935580816037, 24.162831116896509 ], [ -77.843916826687831, 24.162822195439645 ], [ -77.843897609927296, 24.162820977498896 ], [ -77.843879562773239, 24.16282799090332 ], [ -77.843864445923671, 24.162843316793065 ], [ -77.843852020426652, 24.162865115960333 ], [ -77.843841473306895, 24.162891369703072 ], [ -77.843823223133555, 24.162950453718278 ], [ -77.843814903835721, 24.162980694022679 ], [ -77.843808867157023, 24.163012312082607 ], [ -77.843800394247282, 24.163109488985583 ], [ -77.843795173238846, 24.163143092104612 ], [ -77.843765377019182, 24.163285059632017 ], [ -77.843756245644315, 24.163322255861974 ], [ -77.843694760454696, 24.163557550062364 ], [ -77.84368097041677, 24.163603800391847 ], [ -77.843644696445566, 24.16371383152222 ], [ -77.843636095975043, 24.163736433753197 ], [ -77.8436292283547, 24.163748679461083 ], [ -77.843625173359086, 24.163749790029293 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 158, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 91 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.581516424917467, 24.164050134041709 ], [ -77.581520843807766, 24.164047425685965 ], [ -77.581527409594173, 24.164038765767277 ], [ -77.581533863989506, 24.16402519233112 ], [ -77.581545101015365, 24.163986832470066 ], [ -77.581553060088794, 24.163940435570357 ], [ -77.581556852775947, 24.163894797606432 ], [ -77.581556879725412, 24.163875068933244 ], [ -77.581554015896273, 24.16383987023848 ], [ -77.58154645657315, 24.163808674479434 ], [ -77.581539920431155, 24.163795462464225 ], [ -77.581533281881221, 24.163786617297905 ], [ -77.581501675556211, 24.163755468243245 ], [ -77.58148060377458, 24.16374155628046 ], [ -77.581440658388857, 24.163723683987641 ], [ -77.581419015278726, 24.163710280995794 ], [ -77.5813754092582, 24.163675001114722 ], [ -77.58133944969741, 24.163633006200286 ], [ -77.581333332170317, 24.163623722534023 ], [ -77.581327026895337, 24.163609183558936 ], [ -77.581322749117916, 24.16359288325048 ], [ -77.581318087759954, 24.163556899295855 ], [ -77.581312892802643, 24.163481345580156 ], [ -77.581309348050567, 24.163463056071382 ], [ -77.58130226752948, 24.163444938677284 ], [ -77.581291221844751, 24.163428496555976 ], [ -77.581278377732801, 24.163416336876011 ], [ -77.581224209321192, 24.163381165921482 ], [ -77.581208502277917, 24.163366348257011 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 159, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 52 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.581958592847243, 24.165327397179095 ], [ -77.581960784735017, 24.165260151917103 ], [ -77.581958471573159, 24.165222657099505 ], [ -77.581953454482303, 24.165205740661627 ], [ -77.581949315045478, 24.165198827378347 ], [ -77.581925524961761, 24.1651757057829 ], [ -77.581919055295117, 24.165159308142591 ], [ -77.581915971378749, 24.165128960987097 ], [ -77.581915471915451, 24.165052332072026 ], [ -77.581912886564069, 24.165032560139068 ], [ -77.581910277856494, 24.165023817507969 ], [ -77.581906324370891, 24.165016243620393 ], [ -77.581900804223494, 24.165010091731659 ], [ -77.581881017931039, 24.164994439902653 ], [ -77.581860300085651, 24.164968359527094 ], [ -77.581826718365377, 24.1649426045261 ], [ -77.581804465299186, 24.164915495546012 ], [ -77.581799151765992, 24.164913227723567 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 169, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 1787 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.586613651867879, 24.180682478711343 ], [ -77.586627509279879, 24.180681790330684 ], [ -77.586651408059694, 24.180669824056068 ], [ -77.586681469282368, 24.180646371727942 ], [ -77.586715164190366, 24.180612964978081 ], [ -77.586738826713216, 24.180586526395551 ], [ -77.586762624881771, 24.180556768027873 ], [ -77.586785641516002, 24.180524504452286 ], [ -77.586807026809637, 24.180489442287005 ], [ -77.586826165416753, 24.180452435445662 ], [ -77.586842526433017, 24.180414432904403 ], [ -77.58686112515268, 24.180348498595574 ], [ -77.586867422342834, 24.180283300161875 ], [ -77.586860837691759, 24.180223705425753 ], [ -77.586850905019674, 24.180192575952169 ], [ -77.586812097799424, 24.180103006352351 ], [ -77.586709570381089, 24.179888741532409 ], [ -77.586661818635534, 24.179798290755503 ], [ -77.586615838367692, 24.179705765755514 ], [ -77.586529148247834, 24.179516089459511 ], [ -77.586478685386723, 24.179383327439627 ], [ -77.586434428985953, 24.179245266363818 ], [ -77.586389965074346, 24.179085069469267 ], [ -77.586372947389592, 24.179033564338322 ], [ -77.586346553089925, 24.178968332452634 ], [ -77.586289197455699, 24.178841480969648 ], [ -77.586257078192673, 24.178781100471738 ], [ -77.586207261220267, 24.17869174950955 ], [ -77.586155918908517, 24.178603672821083 ], [ -77.586102144857293, 24.178517801371775 ], [ -77.586064607854851, 24.178462541837554 ], [ -77.586029448692926, 24.178405304801444 ], [ -77.586008427216981, 24.178365184855149 ], [ -77.58596943763871, 24.17828349029277 ], [ -77.585932432438895, 24.178209904743976 ], [ -77.585909528992417, 24.178167952308048 ], [ -77.58587658417764, 24.178117300738592 ], [ -77.585842644927922, 24.178072270184053 ], [ -77.585825522140297, 24.178052179018692 ], [ -77.585790442928442, 24.178019251004599 ], [ -77.585772582623946, 24.178006927172756 ], [ -77.585754221957856, 24.177998412435198 ], [ -77.585736031073367, 24.177993491260814 ], [ -77.585691199750812, 24.177990996663787 ], [ -77.585669158686983, 24.177988130827373 ], [ -77.585652226342191, 24.177982107407782 ], [ -77.585635683866258, 24.177972000354906 ], [ -77.585620279555769, 24.177957526116284 ], [ -77.585606220921576, 24.177939280476473 ], [ -77.585585927080984, 24.177897847523166 ], [ -77.585569946950372, 24.177847233544099 ], [ -77.585535038418413, 24.177696082337469 ], [ -77.585498591970747, 24.177501316318914 ], [ -77.585483585613915, 24.177437401432371 ], [ -77.585457282942386, 24.177350036857963 ], [ -77.585439304060301, 24.177299231714116 ], [ -77.585412379754629, 24.177234522613709 ], [ -77.585361495583641, 24.177101931138655 ], [ -77.585334503005996, 24.177037695620132 ], [ -77.585268740937323, 24.176892430066172 ], [ -77.585247882056422, 24.176853699550445 ], [ -77.585212590842147, 24.17680067003047 ], [ -77.585137898621198, 24.176705706420925 ], [ -77.585121197143465, 24.176682473815529 ], [ -77.585106496213854, 24.176658452006794 ], [ -77.585073402278752, 24.176595834001148 ], [ -77.585050921938759, 24.176557289426889 ], [ -77.585015804997695, 24.176507631298819 ], [ -77.58499607799402, 24.176483570120119 ], [ -77.584905930258657, 24.176393158725446 ], [ -77.584861291175557, 24.176345564093392 ], [ -77.584818766726642, 24.17629534368967 ], [ -77.58477938458455, 24.176241837794251 ], [ -77.584725365293295, 24.17615638681092 ], [ -77.584691677571811, 24.176097208924904 ], [ -77.58464339941348, 24.176005971174792 ], [ -77.584604262511533, 24.175936745010819 ], [ -77.584580743719059, 24.175898202696125 ], [ -77.584554758152848, 24.17586200011792 ], [ -77.584518026040897, 24.175821262268453 ], [ -77.584479721877173, 24.17578256748687 ], [ -77.584444378560605, 24.175742295923019 ], [ -77.58441796090473, 24.175702221033159 ], [ -77.584396023147193, 24.175659836701339 ], [ -77.584383437750077, 24.175631164698459 ], [ -77.584370051954025, 24.175591491342477 ], [ -77.584360335775855, 24.175551213162148 ], [ -77.584353631648952, 24.175511588953086 ], [ -77.58435056120733, 24.175482986576881 ], [ -77.584350564800545, 24.175445375110261 ], [ -77.584355536077325, 24.175409482185824 ], [ -77.584365470546061, 24.175376713298149 ], [ -77.584381826172446, 24.175344768849122 ], [ -77.584410874993807, 24.175296567373838 ], [ -77.584420468102707, 24.175275561995296 ], [ -77.584427872915597, 24.175251762014476 ], [ -77.584432877430046, 24.175225642757741 ], [ -77.584438759598513, 24.175147795523312 ], [ -77.584440056765786, 24.175092953310561 ], [ -77.5844396120997, 24.175034769843052 ], [ -77.584437214496234, 24.174974622749968 ], [ -77.584432524392128, 24.174913733951421 ], [ -77.584405226387261, 24.174618358492307 ], [ -77.584384257911907, 24.174450094018777 ], [ -77.584362403697654, 24.174255440240533 ], [ -77.584353133083937, 24.17419273910221 ], [ -77.584304244071248, 24.17390800860683 ], [ -77.584287865088669, 24.173793480431872 ], [ -77.58427924126191, 24.173742900884942 ], [ -77.584268889076611, 24.173699901247229 ], [ -77.584255611976701, 24.173667401549562 ], [ -77.584246017969477, 24.173654197930333 ], [ -77.584230685524176, 24.173641644205649 ], [ -77.584202015791888, 24.173625260765199 ], [ -77.584189965790699, 24.173615913081793 ], [ -77.584178221216632, 24.173603041371322 ], [ -77.584160711255151, 24.173572506089336 ], [ -77.584145136264738, 24.17353337626896 ], [ -77.58412091498974, 24.173460596869322 ], [ -77.584112492385628, 24.173430631954528 ], [ -77.584097910931959, 24.173367191183658 ], [ -77.584090577085988, 24.173315727181066 ], [ -77.584086857162376, 24.173261449665983 ], [ -77.58408627235913, 24.17320550681525 ], [ -77.584095299529423, 24.173040939084171 ], [ -77.584097811218939, 24.172968360192279 ], [ -77.584098429259868, 24.172894696180883 ], [ -77.584096789834462, 24.172820991969115 ], [ -77.584069578966222, 24.172445705719589 ], [ -77.584054093807353, 24.172268530697991 ], [ -77.584048380522148, 24.172120892854348 ], [ -77.584043628434273, 24.17181991830671 ], [ -77.58404090743727, 24.171746059398426 ], [ -77.584036384419832, 24.171673787922419 ], [ -77.584029261677927, 24.171603795584776 ], [ -77.584018553759734, 24.171536936364689 ], [ -77.584010571330126, 24.171500030191368 ], [ -77.583997600555747, 24.171445178215833 ], [ -77.583983119713338, 24.171391648159261 ], [ -77.583928471601368, 24.171219302139765 ], [ -77.583908002589311, 24.171149224318967 ], [ -77.583892542583271, 24.171083365540188 ], [ -77.583854851070569, 24.170878265453172 ], [ -77.583839557252858, 24.170812276224773 ], [ -77.583819732332827, 24.170741908876089 ], [ -77.583804725077741, 24.170677876685996 ], [ -77.583767202448271, 24.170479270149578 ], [ -77.583733711457853, 24.170317777998712 ], [ -77.583719660010203, 24.170256588658177 ], [ -77.583677847026991, 24.17010232313671 ], [ -77.583658542231561, 24.170045695385387 ], [ -77.583611987940259, 24.169932485702855 ], [ -77.583555012293317, 24.169784274740007 ], [ -77.583538247035193, 24.169728362328605 ], [ -77.583495831282434, 24.169553750419595 ], [ -77.583479330128995, 24.169497587119572 ], [ -77.583405204744977, 24.169298264902768 ], [ -77.583366753257579, 24.169184670999055 ], [ -77.583346241126392, 24.169128965676201 ], [ -77.583318711356199, 24.169064872028876 ], [ -77.583273665336279, 24.168972060593958 ], [ -77.583252501926481, 24.1689242066692 ], [ -77.583219402601515, 24.168842792094782 ], [ -77.583158374654388, 24.16867509616791 ], [ -77.583033509728182, 24.168391328659425 ], [ -77.583009345047046, 24.168327201858808 ], [ -77.582998597602995, 24.168294840121128 ], [ -77.58298662036529, 24.168250184745212 ], [ -77.582977177275041, 24.168204542584654 ], [ -77.582969637714854, 24.168158778290906 ], [ -77.582965202732311, 24.168124840465541 ], [ -77.582962316445304, 24.168078682746533 ], [ -77.582963053962146, 24.16803217013409 ], [ -77.582967212263583, 24.167986113189571 ], [ -77.582983496923063, 24.167883724205144 ], [ -77.582990964618006, 24.167820801929409 ], [ -77.582994662083735, 24.167755602833555 ], [ -77.582994359351503, 24.167689648872159 ], [ -77.582989570432687, 24.167624411189045 ], [ -77.5829696511896, 24.167489626370013 ], [ -77.582960109284627, 24.167440982633572 ], [ -77.582940867371263, 24.167357075586818 ], [ -77.582916938947022, 24.167261326349191 ], [ -77.582875245439737, 24.167121645779989 ], [ -77.582830704273007, 24.166983981233418 ], [ -77.582817047185728, 24.166936828946856 ], [ -77.582781984143566, 24.166805171756586 ], [ -77.582738331410667, 24.166621669900564 ], [ -77.582661342197554, 24.166335820173725 ], [ -77.582645735766121, 24.166283671439462 ], [ -77.582627403846132, 24.166234266665633 ], [ -77.582613226634294, 24.16620355750748 ], [ -77.58259792742669, 24.166173880204155 ], [ -77.582564947577694, 24.16611804980975 ], [ -77.582513669046293, 24.166040528135657 ], [ -77.5824618425426, 24.165970771210436 ], [ -77.582402781905955, 24.165875864292026 ], [ -77.582371508855985, 24.165835129812507 ], [ -77.58233542981921, 24.165802690401588 ], [ -77.582311677464816, 24.165788737682295 ], [ -77.582287097761963, 24.165778296090316 ], [ -77.58226249739792, 24.16577015509024 ], [ -77.582196024761828, 24.16575088567803 ], [ -77.582166536664317, 24.165739771198361 ], [ -77.582155286163271, 24.165733137429143 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 170, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 119 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.686084521894969, 24.180770644105209 ], [ -77.686084307197603, 24.180794141482409 ], [ -77.686086639224087, 24.180795301067583 ], [ -77.686093833830924, 24.180795369088163 ] ], [ [ -77.685759211387733, 24.180039750011268 ], [ -77.685759692884858, 24.180065652750574 ], [ -77.685765730461867, 24.180099946342001 ], [ -77.685771138319865, 24.180118894803169 ], [ -77.685787926035928, 24.180162574920843 ], [ -77.685794187293453, 24.180184102335254 ], [ -77.685798330323536, 24.180205474860859 ], [ -77.685800574315095, 24.180225463249954 ], [ -77.685802194875862, 24.180265803056425 ], [ -77.68579930050403, 24.180370843837085 ], [ -77.685796080942055, 24.180412342366772 ], [ -77.685790921019077, 24.180452167470033 ], [ -77.685782469668894, 24.180488668681981 ], [ -77.685776360226598, 24.180504866854527 ], [ -77.685760922678469, 24.180535349669231 ], [ -77.685756154420929, 24.180549296679285 ], [ -77.685753172912484, 24.180563965664096 ], [ -77.685752458751878, 24.18059363224652 ], [ -77.685755002780752, 24.180607657921826 ], [ -77.685759919260306, 24.180620401903958 ], [ -77.6857677606544, 24.180631187289645 ], [ -77.685779678603282, 24.180639855097219 ], [ -77.685794657112297, 24.180646205370206 ], [ -77.685830623859673, 24.180654339685148 ], [ -77.685910896415137, 24.180664505529204 ], [ -77.685930036818917, 24.180668132617015 ], [ -77.685949327241332, 24.180674129685869 ], [ -77.685967827146285, 24.180683153971145 ], [ -77.685982617907442, 24.180693634499267 ], [ -77.686021881471873, 24.180728450759876 ], [ -77.686034714804009, 24.180737529947432 ], [ -77.686049192053147, 24.180744798869632 ], [ -77.686062090064013, 24.180749057785835 ], [ -77.68607173976676, 24.180750695956561 ], [ -77.686076703856813, 24.180749886297544 ] ], [ [ -77.685954771929843, 24.180070585321229 ], [ -77.685874565850128, 24.180069102024021 ], [ -77.685862691020418, 24.18006793915421 ], [ -77.685859253167791, 24.180066332115722 ], [ -77.685857003786296, 24.180061723250386 ], [ -77.68585755625044, 24.180039750010547 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 177, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 259 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.686183764173862, 24.181022875400089 ], [ -77.686172513673668, 24.181022809837291 ], [ -77.686160467265708, 24.181029425607058 ], [ -77.686147000621304, 24.18104148854815 ], [ -77.686133591469044, 24.181059037994746 ], [ -77.686118818674174, 24.181091457138859 ], [ -77.686109523805939, 24.181132248212013 ], [ -77.686106707587527, 24.181178364333654 ], [ -77.686108860849259, 24.181214440021407 ], [ -77.686130444670582, 24.181363402297258 ], [ -77.686132887189871, 24.181416956853838 ], [ -77.686128227628444, 24.181465488730574 ], [ -77.686112265464189, 24.18152805681645 ], [ -77.686101589885354, 24.181559483439106 ], [ -77.686071455000842, 24.181631948453358 ], [ -77.686051671403348, 24.181672899973638 ], [ -77.686028288256509, 24.181711275007533 ], [ -77.686007824634302, 24.181737407687717 ], [ -77.685985261649321, 24.181762046434816 ], [ -77.685960652302114, 24.181784660221098 ], [ -77.685934188832164, 24.181805903818944 ], [ -77.685905796679279, 24.181825147042584 ], [ -77.685875462368756, 24.181842867654371 ], [ -77.685826053231509, 24.181865403575046 ], [ -77.685737632058093, 24.18189746767602 ], [ -77.685687936358249, 24.181911931633934 ], [ -77.685397331363831, 24.181984607875709 ], [ -77.685293561575492, 24.18201428314223 ], [ -77.685259660953264, 24.182022177260201 ], [ -77.685193025722128, 24.182033444385706 ], [ -77.68516023272268, 24.182035568495657 ], [ -77.68512798050908, 24.182034783427277 ], [ -77.685065812599788, 24.182027179408419 ], [ -77.684980859821721, 24.182012651543658 ], [ -77.684956018709158, 24.18201004885286 ], [ -77.68493407196847, 24.182009571911404 ], [ -77.684915158838464, 24.182012940003066 ], [ -77.684899941377537, 24.182020654653464 ], [ -77.684888880421468, 24.182031762798669 ], [ -77.684883564191594, 24.1820468028405 ], [ -77.684885955506886, 24.182066691783277 ], [ -77.684894688029772, 24.182091501739457 ], [ -77.684908814037613, 24.182119834662519 ], [ -77.684933674014786, 24.182162547921227 ], [ -77.68496468745164, 24.182207156636174 ], [ -77.685001665701989, 24.182249501097115 ], [ -77.685032474323009, 24.182277673366055 ], [ -77.685064579212906, 24.182302588994744 ], [ -77.685096608644386, 24.182323157250707 ], [ -77.685127276229878, 24.182339324050023 ], [ -77.685161727519329, 24.182352398111554 ], [ -77.685187066298553, 24.182357532183865 ], [ -77.68519831584797, 24.182354780104315 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 180, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 216 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.684315507737367, 24.184541815866293 ], [ -77.68430898556619, 24.184578143730985 ], [ -77.684296556475942, 24.184623258853481 ], [ -77.684277422360353, 24.184670785660018 ], [ -77.684256074795954, 24.184709213877252 ], [ -77.684231711587159, 24.184746608731977 ], [ -77.684139656728433, 24.184881920274595 ], [ -77.684124235349927, 24.184910740981184 ], [ -77.684111051674819, 24.18494052619533 ], [ -77.684099710444357, 24.184970598216285 ], [ -77.684091617521972, 24.18500244355856 ], [ -77.684086674991278, 24.18503534928394 ], [ -77.684080999435295, 24.18513388612639 ], [ -77.684076291364875, 24.185167515407009 ], [ -77.684068814686796, 24.185200528439875 ], [ -77.684047549767357, 24.185264636109938 ], [ -77.684035242847969, 24.185296733774262 ], [ -77.684020924600674, 24.185327609607175 ], [ -77.684004335412311, 24.185356586730961 ], [ -77.683986590990514, 24.185385102489246 ], [ -77.683929992636024, 24.185468626467166 ], [ -77.68382528231156, 24.185599732574463 ], [ -77.683779425112945, 24.185648384960302 ], [ -77.683731649112872, 24.185694720704731 ], [ -77.683666289489423, 24.185769907264884 ], [ -77.683642485931017, 24.185792199930969 ], [ -77.683617310645175, 24.185812939711465 ], [ -77.683590402509182, 24.185831100640254 ], [ -77.683561942982664, 24.185847105560949 ], [ -77.68353143889054, 24.185859683488339 ], [ -77.683466877869392, 24.185879421055695 ], [ -77.683434605892799, 24.185892036675156 ], [ -77.683404946217081, 24.185908693880002 ], [ -77.683378538442653, 24.185932005932241 ], [ -77.683356488395688, 24.185962540715398 ], [ -77.683338584972063, 24.185997625960511 ], [ -77.683323972077375, 24.186034224740755 ], [ -77.683294576506327, 24.186126067457788 ], [ -77.683290357119461, 24.186145746802218 ], [ -77.683289859451634, 24.186154587964854 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 181, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 707 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.625196946396457, 24.181397798800976 ], [ -77.625181581612253, 24.181404771844111 ], [ -77.625131799674151, 24.181431522483045 ], [ -77.625089040764934, 24.181456680846239 ], [ -77.625044534632508, 24.181490163587814 ], [ -77.625019569552435, 24.181515186723537 ], [ -77.624996812531364, 24.181543420616315 ], [ -77.624976239314705, 24.181574043315656 ], [ -77.624956553633567, 24.18160732852947 ], [ -77.624918904341726, 24.181678203707577 ], [ -77.624896291051044, 24.181727576280561 ], [ -77.624828175396317, 24.181898319943354 ], [ -77.624810326769932, 24.181941715089781 ], [ -77.624790918668253, 24.181983906394755 ], [ -77.624725937235539, 24.182103720282651 ], [ -77.624701861487551, 24.182156530435083 ], [ -77.62464680284549, 24.182297802381989 ], [ -77.624599576614401, 24.182424095638147 ], [ -77.624576082974755, 24.182481974986114 ], [ -77.624566264388719, 24.182511244492485 ], [ -77.624481058285681, 24.1828011291833 ], [ -77.624425361839783, 24.182966373512354 ], [ -77.624406795459464, 24.183033706960622 ], [ -77.62439524042999, 24.183094798393899 ], [ -77.624388656677269, 24.183157165727803 ], [ -77.624386471974489, 24.183218918421709 ], [ -77.624388413233831, 24.183278126603831 ], [ -77.624395874640541, 24.183372095392677 ], [ -77.62439601657438, 24.183417865704545 ], [ -77.624391937324702, 24.183462274028034 ], [ -77.62438179354848, 24.183518308261558 ], [ -77.624368924283715, 24.183605513731894 ], [ -77.624350118951554, 24.183710419827623 ], [ -77.624336810410639, 24.18380042941185 ], [ -77.624332498497267, 24.183834292594426 ], [ -77.624328998660928, 24.1838808117406 ], [ -77.624328481231302, 24.183928259334692 ], [ -77.624331019870326, 24.183975874083909 ], [ -77.624334735302327, 24.18401129176241 ], [ -77.624363125658576, 24.184221979216755 ], [ -77.6243910524841, 24.18448912871391 ], [ -77.624430604407763, 24.184744977987801 ], [ -77.624437839439082, 24.184815279433618 ], [ -77.624441368021508, 24.184887263209628 ], [ -77.624441805501036, 24.184959834503648 ], [ -77.62443955072969, 24.185031924728861 ], [ -77.624427108164681, 24.185204820805531 ], [ -77.624425116599696, 24.185269309525129 ], [ -77.62442826160148, 24.185484590460131 ], [ -77.624425193854805, 24.185632711897554 ], [ -77.624426144272363, 24.185686735853519 ], [ -77.624430738256748, 24.185740270567251 ], [ -77.624435778703813, 24.185775227217754 ], [ -77.624452623911992, 24.185869664538764 ], [ -77.624463545629268, 24.185916195234746 ], [ -77.624493333764065, 24.186018518127465 ], [ -77.624581890583102, 24.186306257699155 ], [ -77.624601081292525, 24.186363160949124 ], [ -77.624680520211399, 24.18655825597455 ], [ -77.624778441967266, 24.186776860907973 ], [ -77.62486237515752, 24.186936118063549 ], [ -77.624883182834438, 24.186969537907949 ], [ -77.624991012109575, 24.187108230619629 ], [ -77.625060132979115, 24.187209196360435 ], [ -77.625102035793859, 24.187275119748829 ], [ -77.625128771453333, 24.187321230372302 ], [ -77.625173097024401, 24.187401060630151 ], [ -77.625179546928152, 24.187414220215452 ], [ -77.625182123297364, 24.187424735431367 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 183, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 1441 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.590469464510804, 24.19266781991589 ], [ -77.590476316860205, 24.192668048529363 ], [ -77.590486974472725, 24.19266245599761 ], [ -77.590500977411381, 24.192651812569014 ], [ -77.590517414784486, 24.192636088743363 ], [ -77.590535293055254, 24.192615787641923 ], [ -77.590553672585941, 24.192590698671786 ], [ -77.590571527500543, 24.19256142082558 ], [ -77.590595198108304, 24.19250918529648 ], [ -77.590613377314668, 24.192449152145816 ], [ -77.590625094040945, 24.192384292580943 ], [ -77.590629639516266, 24.192317883458376 ], [ -77.59062868550545, 24.192274437759764 ], [ -77.590624034927217, 24.192217281487377 ], [ -77.590615714731072, 24.192163152133549 ], [ -77.590603440151028, 24.192114395707634 ], [ -77.59056832051499, 24.19201509072235 ], [ -77.59052339217439, 24.191878641192062 ], [ -77.590471816300635, 24.191702795218312 ], [ -77.5904374548427, 24.191600664533713 ], [ -77.590345735953889, 24.191268751740367 ], [ -77.590327292642783, 24.191211285273504 ], [ -77.590302429072366, 24.19114520576975 ], [ -77.590287055304572, 24.191099789765282 ], [ -77.590247913911014, 24.190972441478397 ], [ -77.590197628018032, 24.190795799407539 ], [ -77.590163474070948, 24.190693767147842 ], [ -77.59014623001076, 24.19063530235422 ], [ -77.590113755014926, 24.190516606809812 ], [ -77.590041322056948, 24.190271374226278 ], [ -77.590018642290971, 24.190181015212026 ], [ -77.589978155221075, 24.189973555524134 ], [ -77.58994649499725, 24.189802112217002 ], [ -77.589934373130788, 24.189746292977809 ], [ -77.589909669460454, 24.189650046749474 ], [ -77.58989281526911, 24.189591007051167 ], [ -77.58987290590747, 24.189534702611894 ], [ -77.589844217310514, 24.189471747580264 ], [ -77.589750134055905, 24.189292926997801 ], [ -77.589701305230307, 24.189209357996294 ], [ -77.589643630694098, 24.18912074445921 ], [ -77.589623191326453, 24.189083329581198 ], [ -77.589608630534016, 24.189038626576483 ], [ -77.589602453718115, 24.188992525587647 ], [ -77.589603628714528, 24.188947663579228 ], [ -77.589615286151954, 24.188872273211761 ], [ -77.589616623743424, 24.188845828146391 ], [ -77.589612151031602, 24.188779855583636 ], [ -77.589606254490064, 24.188739499621995 ], [ -77.589597415067715, 24.188698665092129 ], [ -77.5895686510123, 24.188606598880018 ], [ -77.589533013048353, 24.188513395211377 ], [ -77.589475028593384, 24.188347757357811 ], [ -77.589448655853275, 24.188283321000181 ], [ -77.589432487076451, 24.188238584117617 ], [ -77.589391845496365, 24.18811198194944 ], [ -77.589307000516101, 24.187816929584361 ], [ -77.589288195183968, 24.187759612341065 ], [ -77.589262497976932, 24.187693951427253 ], [ -77.589220415499142, 24.187599142606569 ], [ -77.589203178625453, 24.187555794454209 ], [ -77.589160596684366, 24.187434127988372 ], [ -77.589119879645807, 24.18730074814523 ], [ -77.589106860362378, 24.187250641040375 ], [ -77.589088464662012, 24.187168099115514 ], [ -77.589082815157155, 24.187135144773055 ], [ -77.589069061051873, 24.187019270632394 ], [ -77.589060757923676, 24.186968566853658 ], [ -77.589021241034345, 24.186777287844816 ], [ -77.589002477923003, 24.186664982934428 ], [ -77.588948997620889, 24.186372876455383 ], [ -77.588933825974053, 24.186309009443931 ], [ -77.588889038668938, 24.186157387237582 ], [ -77.588841358788613, 24.185978539063964 ], [ -77.588808733774101, 24.18584545024699 ], [ -77.588776706139271, 24.185697198761943 ], [ -77.588766048526765, 24.185630907438323 ], [ -77.588757907993653, 24.185562438763991 ], [ -77.588737049112751, 24.185353979191728 ], [ -77.588727516190929, 24.185286744484436 ], [ -77.58871461458682, 24.185222440973124 ], [ -77.588684582110233, 24.185116639623718 ], [ -77.588591881362817, 24.184845572740752 ], [ -77.588547205448805, 24.184708471437776 ], [ -77.58851157826463, 24.18459262705235 ], [ -77.588492157586529, 24.184536101608174 ], [ -77.588412180576753, 24.184341843449207 ], [ -77.58837084280232, 24.18424613235625 ], [ -77.588309070151823, 24.184079609666657 ], [ -77.588267791666198, 24.183983847569568 ], [ -77.588241568944724, 24.183918798498922 ], [ -77.588222036875521, 24.183858701483569 ], [ -77.588188244051139, 24.183733928136416 ], [ -77.588169767502393, 24.183672913220466 ], [ -77.588085302509484, 24.183438518186964 ], [ -77.588045263698959, 24.183341433789902 ], [ -77.588010279708541, 24.183261975493668 ], [ -77.587988616835474, 24.183214737438476 ], [ -77.58795818281196, 24.18315358869906 ], [ -77.58793714965789, 24.183105801552131 ], [ -77.587904558779385, 24.183024259989715 ], [ -77.587881058851565, 24.182956593827196 ], [ -77.587870260203502, 24.182922178081395 ], [ -77.587855479323807, 24.182864550513955 ], [ -77.587820477367117, 24.182683537567904 ], [ -77.587807547915205, 24.182624288955175 ], [ -77.587770004624517, 24.182480924407653 ], [ -77.587739575092598, 24.182375649352419 ], [ -77.587725559577578, 24.182314363356838 ], [ -77.587691795499239, 24.182123205209802 ], [ -77.587678546247133, 24.182061170082122 ], [ -77.587661772005859, 24.182002165387559 ], [ -77.587649640257951, 24.181968786035746 ], [ -77.587636503295215, 24.181936018832296 ], [ -77.587594308527997, 24.181840519821051 ], [ -77.587500088729399, 24.181612471646154 ], [ -77.587450137908064, 24.181477973668112 ], [ -77.587401447423019, 24.181341485823499 ], [ -77.587360749249086, 24.181242944413128 ], [ -77.587273852516674, 24.181021566665954 ], [ -77.587255294221237, 24.180979367667337 ], [ -77.587224587109901, 24.180920462450793 ], [ -77.587208591707935, 24.180892752076961 ], [ -77.587176601802369, 24.180840045477208 ], [ -77.587160284803574, 24.180816331761612 ], [ -77.587128319152441, 24.18077424168796 ], [ -77.587106171189149, 24.18074832433776 ], [ -77.587085136238429, 24.180730283970753 ], [ -77.587071329132513, 24.180724515543631 ], [ -77.587058266729983, 24.180723818153197 ], [ -77.587046333509733, 24.18072723298997 ], [ -77.587036564331029, 24.180734660075309 ], [ -77.5870282764742, 24.180753224099014 ], [ -77.587028116574075, 24.180777594241821 ], [ -77.587041021771498, 24.180843850390339 ], [ -77.587044494658343, 24.180870926486133 ], [ -77.587045824164989, 24.180899825950679 ], [ -77.587044418301559, 24.18092936133602 ], [ -77.58703924400551, 24.18095945069231 ], [ -77.587030189885795, 24.180988858222825 ], [ -77.587017796728134, 24.181016449749237 ], [ -77.587003058069229, 24.181042228550648 ], [ -77.586986808444067, 24.181065225987286 ], [ -77.586969894065589, 24.181085426490366 ], [ -77.586952846736438, 24.181101953203822 ], [ -77.586936297073933, 24.181114231664726 ], [ -77.586908192381969, 24.18112846707292 ], [ -77.586898627120831, 24.181131332019305 ], [ -77.586892894970575, 24.181130554325065 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 184, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 206 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.590541557005551, 24.195195419236764 ], [ -77.590625233279837, 24.195154466320961 ], [ -77.590663612901977, 24.195138470762181 ], [ -77.590707001530248, 24.195122702995363 ], [ -77.590754594273974, 24.19510945325165 ], [ -77.590804539705474, 24.19509906650045 ], [ -77.590968111240613, 24.195074948192143 ], [ -77.590993185016842, 24.195066922138601 ], [ -77.591013556112557, 24.195052508836522 ], [ -77.591028450179948, 24.195030318575554 ], [ -77.591038438547585, 24.195002074557376 ], [ -77.591044518345441, 24.194969647476775 ], [ -77.591047339055407, 24.194934540117504 ], [ -77.591047255512109, 24.194897990597109 ], [ -77.591044365631817, 24.194861060043188 ], [ -77.591038535565644, 24.194824706339443 ], [ -77.59100303145064, 24.19468035337059 ], [ -77.590991567150994, 24.194645431936806 ], [ -77.590951593917481, 24.1945457233162 ], [ -77.590940449418071, 24.194510537177184 ], [ -77.590904817742327, 24.194363864109611 ], [ -77.59086478432171, 24.194228393007986 ], [ -77.590852851101445, 24.194198594393796 ], [ -77.590837827676651, 24.194173155847455 ], [ -77.590819043005752, 24.194153388425942 ], [ -77.590757064641011, 24.194110292421016 ], [ -77.590737525385308, 24.194091792616149 ], [ -77.590693993026619, 24.194043786687512 ], [ -77.590643148381503, 24.193980059539008 ], [ -77.590534507927714, 24.193823443946428 ], [ -77.590520584939128, 24.193806478857244 ], [ -77.59051152003957, 24.193797282604518 ], [ -77.590508547513863, 24.193796367326449 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 186, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 261 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.619393436198905, 24.197958961268704 ], [ -77.619379912961023, 24.197966207081652 ], [ -77.619361057323189, 24.197973374237769 ], [ -77.619302997409761, 24.197992952608715 ], [ -77.619176409514893, 24.198028289372846 ], [ -77.619063325993636, 24.19805626068527 ], [ -77.618873211936787, 24.198097606791865 ], [ -77.61872907185959, 24.198134543782807 ], [ -77.618683163457007, 24.198149359053755 ], [ -77.618650986701837, 24.198162134058695 ], [ -77.618620412541119, 24.198175413802375 ], [ -77.618549668415881, 24.198209639432648 ], [ -77.61851281592962, 24.19823102122891 ], [ -77.618492125932036, 24.198246731254581 ], [ -77.618474578241262, 24.19826284769206 ], [ -77.618460519607069, 24.198279618814102 ], [ -77.618438249472831, 24.198313204478918 ], [ -77.618424808879581, 24.198330961311108 ], [ -77.618408441575056, 24.198348767303759 ], [ -77.618389668582296, 24.198366982984858 ], [ -77.618275664287921, 24.198462456512953 ], [ -77.618252917148283, 24.198484755154318 ], [ -77.618208401134353, 24.198531405793872 ], [ -77.618165170609629, 24.198580076189465 ], [ -77.618125115629425, 24.198631388248373 ], [ -77.618101340817105, 24.198667699897769 ], [ -77.618057724915118, 24.198739770084416 ], [ -77.618033291637715, 24.198775931756572 ], [ -77.618012819930712, 24.198811313369539 ], [ -77.618003845761024, 24.198836159399022 ], [ -77.617999031689394, 24.198861486398968 ], [ -77.617997880049231, 24.198886588064731 ], [ -77.617998840348278, 24.198912174797613 ], [ -77.618005904699629, 24.198990596663915 ], [ -77.618012898982471, 24.199032348059415 ], [ -77.618025630804979, 24.199074301008132 ], [ -77.618037608042656, 24.19910114544734 ], [ -77.618052112241216, 24.199128479049037 ], [ -77.618142546539175, 24.199272332078944 ], [ -77.618170235311212, 24.199312609325073 ], [ -77.618199515897913, 24.199348119431125 ], [ -77.61822367249421, 24.199371853463418 ], [ -77.618289357307773, 24.199428100300096 ], [ -77.618305070638712, 24.19944373315699 ], [ -77.618323264218162, 24.19946580629869 ], [ -77.618324065515239, 24.199471301030663 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 193, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 171 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.643568686919764, 24.202604973879918 ], [ -77.643567917063834, 24.202596852431608 ], [ -77.643569590625219, 24.202579882774216 ], [ -77.643573809113803, 24.202556218984313 ], [ -77.643580878855062, 24.202528327317324 ], [ -77.64359117803977, 24.202498787101206 ], [ -77.643624278263104, 24.202429973520989 ], [ -77.643636353417136, 24.202395655617064 ], [ -77.643647197879247, 24.202347864208782 ], [ -77.643666704795635, 24.202277134890874 ], [ -77.643691075190972, 24.20215441156947 ], [ -77.643718287855862, 24.202058391016788 ], [ -77.643745836490709, 24.201930260534699 ], [ -77.643774622105667, 24.201835775293212 ], [ -77.643797371041927, 24.20174607750349 ], [ -77.643826444117792, 24.201651898566421 ], [ -77.643848105194223, 24.201556828094535 ], [ -77.64385601486029, 24.201525969300445 ], [ -77.643865449865714, 24.201496738570768 ], [ -77.643908518693692, 24.201392755777732 ], [ -77.643919900348365, 24.201371795664148 ], [ -77.643956328829788, 24.201322923951686 ], [ -77.643965052369481, 24.201309341371509 ], [ -77.643996982986266, 24.201253944225261 ], [ -77.644017777188466, 24.201227851595739 ], [ -77.64405112804171, 24.201194604276662 ], [ -77.644078931798049, 24.20117293210324 ], [ -77.644085366430431, 24.20116895163336 ], [ -77.644092047200459, 24.201166903223491 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 197, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 579 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.590169807500772, 24.200865855161602 ], [ -77.590172832719588, 24.200813210358369 ], [ -77.590185003993341, 24.200675600186415 ], [ -77.590188986225016, 24.200641476819669 ], [ -77.590201313805679, 24.200573360338179 ], [ -77.590224793970549, 24.200468012543539 ], [ -77.590238948724476, 24.200415376304477 ], [ -77.590255783152926, 24.200364331258534 ], [ -77.590268633553052, 24.200331726919121 ], [ -77.590378327730718, 24.20007408417316 ], [ -77.590395922133879, 24.200023932924665 ], [ -77.590411296799957, 24.19997259356753 ], [ -77.590473883324094, 24.199747352207808 ], [ -77.590483243769398, 24.199717583561529 ], [ -77.59049447899865, 24.199688399121506 ], [ -77.590565671383246, 24.199544403989936 ], [ -77.59060595184053, 24.199471759876378 ], [ -77.590631728099325, 24.199428627977657 ], [ -77.590686739130689, 24.199344891910449 ], [ -77.590720214849782, 24.19928539293365 ], [ -77.590734937338937, 24.19925378140233 ], [ -77.590754743394299, 24.199198068722257 ], [ -77.590770011160913, 24.199138141142786 ], [ -77.590781959652503, 24.1990753088423 ], [ -77.590791601270425, 24.1990107050161 ], [ -77.590814722109243, 24.198816178023073 ], [ -77.590834555114071, 24.198662967158796 ], [ -77.590842176420921, 24.198574235644653 ], [ -77.590848198726604, 24.198521529795755 ], [ -77.590857363339126, 24.198469284417353 ], [ -77.590905200424643, 24.198277638366608 ], [ -77.590930912004694, 24.198167334684079 ], [ -77.59101422086583, 24.197849823291239 ], [ -77.591042630985001, 24.197720239904658 ], [ -77.591051275472992, 24.197667538619068 ], [ -77.5910768424243, 24.197410669727354 ], [ -77.591081193863516, 24.197345628323564 ], [ -77.591085539014571, 24.197212009751457 ], [ -77.591085594710094, 24.197145311440217 ], [ -77.591081891854515, 24.196990297547224 ], [ -77.591082755135503, 24.196938710331843 ], [ -77.591090897465236, 24.196781963173333 ], [ -77.591091469692074, 24.196713198948526 ], [ -77.59108900022332, 24.19664469771174 ], [ -77.591082740762459, 24.196577842599613 ], [ -77.591068576127071, 24.196485514952794 ], [ -77.59105863087855, 24.196430972797085 ], [ -77.59104651080871, 24.196378591361945 ], [ -77.591030965462735, 24.196329884072636 ], [ -77.591018325268379, 24.196300246551044 ], [ -77.590996856431403, 24.196259006383059 ], [ -77.590971326311006, 24.196223583092021 ], [ -77.590950749501118, 24.196204081472594 ], [ -77.590926363834399, 24.196186779108981 ], [ -77.590899068524521, 24.196170985251101 ], [ -77.590808096135689, 24.196123275907247 ], [ -77.590676600744388, 24.196045196424077 ], [ -77.590653659568673, 24.19603463685635 ], [ -77.590631209771416, 24.196026737869758 ], [ -77.590564986866966, 24.196011096399928 ], [ -77.59055739250914, 24.196007696725786 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 206, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 1643 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.632694769951243, 24.210282298560369 ], [ -77.632691997749205, 24.210272070347965 ], [ -77.632670429199251, 24.210243958337696 ], [ -77.632587127524644, 24.210149313759342 ], [ -77.632484499494993, 24.210024014742856 ], [ -77.632431422536413, 24.209964871414357 ], [ -77.632393775939477, 24.209925741287698 ], [ -77.632358281706004, 24.209894772274595 ], [ -77.632335750162014, 24.209880522052611 ], [ -77.632272580631252, 24.209853845383719 ], [ -77.632242053182949, 24.20983796063733 ], [ -77.632215225895266, 24.209816551292946 ], [ -77.632200938190692, 24.209798564196408 ], [ -77.63218987992957, 24.209778190451431 ], [ -77.632182648491536, 24.209755078573469 ], [ -77.632179258249636, 24.209729897936349 ], [ -77.632179188181055, 24.209703279406892 ], [ -77.632182285572142, 24.209664632592336 ], [ -77.632188542338099, 24.209623568802858 ], [ -77.632198036632332, 24.209581435800786 ], [ -77.632222221076418, 24.209500881230895 ], [ -77.632251799903798, 24.209418973927804 ], [ -77.632296304239603, 24.209309115759808 ], [ -77.632322441621071, 24.209256915768396 ], [ -77.632394327505054, 24.209141057634124 ], [ -77.632460411170641, 24.209021934430485 ], [ -77.632490951195336, 24.208962373606209 ], [ -77.632504531925804, 24.208931692757503 ], [ -77.632527956395194, 24.208869171708063 ], [ -77.632541147256802, 24.208820311063405 ], [ -77.632550424158751, 24.2087703222032 ], [ -77.632562611602182, 24.208685414916065 ], [ -77.632571862453005, 24.208632977067566 ], [ -77.632600822341118, 24.208488936326621 ], [ -77.632612838206384, 24.208433802024331 ], [ -77.63262674861852, 24.2083797655837 ], [ -77.632653514820731, 24.208292400082019 ], [ -77.632670910696248, 24.208240829730073 ], [ -77.632708319239626, 24.208140900694488 ], [ -77.632763661749308, 24.20797109096025 ], [ -77.632792733926863, 24.207892305924503 ], [ -77.632810727182019, 24.207847855310312 ], [ -77.632836283353484, 24.207794217630735 ], [ -77.632849626030421, 24.207769634710868 ], [ -77.632865227071974, 24.207746181630814 ], [ -77.632883863520831, 24.20772451630663 ], [ -77.632905785108704, 24.207705298293281 ], [ -77.632930907393984, 24.207688172006243 ], [ -77.632979730829646, 24.207665459578433 ], [ -77.633035395834568, 24.207648396373838 ], [ -77.633095254175203, 24.207635110243007 ], [ -77.633132689668031, 24.207628517975166 ], [ -77.633191388283663, 24.207622026483552 ], [ -77.633252819574338, 24.2076193423832 ], [ -77.633315841781453, 24.207619944585204 ], [ -77.633379443401878, 24.207623514373111 ], [ -77.633580976842595, 24.207639893446899 ], [ -77.633992531905179, 24.207667209650566 ], [ -77.634070705097827, 24.20767354055269 ], [ -77.63422557824606, 24.207689010172668 ], [ -77.63434366358679, 24.207696988730156 ], [ -77.634496186742268, 24.207711159722077 ], [ -77.634650226253925, 24.20772046394098 ], [ -77.63481152505139, 24.207726240978968 ], [ -77.634975552930726, 24.207728955391978 ], [ -77.635138749868361, 24.207727981218369 ], [ -77.635218951456949, 24.207725584702221 ], [ -77.635424597385082, 24.207713859387663 ], [ -77.635508221554858, 24.207710938505173 ], [ -77.635848508774345, 24.207704770649954 ], [ -77.635932386269076, 24.207702132433361 ], [ -77.636014555168103, 24.20769788506842 ], [ -77.636094195309639, 24.20769124118647 ], [ -77.636170290699027, 24.20768122579392 ], [ -77.636211066128084, 24.207673976432069 ], [ -77.636329836883405, 24.207649632731069 ], [ -77.636482876570128, 24.207611626003978 ], [ -77.636639984726813, 24.207577819933213 ], [ -77.636708197399614, 24.207566484602719 ], [ -77.636920942713388, 24.207540262173691 ], [ -77.636990721149701, 24.207530439310204 ], [ -77.637057936692543, 24.207518165850541 ], [ -77.637225201201801, 24.207478572874155 ], [ -77.637496806827954, 24.207416549260696 ], [ -77.637559761661407, 24.207400204569751 ], [ -77.637632632997281, 24.207377774757475 ], [ -77.637703511869802, 24.207353437554488 ], [ -77.637773156457129, 24.20732817778773 ], [ -77.637910002214241, 24.207275061799258 ], [ -77.638008055124146, 24.207230776473377 ], [ -77.638103652040044, 24.207183882400521 ], [ -77.638169792299493, 24.207155011013565 ], [ -77.638220987287525, 24.207135072727215 ], [ -77.638448031984041, 24.207053390037565 ], [ -77.638515814363785, 24.207025834459063 ], [ -77.638567810649079, 24.207006662222675 ], [ -77.638656032396483, 24.206975946491461 ], [ -77.638799523890086, 24.206929448879048 ], [ -77.638940055434787, 24.206879603478725 ], [ -77.63901251624057, 24.206856781936271 ], [ -77.639068721132929, 24.206841638307694 ], [ -77.639126392974191, 24.206827898185317 ], [ -77.639165542452588, 24.206819152682723 ], [ -77.639236254238497, 24.206806403944544 ], [ -77.639633259288402, 24.206751810490132 ], [ -77.639700027470255, 24.206742180927321 ], [ -77.639764832833123, 24.206730672644238 ], [ -77.639826325209313, 24.206715992740431 ], [ -77.639862860590213, 24.206704745001431 ], [ -77.639932313836397, 24.206679300757155 ], [ -77.639965223616827, 24.206664582338973 ], [ -77.640028250315467, 24.206632731754897 ], [ -77.640150016952248, 24.206564922446088 ], [ -77.640212191149658, 24.206532253327058 ], [ -77.640391803002572, 24.206451121660098 ], [ -77.640440305739688, 24.206428602373727 ], [ -77.640471718926847, 24.206412448460043 ], [ -77.640532855570171, 24.20637877971874 ], [ -77.640592475857261, 24.206343915565128 ], [ -77.640677077394045, 24.206286475556666 ], [ -77.64073060620521, 24.206245772003779 ], [ -77.640755889288897, 24.206223742641303 ], [ -77.640804796267915, 24.206178349213697 ], [ -77.640923892213337, 24.20606166239352 ], [ -77.640973597794655, 24.206016996475618 ], [ -77.641103628033719, 24.205910903489634 ], [ -77.641257681918404, 24.20578107840009 ], [ -77.6413120704173, 24.205740736012334 ], [ -77.641399068659283, 24.205685735711366 ], [ -77.641484632291778, 24.20562906148475 ], [ -77.641538230273213, 24.205587902990672 ], [ -77.641588734456832, 24.205543832563901 ], [ -77.641612891951439, 24.205520657648474 ], [ -77.641636325403908, 24.205497086989503 ], [ -77.641737400246413, 24.205386870667958 ], [ -77.641772873818695, 24.205352369209312 ], [ -77.641798505448691, 24.205331802209315 ], [ -77.641825890590141, 24.205312951717655 ], [ -77.641855119074535, 24.205296472385651 ], [ -77.641886426260484, 24.205282174947275 ], [ -77.641948338149874, 24.205263626783825 ], [ -77.642015933680085, 24.205252979491156 ], [ -77.642086623008097, 24.205248734502568 ], [ -77.64215800314058, 24.205249898781478 ], [ -77.642227689050387, 24.205255917636009 ], [ -77.642339271486804, 24.205271316267041 ], [ -77.642401669364745, 24.205276248679052 ], [ -77.64246421007482, 24.205276012709867 ], [ -77.642524729575527, 24.205269650553795 ], [ -77.642560966715791, 24.205261477661264 ], [ -77.642598541447484, 24.205249648064115 ], [ -77.64263676655942, 24.205234186341492 ], [ -77.642674980891627, 24.205215056441123 ], [ -77.642712698455469, 24.205193332513655 ], [ -77.642749763842403, 24.205169143193785 ], [ -77.642785696453799, 24.205143608515773 ], [ -77.642820338186056, 24.205116825160662 ], [ -77.642900433773434, 24.205051502558518 ], [ -77.642941139133882, 24.205014991169964 ], [ -77.642982215498606, 24.204970833695093 ], [ -77.643002223674927, 24.204944312492358 ], [ -77.643016107137598, 24.204923162056613 ], [ -77.643022142917999, 24.204692961778019 ], [ -77.643033678184594, 24.20467609891406 ], [ -77.643043109596775, 24.204655697311988 ], [ -77.643053094371126, 24.204628320650976 ], [ -77.643097457671431, 24.204480074614228 ], [ -77.643104062085428, 24.204447683537396 ], [ -77.643107167561368, 24.204417102381033 ], [ -77.643106928609484, 24.204389823170633 ], [ -77.64309657193256, 24.204302265665429 ], [ -77.643096183860351, 24.204272988050477 ], [ -77.643097892456041, 24.204243367942947 ], [ -77.643101756110084, 24.204214079663 ], [ -77.643107975146791, 24.204185781963826 ], [ -77.643126180404337, 24.204123451951627 ], [ -77.643147705835176, 24.204034175276618 ], [ -77.643167353787078, 24.203969877940704 ], [ -77.64317527153797, 24.203937647325997 ], [ -77.643181223775073, 24.203903499432684 ], [ -77.64318917656027, 24.203831377269008 ], [ -77.643202388981479, 24.203605398758995 ], [ -77.643208821817197, 24.203533096989336 ], [ -77.643213533480889, 24.203498994051859 ], [ -77.643233227246853, 24.203406445276681 ], [ -77.643236156652989, 24.203378802058726 ], [ -77.643237428667419, 24.203348145265732 ], [ -77.643235570053136, 24.203273745813124 ], [ -77.643236360570583, 24.203245038229962 ], [ -77.643239086059168, 24.203217064778567 ], [ -77.643243491397271, 24.203190996312017 ], [ -77.643256711903334, 24.203132618364137 ], [ -77.643260443504388, 24.203107138179067 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 233, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 3248 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.624172931142638, 24.234594664536953 ], [ -77.624237821456234, 24.234561215169411 ], [ -77.624301761741535, 24.234530084220648 ], [ -77.624367418707322, 24.234500587467682 ], [ -77.62446824651316, 24.234458975482511 ], [ -77.624567598386903, 24.234415753034643 ], [ -77.624664252619951, 24.234370122269965 ], [ -77.624726439393783, 24.234337659335562 ], [ -77.624786037222989, 24.234302993696375 ], [ -77.624869951548646, 24.2342467245752 ], [ -77.624923290815261, 24.234207541291035 ], [ -77.625025158870159, 24.234128393215734 ], [ -77.625049229228196, 24.234108576290151 ], [ -77.625093516171731, 24.23406709114543 ], [ -77.625131968557454, 24.234023625276158 ], [ -77.625230231673129, 24.23388115161832 ], [ -77.625305790768294, 24.233780589012905 ], [ -77.625323929550518, 24.233753348856538 ], [ -77.625358211058355, 24.233696265252572 ], [ -77.62538902956085, 24.233634957240085 ], [ -77.625410426532568, 24.233579088390634 ], [ -77.625428612925532, 24.233519882275701 ], [ -77.62546265188827, 24.233398923205144 ], [ -77.625482088736064, 24.233340817953458 ], [ -77.625505681190347, 24.23328688218627 ], [ -77.625522362006905, 24.233257338453171 ], [ -77.625540612180188, 24.233229190558045 ], [ -77.625581048944412, 24.233177513162442 ], [ -77.625625470635185, 24.233130762983514 ], [ -77.625672731900622, 24.233088334668512 ], [ -77.625745101078209, 24.233030940305074 ], [ -77.625787983954936, 24.232991633772841 ], [ -77.625862784872027, 24.232909208302271 ], [ -77.625969886511754, 24.232800690061659 ], [ -77.626033360571427, 24.232728135357426 ], [ -77.626074597734572, 24.232677333441814 ], [ -77.626193299319581, 24.232515982320965 ], [ -77.626214563340667, 24.232490440837019 ], [ -77.62627983852245, 24.232414514281167 ], [ -77.626325196257795, 24.232365645465752 ], [ -77.626372129638099, 24.232318252764419 ], [ -77.626421792998599, 24.23227346252914 ], [ -77.626631307970641, 24.232104782646697 ], [ -77.626685623705967, 24.232064503479339 ], [ -77.626852900791675, 24.231948142642938 ], [ -77.626907410563106, 24.231908094430864 ], [ -77.626959653885081, 24.231865883606673 ], [ -77.627059908565741, 24.231777429975903 ], [ -77.627137667635054, 24.231713430074066 ], [ -77.627191706689288, 24.23167295745926 ], [ -77.627275070347665, 24.231614844866368 ], [ -77.627301795227353, 24.231594200189534 ], [ -77.627327719708148, 24.231573045167465 ], [ -77.62750334843102, 24.231418349217549 ], [ -77.62758070236012, 24.231353970678768 ], [ -77.627607438019638, 24.231333334151302 ], [ -77.627635306454692, 24.231314038601898 ], [ -77.62769333043552, 24.231277378278815 ], [ -77.627784244433869, 24.231226218625803 ], [ -77.627938252504492, 24.231143473354511 ], [ -77.628117063060117, 24.231037883786403 ], [ -77.628270398292571, 24.230954029233384 ], [ -77.628387541300569, 24.230881673354805 ], [ -77.628442673604496, 24.230842013095291 ], [ -77.628548260684695, 24.230758065027388 ], [ -77.628650952494723, 24.23067113674843 ], [ -77.628749999839641, 24.230580590934359 ], [ -77.628796287331255, 24.230532256336293 ], [ -77.628817861271102, 24.230506496553676 ], [ -77.62883819194262, 24.230479850418028 ], [ -77.628865946291654, 24.230436991971413 ], [ -77.628907360422886, 24.23036172936192 ], [ -77.628921959842884, 24.230330186978744 ], [ -77.628941990477088, 24.230269864453131 ], [ -77.628955662835693, 24.230204533449633 ], [ -77.628964220187115, 24.230135859348621 ], [ -77.628968467421771, 24.23006524867365 ], [ -77.62896880967989, 24.229993943296027 ], [ -77.628965284690693, 24.229923099076295 ], [ -77.628957575348977, 24.229853870238994 ], [ -77.62894501061308, 24.22978748146075 ], [ -77.628925354576339, 24.229715369854137 ], [ -77.628867195848201, 24.229540636927119 ], [ -77.628836080901721, 24.229432679412366 ], [ -77.628823527843949, 24.229369078092851 ], [ -77.628815184291582, 24.229302625984758 ], [ -77.628810371118291, 24.229234314295528 ], [ -77.628808672404048, 24.229165040847818 ], [ -77.628809930045477, 24.229095666602671 ], [ -77.628814248247068, 24.229027072183669 ], [ -77.628822001606267, 24.228960211942844 ], [ -77.628833864757894, 24.228896179495646 ], [ -77.62885084291679, 24.22883627161788 ], [ -77.628863703198405, 24.228802877495902 ], [ -77.628878016954133, 24.228770473761639 ], [ -77.628915346445766, 24.228698493468027 ], [ -77.62893905927433, 24.228659339605269 ], [ -77.628965914409704, 24.228623130709131 ], [ -77.628988563632959, 24.228598610790137 ], [ -77.629012829823751, 24.228575628481746 ], [ -77.629064736277499, 24.228532631770534 ], [ -77.629147026449118, 24.228472558245674 ], [ -77.629232200212755, 24.228415094627746 ], [ -77.629407944818354, 24.228306198186665 ], [ -77.629586732916067, 24.228200569401828 ], [ -77.629643700478127, 24.228162811286278 ], [ -77.62969869354319, 24.228123180489845 ], [ -77.629778522330895, 24.228061085827626 ], [ -77.629855988549437, 24.227997007053489 ], [ -77.629931046384698, 24.227930632052498 ], [ -77.629999688452187, 24.227857859125162 ], [ -77.630109262255615, 24.227732012283958 ], [ -77.630173729851933, 24.22765520553385 ], [ -77.630274238755831, 24.227520575908731 ], [ -77.630564290388051, 24.227151951789036 ], [ -77.63062432300184, 24.227071381296366 ], [ -77.630642985501879, 24.227043546605397 ], [ -77.630666237494708, 24.227004694517628 ], [ -77.630710257638583, 24.226925413349992 ], [ -77.630760765415459, 24.226839685038083 ], [ -77.630803250338474, 24.226763704321847 ], [ -77.630825044365537, 24.226727794713607 ], [ -77.630875603346382, 24.22665462378675 ], [ -77.6308899808825, 24.226629845440634 ], [ -77.631015889651053, 24.226379161739853 ], [ -77.631073835478432, 24.226254475066497 ], [ -77.631105057324476, 24.2261932699666 ], [ -77.631170985581505, 24.22607318703653 ], [ -77.631374238397683, 24.225685471221734 ], [ -77.631458967495249, 24.225529922696218 ], [ -77.631490183951399, 24.225479580760535 ], [ -77.631537305977943, 24.225397433872452 ], [ -77.631645927567135, 24.225188157971996 ], [ -77.63167648825312, 24.225126117584701 ], [ -77.631697293235106, 24.225077192723056 ], [ -77.631736005233975, 24.224976570733872 ], [ -77.63175670780798, 24.224927761323535 ], [ -77.631771628824865, 24.224896704205729 ], [ -77.631892810658371, 24.224659331760495 ], [ -77.631936653834131, 24.224579333959266 ], [ -77.631976274928064, 24.224502609686471 ], [ -77.632006646967824, 24.224451476802979 ], [ -77.632029289004549, 24.224410219529855 ], [ -77.632098443111744, 24.224279778398685 ], [ -77.632117630227896, 24.224238150784515 ], [ -77.632209553932597, 24.224021713022655 ], [ -77.632312020265502, 24.223752554902823 ], [ -77.632359915741503, 24.22363330445582 ], [ -77.632378060811916, 24.223591652053706 ], [ -77.632435030170598, 24.223475786475131 ], [ -77.63245199126149, 24.223431178273035 ], [ -77.632485595439647, 24.223309375649887 ], [ -77.632500986275389, 24.223263292790119 ], [ -77.632543335552867, 24.223155239019334 ], [ -77.632572372696089, 24.223072685935648 ], [ -77.6326280260229, 24.222887805173759 ], [ -77.632649590081257, 24.222828091902208 ], [ -77.632678361323187, 24.222763746704263 ], [ -77.632716713995933, 24.22268525099118 ], [ -77.632740754709573, 24.222638892645655 ], [ -77.632774821520087, 24.222579461890557 ], [ -77.632839567594189, 24.222456237093915 ], [ -77.632856676008771, 24.222426564686582 ], [ -77.632892095682124, 24.222367857210379 ], [ -77.632929917450511, 24.222311710613791 ], [ -77.632949724404241, 24.222284367238469 ], [ -77.632991828441604, 24.222232325759162 ], [ -77.633036223182941, 24.222182478972588 ], [ -77.633196143964767, 24.222012467580409 ], [ -77.633350287681026, 24.221836690213429 ], [ -77.633488842932081, 24.221669598103045 ], [ -77.633521539811824, 24.221631933901062 ], [ -77.633591873406985, 24.221562627644239 ], [ -77.633708640020885, 24.221451061195729 ], [ -77.633752904506508, 24.221406877466716 ], [ -77.633794436317032, 24.221362708468678 ], [ -77.633832043388097, 24.221318390354536 ], [ -77.633881434559044, 24.221251175433608 ], [ -77.633973943965316, 24.221132229857709 ], [ -77.634015208077912, 24.221084048966336 ], [ -77.634103724472752, 24.220989340348112 ], [ -77.634146389957152, 24.220938761496598 ], [ -77.634207657754501, 24.220859948433059 ], [ -77.634320328050649, 24.220691452505001 ], [ -77.634396405473765, 24.220581876044424 ], [ -77.634431409227162, 24.220525375568297 ], [ -77.634447220474485, 24.22049609348845 ], [ -77.634465783261476, 24.220454929965825 ], [ -77.634481825375815, 24.220412237727679 ], [ -77.634506143668872, 24.220336978204482 ], [ -77.634518353570243, 24.220287657448061 ], [ -77.63454573781334, 24.220139307562693 ], [ -77.634583923399433, 24.219992974480583 ], [ -77.634602425999375, 24.219937246289611 ], [ -77.634628028883242, 24.21987286440368 ], [ -77.634648141264137, 24.219816988696167 ], [ -77.634753321407487, 24.219502174127349 ], [ -77.634771320052565, 24.219435761109512 ], [ -77.634780113660881, 24.219390474794476 ], [ -77.634785806284839, 24.219344520777028 ], [ -77.634788671012245, 24.219298710930502 ], [ -77.634792788889513, 24.219127318532358 ], [ -77.634788983625995, 24.218917854551272 ], [ -77.634786702803467, 24.218533066260818 ], [ -77.634781726136779, 24.218378286470848 ], [ -77.634768266678904, 24.218186214851869 ], [ -77.634765104609116, 24.218109074642427 ], [ -77.634757106908125, 24.217716794256614 ], [ -77.634753113896679, 24.21764054265785 ], [ -77.634746638840127, 24.217566548070653 ], [ -77.634736632506147, 24.217495780501551 ], [ -77.634716437480293, 24.217396336352706 ], [ -77.634701870399638, 24.21733618875664 ], [ -77.634684236470591, 24.21727925590984 ], [ -77.634658699163694, 24.217216023741816 ], [ -77.63464470071662, 24.217185935567706 ], [ -77.634591456671401, 24.217089474927604 ], [ -77.63457134339221, 24.217048978821698 ], [ -77.634558553179204, 24.217010495629943 ], [ -77.63455058602095, 24.216970447635404 ], [ -77.634546783452322, 24.216930019490505 ], [ -77.634545486285077, 24.216809079888638 ], [ -77.634541820260381, 24.216763186384682 ], [ -77.634533263807313, 24.216717801627119 ], [ -77.634524692082863, 24.216688629272639 ], [ -77.634514487221239, 24.216659665004631 ], [ -77.63450257466225, 24.216631399562701 ], [ -77.634473852827682, 24.216577809001542 ], [ -77.634432064098988, 24.216514963997856 ], [ -77.634403582114587, 24.216480700681267 ], [ -77.634382374687348, 24.21646065489178 ], [ -77.634336831899034, 24.216425560825101 ], [ -77.634312688777513, 24.216410818954678 ], [ -77.634274036067467, 24.216393983857881 ], [ -77.634234276632995, 24.216382435483229 ], [ -77.634182037802574, 24.21637099770841 ], [ -77.634142458929475, 24.216359065095791 ], [ -77.634104148477505, 24.216341480363393 ], [ -77.634080329647801, 24.216325995408603 ], [ -77.634058017292773, 24.216308035447504 ], [ -77.634037338074918, 24.216287278507377 ], [ -77.634018009923224, 24.216264358699274 ], [ -77.63399974897014, 24.216239905219169 ], [ -77.633974815331143, 24.216199485035091 ], [ -77.633936836357549, 24.216126742271214 ], [ -77.633915838237797, 24.216080343852337 ], [ -77.633868984807492, 24.215968607109559 ], [ -77.633856545835783, 24.215935728210713 ], [ -77.633841793702189, 24.215889839307739 ], [ -77.633816582483732, 24.215794038837043 ], [ -77.633796417102232, 24.215701264679595 ], [ -77.633763298912683, 24.215486902373296 ], [ -77.633754629271849, 24.215420671598284 ], [ -77.633732659174953, 24.215218427515591 ], [ -77.633722864843406, 24.215153125657736 ], [ -77.633709720694185, 24.215090704335321 ], [ -77.633699931752545, 24.215055133892665 ], [ -77.633683740517853, 24.215002687195625 ], [ -77.633665117543657, 24.214952313243593 ], [ -77.63363591151716, 24.214889121703632 ], [ -77.633619765198247, 24.214858709365938 ], [ -77.633584102979768, 24.214800990545207 ], [ -77.633564717335958, 24.214773326859095 ], [ -77.633522217141532, 24.214721433057903 ], [ -77.633453465479576, 24.214648020100555 ], [ -77.633408849752669, 24.214598037622956 ], [ -77.633387481527038, 24.214572439292017 ], [ -77.633347671786879, 24.214518772491164 ], [ -77.63333009894329, 24.214490275537759 ], [ -77.633305463544929, 24.21443526098896 ], [ -77.633287485561183, 24.214375575706796 ], [ -77.633274309970915, 24.21431338585948 ], [ -77.63326451743599, 24.214250684751185 ], [ -77.633260322303613, 24.214215327086844 ], [ -77.633257864512956, 24.214152262169723 ], [ -77.633262066831875, 24.214089214426405 ], [ -77.633273152042463, 24.214028105890591 ], [ -77.633291906170712, 24.213970988865562 ], [ -77.6333062190281, 24.213940922864939 ], [ -77.63332222071827, 24.213911853923445 ], [ -77.633383066307402, 24.213810752845248 ], [ -77.633410746096246, 24.213767828161863 ], [ -77.633491189331593, 24.213659095342603 ], [ -77.633510534551263, 24.21363081940348 ], [ -77.633547181323294, 24.213572488021256 ], [ -77.633564338246899, 24.213542053248602 ], [ -77.633580409107353, 24.213510833594007 ], [ -77.633603125704241, 24.213457591554899 ], [ -77.633662431581001, 24.213289447140614 ], [ -77.633685526368623, 24.213236619567819 ], [ -77.633702041895106, 24.213205873386087 ], [ -77.633726168847005, 24.21316658121663 ], [ -77.633753526140694, 24.21313043755508 ], [ -77.633785737031829, 24.213099026905716 ], [ -77.633832019133592, 24.213069223690624 ], [ -77.633884964039794, 24.213046082095918 ], [ -77.633942097790197, 24.213027379397875 ], [ -77.634001224003882, 24.213011213212098 ], [ -77.634133157773007, 24.212977437248846 ], [ -77.634205348185873, 24.212961366913436 ], [ -77.634277375105398, 24.212949830516973 ], [ -77.634313391260036, 24.212946113406371 ], [ -77.634361721520648, 24.212944761580776 ], [ -77.634410118256568, 24.212947733139139 ], [ -77.634457509777704, 24.212955055117643 ], [ -77.634492196425768, 24.212963335662749 ], [ -77.634543319548612, 24.212978531817647 ], [ -77.634592722397642, 24.212997341849601 ], [ -77.634624302671469, 24.213012177513779 ], [ -77.634746612788973, 24.21307870366503 ], [ -77.634810847721681, 24.213110350274071 ], [ -77.634844640546035, 24.213124808233783 ], [ -77.634903986846965, 24.213143750149367 ], [ -77.634968246932488, 24.213157750943161 ], [ -77.635035940379069, 24.213167715928758 ], [ -77.635105787985651, 24.213174307090853 ], [ -77.635176646196967, 24.213177968483276 ], [ -77.635247445119447, 24.213178947530899 ], [ -77.6353171265377, 24.213177308138189 ], [ -77.635384589117223, 24.213172944617 ], [ -77.635543232494754, 24.213157941837014 ], [ -77.635619705176552, 24.213152578785142 ], [ -77.635657711099554, 24.213151905331319 ], [ -77.635926815815992, 24.213154714666036 ], [ -77.635989451747491, 24.2131580680072 ], [ -77.636051111210293, 24.213165689832557 ], [ -77.636109945471517, 24.213178109400616 ], [ -77.636210306153345, 24.213208857227663 ], [ -77.636263738844789, 24.21322118421207 ], [ -77.636320233893017, 24.213230089036138 ], [ -77.636378591148798, 24.213235952668757 ], [ -77.636437678734936, 24.213239029088978 ], [ -77.636538399641211, 24.213241510707253 ], [ -77.63666456622623, 24.213248300132783 ], [ -77.636848088445547, 24.213265579698376 ], [ -77.636936035308466, 24.213270507704557 ], [ -77.637036031274349, 24.213272792693537 ], [ -77.637142624467614, 24.213272406809782 ], [ -77.637250353131449, 24.213269331209659 ], [ -77.637353799526338, 24.213263558519408 ], [ -77.637447646524024, 24.213255137076533 ], [ -77.637526786303951, 24.213244281533537 ], [ -77.637586517982129, 24.213231594065288 ], [ -77.637610323337157, 24.213224214752618 ], [ -77.637626575657293, 24.213217638340314 ], [ -77.637634732360056, 24.213212092590091 ], [ -77.637634516762489, 24.21320818787305 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 235, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 60 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.642874489529277, 24.239437075246691 ], [ -77.642850651835374, 24.23943679592313 ], [ -77.642817982803436, 24.239433625937249 ], [ -77.642783196442352, 24.239426087595849 ], [ -77.642768115525342, 24.239420042505916 ], [ -77.642758239447147, 24.239414051477493 ], [ -77.642737388651085, 24.239395059407677 ], [ -77.642710151731677, 24.23937485831658 ], [ -77.642693802393481, 24.239359846336722 ], [ -77.642688281347745, 24.239356424060524 ], [ -77.642682304856152, 24.23935460152229 ], [ -77.642676181939208, 24.239354395104456 ], [ -77.642670386008973, 24.239355811359999 ], [ -77.642665409342314, 24.239358936296291 ], [ -77.642661187260487, 24.239364677496287 ], [ -77.642656998416285, 24.239380828049811 ], [ -77.642657670356158, 24.239399616161318 ], [ -77.642659871228574, 24.239408885300577 ], [ -77.642663521981916, 24.23941752044194 ], [ -77.642683410682267, 24.239443901769722 ], [ -77.642688200499379, 24.239452620458664 ], [ -77.642703276026481, 24.23949126724429 ], [ -77.642707991283416, 24.239500076032911 ], [ -77.642714010894139, 24.239507725769869 ], [ -77.642721679811714, 24.239513843757052 ], [ -77.642730676439243, 24.23951878057688 ], [ -77.642760703525937, 24.239530810132369 ], [ -77.642770345143916, 24.239535680603016 ], [ -77.642779446874371, 24.239542700436854 ], [ -77.642787316116241, 24.239552058030295 ], [ -77.642794009463415, 24.239563036655589 ], [ -77.642815507046478, 24.239605841244096 ], [ -77.642825154952632, 24.239615752555768 ], [ -77.642828890147584, 24.239617147511414 ], [ -77.642831413514699, 24.239616556932852 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 236, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 2136 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.642740753739673, 24.239794988259529 ], [ -77.642733785508469, 24.239798222942127 ], [ -77.642725644975343, 24.239799508134297 ], [ -77.64271651360049, 24.239798249153814 ], [ -77.642707205257523, 24.23979385951397 ], [ -77.642698771873626, 24.239786046790229 ], [ -77.642691558401907, 24.239775260676385 ], [ -77.642663575880817, 24.239712508214119 ], [ -77.642654008823058, 24.239696499409813 ], [ -77.64264182317622, 24.239682191088679 ], [ -77.642626971329619, 24.239670786533232 ], [ -77.642610038984841, 24.239662116187112 ], [ -77.642552647417958, 24.239642592547685 ], [ -77.642533571692866, 24.239634948552663 ], [ -77.642515162517782, 24.239624625226853 ], [ -77.642497044396777, 24.239610558537098 ], [ -77.642479369145278, 24.239593482410779 ], [ -77.642462488902765, 24.239573221555663 ], [ -77.642446568060976, 24.239550433721174 ], [ -77.642431991997199, 24.239524722453353 ], [ -77.642406125008577, 24.239467114745288 ], [ -77.642387802071738, 24.239409981280414 ], [ -77.642357851341856, 24.239285266414413 ], [ -77.642341658310528, 24.239222630844612 ], [ -77.64233118036104, 24.239187921484387 ], [ -77.642314787005446, 24.239135868893936 ], [ -77.642296754224404, 24.239085078546154 ], [ -77.642275365337554, 24.239037114962585 ], [ -77.642248737475867, 24.23899366799218 ], [ -77.642219798248973, 24.238959962811613 ], [ -77.642187365473958, 24.238929323592316 ], [ -77.642128000308446, 24.238877864759115 ], [ -77.642074952994221, 24.238835829900054 ], [ -77.642019469449025, 24.238796232733986 ], [ -77.641962545904434, 24.238758347520868 ], [ -77.641817563207482, 24.238669606253161 ], [ -77.64175914037466, 24.23863679628818 ], [ -77.641728855471456, 24.238622210165193 ], [ -77.641666809733138, 24.238596106349828 ], [ -77.641619075953813, 24.238579958154059 ], [ -77.641539875986837, 24.238557739432537 ], [ -77.641493486087242, 24.238542847767476 ], [ -77.641448961090163, 24.238523907172425 ], [ -77.641407296328978, 24.23850020173137 ], [ -77.641338260799429, 24.238457295199566 ], [ -77.64125118260732, 24.238405752624789 ], [ -77.641209436997769, 24.238384842833909 ], [ -77.640989193446302, 24.238286011322032 ], [ -77.640893930703669, 24.238237134931381 ], [ -77.640833031215635, 24.238201966591973 ], [ -77.640750422142091, 24.23815721283043 ], [ -77.640710312364618, 24.238134005349817 ], [ -77.640596785075701, 24.238059316584366 ], [ -77.640511424462417, 24.238006712259828 ], [ -77.640457883973184, 24.237970632987246 ], [ -77.640382394946599, 24.237917236529679 ], [ -77.640357743378559, 24.237900749128944 ], [ -77.640332597737142, 24.237886061349787 ], [ -77.640196479615412, 24.237815504940773 ], [ -77.639974672995336, 24.237715774402318 ], [ -77.639846229181046, 24.23765416606728 ], [ -77.639778497106917, 24.23762610515309 ], [ -77.639706571697104, 24.237601899875781 ], [ -77.639642717650048, 24.237585733533034 ], [ -77.639575623379798, 24.237572987055088 ], [ -77.639506884294292, 24.237562545607346 ], [ -77.639159272211927, 24.237515877313793 ], [ -77.639122983867722, 24.237509676498401 ], [ -77.638987309513723, 24.237481916992326 ], [ -77.638824656056798, 24.237443294989522 ], [ -77.638762181822031, 24.237432079452617 ], [ -77.638696899453734, 24.237423729234074 ], [ -77.638629893218351, 24.237417747122109 ], [ -77.6385621629409, 24.237413766146421 ], [ -77.638494667123709, 24.237411539748923 ], [ -77.638428372354042, 24.237410927039043 ], [ -77.63828567946274, 24.237413700615971 ], [ -77.638150951034746, 24.237412484206732 ], [ -77.6380024029244, 24.237416052340496 ], [ -77.637949741885805, 24.23741571158213 ], [ -77.63780483195238, 24.237410333988354 ], [ -77.637583734103075, 24.237409967836854 ], [ -77.637509494633079, 24.237406117921875 ], [ -77.637436273852586, 24.237398617959485 ], [ -77.637366009427652, 24.237386720901689 ], [ -77.637300873484719, 24.237369337302788 ], [ -77.637267360934743, 24.237356943848749 ], [ -77.637204961260153, 24.237328538014719 ], [ -77.637063070564409, 24.237251763266862 ], [ -77.637034290339301, 24.237239100306976 ], [ -77.637004861530627, 24.237228105917662 ], [ -77.636928979940251, 24.237202692344763 ], [ -77.636882627769907, 24.237185102299382 ], [ -77.636759228894249, 24.237129099032202 ], [ -77.636693726438708, 24.237101364836263 ], [ -77.636658914924794, 24.237088691212644 ], [ -77.636596902424117, 24.2370709389632 ], [ -77.636530525009434, 24.237056564816246 ], [ -77.636461386173607, 24.237044383487188 ], [ -77.636320422539214, 24.237022497065716 ], [ -77.636155917654506, 24.236994184538293 ], [ -77.636007716293889, 24.236971234872673 ], [ -77.635954288992366, 24.236964701462522 ], [ -77.635900620942309, 24.23695997014616 ], [ -77.635741687409023, 24.236950455907536 ], [ -77.635675556132725, 24.236943090256226 ], [ -77.635611031942503, 24.236932257210832 ], [ -77.635517358319603, 24.236910603404134 ], [ -77.635462551205805, 24.236895843426904 ], [ -77.635286798515438, 24.236842597239132 ], [ -77.635220834325793, 24.236829676211105 ], [ -77.635152280293198, 24.236822837256462 ], [ -77.635083599598147, 24.236821587257012 ], [ -77.635017322794795, 24.236825828736002 ], [ -77.634956199626217, 24.236835844294241 ], [ -77.634925175409577, 24.236843927513547 ], [ -77.634896174198957, 24.236852851983347 ], [ -77.634808566899181, 24.236883989736143 ], [ -77.634775595135011, 24.236890907324462 ], [ -77.63475387207481, 24.236890322462646 ], [ -77.634732357423729, 24.236885320010124 ], [ -77.634711035012145, 24.236876773163523 ], [ -77.634689965027164, 24.2368648547594 ], [ -77.634669142078877, 24.236850368367723 ], [ -77.634648647913991, 24.236833286137117 ], [ -77.634628483430802, 24.23681435265982 ], [ -77.634575570863916, 24.236756208010533 ], [ -77.634546690027534, 24.236726895259732 ], [ -77.63452281280729, 24.23670646520635 ], [ -77.634496976361433, 24.236687207332562 ], [ -77.634454505811448, 24.236661742046067 ], [ -77.634408910022543, 24.236639349332911 ], [ -77.634377413292043, 24.236625659934777 ], [ -77.634344936499559, 24.23661369809296 ], [ -77.634311635053692, 24.236603322097373 ], [ -77.634277623938729, 24.236594465598387 ], [ -77.634230940290024, 24.236586325023723 ], [ -77.634183217290555, 24.23658232026709 ], [ -77.634135729649685, 24.236582244087405 ], [ -77.634100584860832, 24.236584495892696 ], [ -77.634048453828242, 24.236589581089781 ], [ -77.633997930780041, 24.236596485587896 ], [ -77.633951068366642, 24.236605539498537 ], [ -77.633910122257646, 24.236617181059003 ], [ -77.633843751131209, 24.236646033480781 ], [ -77.633818689931388, 24.236650699277906 ], [ -77.633805088539702, 24.236646847701692 ], [ -77.633786243681669, 24.236629923536952 ], [ -77.633769791037253, 24.236603735761065 ], [ -77.633735906584718, 24.236542162929659 ], [ -77.633714376662311, 24.236515796563914 ], [ -77.633698392040145, 24.236503503780543 ], [ -77.633680761704369, 24.236494782432185 ], [ -77.633651626644777, 24.236490223936229 ], [ -77.63362153128611, 24.236496289643718 ], [ -77.633589524312555, 24.236515169924395 ], [ -77.633522711214965, 24.236573376119029 ], [ -77.63349958229135, 24.236591813235712 ], [ -77.633345173572081, 24.236709124119724 ], [ -77.633289916402333, 24.236748888219601 ], [ -77.633203027754789, 24.236805872977474 ], [ -77.633104204090401, 24.236876253832385 ], [ -77.633062990283477, 24.236907283453821 ], [ -77.633037076582454, 24.236929663013719 ], [ -77.633012531015595, 24.236953001775348 ], [ -77.632981982007763, 24.236986366727834 ], [ -77.6329242490811, 24.237055298436402 ], [ -77.632859599126732, 24.237129576586561 ], [ -77.632831855557498, 24.237169666569738 ], [ -77.632792364719251, 24.237238441724887 ], [ -77.63277934094431, 24.237266434736629 ], [ -77.632766450119945, 24.237305920976823 ], [ -77.632758668912956, 24.237346847237426 ], [ -77.632755628115731, 24.237387968438181 ], [ -77.632758913254733, 24.237464083703802 ], [ -77.632764066889507, 24.237508893409931 ], [ -77.632769214236092, 24.237537419615798 ], [ -77.63277708527464, 24.237565571472981 ], [ -77.632787820142283, 24.237592964809849 ], [ -77.632800748695857, 24.237620291791323 ], [ -77.632855233314444, 24.237716889236747 ], [ -77.632880219055764, 24.23776015971125 ], [ -77.632916042970962, 24.237817155484116 ], [ -77.632954307608799, 24.237873187937112 ], [ -77.633014679785788, 24.237955191619008 ], [ -77.633135504988147, 24.238108224989222 ], [ -77.633152910745096, 24.238132492423823 ], [ -77.633167838948495, 24.238157388123422 ], [ -77.633180260852242, 24.238182312487552 ], [ -77.63319013513383, 24.238206654448458 ], [ -77.633196677564072, 24.238230911215645 ], [ -77.633199662665774, 24.238254438137481 ], [ -77.633198846097144, 24.238276581552455 ], [ -77.633193030403987, 24.238297741194252 ], [ -77.633181719716276, 24.238317188861323 ], [ -77.633164939186713, 24.238334205362797 ], [ -77.633143466756508, 24.238349224016634 ], [ -77.633117854889448, 24.238362583941274 ], [ -77.633064738405011, 24.238380200854991 ], [ -77.63300217883031, 24.238392495095294 ], [ -77.632933033706209, 24.238401133582126 ], [ -77.632508665074454, 24.238434118900397 ], [ -77.632274218260008, 24.238449484031989 ], [ -77.632198250431429, 24.238456680856515 ], [ -77.632125119482438, 24.238466545567579 ], [ -77.6320560740714, 24.238480258522308 ], [ -77.632017786975652, 24.238490388627699 ], [ -77.631870970817189, 24.2385360809877 ], [ -77.631833721275626, 24.238546720583479 ], [ -77.631756994370576, 24.238565877423699 ], [ -77.63169368290599, 24.238577504060626 ], [ -77.63162755881622, 24.23858602540022 ], [ -77.631559637197597, 24.238592252375131 ], [ -77.631422102432637, 24.238600422309862 ], [ -77.631288345981773, 24.238606268391798 ], [ -77.631247350465486, 24.238607937764755 ], [ -77.631179789969593, 24.238608215447517 ], [ -77.631113391893663, 24.238605070014696 ], [ -77.631049664509121, 24.238598565357623 ], [ -77.630976494932582, 24.238588010954984 ], [ -77.630927194491491, 24.238583148639247 ], [ -77.630877208635823, 24.238580938644652 ], [ -77.630827494071326, 24.238581412917039 ], [ -77.630692241027248, 24.238590179993341 ], [ -77.630543383896438, 24.238603518595411 ], [ -77.630511561077526, 24.238604908647403 ], [ -77.630470630239913, 24.238603850340297 ], [ -77.630432130243449, 24.238599177242644 ], [ -77.630397689733769, 24.238590876248093 ], [ -77.630361656511113, 24.238576240972463 ], [ -77.630331176673508, 24.238562048840944 ], [ -77.630302900403322, 24.238554752089314 ], [ -77.63028605070356, 24.238556254361757 ], [ -77.630269495651149, 24.238562599291892 ], [ -77.63025337718004, 24.238572967755619 ], [ -77.630233044711886, 24.238592829856987 ], [ -77.630145145459622, 24.238708865161097 ], [ -77.630099159801915, 24.238774545660448 ], [ -77.63008092400166, 24.23880890127284 ], [ -77.630056975814497, 24.238863299960954 ], [ -77.630046640697159, 24.238883014575126 ], [ -77.63003309679759, 24.238902086176161 ], [ -77.630015565276494, 24.238919707929895 ], [ -77.629985680123639, 24.23893976574708 ], [ -77.629949612765017, 24.23895672073127 ], [ -77.629909078084424, 24.238971600061134 ], [ -77.629876215914706, 24.23898176207312 ], [ -77.62981905251992, 24.238994746774061 ], [ -77.62975714781706, 24.239004418950127 ], [ -77.629692229266425, 24.239011831991036 ], [ -77.629517451248091, 24.239026393495699 ], [ -77.629446989193838, 24.239029047445911 ], [ -77.629375332380263, 24.239028444573297 ], [ -77.629107229285353, 24.239012428310769 ], [ -77.628948491584794, 24.239007842874045 ], [ -77.628789972174815, 24.239008335984593 ], [ -77.628590518333965, 24.239015196938137 ], [ -77.628512144816995, 24.239015272297191 ], [ -77.628433421855405, 24.239013327705095 ], [ -77.628355142661505, 24.239009327120428 ], [ -77.628278169618113, 24.239003096889519 ], [ -77.628203483685382, 24.238994312640099 ], [ -77.628132249079954, 24.238982493547901 ], [ -77.628033959014829, 24.238961304531582 ], [ -77.627887774372056, 24.238926174890956 ], [ -77.627803773808111, 24.238908302486955 ], [ -77.627772059685341, 24.238903259157752 ], [ -77.627740994146166, 24.238900230866541 ], [ -77.627695326492088, 24.23890145463368 ], [ -77.627651800421631, 24.238910312610379 ], [ -77.627611510981126, 24.238926778583174 ], [ -77.627493062721015, 24.238992214872106 ], [ -77.627447528915894, 24.239013332619844 ], [ -77.627357059583645, 24.239051725611635 ], [ -77.627318529044487, 24.23907261071928 ], [ -77.627289229593188, 24.239097197426737 ], [ -77.627277120303134, 24.239115257382636 ], [ -77.627269870898772, 24.239134713115988 ], [ -77.627266889390356, 24.239154799568411 ], [ -77.627266804948704, 24.239175833738944 ], [ -77.627273686043821, 24.239242996602798 ], [ -77.627274499917434, 24.239267240885642 ], [ -77.627273719281462, 24.239291496631562 ], [ -77.627270066731512, 24.239316223366043 ], [ -77.627263039211059, 24.239340764155838 ], [ -77.627252678042581, 24.239364471078439 ], [ -77.627239560842796, 24.239387832328898 ], [ -77.627223583407144, 24.239410171315825 ], [ -77.627204649615905, 24.239430808991113 ], [ -77.627183055913122, 24.239450135255609 ], [ -77.627141790003876, 24.239478335017548 ], [ -77.627026398710669, 24.23954358016864 ], [ -77.626990488557212, 24.239566454830676 ], [ -77.626959459848976, 24.239590290312631 ], [ -77.626935570950636, 24.239616053171584 ], [ -77.626900270753225, 24.239668743657223 ], [ -77.626889735311593, 24.239680375108083 ], [ -77.626876872335046, 24.239689532007922 ], [ -77.62685604579346, 24.239696288077845 ], [ -77.626832802783795, 24.239696862278262 ], [ -77.626809546299427, 24.239691389763326 ], [ -77.626793163723605, 24.239683441060055 ], [ -77.62674076948467, 24.23964662423889 ], [ -77.626669601354578, 24.239602523821443 ], [ -77.626584886630013, 24.239556490272559 ], [ -77.626481429455367, 24.239505650945699 ], [ -77.626430901915583, 24.239477814058834 ], [ -77.626304373309495, 24.23939367345999 ], [ -77.626259684819061, 24.239369045034717 ], [ -77.626209978339418, 24.239350380605512 ], [ -77.626155836877288, 24.239337235393641 ], [ -77.626098783975266, 24.239328773080889 ], [ -77.626040183276032, 24.239324383424922 ], [ -77.62600329478046, 24.239323488497991 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 237, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 350 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.646017734234348, 24.241536333946211 ], [ -77.646003257883976, 24.241528398459362 ], [ -77.645989098638466, 24.241526188515895 ], [ -77.645965467556607, 24.241527419629673 ], [ -77.645938579183493, 24.24153419771784 ], [ -77.64591168991214, 24.241547121544599 ], [ -77.645893400212941, 24.241561090546924 ], [ -77.645877401217717, 24.241577987844504 ], [ -77.645862764966793, 24.24159763241428 ], [ -77.645818344174288, 24.241669010744392 ], [ -77.645797949722393, 24.241694058924413 ], [ -77.645774630356001, 24.241711838378439 ], [ -77.645745321921467, 24.241719267643781 ], [ -77.645716472526132, 24.241712935976675 ], [ -77.645698060656088, 24.241702167227338 ], [ -77.64567996589129, 24.241687611762519 ], [ -77.64566249904891, 24.241669371969003 ], [ -77.645645780503187, 24.241648295617257 ], [ -77.645620175822614, 24.241606850609021 ], [ -77.645569362618559, 24.24151421648633 ], [ -77.645533516245479, 24.241460485682737 ], [ -77.645513795530036, 24.241434744493937 ], [ -77.645492470423548, 24.241410595640211 ], [ -77.645469687351294, 24.241387550116677 ], [ -77.645445479551029, 24.24136616163911 ], [ -77.645419882057013, 24.241346030484905 ], [ -77.645392886784379, 24.241327739038745 ], [ -77.645364424562914, 24.241310988327797 ], [ -77.645313743411236, 24.241287692139778 ], [ -77.645260925167463, 24.241268536528459 ], [ -77.645179211714293, 24.241241266029576 ], [ -77.645150328182964, 24.241229511855501 ], [ -77.645122651089054, 24.241215548550556 ], [ -77.645083795359724, 24.241190141507655 ], [ -77.644994395920989, 24.241123762737718 ], [ -77.644967197629128, 24.241105036313815 ], [ -77.644938414709088, 24.241087566397486 ], [ -77.644877019351, 24.24105487664561 ], [ -77.644827722503152, 24.241032814805731 ], [ -77.644725294797851, 24.240991104206113 ], [ -77.644675969203874, 24.240968307615422 ], [ -77.644614480420998, 24.2409337617338 ], [ -77.644424865827474, 24.240812054491027 ], [ -77.644382710586115, 24.240782743493558 ], [ -77.644304247237642, 24.24071844586852 ], [ -77.644249842569096, 24.240677846697807 ], [ -77.644075464301082, 24.240568574946469 ], [ -77.643837031661704, 24.240407807207625 ], [ -77.64375923845644, 24.240362154837122 ], [ -77.643698287764423, 24.240320742993525 ], [ -77.643632459220413, 24.240272080353677 ], [ -77.64359920269024, 24.240246065340941 ], [ -77.643535507645026, 24.240191377277892 ], [ -77.643478266096807, 24.240137012741144 ], [ -77.643453028827224, 24.240111152513141 ], [ -77.643430621250801, 24.240087163135406 ], [ -77.643395694752527, 24.240045981373385 ], [ -77.643376516619512, 24.240017663784769 ], [ -77.643374328324384, 24.240007238924179 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 243, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 849 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.652154393637957, 24.246623341582712 ], [ -77.65215666457965, 24.246608463962282 ], [ -77.652153710919009, 24.246573453560291 ], [ -77.652144865208427, 24.246523096194348 ], [ -77.652128955146424, 24.246462520059595 ], [ -77.652115984372003, 24.246424112922558 ], [ -77.652069319587966, 24.246298112433433 ], [ -77.652046208630679, 24.246230011358474 ], [ -77.652011289318892, 24.246116662925917 ], [ -77.651995983823113, 24.246058506964822 ], [ -77.651966925120291, 24.245919563074441 ], [ -77.651958199783948, 24.245861839495614 ], [ -77.651941103945802, 24.245695991973896 ], [ -77.651934778009547, 24.245648939239601 ], [ -77.651929574069101, 24.245623060473978 ], [ -77.651921868320599, 24.245599247418223 ], [ -77.65191108853719, 24.245578050493862 ], [ -77.651897223939073, 24.245560026675687 ], [ -77.651880809023922, 24.245544256139812 ], [ -77.651712388382862, 24.245416867258918 ], [ -77.651641849971782, 24.245374648628992 ], [ -77.651617562221475, 24.245359117241406 ], [ -77.651593649068602, 24.245341782238302 ], [ -77.65154724030441, 24.245303033206469 ], [ -77.651524920762839, 24.245281792002498 ], [ -77.651503751064837, 24.245258920825105 ], [ -77.651484310623815, 24.245233786524381 ], [ -77.651466711729071, 24.245206848603093 ], [ -77.651442921645398, 24.245158851287499 ], [ -77.651423241354181, 24.245106606198295 ], [ -77.651387897139315, 24.244997328421451 ], [ -77.651368292306543, 24.244943970952111 ], [ -77.651339985493621, 24.244880619013216 ], [ -77.651249473940538, 24.244694637949877 ], [ -77.651201523667268, 24.244603953039181 ], [ -77.651167161311065, 24.244545685810063 ], [ -77.651130363622073, 24.24448955800505 ], [ -77.651090915004687, 24.24443575555933 ], [ -77.65100817477709, 24.24433129834814 ], [ -77.650963778239174, 24.244281836175421 ], [ -77.650892820314851, 24.244211556068684 ], [ -77.650793093843575, 24.244122096168766 ], [ -77.65072099326224, 24.244052725980708 ], [ -77.650675049825338, 24.244004515266745 ], [ -77.650586387903417, 24.243905195847077 ], [ -77.65052281143582, 24.2438277370319 ], [ -77.650478057368389, 24.243778407355975 ], [ -77.650384646951878, 24.243683360135655 ], [ -77.650290269948115, 24.243590367124675 ], [ -77.650177240325831, 24.243473496702894 ], [ -77.650064527808809, 24.243349167516726 ], [ -77.650033295183007, 24.243320760563044 ], [ -77.6500109666583, 24.243305205990126 ], [ -77.649962863671433, 24.243279229275746 ], [ -77.649835578683906, 24.243218572963496 ], [ -77.64974878615611, 24.243174309965255 ], [ -77.649727502372073, 24.243165820877582 ], [ -77.649704480347964, 24.243159359865682 ], [ -77.649680158461649, 24.243154876146011 ], [ -77.64960181818239, 24.243146355931483 ], [ -77.649573885966916, 24.24314192954791 ], [ -77.649545363558332, 24.243135553720585 ], [ -77.649472660207422, 24.243112281620359 ], [ -77.649429365004011, 24.243094004352695 ], [ -77.649374639636903, 24.243063829736261 ], [ -77.649348442966584, 24.243046853183824 ], [ -77.649298103174701, 24.24301085724974 ], [ -77.649203183588483, 24.242937708788496 ], [ -77.649155228823702, 24.242907086908833 ], [ -77.649130928496973, 24.242894276255413 ], [ -77.64910641347285, 24.242883805756811 ], [ -77.649082096976429, 24.242875486202554 ], [ -77.64901322583853, 24.242855353648988 ], [ -77.648991877375806, 24.242846672871593 ], [ -77.648971506280105, 24.242835819851294 ], [ -77.64895215297561, 24.242823506381928 ], [ -77.648933983650693, 24.242809681679145 ], [ -77.648834147584907, 24.242728596056502 ], [ -77.648791327590303, 24.242688497176278 ], [ -77.648770841510256, 24.242666501147411 ], [ -77.648677692503483, 24.242541429070116 ], [ -77.648656652162927, 24.242518553304588 ], [ -77.648634170924609, 24.242496947137095 ], [ -77.648610237110489, 24.242477216700838 ], [ -77.648559554162162, 24.242441700597276 ], [ -77.648532661297494, 24.242426363797072 ], [ -77.648504072413587, 24.24241373411601 ], [ -77.648474038140392, 24.24240357155902 ], [ -77.648442757005554, 24.24239524542056 ], [ -77.648306725122069, 24.242363894412307 ], [ -77.648159476873943, 24.242335433997223 ], [ -77.648095472808279, 24.242326602470094 ], [ -77.648030204812969, 24.242320442844093 ], [ -77.647927240813445, 24.242314223423527 ], [ -77.647863806279659, 24.242308636347317 ], [ -77.64780146409727, 24.24229914380517 ], [ -77.647742241763822, 24.24228478171613 ], [ -77.647676328778147, 24.242260950834432 ], [ -77.647552758324309, 24.242203615487238 ], [ -77.647504674202111, 24.242184367455391 ], [ -77.647455161758558, 24.242167294131765 ], [ -77.647421786650824, 24.242156776065521 ], [ -77.647370726410074, 24.242143761380543 ], [ -77.64723356803924, 24.242117646001045 ], [ -77.64718281681894, 24.242104502713264 ], [ -77.647101267757449, 24.242075531121206 ], [ -77.647054807789303, 24.242054217297522 ], [ -77.647023963235682, 24.242036726214863 ], [ -77.646991520579206, 24.242016450185872 ], [ -77.64688524988108, 24.241944266054688 ], [ -77.646846047402065, 24.241920504732821 ], [ -77.646764416593911, 24.241875525387815 ], [ -77.646682197389197, 24.241836667178781 ], [ -77.646613128621965, 24.241810193788449 ], [ -77.646506005422637, 24.241775760352514 ], [ -77.646480257011646, 24.241765915556414 ], [ -77.646476715854163, 24.241762234511654 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 245, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 783 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.657808154356729, 24.252409195470435 ], [ -77.657804426669927, 24.252405045877783 ], [ -77.657789892826926, 24.252378109475146 ], [ -77.657727658442397, 24.252222944120192 ], [ -77.657681433832821, 24.252123694182977 ], [ -77.657648754021068, 24.252064228871845 ], [ -77.657624574966889, 24.252026976629868 ], [ -77.657598880454827, 24.251991636828329 ], [ -77.657572114252616, 24.251959257017234 ], [ -77.657545146827772, 24.251929543983604 ], [ -77.657518867512437, 24.251902247103757 ], [ -77.657469037963665, 24.251855644678855 ], [ -77.657392961438845, 24.251789875924121 ], [ -77.657339792852127, 24.251747819121917 ], [ -77.657311362071724, 24.251728638876319 ], [ -77.657251587274402, 24.251692561856906 ], [ -77.657062177496741, 24.25159371693033 ], [ -77.656985516168703, 24.25155062971119 ], [ -77.656941700840733, 24.25152315911356 ], [ -77.656914273478463, 24.251503132765642 ], [ -77.656888211555412, 24.251482244784285 ], [ -77.656863414460361, 24.251460114315211 ], [ -77.656768963794747, 24.251369271238474 ], [ -77.656720468244103, 24.251326524664485 ], [ -77.656645637682644, 24.25126762657646 ], [ -77.656576367692765, 24.251208973354711 ], [ -77.656506140997109, 24.251160245260969 ], [ -77.656483427993464, 24.251143548263382 ], [ -77.656461660915809, 24.251124861809341 ], [ -77.656441350007242, 24.251103686281816 ], [ -77.656403785156996, 24.251056414406197 ], [ -77.656380810743613, 24.251021489589835 ], [ -77.656335965946298, 24.250948152440433 ], [ -77.656299164664077, 24.250894580420592 ], [ -77.656279456525056, 24.250868459466076 ], [ -77.656236294272304, 24.250819202958208 ], [ -77.656164947377476, 24.250750319658643 ], [ -77.656067163063852, 24.250660017464018 ], [ -77.656043512219043, 24.250636490378973 ], [ -77.656020580924775, 24.250612566871485 ], [ -77.655954538581724, 24.250537613507941 ], [ -77.655817443991268, 24.250392759350934 ], [ -77.655701148992904, 24.250273784491743 ], [ -77.655573805614864, 24.250164985382927 ], [ -77.655457194409507, 24.250061287220735 ], [ -77.655426280685631, 24.250029716958309 ], [ -77.655395870018324, 24.249990041371024 ], [ -77.655351722313668, 24.249918485880347 ], [ -77.655300664767893, 24.249815976779153 ], [ -77.655273989295537, 24.249765721440177 ], [ -77.65525633650185, 24.249737246299958 ], [ -77.655237649747292, 24.249709425575574 ], [ -77.655197613631756, 24.249656342007974 ], [ -77.655091972652642, 24.249528341317301 ], [ -77.655022860766238, 24.249456716766407 ], [ -77.654952098674656, 24.249386281441254 ], [ -77.654775794418683, 24.249232315627701 ], [ -77.65455614555195, 24.249027647611769 ], [ -77.65453295644123, 24.249003985080552 ], [ -77.65448877460058, 24.248954505067275 ], [ -77.654426765693202, 24.248876208974064 ], [ -77.654383556728007, 24.248825878729519 ], [ -77.654272499806055, 24.248702797285436 ], [ -77.654226732438985, 24.248654429436318 ], [ -77.654177123875712, 24.248609639217459 ], [ -77.654043718666131, 24.248506148647373 ], [ -77.653993933134771, 24.248461478778044 ], [ -77.653970765583566, 24.248437762083579 ], [ -77.653863186938409, 24.248310964185752 ], [ -77.65381727853584, 24.248262866477841 ], [ -77.653720200298011, 24.248171457603149 ], [ -77.653626070330958, 24.248077028780653 ], [ -77.653481403840971, 24.247939653143515 ], [ -77.653388053611593, 24.24784646257315 ], [ -77.653340771684924, 24.247801563134256 ], [ -77.653316481239671, 24.247779978340553 ], [ -77.653291135273903, 24.247759910450071 ], [ -77.653264671803939, 24.247741024466261 ], [ -77.653227558806293, 24.247718598483051 ], [ -77.653098768242344, 24.247650995340987 ], [ -77.653071735240474, 24.247636136683695 ], [ -77.65304311761048, 24.247618382629451 ], [ -77.653013323187437, 24.247597236823644 ], [ -77.652883428593995, 24.247497767043413 ], [ -77.652813939415182, 24.247449759944399 ], [ -77.652778728150977, 24.247428497803053 ], [ -77.652743606718346, 24.247410250641927 ], [ -77.652709415041997, 24.24739485055348 ], [ -77.652676973283832, 24.247382226280052 ], [ -77.652628865805426, 24.24736839633913 ], [ -77.652593323062888, 24.247362793103601 ], [ -77.652575878677908, 24.247364572940121 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 246, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 42 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.657904027376603, 24.252849768439265 ], [ -77.657909255571994, 24.252850289338816 ], [ -77.657919464925214, 24.252848104162961 ], [ -77.657924998547344, 24.252845372693109 ], [ -77.657931139430644, 24.252840121882343 ], [ -77.657936257132803, 24.252832991393973 ], [ -77.657943237940898, 24.252815114391385 ], [ -77.657946102668348, 24.252796305328161 ], [ -77.657949050040784, 24.252714658481768 ], [ -77.657949596216454, 24.252678808613982 ], [ -77.657947920858462, 24.252653774882319 ], [ -77.657944013186977, 24.252639524531755 ], [ -77.657940499875892, 24.252633757721835 ], [ -77.65793565256665, 24.252629200623151 ], [ -77.657912225402356, 24.252614492430418 ], [ -77.657892890962472, 24.252587227639836 ], [ -77.657866634105034, 24.252569925564067 ], [ -77.657860214744034, 24.252563842604122 ], [ -77.657855152737383, 24.252556766975495 ], [ -77.657843951644125, 24.252533605530306 ], [ -77.657842250234637, 24.252532648903408 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 281, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 4707 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.6739392381714, 24.29996490584454 ], [ -77.673919147346822, 24.29989401801906 ], [ -77.673898453755911, 24.299834440793092 ], [ -77.673884733786579, 24.299802314698976 ], [ -77.673862297464041, 24.299755419543896 ], [ -77.673836609240198, 24.299711436591828 ], [ -77.673806775291297, 24.299671549728838 ], [ -77.673733727885647, 24.299582066644291 ], [ -77.673694501152099, 24.299529550822871 ], [ -77.673640961561162, 24.299448281148354 ], [ -77.673591139198919, 24.299368083960182 ], [ -77.673556517229528, 24.299320126749379 ], [ -77.673538519482832, 24.299298341110926 ], [ -77.673519671929853, 24.299278906867446 ], [ -77.67350016411514, 24.299261502258336 ], [ -77.673479654678886, 24.299246911629925 ], [ -77.673457798668053, 24.299235913597776 ], [ -77.673434685015764, 24.299227971074277 ], [ -77.67332581998312, 24.299200211946694 ], [ -77.673234048991972, 24.299172966977231 ], [ -77.673190454649557, 24.299161524366713 ], [ -77.673067804968866, 24.29913183710816 ], [ -77.672970562339373, 24.29910986967861 ], [ -77.672939071897076, 24.299101394151865 ], [ -77.672908199495694, 24.299091042906451 ], [ -77.67287813288317, 24.299078631726875 ], [ -77.672848752583491, 24.299064858992239 ], [ -77.672791290049673, 24.299033606292198 ], [ -77.672734615338442, 24.298999290700785 ], [ -77.67267931235456, 24.298962125086405 ], [ -77.672626119513339, 24.298921987455145 ], [ -77.672548782652228, 24.29885842990274 ], [ -77.672422794831931, 24.298748119251059 ], [ -77.672279458746885, 24.298607746959945 ], [ -77.672134592830872, 24.298469969911 ], [ -77.672089250366952, 24.298421950136703 ], [ -77.672067933345261, 24.298396823893746 ], [ -77.672006580207992, 24.298320496217237 ], [ -77.671929915286697, 24.298218313538928 ], [ -77.671860899519999, 24.298137888782623 ], [ -77.671831199420097, 24.298106540061713 ], [ -77.671810354013928, 24.298088182278651 ], [ -77.671744444621524, 24.298035548759149 ], [ -77.671701472811606, 24.297994557707344 ], [ -77.671661135760402, 24.297948307870652 ], [ -77.671633161324138, 24.297910016998376 ], [ -77.671550653760264, 24.297789585874661 ], [ -77.671459728982128, 24.297650371862886 ], [ -77.671364015285221, 24.297514032306911 ], [ -77.671233555651426, 24.297318962416806 ], [ -77.671181838742243, 24.297231576117692 ], [ -77.671095414523691, 24.297063891227193 ], [ -77.671070912076033, 24.29701892893997 ], [ -77.671035433113872, 24.296961713268345 ], [ -77.670998648899598, 24.296905968041401 ], [ -77.67096445991821, 24.296847631453083 ], [ -77.670948128546357, 24.296818129509038 ], [ -77.67088725241446, 24.29669625307632 ], [ -77.670815973791647, 24.296572738208575 ], [ -77.670793576096671, 24.296536264545956 ], [ -77.670769407822249, 24.296502219285546 ], [ -77.670739458889003, 24.296467990615923 ], [ -77.670689781155474, 24.296414691599072 ], [ -77.670655062168024, 24.296372271303387 ], [ -77.670640192355179, 24.296348561912634 ], [ -77.670621286411688, 24.296304810305251 ], [ -77.670607111894782, 24.296254671601172 ], [ -77.670596285399, 24.296199871722251 ], [ -77.670587630131251, 24.29614187459164 ], [ -77.670559654796691, 24.295922724683095 ], [ -77.670552732379079, 24.295864619350272 ], [ -77.670542484398339, 24.295747001983841 ], [ -77.670535639235851, 24.295651197795642 ], [ -77.670534289067987, 24.295593647455071 ], [ -77.670536270751484, 24.295535795786066 ], [ -77.670541562726811, 24.295478430432123 ], [ -77.670550310521065, 24.295422353775805 ], [ -77.670596970813548, 24.295210668882902 ], [ -77.670608807015739, 24.295143008308944 ], [ -77.670634926430964, 24.294969290492087 ], [ -77.670640709784735, 24.294911299349241 ], [ -77.670643298729416, 24.294852565563943 ], [ -77.670642719316021, 24.29479383584528 ], [ -77.670638840390623, 24.294735869185075 ], [ -77.670634587766074, 24.29469800883102 ], [ -77.670618939113837, 24.294574810517336 ], [ -77.670609399903825, 24.294513851997564 ], [ -77.670597798161936, 24.294454770872697 ], [ -77.670583332590908, 24.294398792015816 ], [ -77.670562176367667, 24.294333753510372 ], [ -77.670544532557173, 24.294268811585727 ], [ -77.670536387532479, 24.294212806446335 ], [ -77.670535241282195, 24.294155936666197 ], [ -77.670541131535529, 24.294100087861182 ], [ -77.670547931782195, 24.294067820306541 ], [ -77.670559502981376, 24.294025027506738 ], [ -77.670574047604134, 24.293983440735271 ], [ -77.670592331913426, 24.293944279136781 ], [ -77.670608704607801, 24.293917191061023 ], [ -77.670626956577735, 24.293891414644051 ], [ -77.67064726299472, 24.293867508285807 ], [ -77.67066980891174, 24.293846034480435 ], [ -77.670694434428611, 24.293826503606276 ], [ -77.670721029052615, 24.293809431487777 ], [ -77.67074915620249, 24.293794306396137 ], [ -77.6707784565521, 24.293780706666777 ], [ -77.670824465566014, 24.29376417083493 ], [ -77.670934101353197, 24.293734526527352 ], [ -77.670965073467514, 24.293724388542625 ], [ -77.671066911878043, 24.293682046768335 ], [ -77.671107727731282, 24.293663273229701 ], [ -77.671146684071886, 24.293641915654927 ], [ -77.671174062925132, 24.293623488449498 ], [ -77.67120022096789, 24.293603636583715 ], [ -77.671250010990832, 24.29356127675624 ], [ -77.671297716024029, 24.293516704599917 ], [ -77.671320796438607, 24.293493878946801 ], [ -77.671363279565014, 24.293444923892284 ], [ -77.671400094321982, 24.293391390256438 ], [ -77.671416700578305, 24.293363754305293 ], [ -77.671431811139712, 24.293334974525852 ], [ -77.671457976368998, 24.293275806881386 ], [ -77.671473263898491, 24.293229403852447 ], [ -77.671506530310111, 24.293086696869732 ], [ -77.67154490544074, 24.292955360026887 ], [ -77.67160999287465, 24.292752071643736 ], [ -77.671629840252521, 24.292681810149549 ], [ -77.671643149691775, 24.292620393844189 ], [ -77.671653166805527, 24.292556620254459 ], [ -77.671660705467374, 24.292491693796151 ], [ -77.671666417854254, 24.292426738647514 ], [ -77.671676522104576, 24.292265723720121 ], [ -77.671679952770631, 24.292230373001509 ], [ -77.671717364907295, 24.291985422341149 ], [ -77.671724915247239, 24.291918627135654 ], [ -77.671736711025247, 24.291780341731741 ], [ -77.671751992266564, 24.291571629493507 ], [ -77.671774231858024, 24.291346232565513 ], [ -77.671782138829158, 24.291199160164439 ], [ -77.671799470025931, 24.291045611820564 ], [ -77.671824785448976, 24.290789321951067 ], [ -77.671853153347314, 24.290557538722343 ], [ -77.671858565696937, 24.290492411457134 ], [ -77.67186215985636, 24.290426527597241 ], [ -77.671864085844291, 24.290294374943599 ], [ -77.671862236213173, 24.290229034657845 ], [ -77.671836178781717, 24.289865121050632 ], [ -77.671823777539203, 24.289737182143774 ], [ -77.671814574299134, 24.289675761957458 ], [ -77.671787829656509, 24.289537243210219 ], [ -77.671733147408531, 24.28930556168266 ], [ -77.671719837070938, 24.289243568948493 ], [ -77.671688317882555, 24.289080024810978 ], [ -77.671678351972801, 24.289022529625804 ], [ -77.671646247981229, 24.288808173780328 ], [ -77.671609926399313, 24.288522391079223 ], [ -77.671597243984152, 24.288454086637206 ], [ -77.671575007985894, 24.288363482891633 ], [ -77.671559994442561, 24.288310428569027 ], [ -77.671517968558618, 24.288185617563258 ], [ -77.671500255577826, 24.28814225453063 ], [ -77.671485483681309, 24.288111270165377 ], [ -77.671453288061542, 24.288051114245548 ], [ -77.671417024870124, 24.287994738719629 ], [ -77.671378832995842, 24.287940282448293 ], [ -77.671343222879671, 24.287883336984422 ], [ -77.671319682527653, 24.287837689379977 ], [ -77.671284579959604, 24.287758262721997 ], [ -77.671271964918063, 24.287725153459746 ], [ -77.671249419001043, 24.287656843675986 ], [ -77.671234462051572, 24.287596382125692 ], [ -77.671222677053365, 24.287533159526294 ], [ -77.671191474970257, 24.28733984620095 ], [ -77.671177655287977, 24.287278364262995 ], [ -77.671167739683852, 24.287243126788958 ], [ -77.671151732603818, 24.287190881801482 ], [ -77.67113374384023, 24.287140349743829 ], [ -77.671106156577835, 24.28707633758372 ], [ -77.671091210408136, 24.28704520475355 ], [ -77.671025865157759, 24.286926217531537 ], [ -77.671001267488649, 24.286874047744277 ], [ -77.670955767819507, 24.286766545031526 ], [ -77.670911930931965, 24.286672708225055 ], [ -77.670866531874097, 24.286580833227699 ], [ -77.670797773923979, 24.286423060763145 ], [ -77.670772092886651, 24.286359817109144 ], [ -77.670748875928112, 24.286295470478674 ], [ -77.670738250654935, 24.28626331311812 ], [ -77.670726019194021, 24.286219291100636 ], [ -77.67070062561757, 24.286098231497217 ], [ -77.670656685423765, 24.285745900533772 ], [ -77.670646741971865, 24.285683602279438 ], [ -77.670633417261257, 24.285623455854122 ], [ -77.670615103307568, 24.285567068605644 ], [ -77.670586214386347, 24.285505357358225 ], [ -77.670554381685932, 24.285445318114032 ], [ -77.670537301119126, 24.285416450563243 ], [ -77.670465785341051, 24.285302604837899 ], [ -77.670371779341494, 24.285164063305601 ], [ -77.670275081989359, 24.285027738178886 ], [ -77.67017415806383, 24.284895065683827 ], [ -77.670131135948225, 24.284844355027548 ], [ -77.670086106996322, 24.284795400731795 ], [ -77.670062551372936, 24.284771714562506 ], [ -77.670011786677918, 24.284727793562272 ], [ -77.669900500685571, 24.284649182147838 ], [ -77.66979488306265, 24.284565751068847 ], [ -77.66966254056004, 24.284465463549253 ], [ -77.669614758271749, 24.284422609375952 ], [ -77.669550723663406, 24.28435494878422 ], [ -77.669508061772248, 24.284313575015805 ], [ -77.669486063827563, 24.284294798454226 ], [ -77.66946310378718, 24.284278231090166 ], [ -77.669389257779272, 24.284232368475251 ], [ -77.669338541593248, 24.284198071809847 ], [ -77.669099913121173, 24.284028434806483 ], [ -77.668988464533783, 24.283955782411123 ], [ -77.668810517259161, 24.283829514517436 ], [ -77.668725942671784, 24.283781544066674 ], [ -77.668692322323977, 24.283759768043865 ], [ -77.668661382548933, 24.283734044426378 ], [ -77.668640835383442, 24.283711335745235 ], [ -77.668622336376799, 24.283686210684639 ], [ -77.668605606152965, 24.283659239969776 ], [ -77.668581254622225, 24.283606298318229 ], [ -77.668561568042776, 24.283548260224347 ], [ -77.668526186098674, 24.283426645361413 ], [ -77.668467611450566, 24.283235812588192 ], [ -77.668442772134668, 24.283147196528812 ], [ -77.668402376692967, 24.282984081798183 ], [ -77.668387214927591, 24.282931638537271 ], [ -77.66836413810627, 24.282865099778025 ], [ -77.668326315439558, 24.28277018740993 ], [ -77.668266436437648, 24.28263331354739 ], [ -77.66824877645746, 24.282598334356614 ], [ -77.668206469400857, 24.282528536438782 ], [ -77.66819311684246, 24.282503652702129 ], [ -77.668168320645691, 24.282450942300752 ], [ -77.668157440250951, 24.282422887997114 ], [ -77.66814811663663, 24.28239382569393 ], [ -77.668137670128175, 24.282341587718459 ], [ -77.668133439063226, 24.282286249586743 ], [ -77.668134792824333, 24.282229743762063 ], [ -77.668151656897166, 24.282079317464859 ], [ -77.668171377612595, 24.281953999202024 ], [ -77.668184848748595, 24.281853284639652 ], [ -77.668191015683021, 24.281819296036204 ], [ -77.668218734099412, 24.281690980541999 ], [ -77.668251831627742, 24.281551646520427 ], [ -77.668276350245108, 24.28143783417849 ], [ -77.668312051989446, 24.281287404486839 ], [ -77.668337572228353, 24.281172980227964 ], [ -77.668419693516697, 24.280850650586526 ], [ -77.66844684060456, 24.280719546742088 ], [ -77.668454711643108, 24.280665940594812 ], [ -77.668468506172559, 24.280477613459013 ], [ -77.668484668661208, 24.280326249954904 ], [ -77.668489427935583, 24.280260422234335 ], [ -77.668494750453632, 24.280124631469679 ], [ -77.668495380172629, 24.280055852487177 ], [ -77.668491978252661, 24.279919180413621 ], [ -77.668477990585373, 24.279741588220233 ], [ -77.668459460137697, 24.279454714864542 ], [ -77.668452384108193, 24.279385015120084 ], [ -77.668442666133458, 24.279317621249689 ], [ -77.668392977620115, 24.279062933150882 ], [ -77.668368690768105, 24.278929504345694 ], [ -77.668354226095389, 24.27886484360106 ], [ -77.668318400383541, 24.278734468134118 ], [ -77.668303600639277, 24.278688527362863 ], [ -77.668279355109732, 24.278621897943136 ], [ -77.668263072246887, 24.278569913902381 ], [ -77.668239778931593, 24.278480194850072 ], [ -77.668227446859404, 24.278412552382925 ], [ -77.668218938915302, 24.278341591830088 ], [ -77.668213003746231, 24.278268399823311 ], [ -77.668200353670386, 24.278044365626538 ], [ -77.668194696080747, 24.277970944164906 ], [ -77.668186637294312, 24.27789960914177 ], [ -77.668174970873721, 24.277831411171334 ], [ -77.668148300791245, 24.277722639742329 ], [ -77.668085199532442, 24.277491549176432 ], [ -77.66806334172496, 24.277400625618803 ], [ -77.668050105947529, 24.277332808156675 ], [ -77.668017709105129, 24.277122987162311 ], [ -77.668004185866849, 24.277055407025856 ], [ -77.66792220651233, 24.276730378560487 ], [ -77.667851242299832, 24.276483776619308 ], [ -77.667841624038076, 24.276448258550101 ], [ -77.667827134212544, 24.276383630935324 ], [ -77.667734347226855, 24.275859365811918 ], [ -77.667694048803199, 24.275600208675918 ], [ -77.667680965739422, 24.275500866440936 ], [ -77.667672553915097, 24.275415158581524 ], [ -77.667670795013748, 24.275365521794626 ], [ -77.667672407489704, 24.275214303693065 ], [ -77.667670071869935, 24.275148143311547 ], [ -77.667664221142502, 24.275082584778364 ], [ -77.667653876143731, 24.275019076708485 ], [ -77.667627214146066, 24.274915189183769 ], [ -77.667595716517269, 24.274813329145527 ], [ -77.667579497434829, 24.27475107957542 ], [ -77.667550673192252, 24.274622580060512 ], [ -77.667534561907658, 24.274559552449958 ], [ -77.667524199840869, 24.27452474300301 ], [ -77.667495147426266, 24.274432401457073 ], [ -77.667478585187354, 24.274387969986947 ], [ -77.667430692406299, 24.27427563915564 ], [ -77.667398001814789, 24.274193983175724 ], [ -77.667360773832783, 24.274094232031636 ], [ -77.667307141715412, 24.273920333103266 ], [ -77.667261083294122, 24.2737844987108 ], [ -77.667216528652688, 24.273646903543689 ], [ -77.66704129159524, 24.273153847716564 ], [ -77.667024275707163, 24.273109884210559 ], [ -77.666996744140306, 24.273046175342643 ], [ -77.666959570955584, 24.272946293091962 ], [ -77.666929696582457, 24.272855002688569 ], [ -77.666894596709326, 24.272738634946567 ], [ -77.666864981949388, 24.272654463944043 ], [ -77.666845960123254, 24.27260490305553 ], [ -77.666810891691171, 24.272525470965803 ], [ -77.666787768157448, 24.272479474720306 ], [ -77.666753094984131, 24.272421730442893 ], [ -77.66667831113503, 24.272311210931171 ], [ -77.666644942315457, 24.272252332391801 ], [ -77.666621039942427, 24.272195998168602 ], [ -77.666562468887548, 24.272015578953965 ], [ -77.666531280279202, 24.271932776687361 ], [ -77.666511034947661, 24.27188428009881 ], [ -77.666467356163594, 24.271790546125644 ], [ -77.666440425569704, 24.27172607337225 ], [ -77.666424087011293, 24.27168152548936 ], [ -77.666344454056315, 24.271442550918387 ], [ -77.666323316697657, 24.271387485649772 ], [ -77.666251393982776, 24.27123017583326 ], [ -77.666206618355744, 24.271137149737815 ], [ -77.666113208837544, 24.270954452436541 ], [ -77.66601661030009, 24.270774770121147 ], [ -77.665865213632017, 24.270466468366099 ], [ -77.665776633456801, 24.270279574777859 ], [ -77.665734747710019, 24.270183793959401 ], [ -77.665648365712329, 24.269995235089119 ], [ -77.665508357885386, 24.269632733472033 ], [ -77.665475643937697, 24.269551257128281 ], [ -77.66544075427035, 24.269471671628654 ], [ -77.665418289201739, 24.269425103487229 ], [ -77.665393970010385, 24.269380146973109 ], [ -77.665357299882132, 24.269324139046642 ], [ -77.665296167730418, 24.269245572148428 ], [ -77.665188283658068, 24.269119758058508 ], [ -77.665070871155478, 24.268957915945869 ], [ -77.665033408713185, 24.268902595732829 ], [ -77.66489268403069, 24.26867312862105 ], [ -77.664844894555912, 24.268582713040615 ], [ -77.664785810563004, 24.268457795842654 ], [ -77.664735678281943, 24.268369402869713 ], [ -77.664698034379967, 24.268314217524285 ], [ -77.66467817442566, 24.268287647279138 ], [ -77.664575151137285, 24.268157511551351 ], [ -77.664546535303927, 24.268116245520204 ], [ -77.664482089267125, 24.26801815122133 ], [ -77.664410554624453, 24.267904089263933 ], [ -77.664391771750161, 24.267876523108523 ], [ -77.664352707611727, 24.267822424275764 ], [ -77.664312107354121, 24.267769380208662 ], [ -77.66426838545091, 24.267719259719691 ], [ -77.664199326565139, 24.267647153235313 ], [ -77.664154439547005, 24.267597958915186 ], [ -77.663983067041983, 24.267394035393913 ], [ -77.663937952750061, 24.267345455998328 ], [ -77.66391455073861, 24.267322162941323 ], [ -77.663890626805937, 24.267299208920555 ], [ -77.66384122844849, 24.267255422736586 ], [ -77.663789706473665, 24.267214506918386 ], [ -77.663763089391821, 24.267195446933219 ], [ -77.663735824624624, 24.267177178040424 ], [ -77.663679602664246, 24.267144360688398 ], [ -77.663651286868188, 24.267129043246047 ], [ -77.663594363323583, 24.267101935528732 ], [ -77.663565621726022, 24.26709062842896 ], [ -77.663463394345044, 24.267054872698218 ], [ -77.663422070045343, 24.267033799734445 ], [ -77.663389038094024, 24.267006268604749 ], [ -77.663370951414095, 24.266978305887477 ], [ -77.663360000052478, 24.26694645155829 ], [ -77.663355227303342, 24.266912468793933 ], [ -77.663354992843082, 24.266886487074284 ], [ -77.663360570482666, 24.266783836872708 ], [ -77.66336000005245, 24.266734884625262 ], [ -77.663355596510939, 24.266688001826171 ], [ -77.663350374604207, 24.266661958639954 ], [ -77.663341661844257, 24.266636956324511 ], [ -77.66332917077024, 24.266613463315611 ], [ -77.66331375478164, 24.266590853122857 ], [ -77.663296136123961, 24.266568534469844 ], [ -77.663254983402496, 24.266525847056101 ], [ -77.663182260288664, 24.26646547453965 ], [ -77.663078503975029, 24.266384497359205 ], [ -77.66284658232486, 24.266190708798458 ], [ -77.662793355347645, 24.266148678052346 ], [ -77.662603430835304, 24.266004939068484 ], [ -77.662519476983803, 24.26594574395051 ], [ -77.662403976096144, 24.265869843094904 ], [ -77.66231524051237, 24.265815162773912 ], [ -77.662229023804684, 24.265757821666462 ], [ -77.662199404553149, 24.265739395328897 ], [ -77.662076958789996, 24.265670143395887 ], [ -77.662018989606423, 24.265632479933032 ], [ -77.661962799087092, 24.265593078648656 ], [ -77.661904640358969, 24.265555726363914 ], [ -77.661858718481639, 24.265529994965544 ], [ -77.66171722484124, 24.265456519592227 ], [ -77.661489554917296, 24.265356881155995 ], [ -77.661340904399026, 24.265288144134924 ], [ -77.661253183911541, 24.26525522883993 ], [ -77.661192738970996, 24.265230943649392 ], [ -77.661083678105598, 24.265183523881937 ], [ -77.661037086085088, 24.265161028907048 ], [ -77.66097754754469, 24.265127203723114 ], [ -77.660920255690826, 24.265090316466488 ], [ -77.660892643275645, 24.265070801644047 ], [ -77.660840857196092, 24.265028154674827 ], [ -77.660793753135863, 24.264981171333829 ], [ -77.660772519657485, 24.264955781322755 ], [ -77.660744930598511, 24.264913728056484 ], [ -77.660721353415553, 24.26486845464914 ], [ -77.660707304662793, 24.264837302453877 ], [ -77.660689562935971, 24.264787838429083 ], [ -77.660675223129061, 24.26473629915343 ], [ -77.660667277530393, 24.264701428869742 ], [ -77.660658579143529, 24.26464053872585 ], [ -77.660655400005709, 24.264577475043829 ], [ -77.66065714273735, 24.264513724226195 ], [ -77.66066360791244, 24.264450720265103 ], [ -77.660674968905852, 24.264389925819088 ], [ -77.660691769198294, 24.264332916565369 ], [ -77.660718491383022, 24.26427040798416 ], [ -77.660748277721254, 24.264211683778274 ], [ -77.660775182264004, 24.264151651668364 ], [ -77.660787122670783, 24.264121583598904 ], [ -77.660797396702677, 24.264090717856199 ], [ -77.660805915426536, 24.264059414781858 ], [ -77.660848076956057, 24.263877659756552 ], [ -77.660895484646858, 24.263634381607091 ], [ -77.660907286713069, 24.263542526800727 ], [ -77.660909954709467, 24.26350985674252 ], [ -77.660909906200459, 24.263461371680993 ], [ -77.660904264780413, 24.263414771035677 ], [ -77.660873973589077, 24.26329939788031 ], [ -77.660864317598097, 24.263250641661248 ], [ -77.660858450700957, 24.263202754345137 ], [ -77.660854098363401, 24.263113573148622 ], [ -77.660850577865801, 24.263093052333105 ], [ -77.660818204379581, 24.263004898043032 ], [ -77.660814550033038, 24.262987614583086 ], [ -77.660809293091987, 24.262946215019792 ], [ -77.660801708616049, 24.262927033187527 ], [ -77.660791026748953, 24.262913043600769 ], [ -77.6607759170859, 24.262900386471252 ], [ -77.660746696686346, 24.262885365802394 ], [ -77.660664620313796, 24.262859109724591 ], [ -77.66064431838835, 24.262849469664221 ], [ -77.660637248647063, 24.262843176721493 ], [ -77.660635223845702, 24.262837316197281 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 295, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 4, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 65 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.790376299708399, 24.316221102461391 ], [ -77.790376376065822, 24.316223204680533 ], [ -77.790379345896142, 24.316227045658589 ], [ -77.790404049566405, 24.316250044863065 ], [ -77.790410363824577, 24.316260230983897 ], [ -77.79041480689196, 24.316271798119949 ], [ -77.790417279953942, 24.316283963667971 ], [ -77.790417759654318, 24.31629586643707 ], [ -77.790416253179572, 24.316306623133919 ], [ -77.790412959955717, 24.316315842457378 ], [ -77.790408236613985, 24.316324069610104 ], [ -77.790386002412376, 24.316348689668544 ], [ -77.79037766155497, 24.316368275197892 ], [ -77.790371746148821, 24.316404008036734 ], [ -77.790369077254084, 24.316455838235491 ], [ -77.790369445563385, 24.316494509080592 ], [ -77.790373612847986, 24.316530155110009 ], [ -77.790381013169309, 24.316549885507211 ], [ -77.790402040035133, 24.316575735908412 ], [ -77.790406649290873, 24.316584853703365 ], [ -77.790412198184384, 24.31660625653338 ], [ -77.79041462094068, 24.316630353438686 ], [ -77.790415229100176, 24.316657936841992 ], [ -77.790411522647901, 24.316776926480355 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 297, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 4, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 354 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.790458555744721, 24.316864031624434 ], [ -77.790461718712706, 24.316864488411909 ], [ -77.790468977100218, 24.316869235581347 ], [ -77.790474273567142, 24.316878777399637 ], [ -77.790477495824092, 24.31689224613006 ], [ -77.790477077209147, 24.316918716155502 ], [ -77.790469589751282, 24.316949245702645 ], [ -77.790460832075539, 24.316969663673703 ], [ -77.790427606986455, 24.317029096961619 ], [ -77.790417787502079, 24.317049802254537 ], [ -77.790410021566458, 24.317070224302466 ], [ -77.79040493710194, 24.317089178566526 ], [ -77.790404098973795, 24.31710662247923 ], [ -77.79040921847259, 24.317122492189 ], [ -77.790420542635061, 24.317135691568556 ], [ -77.790436914431083, 24.317146119110202 ], [ -77.790457232526236, 24.317153636468358 ], [ -77.790489533248859, 24.317159426544723 ], [ -77.790526030900566, 24.31716136994083 ], [ -77.790564565931291, 24.317159695051028 ], [ -77.790594089063106, 24.317156345271236 ], [ -77.790654884346594, 24.317147869312997 ], [ -77.790769943263101, 24.31713447674111 ], [ -77.790822769591742, 24.317125700348964 ], [ -77.790895650809048, 24.317111118324206 ], [ -77.79095987496197, 24.317101613361142 ], [ -77.791028577216608, 24.317094664120269 ], [ -77.791100358895989, 24.317089479817653 ], [ -77.791396860431945, 24.317073061630119 ], [ -77.791468601687171, 24.317066813124061 ], [ -77.791648464169981, 24.317048228871787 ], [ -77.791714343019677, 24.317040799099484 ], [ -77.791776643879558, 24.317031767292153 ], [ -77.791833580000556, 24.317020026678449 ], [ -77.79189588086048, 24.3170012541372 ], [ -77.791923188746807, 24.316990766005972 ], [ -77.791947516023029, 24.316978756063161 ], [ -77.791968871672253, 24.316963935803599 ], [ -77.791992545873271, 24.316938873810834 ], [ -77.792011413189201, 24.3169094682242 ], [ -77.792026657599536, 24.316877741028502 ], [ -77.79203600726504, 24.316853461618265 ], [ -77.792044741584547, 24.316819884329714 ], [ -77.792049328382376, 24.316786415090046 ], [ -77.792050271613391, 24.316754875327398 ], [ -77.792046496892596, 24.316692662696887 ], [ -77.792047037678387, 24.316670940619755 ], [ -77.792049664352277, 24.316648733915827 ], [ -77.792054274506327, 24.316626723676805 ], [ -77.792067048549683, 24.316582640972289 ], [ -77.792083741044294, 24.316542059493298 ], [ -77.792093062861994, 24.316523532467535 ], [ -77.792104750842171, 24.316506131042953 ], [ -77.792119515552159, 24.316490691032005 ], [ -77.792137531265183, 24.316478050703605 ], [ -77.792158555436089, 24.316467609190415 ], [ -77.792296307593332, 24.316416857939661 ], [ -77.792342126164399, 24.316398761490639 ], [ -77.792387941142209, 24.316378569367274 ], [ -77.792477854417314, 24.316330672616164 ], [ -77.792585248907841, 24.31627063813194 ], [ -77.792625677587225, 24.316249394058101 ], [ -77.792873767115822, 24.316127089323782 ], [ -77.79290805760688, 24.316107911431722 ], [ -77.792964624520323, 24.316073295112265 ], [ -77.79300287658171, 24.316046943610761 ], [ -77.793014170201502, 24.316038221172558 ], [ -77.793019885282902, 24.31603180971376 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 309, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 4, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 257 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.804672257132253, 24.327212048466841 ], [ -77.804646893193649, 24.32722754773074 ], [ -77.804604483729079, 24.327261485699456 ], [ -77.804331915108961, 24.327512339565764 ], [ -77.804307031775565, 24.327536667684722 ], [ -77.804242090767019, 24.327613223343988 ], [ -77.80419680040535, 24.327662100546714 ], [ -77.803981958423677, 24.327871440986829 ], [ -77.803936606976563, 24.327920291077923 ], [ -77.803894343937415, 24.327972096923137 ], [ -77.803684456164504, 24.3282792562831 ], [ -77.803631637022434, 24.328367609174279 ], [ -77.803575844456759, 24.328452533942439 ], [ -77.803521623942871, 24.328538868185127 ], [ -77.803397066240521, 24.328742717216194 ], [ -77.80337822587407, 24.328776616307714 ], [ -77.803360529062957, 24.328812925994857 ], [ -77.803329380878807, 24.328886877922805 ], [ -77.803296595065873, 24.328991589738575 ], [ -77.803286096455153, 24.329021832344775 ], [ -77.803275327451516, 24.329047485390184 ], [ -77.803255957079045, 24.329081765839703 ], [ -77.803249369733052, 24.329089557519413 ], [ -77.803246543632724, 24.329090994878232 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 310, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 268 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.726170557756916, 24.33204354038601 ], [ -77.726265308459816, 24.33210522735644 ], [ -77.726299404914727, 24.332123295370543 ], [ -77.72634914193705, 24.33214277205504 ], [ -77.726405300117065, 24.332157492317439 ], [ -77.726465003947467, 24.332166751414103 ], [ -77.72652504464611, 24.332170104071295 ], [ -77.726571751650994, 24.332168697035712 ], [ -77.726627522657097, 24.332164029835635 ], [ -77.726678475100002, 24.332156528101049 ], [ -77.726726893395508, 24.332146940777243 ], [ -77.726773645316158, 24.332135072237346 ], [ -77.726845965086468, 24.332112321470994 ], [ -77.726893295522146, 24.332100131249419 ], [ -77.72708233878717, 24.332061483172584 ], [ -77.727277454663493, 24.33202637027502 ], [ -77.727323829291706, 24.332015316970612 ], [ -77.727525349257718, 24.331953702802036 ], [ -77.727570171597137, 24.33193890066379 ], [ -77.727612300787342, 24.331921534914724 ], [ -77.727643535209751, 24.331905035977616 ], [ -77.727672941560584, 24.331887059606757 ], [ -77.727726987801361, 24.331846356974975 ], [ -77.72787346080338, 24.331710542838152 ], [ -77.727970521973191, 24.331624112533465 ], [ -77.728074857700179, 24.331516535603384 ], [ -77.728095231490826, 24.331496621730803 ], [ -77.728118943421066, 24.331477089287375 ], [ -77.728148683945179, 24.331458178100966 ], [ -77.728200532008444, 24.331435000761854 ], [ -77.728260087616832, 24.331414863419173 ], [ -77.728379959706629, 24.331378467713936 ], [ -77.728429981494955, 24.331360388134243 ], [ -77.728481048922177, 24.331336130323958 ], [ -77.728496107381275, 24.331326504467341 ], [ -77.728503247191199, 24.331319679603638 ], [ -77.728503173529475, 24.331316854877983 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 313, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 4, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 386 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.81100504750215, 24.331874037747571 ], [ -77.811001440766333, 24.331878765526714 ], [ -77.810957830254239, 24.331910633027498 ], [ -77.810902468879902, 24.331953947539844 ], [ -77.810867207310025, 24.331984878633694 ], [ -77.810833640861148, 24.332021504169134 ], [ -77.810805116655942, 24.332064963521649 ], [ -77.810783196864648, 24.332113864381437 ], [ -77.810768344119765, 24.332166126883404 ], [ -77.810761731620943, 24.332206162318993 ], [ -77.810756554629961, 24.332274707584912 ], [ -77.81075814464802, 24.332341585491211 ], [ -77.810765723734079, 24.332403925496859 ], [ -77.810804100661329, 24.332673681828208 ], [ -77.810811598899008, 24.332739091924488 ], [ -77.810817144199262, 24.332806377206477 ], [ -77.810829545441763, 24.333012351602338 ], [ -77.810841282829273, 24.333146745859928 ], [ -77.810850497747424, 24.333211034349102 ], [ -77.810877382527281, 24.333350551463742 ], [ -77.810888759690343, 24.33339998058608 ], [ -77.810924014073677, 24.333532155449181 ], [ -77.810938404186217, 24.333578887507905 ], [ -77.810962392797563, 24.333646520210756 ], [ -77.811065296609982, 24.333906130120063 ], [ -77.811103660960825, 24.334011712773016 ], [ -77.81112403834473, 24.334060102132721 ], [ -77.81116442210832, 24.33413430555402 ], [ -77.811177291373099, 24.334156311934429 ], [ -77.81119168328226, 24.33417723051544 ], [ -77.81120801914571, 24.334196453965586 ], [ -77.811225994434523, 24.334214244207679 ], [ -77.811245527402079, 24.334229902237993 ], [ -77.811266425808853, 24.334243518911347 ], [ -77.811288651027255, 24.33425429454774 ], [ -77.811312113225881, 24.334262102279535 ], [ -77.811336819591105, 24.334266017195009 ], [ -77.811362765631458, 24.334266141607944 ], [ -77.811389951346939, 24.334263483099608 ], [ -77.811418022801249, 24.334258208645014 ], [ -77.811446654804271, 24.334250348528641 ], [ -77.811505442353109, 24.334229505262325 ], [ -77.81167507661813, 24.334148942915945 ], [ -77.8117182810917, 24.334130062413067 ], [ -77.811810680903534, 24.334092209726123 ], [ -77.81185854853176, 24.334074259857836 ], [ -77.81195435026352, 24.334041274001134 ], [ -77.812023507964, 24.3340207392779 ], [ -77.812125313136832, 24.333995255851995 ], [ -77.812177745105018, 24.333985950234023 ], [ -77.81221385198954, 24.333982796522392 ], [ -77.81222846937537, 24.333985695682436 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 316, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 4, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 415 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.812818946376126, 24.334152075349611 ], [ -77.812823104686615, 24.334162251839391 ], [ -77.812831223660154, 24.334173481754036 ], [ -77.812866651418346, 24.334213671253064 ], [ -77.812897413326894, 24.334241884354032 ], [ -77.812922057708406, 24.334259771992091 ], [ -77.812949826430483, 24.334276210053122 ], [ -77.812980313454588, 24.334290007611376 ], [ -77.813013285218773, 24.334301129471861 ], [ -77.813048198242299, 24.334310291009626 ], [ -77.813209151188403, 24.334345085694 ], [ -77.813262846187882, 24.33436102609253 ], [ -77.813289466862983, 24.334371662573037 ], [ -77.813324744602511, 24.334389282541434 ], [ -77.813353559861895, 24.334409997276161 ], [ -77.813373853702487, 24.334434389551259 ], [ -77.813386801120672, 24.334459626518807 ], [ -77.813410446575588, 24.334526814303533 ], [ -77.813420141194101, 24.334546901222875 ], [ -77.813446513035913, 24.334588818465775 ], [ -77.81347980909193, 24.334632659997524 ], [ -77.813558924617311, 24.334723983718277 ], [ -77.813620467299131, 24.334798307070638 ], [ -77.813665464810015, 24.3348459152785 ], [ -77.813689751662039, 24.334868592707249 ], [ -77.813715739923211, 24.334889677326572 ], [ -77.81377121987515, 24.33492925926998 ], [ -77.813888666513719, 24.335002114928713 ], [ -77.813916329234601, 24.335021808073495 ], [ -77.813968261739475, 24.335063344556282 ], [ -77.814015760160117, 24.335107668020836 ], [ -77.81403778235935, 24.335130669528944 ], [ -77.814058145370169, 24.335154658144543 ], [ -77.814076282355771, 24.335180272297318 ], [ -77.81410696970417, 24.335234095232405 ], [ -77.814124965654258, 24.335276733346245 ], [ -77.814161617816154, 24.335385792659441 ], [ -77.814178592381808, 24.335422292799933 ], [ -77.814200478037023, 24.335456046867176 ], [ -77.814228010502219, 24.33548578127996 ], [ -77.814259786608773, 24.335512718877407 ], [ -77.814320075242406, 24.335557421967724 ], [ -77.814347435231042, 24.335575688384516 ], [ -77.814386336774376, 24.335597683055564 ], [ -77.814529532722261, 24.335666277233461 ], [ -77.814560287444294, 24.335679907666897 ], [ -77.814622684423952, 24.33570374475655 ], [ -77.814685637460769, 24.335723300284791 ], [ -77.814832503026565, 24.335757206512241 ], [ -77.814973144165748, 24.335783941883342 ], [ -77.815037309029876, 24.335794048677212 ], [ -77.815104280230926, 24.335802556946916 ], [ -77.81531193389371, 24.335825149080787 ], [ -77.815380151058093, 24.335833937274089 ], [ -77.815447212988985, 24.335844819179737 ], [ -77.815755168943099, 24.335906920097887 ], [ -77.815920125680421, 24.335937396780217 ], [ -77.816047551703477, 24.335956868785885 ], [ -77.816095232481629, 24.335961706916152 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 317, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 179 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.752977988142632, 24.336292006170623 ], [ -77.752982821977412, 24.336279497957324 ], [ -77.752994907911287, 24.336263805803664 ], [ -77.753013818346332, 24.33624681960988 ], [ -77.753060934084672, 24.336214142072514 ], [ -77.753084694523935, 24.336202909064763 ], [ -77.753107549461376, 24.336200354545763 ], [ -77.753127055479439, 24.336206904132727 ], [ -77.753142858641922, 24.336218742006874 ], [ -77.753155741381448, 24.336230773044434 ], [ -77.753167977333916, 24.336237514157318 ], [ -77.753181715269577, 24.33623454957371 ], [ -77.753194941165475, 24.33622159527572 ], [ -77.753207928109575, 24.336201641217933 ], [ -77.753220884510895, 24.336177093769255 ], [ -77.753231701125216, 24.33614698792239 ], [ -77.753240478563882, 24.336112696288456 ], [ -77.753262450457385, 24.335999364238344 ], [ -77.753278902203519, 24.335925449201419 ], [ -77.753285095189071, 24.335887596232372 ], [ -77.753288557296187, 24.335848561343788 ], [ -77.75328946998448, 24.335809131927864 ], [ -77.753287808101234, 24.335770055271784 ], [ -77.753283332694494, 24.335732079481794 ], [ -77.753270073560913, 24.33565758888528 ], [ -77.753251949151732, 24.335540971795517 ], [ -77.753207492426625, 24.335357565898789 ], [ -77.753196803373044, 24.335322437544757 ], [ -77.753182967521042, 24.3352900757098 ], [ -77.7531652671167, 24.335261352098364 ], [ -77.753104600292303, 24.335169942822471 ], [ -77.753053564306072, 24.335098549102813 ], [ -77.753027103531082, 24.335063599110192 ], [ -77.753000427160373, 24.335032470690585 ], [ -77.752975684862506, 24.335005145021302 ], [ -77.752928271781713, 24.334956763393077 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 318, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 4, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 214 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.755224218488635, 24.335810018373579 ], [ -77.75521263365043, 24.335812571249281 ], [ -77.755175578145, 24.335817671299395 ], [ -77.754959631235522, 24.335835880383982 ], [ -77.754902335788373, 24.335841818573211 ], [ -77.754849381899007, 24.335849290623706 ], [ -77.754803611836962, 24.335858794999314 ], [ -77.754730472803161, 24.335882237540321 ], [ -77.754696052954728, 24.335895315465883 ], [ -77.754597369427515, 24.335939449566879 ], [ -77.754493557418328, 24.335978212687095 ], [ -77.754426650895951, 24.336006540802913 ], [ -77.754393731234046, 24.336021097735998 ], [ -77.754330453905453, 24.336052950280489 ], [ -77.75429991477904, 24.336069816181514 ], [ -77.754243562562976, 24.336108366453367 ], [ -77.754217197009368, 24.336129522893835 ], [ -77.754191522260228, 24.336151099218245 ], [ -77.754141964900953, 24.336196523176344 ], [ -77.754088584311802, 24.336237808814978 ], [ -77.754037204270858, 24.336281180779469 ], [ -77.753989351015647, 24.336327584426975 ], [ -77.753967472546933, 24.336352586928495 ], [ -77.753947208350695, 24.336378547879924 ], [ -77.753929720847083, 24.336406916012358 ], [ -77.753914543810353, 24.336436759879891 ], [ -77.753901341270634, 24.336467191417679 ], [ -77.753892043707424, 24.336500080060702 ], [ -77.753886956548001, 24.336534853681357 ], [ -77.753887034701435, 24.336573551140052 ], [ -77.753893113600938, 24.336616129871746 ], [ -77.753904290439706, 24.336660263721594 ], [ -77.753932547845295, 24.336751851171517 ], [ -77.753948907963277, 24.336794229313249 ], [ -77.753966496976503, 24.336831013882346 ], [ -77.753983975496993, 24.336860508973448 ], [ -77.754011057908244, 24.33690173137569 ] ], [ [ -77.755250671260285, 24.335800135512212 ], [ -77.755250241619819, 24.33580170898475 ], [ -77.755237994887565, 24.335806982556601 ], [ -77.755225961842285, 24.335809634201958 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 319, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 858 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.681626679009511, 24.339934352385992 ], [ -77.681631042127279, 24.339934356474345 ], [ -77.681639541986499, 24.339930428638446 ], [ -77.681649558201912, 24.33992210480168 ], [ -77.681660537411275, 24.339909505278197 ], [ -77.681671753775959, 24.339893190718612 ], [ -77.681682105961301, 24.339873055538845 ], [ -77.681693351970324, 24.339835274956396 ], [ -77.681697720477558, 24.339790506261036 ], [ -77.68169510638009, 24.339741460221134 ], [ -77.681689356263945, 24.339687630197965 ], [ -77.681684757788005, 24.339615565422257 ], [ -77.681684936552728, 24.339539905057229 ], [ -77.681690525870451, 24.339466716434508 ], [ -77.681701933576235, 24.339401677306199 ], [ -77.68172066344988, 24.339342294614749 ], [ -77.681734454386159, 24.339311700891365 ], [ -77.681750007817001, 24.339281989475449 ], [ -77.681784963061318, 24.339225337157895 ], [ -77.681804034294814, 24.339198041039666 ], [ -77.681845580478367, 24.339146644929414 ], [ -77.68191293076849, 24.339074775461459 ], [ -77.68207049796429, 24.338918846019258 ], [ -77.682109835190545, 24.338875903839547 ], [ -77.682126692076878, 24.338853433384298 ], [ -77.682141279818751, 24.338830570874705 ], [ -77.682153199564283, 24.338806783482021 ], [ -77.682162551924691, 24.338782671967941 ], [ -77.682184634311, 24.338711040470418 ], [ -77.682200007180455, 24.338675165776078 ], [ -77.682221903615542, 24.338641023789535 ], [ -77.682250917402598, 24.338610467546783 ], [ -77.682308720397856, 24.33856254645789 ], [ -77.682411777822196, 24.338486268330712 ], [ -77.682494819883672, 24.3384307132381 ], [ -77.682577170242439, 24.33837215593752 ], [ -77.682636695308062, 24.338337539969377 ], [ -77.682693086151716, 24.338311717742545 ], [ -77.682808447800511, 24.338263803088495 ], [ -77.682860501577949, 24.338235618711604 ], [ -77.682886979420971, 24.338216661880598 ], [ -77.682910975218817, 24.338196050078498 ], [ -77.682932444055794, 24.338173342143097 ], [ -77.682951667104575, 24.338149153571251 ], [ -77.682968926436118, 24.338124099859993 ], [ -77.68299067285254, 24.338083964802731 ], [ -77.683036676476519, 24.337973811046169 ], [ -77.683058350129443, 24.33793366530109 ], [ -77.68309418931598, 24.337884171650472 ], [ -77.683134581164438, 24.337835934352341 ], [ -77.683203523269171, 24.337768714764817 ], [ -77.68335033942769, 24.337636405997848 ], [ -77.683469059877339, 24.33751943878104 ], [ -77.683519182276896, 24.337475097335226 ], [ -77.683705445256123, 24.337330149194184 ], [ -77.683788468452974, 24.337271156768303 ], [ -77.683846383737688, 24.337234205355685 ], [ -77.683966541491756, 24.337164455503864 ], [ -77.684029708327614, 24.337132536941297 ], [ -77.684079520808439, 24.337111117933702 ], [ -77.684164954185206, 24.33707746252599 ], [ -77.684303342349679, 24.337025621934632 ], [ -77.684368905890679, 24.33699596563973 ], [ -77.684400494249317, 24.336980125428326 ], [ -77.684460817018973, 24.336945468973823 ], [ -77.684518426876423, 24.336908242453759 ], [ -77.684546192903596, 24.336888782053215 ], [ -77.684625780044499, 24.336826221625167 ], [ -77.684653242441087, 24.33680658687366 ], [ -77.684738775530803, 24.336750809233589 ], [ -77.684768492698737, 24.336733381120361 ], [ -77.684830813321582, 24.336701951906516 ], [ -77.68486386862908, 24.336688442719652 ], [ -77.684898624447442, 24.33667654022862 ], [ -77.684960786068459, 24.336661809850792 ], [ -77.6850275389789, 24.336652510158135 ], [ -77.685097237465172, 24.336647413415523 ], [ -77.685168427154821, 24.336645571811037 ], [ -77.685239769558052, 24.336646256069447 ], [ -77.685420668696693, 24.336652695137087 ], [ -77.68548971410776, 24.336651149007857 ], [ -77.685557178483904, 24.33664568885526 ], [ -77.685655419141682, 24.336631093524851 ], [ -77.685713033490785, 24.336619799167288 ], [ -77.685768243948132, 24.33660543464844 ], [ -77.685819567395257, 24.336586759134512 ], [ -77.685851237500572, 24.33657136167572 ], [ -77.68588144245372, 24.336554392711552 ], [ -77.685910751786508, 24.336536679736192 ], [ -77.685967511837703, 24.336498889155145 ], [ -77.685994842181913, 24.336478989161513 ], [ -77.686072948000913, 24.336414442868584 ], [ -77.686127154141815, 24.336373772793991 ], [ -77.686211041517979, 24.336314599854319 ], [ -77.68626963053913, 24.336277815135233 ], [ -77.686362787630742, 24.336228127673252 ], [ -77.686427842725294, 24.33619819617773 ], [ -77.686487711845686, 24.336175586103501 ], [ -77.686608069025795, 24.336133625186903 ], [ -77.686662286844765, 24.336109125197694 ], [ -77.68669004029546, 24.336092773316334 ], [ -77.686715383566238, 24.336075250167223 ], [ -77.686738328335252, 24.336056279917006 ], [ -77.686758820703517, 24.33603647725479 ], [ -77.686776707059138, 24.336015501686081 ], [ -77.686823829085668, 24.335948994042081 ], [ -77.686857734199464, 24.335905372322681 ], [ -77.686875661877579, 24.335884754415073 ], [ -77.68689458309241, 24.335866028866604 ], [ -77.686914281349956, 24.335848996783685 ], [ -77.686934662327104, 24.335834430008866 ], [ -77.686955548157471, 24.335822307262109 ], [ -77.686976850806133, 24.335813504335114 ], [ -77.686998419356087, 24.335808248770437 ], [ -77.687020170264077, 24.335807548956101 ], [ -77.687041570829109, 24.335811660262998 ], [ -77.687072068632958, 24.335826487322201 ], [ -77.687102210704012, 24.335848466398236 ], [ -77.687191005576594, 24.335922304541569 ], [ -77.687236083935886, 24.33595050662154 ], [ -77.687418831807406, 24.336043341970704 ], [ -77.68750459217091, 24.336089189947565 ], [ -77.687588981705332, 24.33613045597728 ], [ -77.687629740066399, 24.336147916094774 ], [ -77.687669040461785, 24.336162887169571 ], [ -77.687724950706766, 24.336179824264995 ], [ -77.687771540032358, 24.336189755869572 ], [ -77.687804152470406, 24.336193285214907 ], [ -77.687818486887153, 24.336190395931737 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 320, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 205 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.682123554995613, 24.341253390323104 ], [ -77.682128682743539, 24.341253808600612 ], [ -77.682210676471101, 24.341279327397132 ], [ -77.682254975092704, 24.341290763751395 ], [ -77.682351175676501, 24.341311521554431 ], [ -77.682396808296303, 24.341319265011286 ], [ -77.682438329327027, 24.341321887359285 ], [ -77.682473056399303, 24.341318085609398 ], [ -77.682497245334957, 24.34130720090009 ], [ -77.682508288324726, 24.341289298706467 ], [ -77.682510319415599, 24.341267440888188 ], [ -77.682505929348807, 24.34124371288237 ], [ -77.68249806010688, 24.341217451734266 ], [ -77.68248709796552, 24.341190097116119 ], [ -77.682458304265694, 24.341134787929544 ], [ -77.682442060030411, 24.341106813717776 ], [ -77.68238787185588, 24.34102710694615 ], [ -77.682371945624197, 24.340999749831546 ], [ -77.682360466053169, 24.340969439696675 ], [ -77.682353187004409, 24.340937056387411 ], [ -77.682349270349732, 24.340903832508008 ], [ -77.682347036239662, 24.34080632565469 ], [ -77.682342871649951, 24.340773493785349 ], [ -77.682319948440593, 24.340674015968354 ], [ -77.682309685188471, 24.340640885324941 ], [ -77.682296474563898, 24.340609658423158 ], [ -77.682279798238952, 24.340581199563786 ], [ -77.682260801565619, 24.3405541656468 ], [ -77.68223942166189, 24.340529195894739 ], [ -77.682216426587246, 24.340505210752301 ], [ -77.682191498338113, 24.340483031141577 ], [ -77.682165095055296, 24.340461807495476 ], [ -77.682078968179098, 24.340404664625709 ], [ -77.682027361762621, 24.340360960138568 ], [ -77.681997912292701, 24.340338512863841 ], [ -77.681963040591668, 24.340314975386853 ], [ -77.681923355717316, 24.340292435617172 ], [ -77.681880091056655, 24.340271212757635 ], [ -77.681834168281028, 24.34025317700733 ], [ -77.681787863721397, 24.340238029626963 ], [ -77.681704904304894, 24.340214816244508 ], [ -77.68166790629158, 24.340207663653963 ], [ -77.681641801249441, 24.340204713077267 ], [ -77.681630876836806, 24.340205098579837 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 325, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 4, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 165 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.830874765592242, 24.351474660160296 ], [ -77.830867544036138, 24.351475419626507 ], [ -77.83085138783575, 24.351471510153264 ], [ -77.830828478101054, 24.351463280372144 ], [ -77.830731324404752, 24.351421012712088 ], [ -77.830707863104479, 24.351411981718574 ], [ -77.830663865418472, 24.35139860095213 ], [ -77.830617593198227, 24.351388745832615 ], [ -77.830571687490547, 24.351382584950386 ], [ -77.830528942954416, 24.351380187051102 ], [ -77.830490591179966, 24.351381211682479 ], [ -77.830453567115555, 24.351384589201295 ], [ -77.830418354054686, 24.351390572491635 ], [ -77.830385830549872, 24.351399715606881 ], [ -77.830330469175536, 24.351424653753163 ], [ -77.830309709109315, 24.351436051545033 ], [ -77.830290443839715, 24.351448929812818 ], [ -77.830272989573743, 24.351463728852686 ], [ -77.830240529849291, 24.35149555623493 ], [ -77.830190603282404, 24.351540779093128 ], [ -77.830138282705306, 24.35158016678346 ], [ -77.830110592136677, 24.351595537865546 ], [ -77.830082014032556, 24.351607179523498 ], [ -77.830059261503038, 24.351611602125679 ], [ -77.830035869373049, 24.351612058789584 ], [ -77.830012952451838, 24.35160858470632 ], [ -77.829991669566112, 24.351600981824092 ], [ -77.829978794013144, 24.351593486151106 ], [ -77.829955444103959, 24.351574374187976 ], [ -77.829944992205625, 24.351563003415599 ], [ -77.829930638025715, 24.351541780808162 ], [ -77.829895155470297, 24.35146885200604 ], [ -77.829881560366786, 24.35144618900723 ], [ -77.829868272487118, 24.351429585403647 ], [ -77.829812205935298, 24.351374381352162 ], [ -77.829797982011058, 24.351364790572603 ], [ -77.829786477287215, 24.351360156815716 ], [ -77.829773874822081, 24.351358286781309 ], [ -77.829759893442983, 24.35135958884905 ], [ -77.829744559201117, 24.351363453313905 ], [ -77.829722178574144, 24.351371513693575 ], [ -77.829698635527166, 24.351382723259238 ], [ -77.829675385330972, 24.351397033724705 ], [ -77.82965874404033, 24.351409690211231 ], [ -77.829627924639567, 24.351437240673391 ], [ -77.829614183110678, 24.351451403821542 ], [ -77.829591404529992, 24.351479410120607 ], [ -77.829575703775475, 24.35150335553827 ], [ -77.829569226023963, 24.351519097362534 ], [ -77.829569550314801, 24.351526300057216 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 326, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 4, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 269 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.792126190932578, 24.3584636894313 ], [ -77.792276256297882, 24.358465468519572 ], [ -77.792419152208495, 24.358461858778341 ], [ -77.792494596319287, 24.358457295659353 ], [ -77.792625974929592, 24.358446995088684 ], [ -77.792868494005134, 24.358433250900198 ], [ -77.792923707157485, 24.358428482374286 ], [ -77.792976914371764, 24.358421793998868 ], [ -77.793027257756904, 24.358412364149917 ], [ -77.793102910276886, 24.358392326025445 ], [ -77.793139503149987, 24.35838124883503 ], [ -77.793174523072992, 24.358368663423665 ], [ -77.793240180937133, 24.358339035041151 ], [ -77.793303817591863, 24.35830745570329 ], [ -77.793428660060172, 24.358242000710202 ], [ -77.793526251235988, 24.358197089583079 ], [ -77.793627874949152, 24.3581571131018 ], [ -77.793758929267639, 24.358102787621259 ], [ -77.793791789640736, 24.358090522157973 ], [ -77.793835852005401, 24.358079596336268 ], [ -77.793882680282834, 24.358073168996768 ], [ -77.793930802134298, 24.358070475798986 ], [ -77.793978791933441, 24.358070989724339 ], [ -77.794068777972058, 24.358074604386818 ], [ -77.794121699522066, 24.358073691105552 ], [ -77.794174034472221, 24.35806955187914 ], [ -77.794269907170971, 24.358054184038288 ], [ -77.7943325610687, 24.358040253222761 ], [ -77.794395976737889, 24.358021712624872 ], [ -77.794442022582729, 24.358004850465907 ], [ -77.794486063387836, 24.357987220689722 ], [ -77.794526899902323, 24.357968960779168 ], [ -77.794562831615409, 24.357950059277083 ], [ -77.794592970991502, 24.357931031745814 ], [ -77.794636210499405, 24.357900539897933 ], [ -77.794645912895788, 24.357892641089926 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 327, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 4, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 424 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.801174675657322, 24.360053517504923 ], [ -77.801198290462267, 24.360030311520841 ], [ -77.801276070192827, 24.359968257622217 ], [ -77.801302627087608, 24.359949471804704 ], [ -77.801343952285606, 24.359924425680408 ], [ -77.801479495485566, 24.359854233330076 ], [ -77.801755979862037, 24.35971723808423 ], [ -77.801788503366879, 24.359702204326965 ], [ -77.801845914696685, 24.359680658202461 ], [ -77.802121406434793, 24.359597584187835 ], [ -77.802177174745921, 24.359578434152859 ], [ -77.802269505387471, 24.359540773199956 ], [ -77.802300698487386, 24.359530891709078 ], [ -77.802332423389942, 24.359522846579207 ], [ -77.802364563314185, 24.359516551884592 ], [ -77.8023972709737, 24.359512825968586 ], [ -77.802430445757125, 24.359511654101286 ], [ -77.802592482071461, 24.359519750787566 ], [ -77.802654058889246, 24.359519840805277 ], [ -77.80271638310532, 24.359516916047241 ], [ -77.802777689530217, 24.359510303016872 ], [ -77.802836144702397, 24.359499113811221 ], [ -77.802904170525593, 24.359478609403212 ], [ -77.802983529494398, 24.359447250484092 ], [ -77.803027415789316, 24.359425823794357 ], [ -77.803054242178632, 24.359409695058549 ], [ -77.803079095867602, 24.359392714424679 ], [ -77.803122866279807, 24.35935616881952 ], [ -77.803141244013915, 24.359336827255458 ], [ -77.80315651447539, 24.359316173882448 ], [ -77.803168874395439, 24.359294957485094 ], [ -77.803198700259514, 24.35923235166134 ], [ -77.803209501602453, 24.359213318594389 ], [ -77.803222893686709, 24.359195476216758 ], [ -77.803239631097085, 24.359179661696185 ], [ -77.803275138805319, 24.359159505851487 ], [ -77.803317277876999, 24.359145724096464 ], [ -77.803362185556338, 24.359136661738628 ], [ -77.80349945891156, 24.359114068853739 ], [ -77.803541579118601, 24.359104206151546 ], [ -77.803582652788336, 24.359089613409793 ], [ -77.803621115055549, 24.359069670320693 ], [ -77.803756528898106, 24.358987189206132 ], [ -77.803827315244163, 24.358946770248881 ], [ -77.803849905178652, 24.358931405787942 ], [ -77.803871084758057, 24.358913991366041 ], [ -77.803890638386903, 24.358895111282106 ], [ -77.803908207637221, 24.358874395642633 ], [ -77.803923850899551, 24.358852535131792 ], [ -77.803937615784633, 24.358830234346268 ], [ -77.803948879760028, 24.358807021917507 ], [ -77.80395720354943, 24.358783439591313 ], [ -77.80396229789541, 24.358750730225768 ], [ -77.803959997309974, 24.358718110051662 ], [ -77.803949954145111, 24.358687566837482 ], [ -77.803932297758166, 24.358660781472686 ], [ -77.803887356841159, 24.358611255824812 ], [ -77.803872214838705, 24.358592518088432 ], [ -77.803854459637108, 24.358565928289035 ], [ -77.80384680149929, 24.358540791054118 ], [ -77.803849432664805, 24.358524708851416 ], [ -77.803858343952413, 24.358510201151184 ], [ -77.803881435146764, 24.358492890601742 ], [ -77.803911216095074, 24.358479960676249 ], [ -77.804018959131938, 24.358444391917413 ], [ -77.804019591545895, 24.358444405829356 ], [ -77.804092797055063, 24.358445212722486 ], [ -77.804109745569505, 24.35844667675055 ], [ -77.804119589308428, 24.358448959128594 ], [ -77.804127078562914, 24.35845333157237 ], [ -77.804129576777754, 24.358456777643841 ], [ -77.804136235988949, 24.35847920370275 ], [ -77.804140586529812, 24.358486607312805 ], [ -77.804144033365603, 24.358489059906898 ], [ -77.804152849431773, 24.358491785011342 ], [ -77.804167421902307, 24.358491663077217 ], [ -77.804175433078015, 24.358488313571925 ], [ -77.804178186414404, 24.358485225120123 ], [ -77.804182564803071, 24.35847189338411 ], [ -77.804184154821101, 24.358447823258846 ], [ -77.804184206923154, 24.358403251820143 ] ], [ [ -77.804104087081299, 24.358265737805645 ], [ -77.804097709941331, 24.358264806522019 ], [ -77.804092187098945, 24.358259418497934 ], [ -77.804090209907031, 24.358250798804651 ], [ -77.804089780512314, 24.358229069122324 ], [ -77.804087025379332, 24.358223196632686 ], [ -77.804077766443726, 24.358220287393344 ], [ -77.804051011919626, 24.358218892104151 ], [ -77.804046184373277, 24.358217610565763 ], [ -77.804042994455685, 24.358214957470349 ], [ -77.804040893296261, 24.35820596706079 ], [ -77.804042124683136, 24.358178233661636 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 329, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 4, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 188 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.79732239867505, 24.359066509870836 ], [ -77.797318671565961, 24.359066685813026 ], [ -77.797314616570802, 24.359070311085564 ], [ -77.797307349200139, 24.359082793315601 ], [ -77.797291736480489, 24.359127831790286 ], [ -77.797263806959975, 24.359226927671301 ], [ -77.797255818242178, 24.359266156665921 ], [ -77.797246941090535, 24.359327436755244 ], [ -77.797241936576086, 24.35934988475508 ], [ -77.797229781471998, 24.359384148819274 ], [ -77.797194755260705, 24.35945745359049 ], [ -77.797155145844911, 24.359524818785854 ], [ -77.797098991258181, 24.359609339677711 ], [ -77.79704467282788, 24.359680779317078 ], [ -77.797031190013769, 24.359705077525145 ], [ -77.797009638531804, 24.359758798381854 ], [ -77.796978181327205, 24.359848823278472 ], [ -77.79696945149928, 24.359879907135653 ], [ -77.796962428470366, 24.359912403440774 ], [ -77.796941331535933, 24.360044622645322 ], [ -77.796928838665281, 24.360108683892737 ], [ -77.796925752952276, 24.360131073651868 ], [ -77.796924285105106, 24.360175515184512 ], [ -77.796926686301873, 24.360232627854298 ], [ -77.796922822647815, 24.360283848464146 ], [ -77.796918016661053, 24.360308972259389 ], [ -77.796859690846247, 24.360528104145402 ], [ -77.796851332022541, 24.360565696064139 ], [ -77.796841083143491, 24.360631857715894 ], [ -77.796838692726467, 24.360656543632434 ], [ -77.796838539114518, 24.360679727083532 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 330, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 4, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 524 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.795881052700537, 24.360934115430659 ], [ -77.79587900903374, 24.360933986947771 ], [ -77.795873047813529, 24.360928227513728 ], [ -77.795795921158188, 24.360828629689198 ], [ -77.795720124009435, 24.360738540022833 ], [ -77.795692631070153, 24.360706379447336 ], [ -77.795635293402214, 24.360644174488058 ], [ -77.795605708286644, 24.360615469721264 ], [ -77.795575454824501, 24.360590062842526 ], [ -77.795544793527228, 24.360568093789368 ], [ -77.795513657919443, 24.360550861263384 ], [ -77.795482002187185, 24.360539538760914 ], [ -77.795449824533705, 24.360533508439566 ], [ -77.795391271445169, 24.360528113965412 ], [ -77.795327435364456, 24.360526627047953 ], [ -77.795260686047286, 24.360528677799294 ], [ -77.795193050092891, 24.360534261309141 ], [ -77.795126357369554, 24.360543694273314 ], [ -77.795062379355016, 24.360557589624825 ], [ -77.794989697563679, 24.360579720710327 ], [ -77.794852449361329, 24.360631465733004 ], [ -77.794782800282391, 24.360653893043128 ], [ -77.794735334201121, 24.360665852200505 ], [ -77.794687313859285, 24.360675200866243 ], [ -77.794604982365172, 24.360686356416139 ], [ -77.794559023656916, 24.360688149389176 ], [ -77.79451420401243, 24.360685689472696 ], [ -77.7944718421586, 24.360678878466238 ], [ -77.794413507360701, 24.360661626315249 ], [ -77.794358435243851, 24.36064187087284 ], [ -77.794332521542842, 24.360630720229064 ], [ -77.794307782838246, 24.360617290518746 ], [ -77.794284587439293, 24.360600880427178 ], [ -77.794253391644432, 24.360570272200476 ], [ -77.794206508569744, 24.360509872424888 ], [ -77.794159438645465, 24.360437812954093 ], [ -77.794134359479386, 24.360401875675429 ], [ -77.794007070898601, 24.360247906231724 ], [ -77.793960592065744, 24.36019933211448 ], [ -77.793912116278079, 24.360151858644493 ], [ -77.793859703174519, 24.360108372923797 ], [ -77.79380431305411, 24.360067291469644 ], [ -77.793759058625056, 24.360040480210007 ], [ -77.793678946867999, 24.360000969128084 ], [ -77.793628793925706, 24.359980473803137 ], [ -77.793577802855197, 24.359962105340923 ], [ -77.793509536283509, 24.359940716382035 ], [ -77.793474666379126, 24.359932337395332 ], [ -77.79342686612452, 24.359925002610421 ], [ -77.793377920517969, 24.359922108958688 ], [ -77.793328952453521, 24.359923590973196 ], [ -77.793292421564189, 24.359927424079654 ], [ -77.793237580314383, 24.359935746601241 ], [ -77.793183291528521, 24.359947303203043 ], [ -77.793100992373752, 24.359971273205563 ], [ -77.793055339991014, 24.359987459971979 ], [ -77.793012130127536, 24.360006540386149 ], [ -77.792981752697912, 24.360023251703858 ], [ -77.792924293757352, 24.360059676002077 ], [ -77.792869508203125, 24.360098173961635 ], [ -77.792843385194672, 24.360118091520068 ], [ -77.792794829456938, 24.360160583774054 ], [ -77.792749340567568, 24.360203100563879 ], [ -77.792717547393025, 24.360234556677916 ], [ -77.792690052657107, 24.360267277116719 ], [ -77.792675497254578, 24.360290925451782 ], [ -77.792663980852652, 24.360315547604511 ], [ -77.792654865647449, 24.360340530639419 ], [ -77.792630683898324, 24.360418707236487 ], [ -77.792606440165457, 24.360512222687706 ], [ -77.792591891949399, 24.360552242615139 ], [ -77.792528738588274, 24.360677417737293 ], [ -77.792488372790984, 24.360746719282385 ], [ -77.792470091176654, 24.360787140938115 ], [ -77.79243510718625, 24.360881020275777 ], [ -77.792412227994262, 24.360936482047773 ], [ -77.792375191353415, 24.361015348949994 ], [ -77.792354874156615, 24.361056077394828 ], [ -77.792304943996527, 24.361149459805166 ], [ -77.792275974226897, 24.361199834706795 ], [ -77.792246614588478, 24.361245148205825 ], [ -77.79220387095063, 24.361300654008023 ], [ -77.79217153574983, 24.361337267580751 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 331, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 4, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 181 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.807592037820172, 24.362534770475929 ], [ -77.807579964461596, 24.362530705044197 ], [ -77.807493763025235, 24.362486768426194 ], [ -77.807352097806614, 24.362426568418286 ], [ -77.807320853502702, 24.362409691298101 ], [ -77.807304180771041, 24.362398323135849 ], [ -77.807289782573676, 24.362386829768891 ], [ -77.807265725690357, 24.36236380047896 ], [ -77.807192869625851, 24.362269061363239 ], [ -77.807165791708258, 24.36223746827627 ], [ -77.807142202847189, 24.362218451209547 ], [ -77.807116433774937, 24.362203062596059 ], [ -77.807097468542693, 24.362195910429399 ], [ -77.807077388501142, 24.36219114613694 ], [ -77.807056934760453, 24.362188419475469 ], [ -77.807001600335582, 24.362184485783445 ], [ -77.806976607407734, 24.362180732941301 ], [ -77.806951866906488, 24.362175029210139 ], [ -77.806928270858918, 24.362166958880255 ], [ -77.806869549785461, 24.362136684909455 ], [ -77.806845532428014, 24.362126067127743 ], [ -77.806734014670312, 24.362082661463184 ], [ -77.80662655011119, 24.362044575725751 ], [ -77.806488257168155, 24.361988373035167 ], [ -77.806433397053723, 24.361970103882054 ], [ -77.806346013434464, 24.36194619890599 ], [ -77.806320285684748, 24.36194009009229 ], [ -77.806270015961445, 24.361931083580799 ], [ -77.806216945291069, 24.361924546781051 ], [ -77.806114266057492, 24.361917190016797 ], [ -77.806004340114001, 24.36191483323778 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 332, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 4, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 863 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.890310637540409, 24.364706771530091 ], [ -77.890315842379692, 24.364707408170222 ], [ -77.890327998382148, 24.364704649648914 ], [ -77.890345967382743, 24.364698311023382 ], [ -77.890395180687278, 24.364675884430092 ], [ -77.890424279814269, 24.364659429039595 ], [ -77.890487871553233, 24.364618352336215 ], [ -77.890520880148372, 24.364594387305576 ], [ -77.890553347059338, 24.364567788129307 ], [ -77.890584312885508, 24.364539300286619 ], [ -77.890613072449341, 24.364508648005621 ], [ -77.890639120897617, 24.364476723243584 ], [ -77.890662056683468, 24.364444501426579 ], [ -77.890681085696087, 24.364411683870685 ], [ -77.890695466825491, 24.364379184629421 ], [ -77.89070429367149, 24.364346677196721 ], [ -77.890707251823713, 24.364315171369558 ], [ -77.890705511787019, 24.364284856997202 ], [ -77.890699402344779, 24.364237520081641 ], [ -77.890689509198523, 24.364189242906892 ], [ -77.890671625537877, 24.364124586356759 ], [ -77.890608820723116, 24.363922229602405 ], [ -77.890566986180275, 24.363781764193444 ], [ -77.890525556777703, 24.363655106898353 ], [ -77.890495501843262, 24.363577768620612 ], [ -77.890474238720472, 24.363529613941736 ], [ -77.890450935523702, 24.363483273454154 ], [ -77.89041559580042, 24.363425511688948 ], [ -77.890396620686644, 24.363397920465648 ], [ -77.89029764790196, 24.363263293997797 ], [ -77.890210262485994, 24.363118184711048 ], [ -77.89019121191383, 24.363090810275423 ], [ -77.890150681724805, 24.363037956616246 ], [ -77.890065746014685, 24.362935705000961 ], [ -77.890045847432816, 24.36290911365916 ], [ -77.890017928692131, 24.362867186151679 ], [ -77.889938430484392, 24.362738228455594 ], [ -77.889906419917608, 24.362678063755151 ], [ -77.889883351181041, 24.36262458472477 ], [ -77.889766043781378, 24.362315546320577 ], [ -77.889750462502789, 24.362262916558656 ], [ -77.889737015621307, 24.362208428357306 ], [ -77.889663817298668, 24.361897302201189 ], [ -77.889648320461717, 24.361844601889096 ], [ -77.889624577988769, 24.361777509613688 ], [ -77.889606114016388, 24.3617200392132 ], [ -77.889570522764856, 24.361603933850947 ], [ -77.889535837913371, 24.361502240814694 ], [ -77.889518808550605, 24.361443520698334 ], [ -77.889407834273641, 24.361011094434648 ], [ -77.889354569567161, 24.360822366974517 ], [ -77.88930240439862, 24.360647393002406 ], [ -77.889209840195079, 24.360375458106851 ], [ -77.889171129094578, 24.360277026797505 ], [ -77.88911622496272, 24.360148570558458 ], [ -77.889070436934389, 24.360056303624649 ], [ -77.889020425925864, 24.359967715880899 ], [ -77.88894843673566, 24.359854631043664 ], [ -77.888926483706726, 24.359814910408375 ], [ -77.888838403893118, 24.359641799226882 ], [ -77.888790003563912, 24.359551807734952 ], [ -77.888654908623252, 24.359317408763971 ], [ -77.888610992683994, 24.359223512717762 ], [ -77.888591949298274, 24.359173903000503 ], [ -77.888556726356015, 24.359072190007744 ], [ -77.888537310169454, 24.359022905114642 ], [ -77.888507785240989, 24.358960605217955 ], [ -77.8884599373757, 24.358870133690186 ], [ -77.88837558736715, 24.358723684639507 ], [ -77.888269301397642, 24.358507590615961 ], [ -77.888236131105828, 24.358448465663493 ], [ -77.888199906541971, 24.358392000321931 ], [ -77.888180464304284, 24.358364804900923 ], [ -77.888139544246457, 24.358312429639657 ], [ -77.888052572055585, 24.358212151342993 ], [ -77.888028636444872, 24.358187189983401 ], [ -77.888000841671612, 24.358161750701498 ], [ -77.88796955874021, 24.358135703378913 ], [ -77.887935293401981, 24.358109994848732 ], [ -77.887861096152776, 24.358058708709116 ], [ -77.887783484407166, 24.358009713936578 ], [ -77.88767045119161, 24.357946089445615 ], [ -77.887538990834614, 24.357877307658033 ], [ -77.887527653197409, 24.357870608614888 ], [ -77.887522838226985, 24.357866287711722 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 333, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 2810 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.690215461993361, 24.365484321438394 ], [ -77.690215639426484, 24.365483306384469 ], [ -77.690220714907824, 24.365436280054844 ], [ -77.690232870910265, 24.365276485490412 ], [ -77.690251448070356, 24.365107186908126 ], [ -77.690255728542709, 24.365037579249496 ], [ -77.690257688666648, 24.364966951941003 ], [ -77.690257191898297, 24.364896255855175 ], [ -77.690253877114856, 24.364826428773711 ], [ -77.690247137055309, 24.364758461670441 ], [ -77.69023608148909, 24.364693464994378 ], [ -77.690214812976436, 24.36460982881859 ], [ -77.690200456101564, 24.364563535370394 ], [ -77.690183557892766, 24.364519317959502 ], [ -77.690153308023895, 24.364457336637091 ], [ -77.690068412737944, 24.364310196032623 ], [ -77.690021511696955, 24.364218167807568 ], [ -77.689966276086778, 24.364089150114971 ], [ -77.689914193563226, 24.363957468677679 ], [ -77.689832408244826, 24.363779941805131 ], [ -77.689811831434909, 24.363739782148173 ], [ -77.689795097617761, 24.363711267933009 ], [ -77.689777578673144, 24.363683443551846 ], [ -77.689740941782603, 24.363630381469537 ], [ -77.689658552796303, 24.363518362081297 ], [ -77.689631710237293, 24.363483918288466 ], [ -77.689575048102455, 24.363423144295876 ], [ -77.689477407519277, 24.363308844888802 ], [ -77.689435071716517, 24.3632624486747 ], [ -77.689389534318181, 24.363218368286699 ], [ -77.689295380994878, 24.36313630476447 ], [ -77.689273842089378, 24.363115553813188 ], [ -77.689244636062867, 24.36308419088553 ], [ -77.689221794600115, 24.363050694589266 ], [ -77.689209458036331, 24.363017541160467 ], [ -77.689204801169893, 24.362982343558002 ], [ -77.689207452996612, 24.362946624675349 ], [ -77.689213878645802, 24.362920287833706 ], [ -77.689223164530929, 24.362893721038297 ], [ -77.689235174107935, 24.362867444741404 ], [ -77.689249779816151, 24.362841975304164 ], [ -77.689284623669394, 24.362791894015515 ], [ -77.689386751337423, 24.362667575314049 ], [ -77.689426544009535, 24.362615581535522 ], [ -77.689444894794178, 24.362588603059592 ], [ -77.689461325879037, 24.362560249794683 ], [ -77.689483302264179, 24.362505373017587 ], [ -77.68949708331894, 24.362445695927608 ], [ -77.689503608681136, 24.362383408354258 ], [ -77.689503278101114, 24.362320498823319 ], [ -77.689494780038544, 24.362236642585984 ], [ -77.689487697720821, 24.362187924388483 ], [ -77.689478616651613, 24.362139589148892 ], [ -77.689447148667213, 24.362008070984562 ], [ -77.689433673039645, 24.361960946800604 ], [ -77.689390744348842, 24.361835646107384 ], [ -77.689372548074473, 24.361792160147004 ], [ -77.689301034092992, 24.361648593360378 ], [ -77.689279476322824, 24.361609198983377 ], [ -77.689262139736144, 24.361581279213713 ], [ -77.689225310606147, 24.361528094318651 ], [ -77.689184785807043, 24.361480640987086 ], [ -77.689122324148698, 24.361417697455742 ], [ -77.689087817163681, 24.361375658979366 ], [ -77.689074363993996, 24.361354028033389 ], [ -77.689064595713589, 24.361331135216812 ], [ -77.68905827337062, 24.361307399514647 ], [ -77.689053977626941, 24.36128218180944 ], [ -77.689046334760491, 24.361213071229024 ], [ -77.689029324262279, 24.361087970286707 ], [ -77.689020184802558, 24.361003412739137 ], [ -77.689017653350078, 24.36095619652761 ], [ -77.68901764257032, 24.360907532665532 ], [ -77.689027174593804, 24.360760275002725 ], [ -77.689032531247832, 24.36063300420448 ], [ -77.689032229413897, 24.36050313260434 ], [ -77.68902911225986, 24.360439002816349 ], [ -77.689023320821221, 24.360376401650282 ], [ -77.688999784960757, 24.360208022052273 ], [ -77.688988288321767, 24.360144702270333 ], [ -77.688968012447489, 24.360052292942619 ], [ -77.688955166538946, 24.359997184306003 ], [ -77.688940479982364, 24.359943630491959 ], [ -77.688922538829516, 24.359892878653579 ], [ -77.688892802796971, 24.35983049080431 ], [ -77.68880563297671, 24.3596798660475 ], [ -77.688774315010988, 24.359631140318921 ], [ -77.688696892809901, 24.359523494706941 ], [ -77.688618451919311, 24.359401414238029 ], [ -77.688583780542572, 24.359352627844697 ], [ -77.688551262427609, 24.359318529077594 ], [ -77.688530880552136, 24.359305019848598 ], [ -77.688514622842121, 24.359299393730549 ], [ -77.688504522184431, 24.35930133811712 ] ], [ [ -77.688488361493029, 24.359275374500935 ], [ -77.688493515127902, 24.359229512004646 ], [ -77.688521030525067, 24.359057521974712 ], [ -77.688524051559298, 24.359017886197197 ], [ -77.688524087491956, 24.358977058076515 ], [ -77.68852102423682, 24.358935991803619 ], [ -77.688515563378218, 24.358894314212204 ], [ -77.688507801035854, 24.358852990951394 ], [ -77.688497909686262, 24.358813009767193 ], [ -77.688474865204299, 24.358736839586047 ], [ -77.688440720240308, 24.35863545767322 ], [ -77.688424348444272, 24.358578736271831 ], [ -77.688377856136739, 24.358394461101557 ], [ -77.688362596455022, 24.358326450444089 ], [ -77.688354771230564, 24.358280447666669 ], [ -77.688349073216727, 24.358234175634973 ], [ -77.688342070849075, 24.358155234984391 ], [ -77.688335670352657, 24.358105003719078 ], [ -77.688325399914063, 24.358055580966123 ], [ -77.688316253267814, 24.358023718407491 ], [ -77.688300382731711, 24.357976112366469 ], [ -77.688281337549355, 24.357929998165663 ], [ -77.688250479521031, 24.357872097200396 ], [ -77.688216127944557, 24.357816464686152 ], [ -77.688166011833204, 24.357730354170588 ], [ -77.688063302955186, 24.357564557055774 ], [ -77.688045519007446, 24.357539054635303 ], [ -77.688008776115709, 24.357490792090353 ], [ -77.687989357234201, 24.357469171937286 ], [ -77.687932056397202, 24.357410842760714 ], [ -77.68787893362456, 24.357365560622927 ], [ -77.68786375568952, 24.357350209882078 ], [ -77.687849788683508, 24.357331930239063 ], [ -77.687828783377157, 24.357289810206343 ], [ -77.68781166238621, 24.357238876446576 ], [ -77.687779367053395, 24.357124095987022 ], [ -77.687759456793472, 24.357066232297576 ], [ -77.687691807364345, 24.356909740702044 ], [ -77.68765512915131, 24.35683204476997 ], [ -77.687631531307133, 24.356786475180492 ], [ -77.687596576062788, 24.35672906716383 ], [ -77.6875776871873, 24.356701598052886 ], [ -77.687536355701084, 24.356650496292264 ], [ -77.687405195381388, 24.356512930453125 ], [ -77.687365898579287, 24.356469211066955 ], [ -77.687314208619483, 24.356407749553732 ], [ -77.68726687818382, 24.356359542226073 ], [ -77.687240918668749, 24.356326752034409 ], [ -77.68723107403153, 24.356309694060698 ], [ -77.687224561245728, 24.356291606582904 ], [ -77.687221147647662, 24.356273031357539 ], [ -77.687217643319741, 24.356212975699119 ], [ -77.687214414774587, 24.356190643350633 ], [ -77.687197906434605, 24.35612932491598 ], [ -77.687183081537484, 24.356089846984325 ], [ -77.687116177710053, 24.355951134004822 ], [ -77.68706937907703, 24.35586434215741 ], [ -77.687018093359143, 24.355778867821677 ], [ -77.686891894434766, 24.355591238992698 ], [ -77.686876270935358, 24.355564714032145 ], [ -77.686862518626654, 24.355537937826799 ], [ -77.686851199854033, 24.355510236040573 ], [ -77.686842348753601, 24.355482089873817 ], [ -77.686836007545992, 24.355453979709036 ], [ -77.686832840984636, 24.355410684690963 ], [ -77.686837599360686, 24.355367532872801 ], [ -77.686844882900985, 24.355339662464964 ], [ -77.6868545514684, 24.355311824785868 ], [ -77.686866486485286, 24.355284487943283 ], [ -77.686880578357133, 24.355258115135431 ], [ -77.686946844380699, 24.355154051088412 ], [ -77.686978657318178, 24.355099416611136 ], [ -77.687006726077556, 24.355042435019445 ], [ -77.687023225434359, 24.354996909796132 ], [ -77.68703568955894, 24.354949775635905 ], [ -77.687062487202169, 24.354830088589001 ], [ -77.68707504115828, 24.354785725379891 ], [ -77.687107798225099, 24.354686372325386 ], [ -77.687121475075287, 24.354639896841125 ], [ -77.687145853555506, 24.35454304871865 ], [ -77.687154328261869, 24.354506269294461 ], [ -77.687166071937568, 24.354440421970164 ], [ -77.687174260081377, 24.354371996726218 ], [ -77.68717941371618, 24.354302080362874 ], [ -77.687181814014608, 24.354231663932318 ], [ -77.68718152026554, 24.354161697570373 ], [ -77.687178370772145, 24.354093154329338 ], [ -77.687171981055542, 24.354027089101404 ], [ -77.687145602027201, 24.35384583940084 ], [ -77.687139200632487, 24.353793081722767 ], [ -77.687129479064509, 24.35367263576137 ], [ -77.687125175235963, 24.353638240028342 ], [ -77.687101912463376, 24.353498001353302 ], [ -77.687091118306896, 24.353444965280232 ], [ -77.687077900495808, 24.353393437464188 ], [ -77.687045328481915, 24.353295423828634 ], [ -77.687009932164798, 24.353201433292487 ], [ -77.686999378756838, 24.353169612067717 ], [ -77.686981234584721, 24.353105407364222 ], [ -77.686971575898795, 24.353055742053808 ], [ -77.686965574254344, 24.353005264885869 ], [ -77.686959056078678, 24.352925689998621 ], [ -77.686953784764611, 24.352878828408095 ], [ -77.686946642259755, 24.352831955342786 ], [ -77.68692085162796, 24.352702525031894 ], [ -77.686909605618936, 24.352655433391913 ], [ -77.686873952383593, 24.352527713331966 ], [ -77.686859158029193, 24.352482162652564 ], [ -77.686821662349246, 24.352383237444233 ], [ -77.686773726449033, 24.352249012545741 ], [ -77.686729338894196, 24.352113479716277 ], [ -77.686677246489182, 24.351938567359063 ], [ -77.686656738849564, 24.351887381017821 ], [ -77.686620929307395, 24.351821202518835 ], [ -77.686606319107625, 24.35178976068153 ], [ -77.686599026584148, 24.351765388116878 ], [ -77.686595066810355, 24.351740747114473 ], [ -77.686593983442123, 24.351716311524058 ], [ -77.686594902418705, 24.351637267782625 ], [ -77.686598482205113, 24.351577055248175 ], [ -77.68660646822795, 24.351487643174419 ], [ -77.686609826130493, 24.351425968914722 ], [ -77.686611612879602, 24.35136154890705 ], [ -77.686611585031841, 24.351295603376194 ], [ -77.686609394040843, 24.351229228971064 ], [ -77.686604558409655, 24.351163453597799 ], [ -77.68658056171347, 24.350933500182244 ], [ -77.68657215348243, 24.350870475294272 ], [ -77.686561450055791, 24.350809233667103 ], [ -77.686541122079277, 24.350716675940038 ], [ -77.686483147505768, 24.350479952714469 ], [ -77.686469291890802, 24.350414592700133 ], [ -77.686444538813163, 24.350281391991324 ], [ -77.686430606841412, 24.350216187371061 ], [ -77.686394885334153, 24.350071110591845 ], [ -77.686381027922579, 24.350005924686567 ], [ -77.68635654703445, 24.349872797204341 ], [ -77.686342880964048, 24.349807493346507 ], [ -77.686285678043376, 24.349571108059926 ], [ -77.686265444389889, 24.349478738479938 ], [ -77.686254612504229, 24.34941762958011 ], [ -77.686245829675713, 24.349354743885339 ], [ -77.6862304568062, 24.349227074510402 ], [ -77.686206656841065, 24.349054097798497 ], [ -77.686188934877123, 24.34891085538495 ], [ -77.686177820022138, 24.348841193805104 ], [ -77.686163075075086, 24.34877468471198 ], [ -77.686142125464315, 24.348704997686454 ], [ -77.686130492281407, 24.348671037636315 ], [ -77.686098716174882, 24.348588723249236 ], [ -77.686078017194092, 24.348540605424628 ], [ -77.68600087975895, 24.348388022678396 ], [ -77.685945341416485, 24.348260253300285 ], [ -77.685806002834482, 24.347897318914566 ], [ -77.685757458774859, 24.347763230846393 ], [ -77.685717242996191, 24.347666216234288 ], [ -77.685579612111511, 24.347360550850158 ], [ -77.685559585070564, 24.347319195179217 ], [ -77.685526933106644, 24.34725991932142 ], [ -77.685479753587899, 24.347168953287451 ], [ -77.685405594966227, 24.34701329652496 ], [ -77.685377436375333, 24.346949871931276 ], [ -77.685352029324179, 24.346884059142489 ], [ -77.685335414084662, 24.346832395252711 ], [ -77.685290733679054, 24.346672920118877 ], [ -77.685244757902822, 24.346536845250249 ], [ -77.68520538564222, 24.34643909720586 ], [ -77.685136082414687, 24.34627970833008 ], [ -77.685117494474838, 24.346225350744007 ], [ -77.685072682016923, 24.346052761959246 ], [ -77.685056036234684, 24.345996714216838 ], [ -77.685031944317046, 24.34592975185565 ], [ -77.684936721100328, 24.345704462183061 ], [ -77.684838685258427, 24.345481556207368 ], [ -77.684792675346202, 24.345389498741138 ], [ -77.68475953919031, 24.345330333287112 ], [ -77.684724102448968, 24.34527315332917 ], [ -77.684685912371293, 24.345218106188298 ], [ -77.684601382699725, 24.345115536536987 ], [ -77.684556369917445, 24.345066621872196 ], [ -77.684532615766358, 24.34504312537738 ], [ -77.684404165663892, 24.344935077783393 ], [ -77.68427891176718, 24.344824235131448 ], [ -77.68417285127488, 24.344742108121324 ], [ -77.684147402002878, 24.344720775518205 ], [ -77.684122895063609, 24.344699044331758 ], [ -77.684053678074321, 24.344631130257913 ], [ -77.68401090389375, 24.344584800856705 ], [ -77.683991455367874, 24.344560819756136 ], [ -77.68395724572521, 24.344510534808432 ], [ -77.683936420980316, 24.344470665312773 ], [ -77.683895915045809, 24.344377943356061 ], [ -77.683867454621009, 24.344326090202308 ], [ -77.683800956832087, 24.344221222461954 ], [ -77.68374597095351, 24.344141725534843 ], [ -77.683726328391529, 24.344115672053618 ], [ -77.683684094098467, 24.344065726583004 ], [ -77.683638730973229, 24.344017867304501 ], [ -77.683591353825136, 24.34397157614579 ], [ -77.683545008841335, 24.343923865788486 ], [ -77.683500721897815, 24.343874198513259 ], [ -77.683459273630632, 24.343821987492984 ], [ -77.683383476481865, 24.343711017007681 ], [ -77.683342558220701, 24.343658670876611 ], [ -77.683278995227823, 24.343582962183227 ], [ -77.683258920576151, 24.343557172945193 ], [ -77.683221838121227, 24.343503452578723 ], [ -77.683205321696406, 24.343475216987219 ], [ -77.683190464459926, 24.343446207138513 ], [ -77.683173936357008, 24.343405198029235 ], [ -77.683160769749904, 24.343362467711692 ], [ -77.683143479875625, 24.343286813677203 ], [ -77.683137848337083, 24.343242744338294 ], [ -77.683135808263103, 24.343198408988268 ], [ -77.683136944631912, 24.343154852786068 ], [ -77.683144243443579, 24.34306052324968 ], [ -77.683144768059734, 24.343028777228898 ], [ -77.68313995039486, 24.342946791464733 ], [ -77.683134324246254, 24.342895568750357 ], [ -77.683125704012795, 24.342844607919449 ], [ -77.683112958715526, 24.342795488583164 ], [ -77.68310184116558, 24.342764537212222 ], [ -77.683082201298518, 24.342719626323319 ], [ -77.68305796924372, 24.342678225758721 ], [ -77.683038600667871, 24.3426535919908 ], [ -77.683017250408497, 24.342630782548049 ], [ -77.682994462844718, 24.34260922697025 ], [ -77.682969834632871, 24.342589652862205 ], [ -77.682923850771815, 24.342562904195404 ], [ -77.682869755123718, 24.342539757533814 ], [ -77.682774140241506, 24.342503431319397 ], [ -77.682738416039285, 24.342487820963616 ], [ -77.682703442828625, 24.342470194755595 ], [ -77.682637619674523, 24.342432015542499 ], [ -77.682537748574461, 24.342366161119887 ], [ -77.682507964931219, 24.342350389511779 ], [ -77.682488041196507, 24.342343224765013 ], [ -77.682471087292186, 24.342339720963082 ], [ -77.682457910803578, 24.342339203700099 ], [ -77.682446045854888, 24.342343073355451 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 348, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 4, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 63 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.870930646807309, 24.385691932347211 ], [ -77.870931133694214, 24.385684362603921 ], [ -77.870929029839814, 24.385677887576687 ], [ -77.870924701756778, 24.385670931463011 ], [ -77.870916994211655, 24.385663906622241 ], [ -77.870906406667729, 24.385657875862421 ], [ -77.870893588606904, 24.385652959455278 ], [ -77.870879319766971, 24.385649168037098 ], [ -77.870849746329498, 24.385644824351441 ], [ -77.870739586824513, 24.385641934560823 ], [ -77.870687109940533, 24.385643156912781 ], [ -77.870664856874356, 24.385646225883484 ], [ -77.87065589887429, 24.385648980675274 ], [ -77.870649167797922, 24.385652928364667 ], [ -77.870645467637232, 24.385657785863351 ], [ -77.870644115672732, 24.385663324082458 ], [ -77.870645040039165, 24.385668919573519 ], [ -77.870648348534345, 24.385673948888044 ], [ -77.870654733759395, 24.385678207482663 ], [ -77.870673792416483, 24.385683696610524 ], [ -77.870697737908714, 24.385686666581183 ], [ -77.870765224742698, 24.38568950809854 ], [ -77.870930646807309, 24.385691932347211 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 349, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 4, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 245 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.869647346829154, 24.385796930991553 ], [ -77.869646064934187, 24.385790452694629 ], [ -77.8696576172687, 24.385781282610662 ], [ -77.869681088450463, 24.385770607905496 ], [ -77.869719426750152, 24.38575951184021 ], [ -77.869769286841716, 24.385749899940411 ], [ -77.869827861489782, 24.385741895750492 ], [ -77.869892050608428, 24.385735322545472 ], [ -77.870137795534205, 24.385715587382922 ], [ -77.870181368317049, 24.385709624534016 ], [ -77.870219377833337, 24.385700947802871 ], [ -77.870250377795514, 24.385688631016293 ], [ -77.87027148910299, 24.385673736981058 ], [ -77.870285746264869, 24.385656946416898 ], [ -77.8702919661999, 24.385638066233966 ], [ -77.870290842407456, 24.385618404691929 ], [ -77.870274346643882, 24.385548660233475 ], [ -77.870267304750399, 24.385524901258268 ], [ -77.870257920948916, 24.385503559985533 ], [ -77.870242619046394, 24.385484022785228 ], [ -77.870220335437438, 24.385467469466633 ], [ -77.870192603546286, 24.385453205400246 ], [ -77.870161308936716, 24.385440229140251 ], [ -77.870127201702033, 24.385428150417312 ], [ -77.870082153885505, 24.385417111594247 ], [ -77.870032600119487, 24.385409214564316 ], [ -77.869979912131427, 24.38540366160688 ], [ -77.869869058228744, 24.385397476199444 ], [ -77.869755454582958, 24.385395992847076 ], [ -77.869698919110533, 24.385396830658923 ], [ -77.86958874792748, 24.385402390162074 ], [ -77.869440606753955, 24.385419307577191 ], [ -77.869386720413331, 24.385423213546822 ], [ -77.869275642830132, 24.385427127698065 ], [ -77.869215152075512, 24.385427138334322 ], [ -77.869074825346701, 24.385421626286472 ], [ -77.869002245963273, 24.385416255782669 ], [ -77.868932860989077, 24.385409275927465 ], [ -77.868870118158014, 24.385400899446164 ], [ -77.868817153488905, 24.385391600880325 ], [ -77.868756094999043, 24.385378969065957 ], [ -77.868733216704854, 24.385375803548705 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 354, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 4, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 45 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.866199134865326, 24.388210678710312 ], [ -77.866382145943746, 24.388213155266826 ], [ -77.86640698076809, 24.38821580446043 ], [ -77.866420537244011, 24.388220182420341 ], [ -77.866425657641159, 24.388223815038842 ], [ -77.866429368581578, 24.388228857342259 ], [ -77.866433351711578, 24.388241936403759 ], [ -77.86643464528558, 24.388257356211337 ], [ -77.866434878847528, 24.388323337290863 ], [ -77.866438140630322, 24.388337043050505 ], [ -77.866441978233226, 24.388342505881866 ], [ -77.866448161337331, 24.38834640439768 ], [ -77.866465975827737, 24.388351083434692 ], [ -77.866486694571435, 24.388352814653796 ], [ -77.86651815177558, 24.388352627300947 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 355, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 4, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 114 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.835372348150713, 24.393367683786469 ], [ -77.835377615870243, 24.393374477484514 ], [ -77.835407295308883, 24.393401086145303 ], [ -77.835438043742769, 24.39342254471233 ], [ -77.835455502500281, 24.393433014240191 ], [ -77.835474152423927, 24.393442204222069 ], [ -77.835500889880038, 24.393450703707025 ], [ -77.83552829478441, 24.393454435168046 ], [ -77.835554044992051, 24.393453279977777 ], [ -77.835678900036712, 24.393420315325333 ], [ -77.835696657034944, 24.393419827723623 ], [ -77.835712964152322, 24.393423321111669 ], [ -77.835726137047658, 24.393431004110528 ], [ -77.835734907299738, 24.393442972440003 ], [ -77.835739829169214, 24.393457575943909 ], [ -77.835742666048873, 24.393495262793639 ], [ -77.835744982803988, 24.393506851507915 ], [ -77.835749545347326, 24.393518315048318 ], [ -77.835756453391852, 24.393529093818763 ], [ -77.83577470356515, 24.393549998494855 ], [ -77.835785781589209, 24.393559852783863 ], [ -77.835803206210826, 24.393571137150523 ], [ -77.83582266910976, 24.393580917806847 ], [ -77.835873114902881, 24.393602312529769 ], [ -77.835895168543075, 24.393607169722838 ], [ -77.835918427722433, 24.39360892868611 ], [ -77.835941862073255, 24.393607686776228 ], [ -77.836002687899452, 24.393597728589359 ], [ -77.836143810535631, 24.393584594449873 ], [ -77.836170603687293, 24.393579419006198 ], [ -77.836194935455069, 24.393570668366234 ], [ -77.836214435184971, 24.393558029188217 ], [ -77.836224884388372, 24.393546019963509 ], [ -77.83623191909534, 24.39353285800243 ], [ -77.836246576007539, 24.393480492397 ], [ -77.836256921008342, 24.393452242602457 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 356, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 4, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 205 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.844126218590048, 24.39632364660223 ], [ -77.844133657539786, 24.396323790566662 ], [ -77.844150332068097, 24.396320123820662 ], [ -77.844177449511577, 24.396311569715646 ], [ -77.844253295169324, 24.396286326267152 ], [ -77.844296463710279, 24.396269425850818 ], [ -77.844380588241719, 24.396227744201447 ], [ -77.844485071292411, 24.396168870044853 ], [ -77.844517570542763, 24.396153944520567 ], [ -77.844585513720972, 24.396126643503624 ], [ -77.844621844285982, 24.396115369182471 ], [ -77.844736675030433, 24.396086855723524 ], [ -77.8447773139156, 24.396079689111282 ], [ -77.844820088096171, 24.39607455631133 ], [ -77.844953115115004, 24.39606364358864 ], [ -77.844996672626522, 24.39605925771939 ], [ -77.845038644611549, 24.39605336080707 ], [ -77.845078200128441, 24.396045160924256 ], [ -77.845189447493212, 24.396012975785837 ], [ -77.845229152130457, 24.396004917432879 ], [ -77.845271403491552, 24.395999286402809 ], [ -77.845315416448884, 24.395995334946111 ], [ -77.845495977820988, 24.395983827452699 ], [ -77.84553889752867, 24.395978832908959 ], [ -77.845579225596708, 24.395971369317728 ], [ -77.845615729536576, 24.395960260240347 ], [ -77.845647873054091, 24.395944739109332 ], [ -77.845827234276939, 24.395843828804164 ], [ -77.845867440174118, 24.395821941141726 ], [ -77.845906675890788, 24.395803313636776 ], [ -77.845943417884257, 24.395788524693444 ], [ -77.845971324048534, 24.395780466326116 ], [ -77.845994737738138, 24.395776104172164 ], [ -77.84601147245354, 24.395774907279598 ], [ -77.846019656105298, 24.395776647400631 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 357, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 3720 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.703466822031288, 24.396883419687946 ], [ -77.703465854546181, 24.396880582508505 ], [ -77.703457883794655, 24.396874906521845 ], [ -77.703443204424602, 24.396866748415537 ], [ -77.703353933444902, 24.396826200034067 ], [ -77.703294712908146, 24.396797141061615 ], [ -77.703257431027211, 24.396776178837563 ], [ -77.703219842820758, 24.396753189353149 ], [ -77.703182748687738, 24.396727983625556 ], [ -77.703146989451213, 24.396700298224477 ], [ -77.703113233457799, 24.396671005245789 ], [ -77.703071946887334, 24.396629365452185 ], [ -77.70295422536428, 24.396495601469763 ], [ -77.702906646993583, 24.396448936005317 ], [ -77.702779777925983, 24.396340726154371 ], [ -77.702705687576326, 24.396275133770907 ], [ -77.702679388498041, 24.396255383074198 ], [ -77.702624631689929, 24.396218556876708 ], [ -77.702595953872802, 24.396201813527565 ], [ -77.702555306902838, 24.39618275330076 ], [ -77.702512721368464, 24.396166583439062 ], [ -77.702469717219145, 24.396152269039703 ], [ -77.702405503846023, 24.396133898468751 ], [ -77.70219061874522, 24.396080652840809 ], [ -77.702133869473798, 24.396062931836084 ], [ -77.702101392681328, 24.396050508887516 ], [ -77.70205480066079, 24.396030462001079 ], [ -77.702012023785286, 24.396007647455814 ], [ -77.701986470308711, 24.395990202142904 ], [ -77.701963350368231, 24.39597150266934 ], [ -77.701943132884466, 24.395951099893733 ], [ -77.701926419728608, 24.395928462863409 ], [ -77.70191299350833, 24.39590421333903 ], [ -77.701892103186424, 24.395852058970256 ], [ -77.701872773238136, 24.395795459797661 ], [ -77.701856267593115, 24.395734767602093 ], [ -77.701847413797651, 24.39567985204534 ], [ -77.7018432195636, 24.395622156529054 ], [ -77.701844291253707, 24.395433713886533 ], [ -77.701837507176705, 24.395293793985186 ], [ -77.701835044894494, 24.395153333974676 ], [ -77.701836559454094, 24.395124462783382 ], [ -77.701846263954081, 24.395044431708467 ], [ -77.701849007408953, 24.39500662587627 ], [ -77.701848514233902, 24.394971550077859 ], [ -77.701842664404765, 24.394910849305422 ], [ -77.701842577268152, 24.394878499437077 ], [ -77.701845992662882, 24.394845427165421 ], [ -77.701853720869252, 24.394802637318971 ], [ -77.701856193032924, 24.394780552310404 ], [ -77.701856720344011, 24.394758243134483 ], [ -77.701854181705002, 24.39473515838143 ], [ -77.701848174670701, 24.394711860914253 ], [ -77.701835172455262, 24.394681244581697 ], [ -77.701802883410707, 24.39461525127793 ], [ -77.701785535145973, 24.394563501344553 ], [ -77.701772326318007, 24.394506353456514 ], [ -77.701762048692856, 24.394446404310052 ], [ -77.701749775011123, 24.394352281548326 ], [ -77.701746964182561, 24.394301179456651 ], [ -77.701748180501497, 24.394250853738569 ], [ -77.701753379950347, 24.394202914452418 ], [ -77.701762722429308, 24.394159102557822 ], [ -77.701796496389036, 24.394064027291048 ], [ -77.701810409496147, 24.394034030118092 ], [ -77.701827639183307, 24.394009085646321 ], [ -77.701841017792844, 24.393996526687886 ], [ -77.701854904848815, 24.393986935049465 ], [ -77.70189217325499, 24.393966323332702 ], [ -77.701901829246012, 24.393957879514574 ], [ -77.701909880845875, 24.393946056041177 ], [ -77.701917301828445, 24.393920949564219 ], [ -77.701918688827249, 24.393889271937567 ], [ -77.701913885535447, 24.393853722137052 ], [ -77.70190240147285, 24.393816797883083 ], [ -77.701877585513103, 24.393767893048896 ], [ -77.701832659867449, 24.39368901303034 ], [ -77.701808229284964, 24.393636883926952 ], [ -77.701761262666977, 24.393525611069418 ], [ -77.701733634980414, 24.393472043637814 ], [ -77.70171550518134, 24.393443478040478 ], [ -77.701695956044134, 24.393415796828425 ], [ -77.701675143875619, 24.393389408246012 ], [ -77.701610448107189, 24.393311858261324 ], [ -77.701544097641957, 24.393237181483535 ], [ -77.701503135363339, 24.39318587686391 ], [ -77.701465160881327, 24.393133826911129 ], [ -77.701430443690526, 24.393081684488664 ], [ -77.701401323003964, 24.393028648650851 ], [ -77.701389791330669, 24.393001393591778 ], [ -77.701380742600804, 24.392973854636917 ], [ -77.701373615367345, 24.392935729115614 ], [ -77.701372110689221, 24.392897125796676 ], [ -77.701375849477429, 24.392859420769756 ], [ -77.701381671458819, 24.392832472471962 ], [ -77.70141337210687, 24.39273069082887 ], [ -77.701419599228402, 24.392706245976235 ], [ -77.701423707224222, 24.3926823533555 ], [ -77.701423753038313, 24.392646644498388 ], [ -77.701415475062944, 24.392613016132962 ], [ -77.701405264811456, 24.392592850890491 ], [ -77.701391958965445, 24.392574184457406 ], [ -77.70137583690105, 24.392557550254626 ], [ -77.701307641296253, 24.392504865992578 ], [ -77.701277412986926, 24.392477312203056 ], [ -77.701250130253428, 24.392443929231668 ], [ -77.701173123972325, 24.392329086637339 ], [ -77.701084235674969, 24.392221239780614 ], [ -77.701057890782621, 24.392183757901901 ], [ -77.70103929565623, 24.39214711541543 ], [ -77.701024925306683, 24.39210828114226 ], [ -77.700994979966651, 24.391993155168858 ], [ -77.700980514395653, 24.391947406804931 ], [ -77.700956545547214, 24.391887751790485 ], [ -77.700888534097075, 24.391736399440926 ], [ -77.700867479383462, 24.391678905021294 ], [ -77.700830605337671, 24.391557869262513 ], [ -77.700810245920053, 24.391498558499478 ], [ -77.700797137703404, 24.391466105490434 ], [ -77.700768978214214, 24.391402267933856 ], [ -77.700753656548741, 24.391371626255246 ], [ -77.700721482488518, 24.391311116015501 ], [ -77.700670541723696, 24.391223064774014 ], [ -77.700623989229044, 24.391130877781183 ], [ -77.700595977961868, 24.39106684288376 ], [ -77.700577145680256, 24.391016726957364 ], [ -77.700559772262636, 24.390965333895227 ], [ -77.700548619678401, 24.390930941757954 ], [ -77.700531259735527, 24.390868451407904 ], [ -77.700499693834757, 24.390740806748074 ], [ -77.700481497560375, 24.390679194169742 ], [ -77.70040825342366, 24.390480042030678 ], [ -77.700366503322542, 24.390345239858693 ], [ -77.700353454394687, 24.390294225324062 ], [ -77.700335421613701, 24.390209940929228 ], [ -77.700327952122123, 24.390159437680484 ], [ -77.700317557715977, 24.390028720167635 ], [ -77.700311099727358, 24.389981627696876 ], [ -77.700301364684634, 24.389937674435565 ], [ -77.700287377017375, 24.389898828029342 ], [ -77.700275472543183, 24.389876737254752 ], [ -77.700262093035349, 24.389857318543587 ], [ -77.700247154052207, 24.38984127223069 ], [ -77.700221904206174, 24.389824728482441 ], [ -77.700196083031656, 24.389816104395237 ], [ -77.700155772031593, 24.389811906482933 ], [ -77.700137327822148, 24.389807049962087 ], [ -77.700123895313723, 24.389798925761571 ], [ -77.700111716853428, 24.389786111122724 ], [ -77.700096343983972, 24.389753778759694 ], [ -77.700086629602467, 24.389710478301005 ], [ -77.700081469679489, 24.389659235246839 ], [ -77.700080057527856, 24.389602541667507 ], [ -77.700081842480316, 24.389542483835008 ], [ -77.700095566941258, 24.389382107756912 ], [ -77.700099196135, 24.389318625861016 ], [ -77.700101070020651, 24.389254352781649 ], [ -77.70010098378242, 24.389190275207607 ], [ -77.700082969866017, 24.38882680208113 ], [ -77.700080081782403, 24.388793551504296 ], [ -77.700075171591038, 24.388760941533143 ], [ -77.700067753303429, 24.388729307611388 ], [ -77.700057877225177, 24.38869899581892 ], [ -77.700046201821436, 24.388669151185365 ], [ -77.700018913698045, 24.388610982846849 ], [ -77.699974242275573, 24.388523321620347 ], [ -77.69994631634836, 24.388461571328847 ], [ -77.69992567036816, 24.388403390622479 ], [ -77.699890539952364, 24.388280779228662 ], [ -77.699871687907816, 24.388220508865317 ], [ -77.699840877490189, 24.388138369115481 ], [ -77.699820350087663, 24.38809111149045 ], [ -77.699789371685057, 24.388032236815089 ], [ -77.699772562409478, 24.388004272152848 ], [ -77.699735830297527, 24.387952494967074 ], [ -77.69971635751709, 24.387928447633609 ], [ -77.699675838107893, 24.387883290145588 ], [ -77.699590835922422, 24.387808401528819 ], [ -77.699572094370666, 24.387788208520341 ], [ -77.699549710150436, 24.387756972799135 ], [ -77.699529615735798, 24.387722047166172 ], [ -77.699496334052867, 24.387656345583828 ], [ -77.699442454898772, 24.387534284088126 ], [ -77.699412558966102, 24.387474218727451 ], [ -77.699396755803633, 24.387444515346751 ], [ -77.69936292704665, 24.387386856159978 ], [ -77.699258422436401, 24.387214340704411 ], [ -77.699221246556675, 24.387158651552014 ], [ -77.699123942841723, 24.387022920492399 ], [ -77.699041689501044, 24.386918088957035 ], [ -77.698979833307234, 24.386846327617846 ], [ -77.69893515110499, 24.386800921020562 ], [ -77.698902005965948, 24.386771911286928 ], [ -77.69886709743399, 24.38674379171227 ], [ -77.698795109142083, 24.386690353948811 ], [ -77.698725141161233, 24.386642138526387 ], [ -77.698662500738138, 24.386600911875096 ], [ -77.698566247154034, 24.386541561149993 ] ], [ [ -77.698564048077785, 24.386534011912158 ], [ -77.698568075225381, 24.386522643463383 ], [ -77.698573616932336, 24.386485195893798 ], [ -77.698575736058118, 24.386425022036185 ], [ -77.698574331093013, 24.386289317188261 ], [ -77.698567690746415, 24.386126001384724 ], [ -77.698561177062317, 24.386043295735277 ], [ -77.698540275062271, 24.385847586524822 ], [ -77.698522808219892, 24.385721564958935 ], [ -77.698510717794491, 24.38566141691928 ], [ -77.698485647611506, 24.385565670901141 ], [ -77.698467685797425, 24.385507695859893 ], [ -77.698445942974303, 24.385453056492572 ], [ -77.698430627597006, 24.385422528734161 ], [ -77.69839655000672, 24.385364358083233 ], [ -77.698322740829695, 24.385253865027057 ], [ -77.698287265460806, 24.385198188101686 ], [ -77.698224665461922, 24.385082399654621 ], [ -77.698210397520256, 24.38505338379937 ], [ -77.698192312636962, 24.385007656650281 ], [ -77.698177548825271, 24.384960578672089 ], [ -77.698169214256041, 24.384929145071002 ], [ -77.698162754470843, 24.384896866283338 ], [ -77.698143521540601, 24.384727488421902 ], [ -77.698134817763801, 24.384675016895002 ], [ -77.698122837831207, 24.384623860980856 ], [ -77.698101810067044, 24.384558503060305 ], [ -77.698066457767368, 24.38446142338875 ], [ -77.698018237999491, 24.384308619688998 ], [ -77.697999885418241, 24.384259754538867 ], [ -77.697971280364683, 24.384198992984309 ], [ -77.697955458337574, 24.384170188835764 ], [ -77.697938357109521, 24.384143073411913 ], [ -77.69792028210766, 24.384116992166671 ], [ -77.697900964735808, 24.38409250473855 ], [ -77.6978801292111, 24.384070174857449 ], [ -77.697857939026974, 24.384049526341254 ], [ -77.697834041145455, 24.384031225192818 ], [ -77.69780807893541, 24.384015937415526 ], [ -77.697780476401718, 24.384003240827138 ], [ -77.697659148142762, 24.383959511305655 ], [ -77.697512517037268, 24.383897361964515 ], [ -77.697461222336244, 24.383872662583773 ], [ -77.697414881843997, 24.383843585086893 ], [ -77.697390630924573, 24.383822999533979 ], [ -77.69736921957977, 24.383800456876877 ], [ -77.69735084184569, 24.383775458021166 ], [ -77.697335303686245, 24.383748541331919 ], [ -77.697322420048408, 24.383720241901781 ], [ -77.697307968850467, 24.383668647871257 ], [ -77.697301656388944, 24.383613359704714 ], [ -77.697302383126015, 24.383556475230098 ], [ -77.697312159491247, 24.383469442957228 ], [ -77.697325877663943, 24.383379635328453 ], [ -77.69733453742333, 24.383312506203406 ], [ -77.697340345929902, 24.383243635935365 ], [ -77.697343304980492, 24.383174720629391 ], [ -77.697343271742795, 24.383107440030233 ], [ -77.697339939891393, 24.383043566342067 ], [ -77.69733124330115, 24.382945678770199 ], [ -77.6973303126465, 24.382913860936139 ], [ -77.697331161554445, 24.382882382643722 ], [ -77.697338765793333, 24.382789451557191 ], [ -77.697340286641079, 24.382741212555477 ], [ -77.697338360653163, 24.382692045704289 ], [ -77.697324558937112, 24.382557452865118 ], [ -77.697320755470201, 24.382503816965077 ], [ -77.697319260673581, 24.382448385105 ], [ -77.697319789781261, 24.382392143207529 ], [ -77.69732636814409, 24.382242440423898 ], [ -77.697326196565882, 24.382184939230513 ], [ -77.697323507009912, 24.382127463375049 ], [ -77.697317862894991, 24.382070872782819 ], [ -77.697303667716909, 24.381978231559923 ], [ -77.697293797926861, 24.381922517191004 ], [ -77.697282016521882, 24.381867852546147 ], [ -77.697267349728236, 24.381815245647658 ], [ -77.697163212528949, 24.381510369683014 ], [ -77.697145469005449, 24.381446228454216 ], [ -77.697114722368198, 24.381313826251855 ], [ -77.697097473816441, 24.381249272549361 ], [ -77.697075971741782, 24.381188432636613 ], [ -77.697061615765264, 24.381156978460641 ], [ -77.697045977892785, 24.381126398936082 ], [ -77.696962999611657, 24.380978467702079 ], [ -77.696915779668771, 24.380887076713769 ], [ -77.696866993962317, 24.380797538894591 ], [ -77.696820649876798, 24.380705620032639 ], [ -77.696777578353874, 24.380610819380308 ], [ -77.696734072944636, 24.380501354746581 ], [ -77.69671084879964, 24.380447857069523 ], [ -77.696679369137101, 24.380386993861322 ], [ -77.696629190143653, 24.3802982788058 ], [ -77.69659696398115, 24.380237903996321 ], [ -77.696574960646601, 24.380190510867568 ], [ -77.696540448271676, 24.380109811676121 ], [ -77.696488527444899, 24.379977319707393 ], [ -77.696455434408136, 24.379902797056147 ], [ -77.696435282501355, 24.379861255650095 ], [ -77.696412788686629, 24.379821888218885 ], [ -77.696393958201668, 24.379794442941101 ], [ -77.696373729039777, 24.37976812106249 ], [ -77.696329752913343, 24.379719435800343 ], [ -77.69625968521953, 24.379652972393256 ], [ -77.696237983718888, 24.379630224439392 ], [ -77.696217764438472, 24.379607166378616 ], [ -77.696199334602099, 24.379583236098334 ], [ -77.696182931365001, 24.379558861523652 ], [ -77.696169348837941, 24.379533344718183 ], [ -77.69615709491913, 24.379496463736622 ], [ -77.696151448109234, 24.379457392385302 ], [ -77.696151963742224, 24.379417401349013 ], [ -77.69615598010985, 24.379387459611014 ], [ -77.69616967851961, 24.379325675400533 ], [ -77.696201419591887, 24.379209354643518 ], [ -77.696221401717068, 24.379150924213523 ], [ -77.696245879011911, 24.379095485974002 ], [ -77.696279618835675, 24.379037466236255 ], [ -77.696316193742462, 24.378983175087374 ], [ -77.696350099754554, 24.378928198248893 ], [ -77.69637162967696, 24.378885385012218 ], [ -77.696389797205285, 24.378842240382745 ], [ -77.696400183526563, 24.378814110043638 ], [ -77.696408458806999, 24.378785794781034 ], [ -77.696425451338911, 24.378700372751446 ], [ -77.696430042628307, 24.378672131921238 ], [ -77.696433924248666, 24.378629312052112 ], [ -77.696433601753483, 24.378587501033383 ], [ -77.696430660669222, 24.378561067625611 ], [ -77.696424213460432, 24.378535184056151 ], [ -77.696413751680637, 24.378510387896011 ], [ -77.696399303177586, 24.378487227353475 ], [ -77.696381381787717, 24.37846517549545 ], [ -77.696352568324969, 24.378438147215697 ], [ -77.696234317694234, 24.378345752888283 ], [ -77.696145070969038, 24.378270743251619 ], [ -77.696108153804119, 24.378237658451607 ], [ -77.696085684243897, 24.378213826098772 ], [ -77.696065219723423, 24.378188921870262 ], [ -77.696047456437, 24.378162265004473 ], [ -77.696025701037456, 24.378112484341866 ], [ -77.696013143488102, 24.378057988239995 ], [ -77.696008725573535, 24.378001075900773 ], [ -77.696012004424318, 24.377943913977589 ], [ -77.696023147127121, 24.377888661763954 ], [ -77.696042932521252, 24.37783759147171 ], [ -77.696059153400313, 24.377809885567753 ], [ -77.696078168039961, 24.377783758013543 ], [ -77.696099732996657, 24.377759630195921 ], [ -77.696123597640508, 24.377736899084049 ], [ -77.696149594884787, 24.377716018793855 ], [ -77.696206063881874, 24.377677310184453 ], [ -77.696298011841094, 24.377624785819503 ], [ -77.696392755357508, 24.377574281633322 ], [ -77.696452759225238, 24.377537098154669 ], [ -77.696481164852827, 24.377517076969369 ], [ -77.696508045141059, 24.37749532114028 ], [ -77.696558640054491, 24.37744903731755 ], [ -77.696701130824849, 24.37730174408966 ], [ -77.696745482447071, 24.377250554917339 ], [ -77.696766093392924, 24.377223939583295 ], [ -77.696784962505504, 24.377195981530459 ], [ -77.696808645689643, 24.377150057618877 ], [ -77.696827362986923, 24.377100735584431 ], [ -77.696842262444221, 24.377049646972914 ], [ -77.696860623110311, 24.376964731891402 ], [ -77.696866262733664, 24.376910304844412 ], [ -77.696865819864229, 24.376856659184526 ], [ -77.696859084296207, 24.376805825762567 ], [ -77.696845411039277, 24.376760034262801 ], [ -77.696823695165591, 24.376721823663914 ], [ -77.696799129835867, 24.376697440355265 ], [ -77.696770685580688, 24.376678856670718 ], [ -77.696740927988571, 24.376664854265229 ], [ -77.696676588851304, 24.376639740264171 ], [ -77.696656911255019, 24.37662919897717 ], [ -77.69663898267855, 24.376616049164351 ], [ -77.696623553215261, 24.376599977441792 ], [ -77.696610506982381, 24.376581743128259 ], [ -77.696599720012443, 24.37656212027111 ], [ -77.696591759142379, 24.376540802032228 ], [ -77.696586601914376, 24.376518499455443 ], [ -77.696579661530478, 24.376449171366655 ], [ -77.696573327509412, 24.37640910164669 ], [ -77.696561327813839, 24.376370852484719 ], [ -77.696541834372155, 24.376338429957293 ], [ -77.696525981802353, 24.376323412903563 ], [ -77.696507330082099, 24.376311810340155 ], [ -77.696485985212604, 24.376304380771519 ], [ -77.696462106195739, 24.376300790358695 ], [ -77.696435785557895, 24.37629992139366 ], [ -77.696407444609036, 24.376301402398081 ], [ -77.696329239975327, 24.376312234185615 ], [ -77.696148501635108, 24.376347221883847 ], [ -77.696031555358161, 24.376367918297507 ], [ -77.695997269358728, 24.376371664172883 ], [ -77.695940370068612, 24.37637194400892 ], [ -77.695885242256281, 24.376363930224709 ], [ -77.69583481622611, 24.376346698214018 ], [ -77.695799184550324, 24.376325704777884 ], [ -77.695766599960052, 24.376300116951708 ], [ -77.695735120297542, 24.376272062961124 ], [ -77.695703725975008, 24.376243110542447 ], [ -77.695673722244521, 24.376212123984793 ], [ -77.695647340521262, 24.376177421813278 ], [ -77.695620033533245, 24.376122408570701 ], [ -77.695600762873781, 24.37606029137914 ], [ -77.695587086921876, 24.37599369513071 ], [ -77.695577092266021, 24.375924839695148 ], [ -77.695569278719674, 24.375855690474861 ], [ -77.695565733069245, 24.375817801170065 ], [ -77.695563284261752, 24.375753412400133 ], [ -77.695565412370698, 24.375688615296443 ], [ -77.695572006004895, 24.375624786136079 ], [ -77.695583288844873, 24.375563365839962 ], [ -77.695599827727577, 24.375505941796323 ], [ -77.69562253444299, 24.375454331321638 ], [ -77.695651277837115, 24.375409731508519 ], [ -77.695681684911193, 24.375368505285302 ], [ -77.695708141194615, 24.375326354436613 ], [ -77.695726103008738, 24.375279854622509 ], [ -77.695735173298146, 24.375230557224011 ], [ -77.695735854221141, 24.375180832684173 ], [ -77.695727561872744, 24.375122379118267 ], [ -77.695708359485266, 24.375033606364777 ], [ -77.695700660923265, 24.374986852787746 ], [ -77.695688315376316, 24.374864417394821 ], [ -77.695682066695156, 24.374820958005792 ], [ -77.695673658464116, 24.374778254659635 ], [ -77.695658334103697, 24.374716417465741 ], [ -77.695649030252312, 24.374668646692836 ], [ -77.695642440211387, 24.374620422593967 ], [ -77.695639623992975, 24.374588736857035 ], [ -77.695639470381039, 24.374545934424638 ], [ -77.69564381553208, 24.374503449457389 ], [ -77.695652730412974, 24.374462455320657 ], [ -77.695673298239697, 24.374404886765713 ], [ -77.695685816263151, 24.374377595779013 ], [ -77.695699641335395, 24.374351962555036 ], [ -77.695761972738012, 24.374250853358344 ], [ -77.695774861765713, 24.374220708289688 ], [ -77.695777287216956, 24.374189732691946 ], [ -77.695767896229015, 24.374159973821886 ], [ -77.695743872583364, 24.374130818812269 ], [ -77.695709707856466, 24.374104055536758 ], [ -77.695619122641546, 24.374043703953564 ], [ -77.695562073332795, 24.374012797863635 ], [ -77.69553099342059, 24.37399916255686 ], [ -77.695497965062572, 24.373986887997429 ], [ -77.695435251875892, 24.373970323354499 ], [ -77.695367754262094, 24.373958969323059 ], [ -77.695298040504511, 24.373951472519785 ], [ -77.695189189844882, 24.373944609859482 ], [ -77.695120740915172, 24.373938649728363 ], [ -77.695053603525793, 24.37392831196042 ], [ -77.694990222890922, 24.373912270989713 ], [ -77.694933286769881, 24.37388882730875 ], [ -77.694895265575497, 24.373865096417489 ], [ -77.694860439688526, 24.373838013149943 ], [ -77.694737021049974, 24.373735298133742 ], [ -77.694697518533658, 24.373704115399512 ], [ -77.694654664403046, 24.373676395497817 ], [ -77.694564867908909, 24.373625793999178 ], [ -77.69452255725902, 24.373599330915329 ], [ -77.694496527675369, 24.373580155179255 ], [ -77.69447224172167, 24.373560288017103 ], [ -77.694387200010354, 24.373478226294502 ], [ -77.694346529684154, 24.373443157613554 ], [ -77.69432567709147, 24.373428982198327 ], [ -77.69426180058656, 24.373392862866609 ], [ -77.694241330676206, 24.373379887823418 ], [ -77.69422169170744, 24.373364630670004 ], [ -77.694194001138811, 24.373336423014742 ], [ -77.694138036096589, 24.373270871060562 ], [ -77.694104692429889, 24.373239252082282 ], [ -77.694079053613393, 24.373220419958429 ], [ -77.694050550069377, 24.373203233341627 ], [ -77.693996568507373, 24.373179507231292 ], [ -77.69393604900668, 24.373160422257847 ], [ -77.693739117635133, 24.373113055115191 ], [ -77.693675656151882, 24.373094934854585 ], [ -77.693604064915291, 24.373069149993434 ], [ -77.69357007625824, 24.373054988446576 ], [ -77.693537492566222, 24.373039559420295 ], [ -77.693491158362178, 24.373015082120496 ], [ -77.693449212428291, 24.372987646820853 ], [ -77.693424604877691, 24.372966848390266 ], [ -77.69340280635906, 24.372944498542481 ], [ -77.693384363946265, 24.372920031861614 ], [ -77.693363279588226, 24.372875323963093 ], [ -77.693351689524448, 24.372825762966741 ], [ -77.693348261553325, 24.372773628531803 ], [ -77.693352208750682, 24.372721030123298 ], [ -77.693363239164071, 24.3726700092943 ], [ -77.693373458398725, 24.372639752565654 ], [ -77.693385358381306, 24.372610013787298 ], [ -77.693425628957158, 24.372524074537399 ], [ -77.693450436832066, 24.37246688395404 ], [ -77.693460472810386, 24.372437594359514 ], [ -77.693468524410292, 24.372408033914255 ], [ -77.693493043925969, 24.372289104725336 ], [ -77.693498993468069, 24.372249003411522 ], [ -77.693502372930183, 24.372209304669415 ], [ -77.693503090684118, 24.372171352902541 ], [ -77.69350150156437, 24.372144777412533 ], [ -77.693493150825489, 24.372106962275897 ], [ -77.693476404431991, 24.372073460186233 ], [ -77.693454281621484, 24.37204885914182 ], [ -77.693427410316389, 24.372028074467316 ], [ -77.6933542137904, 24.371982241142618 ], [ -77.693332806038839, 24.371966055092575 ], [ -77.693312702641094, 24.37194751244413 ], [ -77.693294079666956, 24.3719271597957 ], [ -77.693269485591088, 24.37189267574275 ], [ -77.693207467700532, 24.371782184005017 ], [ -77.69316520376303, 24.371718553347645 ], [ -77.693152412651699, 24.371695574852321 ], [ -77.6931354928833, 24.371652432679319 ], [ -77.69312322189657, 24.371605600935286 ], [ -77.693109004260549, 24.371530007150298 ], [ -77.69309928538749, 24.371488084136583 ], [ -77.693085368687093, 24.371447805823323 ], [ -77.693073453433144, 24.371422819254033 ], [ -77.693059951754464, 24.371398837510625 ], [ -77.693044722615426, 24.371376453018534 ], [ -77.693027624980616, 24.371356247566212 ], [ -77.692971891703749, 24.371300756813259 ], [ -77.692953516664645, 24.371279999836872 ], [ -77.692936307638746, 24.371256763507709 ], [ -77.6929204299161, 24.37123151669163 ], [ -77.692897681878165, 24.371183900891531 ], [ -77.692839877086271, 24.371022427954237 ], [ -77.692816140003188, 24.370970596353676 ], [ -77.692785789522986, 24.370924002473643 ], [ -77.692763522982034, 24.370899645049988 ], [ -77.69273867378466, 24.370877444580266 ], [ -77.692711637189547, 24.370856839732539 ], [ -77.692667024157601, 24.370829768094818 ], [ -77.692521124280717, 24.37075935922531 ], [ -77.692459533988213, 24.370725590840692 ], [ -77.692371644617438, 24.370672631541225 ], [ -77.692288642081792, 24.370617970215445 ], [ -77.692259655244229, 24.370602134211012 ], [ -77.692229371239378, 24.370587859466475 ], [ -77.692186800078062, 24.370572264848398 ], [ -77.692142379285585, 24.370559984228418 ], [ -77.692008046116271, 24.370531479733234 ], [ -77.691953669295529, 24.370515436695186 ], [ -77.691903713084258, 24.370493926779591 ], [ -77.691876747456064, 24.370477727446815 ], [ -77.691827903359098, 24.37044083973268 ], [ -77.69180597188975, 24.370420516299557 ], [ -77.691786322141269, 24.370398325565017 ], [ -77.691752532011833, 24.370351078492305 ], [ -77.691738317969111, 24.370326252087835 ], [ -77.691694228654924, 24.370238934949686 ], [ -77.691669840293315, 24.370203413683377 ], [ -77.691650266003279, 24.370181952811201 ], [ -77.69162815576918, 24.370162002469534 ], [ -77.691594812102409, 24.370138627646636 ], [ -77.691558214737768, 24.37011798585625 ], [ -77.691520172882122, 24.370098933151734 ], [ -77.691461676387433, 24.370072796639882 ], [ -77.69140955074478, 24.37005687055694 ], [ -77.691355782981759, 24.370045897490378 ], [ -77.691244981181313, 24.370031069529109 ], [ -77.691217481953885, 24.370025577266912 ], [ -77.691191126281737, 24.370017372422456 ], [ -77.691166299542203, 24.370005799556655 ], [ -77.69114345089298, 24.369990552633798 ], [ -77.6911226153683, 24.369972243722501 ], [ -77.691095363177539, 24.369938637146305 ], [ -77.691071604534898, 24.369899708494916 ], [ -77.691025954847063, 24.369815321310256 ], [ -77.690992487212867, 24.369759701411837 ], [ -77.690984095683177, 24.369744925154112 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 358, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 4, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 36 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.843075247200161, 24.397113768970407 ], [ -77.843265681956055, 24.397118630114605 ], [ -77.843286003644423, 24.397117616489084 ], [ -77.84329735565467, 24.397114848039585 ], [ -77.843301758297883, 24.397112249754809 ], [ -77.843307119443466, 24.397104318277457 ], [ -77.843310493515659, 24.397087973460398 ], [ -77.84331146728924, 24.396997613479176 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 359, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 4, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 339 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.846122113455024, 24.395869010169378 ], [ -77.846116569951917, 24.395875492032889 ], [ -77.84609863239227, 24.395905060080263 ], [ -77.846080093859769, 24.39594068538754 ], [ -77.846044799052251, 24.396018519277867 ], [ -77.846031116812185, 24.396054443980198 ], [ -77.84601634311899, 24.396107050678232 ], [ -77.846006875774236, 24.396163229204817 ], [ -77.846003454989628, 24.396220720765687 ], [ -77.846004915650283, 24.396263233612309 ], [ -77.846010769072691, 24.396319344166685 ], [ -77.846020945188243, 24.396372545516403 ], [ -77.846035765593754, 24.396420333448141 ], [ -77.84604971822678, 24.396451396043954 ], [ -77.84608138923042, 24.396510394420726 ], [ -77.846099104906131, 24.396538277844446 ], [ -77.846193581622899, 24.396671861799074 ], [ -77.846228191914122, 24.396725418056739 ], [ -77.846243506393122, 24.39675276393989 ], [ -77.846256541846202, 24.396781180712516 ], [ -77.846271057722873, 24.396832608223541 ], [ -77.846277032417845, 24.396887277030693 ], [ -77.846275335500266, 24.39694305679517 ], [ -77.846271081079081, 24.39697629950075 ], [ -77.846262263216246, 24.397027432416238 ], [ -77.846250748610913, 24.397078989904955 ], [ -77.846225804192116, 24.397170979486329 ], [ -77.846208817050098, 24.397229146338386 ], [ -77.846189435897855, 24.397285665513063 ], [ -77.846148923675173, 24.397381691439584 ], [ -77.846112533821298, 24.397457339303607 ], [ -77.846089945683516, 24.397500577386342 ], [ -77.846058078847136, 24.397553567987686 ], [ -77.8460265623537, 24.397602577708923 ], [ -77.845994153833189, 24.397648426287148 ], [ -77.845975150871652, 24.397670166375885 ], [ -77.84582504328597, 24.397826259841167 ], [ -77.845746775770223, 24.397904494254298 ], [ -77.845715861148051, 24.397939250181487 ], [ -77.845698143675705, 24.397964640556637 ], [ -77.845682795959036, 24.397991448683751 ], [ -77.845669760505984, 24.398019181251271 ], [ -77.845655753974057, 24.398063867167313 ], [ -77.845648362635927, 24.398110886269624 ], [ -77.845645955150971, 24.398187107180025 ], [ -77.845646752854918, 24.398232699483106 ], [ -77.845650906664829, 24.39831225486304 ], [ -77.845649410969855, 24.398373223971376 ], [ -77.845639133344676, 24.398432248447552 ], [ -77.845619637208102, 24.398483104259011 ], [ -77.845590785117778, 24.398519807900829 ], [ -77.845570593685139, 24.398532579113152 ], [ -77.845548672995577, 24.398539452709809 ], [ -77.845525864770494, 24.39854017426563 ], [ -77.84550322632704, 24.398535411342621 ], [ -77.845471360388942, 24.398520530274922 ], [ -77.845438083457665, 24.398498339279922 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 360, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 278 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.703263123650842, 24.399035937781264 ], [ -77.703264010288351, 24.39899332605577 ], [ -77.703258589853917, 24.398890251070132 ], [ -77.703238151384568, 24.39870397060459 ], [ -77.703215490483217, 24.398441875744638 ], [ -77.703198881531932, 24.398297585654976 ], [ -77.703195962905568, 24.398244304124827 ], [ -77.703194651365266, 24.398134708325898 ], [ -77.703200034968745, 24.397968420152111 ], [ -77.703207266406764, 24.397860450486483 ], [ -77.703221823605972, 24.397721936307317 ], [ -77.703224725164304, 24.397672198526795 ], [ -77.703223307622821, 24.397622867320674 ], [ -77.703217058941703, 24.397575180469733 ], [ -77.703196863017482, 24.397495684346783 ], [ -77.703181775812268, 24.397451528356964 ], [ -77.703162263505988, 24.397410441854774 ], [ -77.703144098672652, 24.397382613436179 ], [ -77.703123675474643, 24.397356363122771 ], [ -77.703009566975695, 24.397239320217281 ], [ -77.702969879406425, 24.397193030535057 ], [ -77.702953284828197, 24.397169974860425 ], [ -77.702940126305904, 24.397146505223255 ], [ -77.702931083864243, 24.397123341550952 ], [ -77.70292789484499, 24.397099826909571 ], [ -77.702931264425629, 24.397077073914954 ], [ -77.702943406953295, 24.397056097829662 ], [ -77.702965491136254, 24.397036660587485 ], [ -77.702996550387212, 24.397020322306457 ], [ -77.703035206690558, 24.397007316964523 ], [ -77.703092181439104, 24.396997640472215 ], [ -77.703154758081794, 24.396994624135679 ], [ -77.703217885391751, 24.396996984355614 ], [ -77.703276884044698, 24.397003298455097 ], [ -77.703401677105177, 24.397022162218505 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 361, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 4, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 497 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.845338537370679, 24.398683352033192 ], [ -77.845337215865882, 24.398689446243566 ], [ -77.845331093847236, 24.398700011869515 ], [ -77.845306379397158, 24.398733800596382 ], [ -77.845265459339302, 24.398778405268768 ], [ -77.845211486760391, 24.398830953566236 ], [ -77.845163222975117, 24.398871462035995 ], [ -77.845055937180788, 24.398953443462155 ], [ -77.84499917173963, 24.398991397005101 ], [ -77.844946444225684, 24.399019247157653 ], [ -77.84489325857102, 24.399041517130982 ], [ -77.844842297144922, 24.399058775498638 ], [ -77.844804880516705, 24.399069873668424 ], [ -77.844740377886055, 24.399085856634571 ], [ -77.84456742075281, 24.399121933446864 ], [ -77.844500285160066, 24.399134501712787 ], [ -77.844287726695867, 24.399171052183128 ], [ -77.844209437620506, 24.399181696305131 ], [ -77.84414585486472, 24.399185991258378 ], [ -77.8440815435752, 24.399185777737824 ], [ -77.844017968904225, 24.399181192363905 ], [ -77.843956642716421, 24.399172077245428 ], [ -77.843899200843879, 24.399157975889121 ], [ -77.843865618225323, 24.399146477682784 ], [ -77.843833567234284, 24.399133761344324 ], [ -77.84380311614278, 24.399119724612628 ], [ -77.843692963824324, 24.399057153231759 ], [ -77.843665933517428, 24.399043110764961 ], [ -77.843638067777306, 24.39903128040471 ], [ -77.843609163584702, 24.399021211385502 ], [ -77.84351632090349, 24.398992821295579 ], [ -77.843458351719889, 24.398978165255851 ], [ -77.843341126066875, 24.398953548995443 ], [ -77.843233776492113, 24.398929045626442 ], [ -77.843206532386176, 24.398924272901041 ], [ -77.843162638006433, 24.398921085630043 ], [ -77.843116174445015, 24.398923027771033 ], [ -77.843051578389563, 24.398932300798517 ], [ -77.842937143802132, 24.398956758353986 ], [ -77.842841219899441, 24.398980468990739 ], [ -77.842710154801196, 24.399020036611986 ], [ -77.84266398498886, 24.399036422901538 ], [ -77.842547100695654, 24.399083335290545 ], [ -77.842431060818811, 24.399126117960421 ], [ -77.842398010002896, 24.399136952700374 ], [ -77.842364571114743, 24.399146126723657 ], [ -77.842296730344486, 24.399159708596343 ], [ -77.84224469363501, 24.399163979825833 ], [ -77.842192135004396, 24.399162487636101 ], [ -77.842157113284728, 24.399158546913551 ], [ -77.842104044410974, 24.399150190159666 ], [ -77.842050832705141, 24.399139045365985 ], [ -77.841979632235706, 24.399120936199118 ], [ -77.841916522892078, 24.399108034152377 ], [ -77.841849836456944, 24.399097907873188 ], [ -77.841781136897268, 24.399090100869721 ], [ -77.841711923501265, 24.399084272000138 ], [ -77.8416437162184, 24.399080189745998 ], [ -77.841540377621328, 24.399076762779462 ], [ -77.841368533500741, 24.399067706555723 ], [ -77.841314645363468, 24.399067970797855 ], [ -77.841272142474125, 24.399070024196408 ], [ -77.841228331637737, 24.399074747831129 ], [ -77.841137449978746, 24.399091354178942 ], [ -77.841091476897418, 24.399101953312847 ], [ -77.840902263850822, 24.399151898324362 ], [ -77.840808907333255, 24.399174349889467 ], [ -77.840753254904769, 24.399185605939774 ], [ -77.840740509607031, 24.399185376879601 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 362, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 32 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.703445787080753, 24.399278599418995 ], [ -77.703448609587667, 24.399275928364617 ], [ -77.703451247041315, 24.399266539194183 ], [ -77.703455183458871, 24.399230903371638 ], [ -77.703458527886738, 24.399133699987985 ], [ -77.703457512790436, 24.399116952934818 ], [ -77.703454742386086, 24.39910760711118 ], [ -77.703448429924606, 24.399101305388161 ], [ -77.703432701322271, 24.399097240314404 ], [ -77.703407016691671, 24.399095913377504 ], [ -77.703332438556359, 24.399095691678738 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 363, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 4, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 40 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.819992930871379, 24.401322167569869 ], [ -77.820007444053601, 24.401322517700532 ], [ -77.820024660266043, 24.401319285496104 ], [ -77.820032753188428, 24.401315545268542 ], [ -77.820039025225753, 24.40131035868858 ], [ -77.820047259183625, 24.401296574165158 ], [ -77.820054738556678, 24.401260332723293 ], [ -77.820059682884022, 24.401248184340346 ], [ -77.82006780006094, 24.401239779458376 ], [ -77.820083357983293, 24.401231462109692 ], [ -77.820092536070575, 24.401224734276543 ], [ -77.820098946448468, 24.401213295159582 ], [ -77.820103394905772, 24.401191190001949 ], [ -77.820104895990582, 24.401142000060705 ], [ -77.820103435329941, 24.401126502472465 ], [ -77.82009969923665, 24.401112950261929 ], [ -77.820092366288989, 24.401103521142431 ], [ -77.820065989955637, 24.401087415720443 ], [ -77.82004757359401, 24.401064839330054 ], [ -77.820038654221534, 24.40105609166282 ], [ -77.820030735572274, 24.40105233097562 ], [ -77.820026321250538, 24.401052191907343 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 369, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 936 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.703895724462498, 24.405242861451839 ], [ -77.70389974172673, 24.405249189043158 ], [ -77.703909289919906, 24.405256110539035 ], [ -77.703923528217132, 24.405262098643011 ], [ -77.703941777492119, 24.405266233870318 ], [ -77.703974945089044, 24.405265911559837 ], [ -77.704011620607176, 24.405254948094239 ], [ -77.704047631371978, 24.405231165829239 ], [ -77.704081050497138, 24.40519577055947 ], [ -77.704101329066361, 24.405167021098553 ], [ -77.704131327406969, 24.40510507279415 ], [ -77.704151921284847, 24.405034703468957 ], [ -77.704163266108608, 24.404962092650553 ], [ -77.704165730187398, 24.404893582671939 ], [ -77.704155930465959, 24.40475349655075 ], [ -77.704154527297462, 24.404710730512011 ], [ -77.704154928844446, 24.404684938193945 ], [ -77.704159990851053, 24.404649325987549 ], [ -77.704171164994861, 24.404619205348538 ], [ -77.704181917828819, 24.404603178907809 ], [ -77.70419455802319, 24.404589537084671 ], [ -77.70423985018148, 24.404548314653759 ], [ -77.704255628191149, 24.404530237348407 ], [ -77.704280928342811, 24.404490627278545 ], [ -77.704354197632327, 24.404343062888838 ], [ -77.704422619612572, 24.404230991225194 ], [ -77.7044462839321, 24.404186010537515 ], [ -77.704481595807607, 24.404107743202815 ], [ -77.704494038372601, 24.404075151091501 ], [ -77.704515254782976, 24.404008003511432 ], [ -77.704526579843787, 24.403954694122181 ], [ -77.704533530109131, 24.403899132602849 ], [ -77.704536574499627, 24.403842350519277 ], [ -77.704535969933445, 24.403785296815393 ], [ -77.704533870570629, 24.403747526321567 ], [ -77.704521210613322, 24.403540089039968 ], [ -77.704513102419583, 24.403432591248752 ], [ -77.704510346388275, 24.403364023994211 ], [ -77.704511335433352, 24.403295083667253 ], [ -77.704516114470735, 24.40322702680762 ], [ -77.704524970062806, 24.403161196672194 ], [ -77.704542533024906, 24.403071141259652 ], [ -77.704566541399188, 24.402967816820794 ], [ -77.704580903663953, 24.402920954140274 ], [ -77.704610243539435, 24.402837926533021 ], [ -77.704617713031055, 24.402796260958283 ], [ -77.704618414615268, 24.402754772071383 ], [ -77.704615436700081, 24.402728018947531 ], [ -77.704604579661563, 24.402675276754152 ], [ -77.704583156638691, 24.402600190753031 ], [ -77.704579431325186, 24.402573583211762 ], [ -77.704578225786108, 24.402546031618446 ], [ -77.704579169017137, 24.402496494527334 ], [ -77.704583207842646, 24.402444240622277 ], [ -77.704590413229568, 24.402391467223925 ], [ -77.704606847009359, 24.402297313569122 ], [ -77.704611432010566, 24.402253739266996 ], [ -77.704613037300007, 24.402209289618416 ], [ -77.704611662877596, 24.402164965936517 ], [ -77.704602666250025, 24.402066456720707 ], [ -77.704600091678429, 24.402011986491445 ], [ -77.704600844466611, 24.401956733347223 ], [ -77.704604878800566, 24.401902401324261 ], [ -77.70461229978315, 24.401850773814285 ], [ -77.704623367027438, 24.401803797007595 ], [ -77.704648477634578, 24.401729794430857 ], [ -77.704654676010037, 24.401707753991126 ], [ -77.704658149795236, 24.401686406452907 ], [ -77.704657595534698, 24.40166508427129 ], [ -77.704649505307273, 24.401633819257967 ], [ -77.704618614939562, 24.401554006641661 ], [ -77.704610561543078, 24.401528220223462 ], [ -77.704597604243418, 24.401474144072534 ], [ -77.704592191893823, 24.401426446404543 ], [ -77.704592443422086, 24.401378167887309 ], [ -77.704597932128493, 24.401332085058005 ], [ -77.704613212471457, 24.401257646171999 ], [ -77.704614305721151, 24.401220209514179 ], [ -77.704608137888414, 24.401183644911438 ], [ -77.70459995603278, 24.401160839477619 ], [ -77.704589239131465, 24.401138933920738 ], [ -77.704575923404008, 24.401118606424443 ], [ -77.704559945968356, 24.401100535172816 ], [ -77.704541734422605, 24.401084426478118 ], [ -77.704521490887672, 24.401070887352244 ], [ -77.704499506417733, 24.4010592731535 ], [ -77.70443517716194, 24.4010294518915 ], [ -77.704403591498235, 24.401012851525049 ], [ -77.704320550335041, 24.400958994397502 ], [ -77.704300066949926, 24.400949344386266 ], [ -77.704279911449888, 24.400941907267171 ], [ -77.704242404091858, 24.400930225156298 ], [ -77.704224758484727, 24.400922857572397 ], [ -77.704208174686258, 24.40091297767934 ], [ -77.704192906919673, 24.40089925692239 ], [ -77.704171349149505, 24.400866653348107 ], [ -77.704153639761998, 24.400824703250716 ], [ -77.704129175043548, 24.400745813731145 ], [ -77.704118185952638, 24.400695893074122 ], [ -77.704109580092251, 24.400642682910267 ], [ -77.704092779799794, 24.400494666535835 ], [ -77.70408976595202, 24.400425920981405 ], [ -77.704091449394866, 24.400355976904105 ], [ -77.704097583989963, 24.4002865007295 ], [ -77.704108264958649, 24.400219168703313 ], [ -77.704123912712603, 24.400155775696732 ], [ -77.704156106535734, 24.400058244974485 ], [ -77.704165185808321, 24.400025651000064 ], [ -77.704175541586906, 24.399969113417423 ], [ -77.704179460038176, 24.39991117443563 ], [ -77.704176818991257, 24.399853554479257 ], [ -77.704172186379338, 24.399819809410353 ], [ -77.704161464088116, 24.39976317274753 ], [ -77.704146613139841, 24.399707540665275 ], [ -77.704126191738482, 24.399654847113645 ], [ -77.70411089522581, 24.39962542883524 ], [ -77.704093792201149, 24.399596948073789 ], [ -77.704075124311231, 24.399569756606152 ], [ -77.704016555951313, 24.399489003524664 ], [ -77.703979037813454, 24.399433402408846 ], [ -77.703944919798985, 24.399374874160095 ], [ -77.703914447147923, 24.399314476558803 ], [ -77.70389414342587, 24.399254745668706 ], [ -77.703880197979402, 24.399191342361053 ], [ -77.703870681227286, 24.39912678879168 ], [ -77.703855505088853, 24.398974515766838 ], [ -77.703847713102093, 24.398932209172724 ], [ -77.703834891448039, 24.398895018888318 ], [ -77.703823340910105, 24.398874163363917 ], [ -77.703809996436576, 24.398855705653343 ], [ -77.703757017394352, 24.398795315166673 ], [ -77.703733992675325, 24.398772387406346 ], [ -77.703718061952102, 24.398760340227184 ], [ -77.703702106974333, 24.398751139997046 ], [ -77.703686015452632, 24.398745918952027 ], [ -77.703669679589183, 24.39874582650793 ], [ -77.703653921342479, 24.398751138360897 ], [ -77.703639611179995, 24.398761882325054 ], [ -77.703626772457966, 24.398777104507499 ], [ -77.703615433024098, 24.398795861650036 ], [ -77.70360189990437, 24.398833427466379 ], [ -77.703594076476577, 24.398877531433552 ], [ -77.703591573770183, 24.39892504517622 ], [ -77.703594360344212, 24.398973114382652 ], [ -77.703602762287062, 24.3990190000954 ], [ -77.70361082466674, 24.39904544476801 ], [ -77.703672834472471, 24.399217792724166 ], [ -77.703725053539898, 24.39938096480347 ], [ -77.703758002846243, 24.399469905343821 ], [ -77.703767024626615, 24.399498008996982 ], [ -77.703774079096576, 24.399525058951589 ], [ -77.703778796150132, 24.399560230019482 ], [ -77.703775949388969, 24.39959177778502 ], [ -77.703763652351086, 24.399615857258187 ], [ -77.703748538196422, 24.399627283430458 ], [ -77.703729348385309, 24.399632757226811 ], [ -77.703706867147005, 24.399631506377258 ], [ -77.703682334156596, 24.399623702679047 ], [ -77.70365685973178, 24.399609919607702 ], [ -77.70363118228768, 24.399591650163963 ], [ -77.703605911780414, 24.399569625712747 ], [ -77.703557959710551, 24.399520697744993 ], [ -77.703516974974065, 24.399472659016183 ], [ -77.703473327630505, 24.399414528379271 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 371, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 208 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.747144999729144, 24.405953579580874 ], [ -77.747141357060812, 24.405954002507357 ], [ -77.747134940394773, 24.405951733257474 ], [ -77.747126490841168, 24.405946699023865 ], [ -77.747112705294811, 24.405935001833164 ], [ -77.747078351023447, 24.405900668580301 ], [ -77.747062573013764, 24.405886662868202 ], [ -77.747010287470971, 24.405844839598995 ], [ -77.746988131422782, 24.40583052875057 ], [ -77.746947278738645, 24.405807000187469 ], [ -77.746930335614053, 24.405795419146006 ], [ -77.746915838602021, 24.405781713644277 ], [ -77.746903369985858, 24.405763158777955 ], [ -77.746893817301128, 24.405742071245207 ], [ -77.746870366780612, 24.405674284022769 ], [ -77.746860735942462, 24.405653264372908 ], [ -77.746833578074785, 24.405610983739386 ], [ -77.74677772622033, 24.405534857294143 ], [ -77.74676334239598, 24.405517967931804 ], [ -77.746711591350788, 24.405475259415116 ], [ -77.746688007879655, 24.405451667796278 ], [ -77.746665908425356, 24.405427032346498 ], [ -77.746612007711647, 24.405341865559389 ], [ -77.746578122360845, 24.405283144535492 ], [ -77.74654736853708, 24.405243987899858 ], [ -77.74649939490763, 24.405189008579494 ], [ -77.746458734462919, 24.40513760655821 ], [ -77.746446452696361, 24.405119521974783 ], [ -77.746425431220388, 24.405084690308914 ], [ -77.74641742453629, 24.405068573941961 ], [ -77.746411092311831, 24.405051035804977 ], [ -77.746407720036288, 24.405036235673606 ], [ -77.746406801059706, 24.405025641946015 ], [ -77.74640803714108, 24.405020542235967 ] ], [ [ -77.747294799192346, 24.405280138217822 ], [ -77.747289340130848, 24.405302214023713 ], [ -77.74728044501289, 24.405328310528958 ], [ -77.747273965464771, 24.405342048801792 ], [ -77.747250346060994, 24.405380090409999 ], [ -77.74724427973787, 24.405394474115621 ], [ -77.747239204256516, 24.405422459469879 ], [ -77.747239516870238, 24.405451342214064 ], [ -77.747244782794439, 24.405478616674138 ], [ -77.747249729816687, 24.405490695934361 ], [ -77.747267410458107, 24.405518987216286 ], [ -77.74727204935823, 24.405531176090687 ], [ -77.747274973374502, 24.405544519225579 ], [ -77.747276777191573, 24.405572956925504 ], [ -77.747273815446121, 24.405601257187431 ], [ -77.747270349745747, 24.405614427707512 ], [ -77.747265217670517, 24.40562637361344 ], [ -77.747246240760148, 24.405653907355831 ], [ -77.747240460101281, 24.405665786178457 ], [ -77.74721754407841, 24.405748620504145 ], [ -77.74721185594602, 24.405760619570199 ], [ -77.747192129840684, 24.405788001127245 ], [ -77.747186194671599, 24.405801484120438 ], [ -77.747181626738353, 24.405818476518299 ], [ -77.747175859554275, 24.405858316041797 ], [ -77.747173315525373, 24.40589811874074 ], [ -77.747172626517511, 24.40594075267542 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 373, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 296 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.704120777591854, 24.407187474483393 ], [ -77.704129473284212, 24.407186372586999 ], [ -77.704141533166933, 24.407195145188702 ], [ -77.70415727793889, 24.407210961883667 ], [ -77.704175759877558, 24.407233405471825 ], [ -77.704196081565911, 24.407261345426669 ], [ -77.704217300671232, 24.40729466721978 ], [ -77.704238917730237, 24.407332143796612 ], [ -77.704260569823504, 24.407372344413243 ], [ -77.704288008863884, 24.407429989570296 ], [ -77.704337338949401, 24.40754542214308 ], [ -77.704388134187155, 24.407659019765827 ], [ -77.704403110001195, 24.407683380739698 ], [ -77.704420032464554, 24.407698556037083 ], [ -77.704435213094527, 24.407702428596622 ], [ -77.704450559014518, 24.407698859526644 ], [ -77.704464810786533, 24.407688113868584 ], [ -77.704477568660181, 24.40767143748247 ], [ -77.704490857438188, 24.407640124056247 ], [ -77.70450004181366, 24.407600823359868 ], [ -77.704505775760111, 24.407555985392094 ], [ -77.704508471604285, 24.40750754806578 ], [ -77.704508321585564, 24.407457072183337 ], [ -77.704505315822672, 24.407405859232856 ], [ -77.704485040846734, 24.407184515648726 ], [ -77.704478306177023, 24.407123082059929 ], [ -77.704469505382193, 24.407063207616602 ], [ -77.70445751916138, 24.40700602448225 ], [ -77.704431384474802, 24.406916404552828 ], [ -77.704413063334584, 24.406864910796457 ], [ -77.704384668486796, 24.406800147641693 ], [ -77.704369384550532, 24.406768674482123 ], [ -77.704336976928346, 24.406707991649611 ], [ -77.704317451147332, 24.40666551831232 ], [ -77.704227683399296, 24.406447933956915 ], [ -77.704209256257855, 24.406397519003843 ], [ -77.704179971179599, 24.406312604009599 ], [ -77.704134594579642, 24.406157394700418 ], [ -77.704087904642776, 24.405965799497512 ], [ -77.704071816714332, 24.405905140002343 ], [ -77.70405458523058, 24.405851140167513 ], [ -77.704036128444741, 24.405806448008171 ], [ -77.704022066217277, 24.405780274705627 ], [ -77.70400894632256, 24.40576022036494 ], [ -77.70399762305837, 24.405746967237619 ], [ -77.703989003723251, 24.405740554591908 ], [ -77.703984282177657, 24.405740995521686 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 374, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 695 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.74688794770907, 24.40743670725643 ], [ -77.746882913550195, 24.407439038650118 ], [ -77.746874561913003, 24.407450738155564 ], [ -77.746863765959901, 24.407470249872098 ], [ -77.746836517362411, 24.407524584407788 ], [ -77.746807989563933, 24.407590089145955 ], [ -77.746795405963411, 24.407622741702394 ], [ -77.746783459268471, 24.407664087470419 ], [ -77.746778596687832, 24.407698359709553 ], [ -77.746781526992308, 24.407719941824379 ], [ -77.746788652429132, 24.407724753482906 ], [ -77.746798377590395, 24.407719713593742 ], [ -77.746895304012924, 24.407614976127501 ], [ -77.746907195910666, 24.40760682934927 ], [ -77.746918239798774, 24.40760491270084 ], [ -77.746926734268087, 24.40760943968866 ], [ -77.746930879993116, 24.40762020416809 ], [ -77.746930434428762, 24.407635611794024 ], [ -77.746918961145951, 24.407676234418187 ], [ -77.746909704905249, 24.407700583118267 ], [ -77.74688164243409, 24.407763320367092 ], [ -77.746862776914782, 24.407801784985679 ], [ -77.746840272320298, 24.407839153431997 ], [ -77.746820512079012, 24.40786526577357 ], [ -77.746756664320202, 24.407942729110257 ], [ -77.746715051661297, 24.407996689603209 ], [ -77.7466572477677, 24.408082907402616 ], [ -77.746555456967869, 24.408220287066325 ], [ -77.746468507234923, 24.408323810078169 ], [ -77.746445908317327, 24.4083488695188 ], [ -77.746422101165663, 24.408372473684818 ], [ -77.746397304968866, 24.40839535307466 ], [ -77.746371389471221, 24.408416868810257 ], [ -77.746262165112483, 24.408506095022222 ], [ -77.746194829195375, 24.408558667084947 ], [ -77.746158240813884, 24.408585191562587 ], [ -77.746119851310198, 24.408609822306079 ], [ -77.746080386523161, 24.408632633756874 ], [ -77.74604079327699, 24.40865255839341 ], [ -77.746002466655369, 24.408669980688654 ], [ -77.745936269802129, 24.408698726898006 ], [ -77.745876042250799, 24.408723151477574 ] ], [ [ -77.745199048097859, 24.407671049972709 ], [ -77.745214097975534, 24.407672396215123 ], [ -77.745234516681933, 24.40766152294195 ], [ -77.745247879121763, 24.407648006608074 ], [ -77.745260544468977, 24.407629798043413 ], [ -77.74527226209355, 24.407607699735117 ], [ -77.745289535798136, 24.407567484468835 ], [ -77.745318186665799, 24.407489438462768 ], [ -77.745328209169401, 24.407456227973487 ], [ -77.745337355815664, 24.407409904406332 ], [ -77.745340765820487, 24.40736346956967 ], [ -77.745338113993768, 24.407319617248103 ], [ -77.745332364775948, 24.407290001154866 ], [ -77.745324491042467, 24.407263144283444 ], [ -77.745306057612837, 24.407218909087003 ], [ -77.745298782157363, 24.407198045938753 ], [ -77.745293781236143, 24.407177892023054 ], [ -77.745291980114033, 24.407158004783387 ], [ -77.745293842321587, 24.40713890203601 ], [ -77.745300469193467, 24.407120175581834 ], [ -77.745318866690496, 24.407093573083152 ], [ -77.745369820930023, 24.407037502490773 ], [ -77.745393483452915, 24.407003107366968 ], [ -77.745412770282073, 24.406956613482077 ], [ -77.745424693620848, 24.406903578561735 ], [ -77.745430097885588, 24.406846659580978 ], [ -77.745429377436736, 24.406788207573008 ], [ -77.745422499934932, 24.406730427964799 ], [ -77.745409020714092, 24.40667552536916 ], [ -77.74539777470504, 24.40664485467385 ], [ -77.745384943169498, 24.406615215517299 ], [ -77.745370572819937, 24.406587122446261 ], [ -77.745354714860198, 24.406561091644225 ], [ -77.745307243389036, 24.406489742301648 ], [ -77.745281733031604, 24.406447211628201 ], [ -77.745272554045997, 24.406427603224927 ], [ -77.745266518265595, 24.406409588359661 ], [ -77.745264875246932, 24.406392767829647 ], [ -77.745269077565837, 24.406376806239187 ], [ -77.745279257274632, 24.406362380107449 ], [ -77.745294770281291, 24.406349353640415 ], [ -77.745327335108684, 24.406333734803201 ], [ -77.745368693544364, 24.406322058099367 ], [ -77.745415966487855, 24.406313345153933 ], [ -77.745501692715408, 24.406303685735409 ], [ -77.745556171045806, 24.406302569928556 ], [ -77.745612072307651, 24.406306085865381 ], [ -77.745667585497273, 24.406314357887677 ], [ -77.745720928357144, 24.406327801558774 ], [ -77.745754841555765, 24.406339811204322 ], [ -77.745787600419192, 24.40635345202034 ], [ -77.746047809119347, 24.406480099257443 ], [ -77.746144369029238, 24.406530689237819 ], [ -77.746298848715426, 24.406620342162562 ], [ -77.746389848951978, 24.40667530040874 ], [ -77.746542505956455, 24.406764615381451 ], [ -77.746670391916922, 24.406846044417346 ], [ -77.746709896229817, 24.406877245151421 ], [ -77.746747168229305, 24.406916330929469 ], [ -77.746783778170382, 24.406970181426278 ], [ -77.746815097034457, 24.407031119359864 ], [ -77.746833344512837, 24.407073749637007 ], [ -77.7468490479623, 24.407118018423684 ], [ -77.746862240620587, 24.407162764927111 ], [ -77.746872987166313, 24.407206837354398 ], [ -77.746884403855248, 24.407275646296412 ], [ -77.746889812611613, 24.407337905206802 ], [ -77.746891049591753, 24.407388715712493 ], [ -77.746889887171747, 24.407423228527964 ], [ -77.74688794770907, 24.40743670725643 ] ], [ [ -77.74688794770907, 24.40743670725643 ], [ -77.746891615530345, 24.407437974389318 ], [ -77.746897397985848, 24.407436569008858 ], [ -77.74690426560619, 24.407432218710017 ], [ -77.74691225252738, 24.40742287595576 ], [ -77.746919447134502, 24.407409285155325 ], [ -77.746925592509371, 24.407392255342003 ], [ -77.746930614990106, 24.407372759974113 ], [ -77.746937346066517, 24.407330610801719 ], [ -77.746942991978074, 24.407220208125434 ], [ -77.746948349530456, 24.407172725316698 ], [ -77.746955552222403, 24.407149239541408 ], [ -77.746961023860791, 24.407142086645518 ], [ -77.746966854825317, 24.40713934704695 ], [ -77.746973039726043, 24.407139697983922 ], [ -77.74697867665445, 24.407143110825022 ], [ -77.74698361020198, 24.407150749633601 ], [ -77.746987073207407, 24.407161510879998 ], [ -77.746990976387323, 24.407189157994402 ], [ -77.746992437047965, 24.407221456445718 ], [ -77.746992196299487, 24.407291248656474 ], [ -77.746989200418028, 24.407379103822137 ], [ -77.746986267418578, 24.407412346234985 ], [ -77.746980042991979, 24.407442323870022 ], [ -77.746973259813259, 24.407454652442414 ], [ -77.74696313759668, 24.407463633623752 ], [ -77.74694919035359, 24.407468477195298 ], [ -77.746933433903493, 24.407469080085395 ], [ -77.746917815793921, 24.407466158890728 ], [ -77.746904147926898, 24.407460458838823 ], [ -77.746893994269243, 24.407452856860477 ], [ -77.746888916092928, 24.407446000927621 ], [ -77.746886895781884, 24.407440161809248 ], [ -77.74688794770907, 24.40743670725643 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 375, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 180 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.833063748837091, 24.408891315127569 ], [ -77.833027084996118, 24.408862243385631 ], [ -77.833010815607963, 24.408846628949348 ], [ -77.832959487669257, 24.408792806247686 ], [ -77.832912652205295, 24.408745845111877 ], [ -77.832872245085511, 24.408707640912748 ], [ -77.832855442996447, 24.408689659911801 ], [ -77.832840552522285, 24.408669205200979 ], [ -77.832813858185332, 24.408626096099777 ], [ -77.832799308172639, 24.40860557593669 ], [ -77.832754493918088, 24.408556543490342 ], [ -77.832713009718262, 24.40850410067485 ], [ -77.832678278154418, 24.408468213870808 ], [ -77.83265314059777, 24.408446053539191 ], [ -77.832611777670564, 24.408416195574347 ], [ -77.832569630514044, 24.408395052040774 ], [ -77.832530577155367, 24.40837902035312 ], [ -77.832513204636115, 24.408372935051815 ], [ -77.832482219047009, 24.408365306133472 ], [ -77.832449069416413, 24.408360470776628 ], [ -77.832414633398315, 24.408357992973155 ], [ -77.832379690730363, 24.408357621588973 ], [ -77.832344972641295, 24.408359276457372 ], [ -77.832311200478202, 24.408363033654894 ], [ -77.832236470527988, 24.408374050840344 ], [ -77.832199786026735, 24.408376843583859 ], [ -77.832124306881624, 24.408377957736331 ], [ -77.832086636030169, 24.408376270147077 ], [ -77.83204978264564, 24.40837288842426 ], [ -77.832014398904931, 24.408367499263484 ], [ -77.831937797764027, 24.408352868852504 ], [ -77.83184546352922, 24.408343381375666 ], [ -77.831693232326231, 24.408335162658105 ], [ -77.831550923913412, 24.408331661505649 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 376, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 279 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.739008906097212, 24.408800799983069 ], [ -77.739008087733396, 24.408803203333569 ], [ -77.739000294848324, 24.408804884372948 ], [ -77.738985398085958, 24.408804409100956 ], [ -77.738793557467133, 24.408773575317937 ], [ -77.73871647033765, 24.408764721841514 ], [ -77.738634736223219, 24.408757658201743 ], [ -77.738552715546177, 24.408752560274078 ], [ -77.738474909764491, 24.408749506589125 ], [ -77.738326370637267, 24.408747797736183 ], [ -77.738190180650335, 24.408738118871323 ], [ -77.738131201760396, 24.408735212430418 ], [ -77.73807356854671, 24.408733677816521 ], [ -77.738019027334218, 24.408733714627623 ], [ -77.737984778165654, 24.408735101179087 ], [ -77.73795179382509, 24.408739030150539 ], [ -77.737920215347913, 24.408746007080833 ], [ -77.737890271804559, 24.408756044239748 ], [ -77.737861726039739, 24.408768096191636 ], [ -77.737834906836923, 24.408782322450573 ], [ -77.737798538542677, 24.408807899609393 ], [ -77.737764490596774, 24.408834892762261 ], [ -77.737719346660455, 24.4088674648305 ], [ -77.737674652780143, 24.408893339732618 ], [ -77.737652132015953, 24.408902211196498 ], [ -77.737628849480444, 24.408906701326782 ], [ -77.737605405248146, 24.408906818304096 ], [ -77.737582373342562, 24.408902998135005 ], [ -77.73751067969809, 24.40888290257109 ], [ -77.737485327444105, 24.408876957994146 ], [ -77.737459227791845, 24.408872729630364 ], [ -77.73741856195727, 24.408872353339458 ], [ -77.737378126091357, 24.408880340521442 ], [ -77.737352489071483, 24.408890681974405 ], [ -77.73732795787771, 24.408904176906677 ], [ -77.737304658274169, 24.408920960291031 ], [ -77.737282605532258, 24.408940274636809 ], [ -77.737262026027437, 24.408962504413584 ], [ -77.737223717372103, 24.409012383355645 ], [ -77.737171512677733, 24.409097434780012 ], [ -77.737143368459868, 24.409139343682202 ], [ -77.737109667263667, 24.409176488412747 ], [ -77.73706476856745, 24.409208073859077 ], [ -77.737007567443399, 24.409237473544785 ], [ -77.736941977851245, 24.409268177967242 ], [ -77.736874479339122, 24.409301986771084 ], [ -77.73681128016392, 24.409340462373248 ], [ -77.736775951220437, 24.409367173195207 ], [ -77.736744012518812, 24.409394545789866 ], [ -77.736715531432736, 24.409421277868951 ], [ -77.736691243682401, 24.409447339166107 ], [ -77.736666297466982, 24.409480358533074 ], [ -77.736649254629398, 24.409508032134344 ], [ -77.736639206972939, 24.409526889117469 ], [ -77.736636688884474, 24.40953449715872 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 377, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 510 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.706564197860587, 24.410389007390396 ], [ -77.706563676837206, 24.410384789707084 ], [ -77.706567614153087, 24.410380627652913 ], [ -77.706578513412424, 24.410376394431434 ], [ -77.706594940904026, 24.410373919121529 ], [ -77.706615240134525, 24.410373523202811 ], [ -77.706637569557529, 24.410375427539016 ], [ -77.70665997174406, 24.410379812911131 ], [ -77.70668041201003, 24.410386842921664 ], [ -77.70669730033741, 24.410396360511434 ], [ -77.706720564008322, 24.410415283620992 ], [ -77.706729071054028, 24.410420415020077 ], [ -77.706738050613652, 24.410420669422276 ], [ -77.706746357335064, 24.410415758068872 ], [ -77.706753129733968, 24.410404817954802 ], [ -77.706757979738185, 24.410389386944416 ], [ -77.706761463404888, 24.410370826211096 ], [ -77.706765787894653, 24.410327997451816 ], [ -77.706767936664818, 24.410281419717808 ], [ -77.706768396602243, 24.410233951148552 ], [ -77.706766547869378, 24.410187667865266 ], [ -77.706760477054715, 24.410144902849012 ], [ -77.706754769159375, 24.410125874174952 ], [ -77.706746383386218, 24.410109212017073 ], [ -77.706735738350091, 24.4100961736663 ], [ -77.706699448209235, 24.410061066065897 ], [ -77.706690107526896, 24.410046911936419 ], [ -77.706660792804257, 24.40998355903799 ], [ -77.706650949065363, 24.409969961151045 ], [ -77.706638418465474, 24.409958845124759 ], [ -77.706623861266252, 24.409949524643981 ], [ -77.706573741561641, 24.409924615218156 ], [ -77.706553234820333, 24.409917920568795 ], [ -77.706530306221026, 24.409914251763418 ], [ -77.706506244846096, 24.409913549086941 ], [ -77.706482828461617, 24.409915443613933 ], [ -77.706461775544639, 24.409919554148377 ], [ -77.706444685994668, 24.409925432416884 ], [ -77.706432949505484, 24.40993245345452 ], [ -77.706427361086085, 24.409939460585445 ], [ -77.706427960262431, 24.409944308152067 ] ], [ [ -77.706427960262431, 24.409944308152067 ], [ -77.70646218337977, 24.409944847225042 ], [ -77.706469183950773, 24.409946279572125 ], [ -77.706473932445334, 24.409949113181693 ], [ -77.706477069362307, 24.409956881885062 ], [ -77.706477530198072, 24.4099699799654 ], [ -77.706476236624098, 24.409979585114382 ], [ -77.706472358596955, 24.409986971802265 ], [ -77.70646412733403, 24.409990138343538 ], [ -77.706453604468791, 24.409990861469939 ], [ -77.706439358985023, 24.409989820135195 ], [ -77.706431045077082, 24.40998660614893 ], [ -77.706428151603532, 24.409982121783187 ], [ -77.706426913725068, 24.409975683176082 ], [ -77.706427960262431, 24.409944308152067 ] ], [ [ -77.706427960262431, 24.409944308152067 ], [ -77.706422632354418, 24.409945751951387 ], [ -77.706410117924193, 24.409943126118002 ], [ -77.706391526391101, 24.409936557444272 ], [ -77.706354214865769, 24.409920372983173 ], [ -77.706308946063672, 24.409896513067299 ], [ -77.706276286014869, 24.409876006198957 ], [ -77.70620767718502, 24.409826853997487 ], [ -77.706173039045993, 24.40979903322291 ], [ -77.706139440257743, 24.40976881074204 ], [ -77.706107712660241, 24.409737091281094 ], [ -77.706078450938136, 24.409703694056905 ], [ -77.706051991959768, 24.409669666949632 ], [ -77.706028570185367, 24.409636120828164 ], [ -77.706000499629369, 24.409586764846633 ], [ -77.705981082544497, 24.409542103458204 ], [ -77.705972040102864, 24.409515995553527 ], [ -77.705964946107059, 24.409490776012714 ], [ -77.705960093407896, 24.409466934012102 ], [ -77.705958452185868, 24.409436660734539 ], [ -77.705962429027636, 24.409409773234891 ], [ -77.705971832592041, 24.409388369737332 ], [ -77.705982133573372, 24.409377063879148 ], [ -77.705994313830317, 24.409369781044138 ], [ -77.706007881086023, 24.409367214914273 ], [ -77.706022143637824, 24.409369017831146 ], [ -77.706036725091479, 24.4093739611281 ], [ -77.706079129166199, 24.409398751231638 ], [ -77.706106955380434, 24.409410871835885 ], [ -77.706119689897889, 24.409413001960168 ], [ -77.706130842482153, 24.409411610508005 ], [ -77.706140005298039, 24.409405595606188 ], [ -77.706148407240889, 24.40938766869397 ], [ -77.706149977496025, 24.409362171000595 ], [ -77.706144543586845, 24.40933271162837 ], [ -77.70613152610008, 24.409302634643595 ], [ -77.706118521189723, 24.409283695006888 ], [ -77.706085802750437, 24.409247425590493 ], [ -77.706067108809378, 24.409230429564012 ], [ -77.706047248855072, 24.409214243376372 ], [ -77.706026372906152, 24.409199554983903 ], [ -77.705900624936064, 24.409117662011308 ], [ -77.705862234534109, 24.409096637208467 ], [ -77.705819421725991, 24.409080916458343 ], [ -77.705773507035161, 24.409070160283619 ], [ -77.705545510124495, 24.40903544668479 ], [ -77.705512621005283, 24.409032594240191 ], [ -77.705478737451102, 24.409031456370851 ], [ -77.705297163677656, 24.409031341029628 ], [ -77.705241147431494, 24.409029273886688 ], [ -77.705184920979534, 24.409023636893085 ], [ -77.705147588792954, 24.409017851837145 ], [ -77.705047559589445, 24.408998454882976 ], [ -77.704998636440763, 24.408985789435963 ], [ -77.70496288978066, 24.408974585794585 ], [ -77.704910394930394, 24.408956335702097 ], [ -77.704860033578939, 24.408935478567088 ], [ -77.704828176624005, 24.408919524660305 ], [ -77.70478280361732, 24.40889351069951 ], [ -77.704741594302007, 24.408863583308463 ], [ -77.704717305653318, 24.408840512585833 ], [ -77.704695623017301, 24.408815372258392 ], [ -77.704664080472739, 24.408765346812121 ], [ -77.704638486571994, 24.408710229142777 ], [ -77.704592023908873, 24.408596782982503 ], [ -77.704562518743359, 24.408535857256911 ], [ -77.704530190172903, 24.408478794221267 ], [ -77.70446121752542, 24.408376055824167 ], [ -77.704416545204609, 24.408304418743597 ], [ -77.704403489090268, 24.408278672969132 ], [ -77.70436642370332, 24.408196548715345 ], [ -77.704350255824863, 24.40816794718269 ], [ -77.704331072301969, 24.408139498614837 ], [ -77.704309585498677, 24.408111077853587 ], [ -77.704286478134648, 24.408083611725377 ], [ -77.704262445505876, 24.408056970164314 ], [ -77.704193922914286, 24.407986259729917 ], [ -77.704175789521983, 24.407965469513044 ], [ -77.704161099372101, 24.407947018039398 ], [ -77.704146234050782, 24.407924581122334 ], [ -77.704139804807866, 24.407909641449145 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 378, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 95 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.823692537266624, 24.410557834676784 ], [ -77.823435569688129, 24.410553153190293 ], [ -77.823386934898636, 24.410549818152536 ], [ -77.823357219527324, 24.410545239735313 ], [ -77.823331748695779, 24.410536968808223 ], [ -77.823301632675879, 24.410519056780913 ], [ -77.823277183228782, 24.410511080336796 ], [ -77.823248935704697, 24.410506408664691 ], [ -77.823174311755693, 24.410498210538233 ], [ -77.823147427874204, 24.410492351928717 ], [ -77.823135794691296, 24.410487848766603 ], [ -77.823106599444543, 24.410469135079307 ], [ -77.823095852898788, 24.410463861347928 ], [ -77.823057945790453, 24.410450510552714 ], [ -77.823028965241065, 24.410437992493797 ], [ -77.822990290971475, 24.410415677903384 ], [ -77.82296962612665, 24.410408594723638 ], [ -77.822952582390243, 24.410406954610998 ] ], [ [ -77.823811608957143, 24.410515222758914 ], [ -77.823728648642827, 24.410513172813914 ], [ -77.823716228535702, 24.410514614152699 ], [ -77.823713239840757, 24.410516997024409 ], [ -77.823711295886469, 24.410522871993024 ], [ -77.823710875470667, 24.410553382234916 ] ], [ [ -77.822927141203579, 24.410372643838368 ], [ -77.822927188814319, 24.410361887773153 ], [ -77.822919102179952, 24.41036113765584 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 379, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 539 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.736583473695617, 24.409560474537063 ], [ -77.736580542493343, 24.409560922807344 ], [ -77.736570129222528, 24.409574838129746 ], [ -77.736538698069069, 24.409626571278334 ], [ -77.736503430210973, 24.40968728951896 ], [ -77.736464115442601, 24.409761775789022 ], [ -77.736431997976254, 24.409832845974694 ], [ -77.736401744514083, 24.409908448751906 ], [ -77.73635618375954, 24.410026533521016 ], [ -77.736310313984461, 24.410151280096297 ], [ -77.7362895027143, 24.410199782667576 ], [ -77.736261924435055, 24.410249102416913 ], [ -77.736247626849021, 24.410270081218993 ], [ -77.736232918732867, 24.410287747877394 ], [ -77.736218313922976, 24.410302452503501 ], [ -77.736204089998765, 24.410313579133668 ], [ -77.736190758101642, 24.410321232474633 ], [ -77.736178251756272, 24.410324445634348 ], [ -77.736166508978869, 24.410322267262593 ], [ -77.736150461474622, 24.410308498447087 ], [ -77.736124296245336, 24.410263821771746 ], [ -77.736111006569018, 24.410244178786588 ], [ -77.736095516020285, 24.410233713924256 ], [ -77.736084343673085, 24.410234172012487 ], [ -77.736066532775922, 24.41024522993542 ], [ -77.736032512677809, 24.410282020958395 ], [ -77.735932432270346, 24.410415478308146 ], [ -77.735821914337535, 24.410538039587117 ], [ -77.735792093863409, 24.410567927316617 ], [ -77.735771497290543, 24.410584873264295 ], [ -77.735750528815188, 24.410599514868853 ], [ -77.735729343845847, 24.410611148640474 ], [ -77.735708151689934, 24.410619798302328 ], [ -77.735676809469709, 24.410625751795369 ], [ -77.735648259213363, 24.410623617601484 ], [ -77.735624883253024, 24.410614581838118 ], [ -77.735594445636266, 24.41059579045838 ], [ -77.735582299515272, 24.410589868866442 ], [ -77.735568681055582, 24.410586385769392 ], [ -77.735553420475554, 24.410586627901072 ], [ -77.735536904050704, 24.410590748229826 ], [ -77.735519338393658, 24.410597931196836 ], [ -77.735501056779313, 24.410608055735853 ], [ -77.735482252345477, 24.410620371728932 ], [ -77.735463224231111, 24.410634933164154 ], [ -77.735444160184159, 24.410651049638595 ], [ -77.735425715974742, 24.410669063898737 ], [ -77.735400463433763, 24.410700230149668 ], [ -77.735377235695481, 24.410734007485583 ], [ -77.735320667883741, 24.410826242340221 ], [ -77.735287745526875, 24.410872693899542 ], [ -77.735251371842722, 24.410918911490857 ], [ -77.735194170718685, 24.410986852955407 ], [ -77.735154198383455, 24.411027830335495 ], [ -77.735133953950211, 24.411046325531469 ], [ -77.735093602525993, 24.411078786597869 ], [ -77.735073058953731, 24.411091105817036 ], [ -77.73505243004152, 24.41110061680963 ], [ -77.735031876587868, 24.411106586640184 ], [ -77.735012018430211, 24.4111091388286 ], [ -77.734987600424148, 24.4111082161143 ], [ -77.73496479309739, 24.411105595213204 ], [ -77.73494216812864, 24.41110527209959 ], [ -77.734924849508275, 24.411108742912131 ], [ -77.734907936926419, 24.411116143440136 ], [ -77.73489219754434, 24.411127732991638 ], [ -77.734877890975156, 24.411142882516735 ], [ -77.734858358007585, 24.411176297356473 ], [ -77.734843526822246, 24.411216956469762 ], [ -77.734814288456349, 24.41133060804961 ], [ -77.734798670346862, 24.411372649545694 ], [ -77.734770989659694, 24.411426309182186 ], [ -77.734649681163717, 24.41162443932701 ], [ -77.734630596455503, 24.411659418065817 ], [ -77.734594809371188, 24.411732478207544 ], [ -77.7345349573188, 24.411879196325049 ], [ -77.734493448864441, 24.41197210846779 ], [ -77.734467614215191, 24.412024639005129 ], [ -77.734457753408307, 24.412040289040423 ], [ -77.734453732548673, 24.412042333230474 ] ], [ [ -77.734404735738366, 24.41203197649757 ], [ -77.734405625968975, 24.412007215536782 ], [ -77.734411917769251, 24.41195245756839 ], [ -77.734430032296956, 24.411859049700535 ], [ -77.734435033218148, 24.411802954230421 ], [ -77.734438373154362, 24.411780847654505 ], [ -77.734443997506361, 24.411761357054278 ], [ -77.734452454246465, 24.411742986299846 ], [ -77.734487372659871, 24.411689604919861 ], [ -77.734497166991375, 24.411665714254152 ], [ -77.734504325665881, 24.411639091445057 ], [ -77.734509410130414, 24.411610625663233 ], [ -77.734512802168922, 24.411581072745022 ], [ -77.734515278824176, 24.411521411461475 ], [ -77.734511892175519, 24.411465706848496 ], [ -77.734507429345214, 24.411441489755671 ], [ -77.734500507825956, 24.411421241628485 ], [ -77.734490441304885, 24.411406514228535 ], [ -77.734478211640592, 24.411399174250072 ], [ -77.734464443162253, 24.411397610220295 ], [ -77.734450860635121, 24.411401739520635 ], [ -77.734437262836693, 24.411413049287493 ], [ -77.734424951425709, 24.411429406156692 ], [ -77.734399751885348, 24.41146883163433 ], [ -77.734370824336551, 24.41150966979685 ], [ -77.734343158920794, 24.411553881403801 ], [ -77.734332997178285, 24.411575949573191 ], [ -77.734324483844347, 24.411599633300387 ], [ -77.734302983566337, 24.411674238688917 ], [ -77.734283102052473, 24.411733938346526 ], [ -77.734276750065064, 24.411764726416251 ], [ -77.734273212499502, 24.41179957750748 ], [ -77.734272336642078, 24.411836542312329 ], [ -77.734273954507898, 24.411873674797267 ], [ -77.734277865772654, 24.411909069830994 ], [ -77.73428378656871, 24.411940931078885 ], [ -77.734291221924323, 24.411967669162749 ], [ -77.734306740321856, 24.41201126465581 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 382, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 37 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.829151515704638, 24.412657360406399 ], [ -77.829124802503472, 24.412656031154405 ], [ -77.829107017657478, 24.412656709275634 ], [ -77.829091452548553, 24.412659993541784 ], [ -77.829085859637615, 24.412663058584098 ], [ -77.829082190917973, 24.412667463508715 ], [ -77.829077746952265, 24.412685093839659 ], [ -77.829075207414959, 24.412748275238691 ], [ -77.829071026655626, 24.412773445866858 ], [ -77.829065483152021, 24.412782739963188 ], [ -77.829061670701947, 24.412785663488901 ], [ -77.829042382974507, 24.41279350972755 ], [ -77.829033862454025, 24.412798504424298 ], [ -77.829030401245234, 24.412802680304697 ], [ -77.829026053399232, 24.412813485241287 ], [ -77.829022757480445, 24.412840265676206 ], [ -77.829021887011905, 24.412914161950187 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 383, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 202 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.826452246334114, 24.41390902294653 ], [ -77.826455125361719, 24.413907720566133 ], [ -77.826461979507329, 24.413896332495618 ], [ -77.826495263885235, 24.413814480197434 ], [ -77.826507520498978, 24.41377755523532 ], [ -77.826518090076618, 24.413738481397299 ], [ -77.826525976386492, 24.413699538425981 ], [ -77.826528443160257, 24.413660615074548 ], [ -77.826524403436423, 24.413623961641001 ], [ -77.826514462679484, 24.413591866053913 ], [ -77.826491404722802, 24.413535595485254 ], [ -77.826482720708924, 24.413506805387648 ], [ -77.826476427112041, 24.413478395650571 ], [ -77.826475008672205, 24.413449083659859 ], [ -77.826479140024205, 24.413419949166972 ], [ -77.826489078086212, 24.413392531637438 ], [ -77.826504673737844, 24.413367907553003 ], [ -77.826524413317898, 24.413344944810817 ], [ -77.826548099196998, 24.413324481038327 ], [ -77.826574965112201, 24.413305730143815 ], [ -77.826605296727763, 24.413289766973264 ], [ -77.826638055591218, 24.413275586212006 ], [ -77.826672474541326, 24.413262366593376 ], [ -77.826709363858498, 24.413251510979531 ], [ -77.826827388113756, 24.413225226336969 ], [ -77.826865419189616, 24.413215120821761 ], [ -77.826937456888928, 24.413190821446928 ], [ -77.826972079756587, 24.413177505296009 ], [ -77.827004269986475, 24.413161914297344 ], [ -77.827033338570772, 24.413143153562743 ], [ -77.827115158025137, 24.413082697107043 ], [ -77.82717006485197, 24.41304400260433 ], [ -77.827279974625284, 24.412974625026212 ], [ -77.827308123334703, 24.412961401286093 ], [ -77.827363242163912, 24.412940961991399 ], [ -77.827386798685595, 24.412926494891845 ], [ -77.827406467298758, 24.412903473173539 ], [ -77.827420494491903, 24.412870866154734 ], [ -77.827428865892045, 24.412831383855107 ], [ -77.827432372016602, 24.412788306441112 ], [ -77.827431784518396, 24.412744846189103 ], [ -77.82742788403344, 24.412704091044041 ], [ -77.827421544622482, 24.41266894326888 ], [ -77.827413887382974, 24.412642036007721 ], [ -77.827403425603862, 24.412619810972846 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 386, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 519 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.707950842722241, 24.415390617385533 ], [ -77.707955920000515, 24.415389002685671 ], [ -77.707960486137125, 24.415381668664651 ], [ -77.707969487256278, 24.41535251416834 ], [ -77.707979800814044, 24.415307474458263 ], [ -77.707987655682885, 24.415250994432938 ], [ -77.707989178327296, 24.415220504959073 ], [ -77.707987702395286, 24.415188756602614 ], [ -77.707982848797784, 24.415156725216033 ], [ -77.707975235575759, 24.415124257836414 ], [ -77.707953662534194, 24.415060769246914 ], [ -77.707940662115448, 24.415030619190318 ], [ -77.707911828889749, 24.41497753203884 ], [ -77.707890502884894, 24.414944977906821 ], [ -77.70787295070258, 24.414913393077896 ], [ -77.707865039239877, 24.414891111998031 ], [ -77.707849484910724, 24.414808756466037 ], [ -77.707840797303604, 24.414771207672029 ], [ -77.707829181188686, 24.414732888324338 ], [ -77.707806624491866, 24.414675390467362 ], [ -77.707728418959888, 24.41449255983596 ], [ -77.707708859042896, 24.414436936696923 ], [ -77.707672081116854, 24.414322022485969 ], [ -77.707627661222688, 24.414197939331249 ], [ -77.707609550288254, 24.414154250527599 ], [ -77.70753456611483, 24.413996864370333 ], [ -77.70749579303056, 24.41391954053487 ], [ -77.707471327413799, 24.413874299087649 ], [ -77.707435676873374, 24.413817376705595 ], [ -77.707351521799268, 24.413696942118591 ], [ -77.707323051492949, 24.4136593349163 ], [ -77.707282634491705, 24.41361457599152 ], [ -77.707186258736442, 24.413524275274739 ], [ -77.707171138293603, 24.413506867555267 ], [ -77.707158325622672, 24.413487692967088 ], [ -77.707148119862737, 24.41346730365521 ], [ -77.707138427939142, 24.413430084113696 ], [ -77.707137713778494, 24.413391667835544 ], [ -77.707145464442746, 24.413355642543799 ], [ -77.707153847520971, 24.41333655873003 ], [ -77.707164083823642, 24.413319137896753 ], [ -77.707208289918768, 24.413264987449868 ], [ -77.707215727071031, 24.413250639814748 ], [ -77.707219637437447, 24.413234516310201 ], [ -77.707220031797846, 24.413217192804275 ], [ -77.707218003401934, 24.413198377272185 ], [ -77.707203797444038, 24.413122224317888 ], [ -77.707198262025273, 24.413059606705634 ], [ -77.707199673278595, 24.413020976817588 ], [ -77.707206069283373, 24.412983101110935 ], [ -77.707227203947099, 24.412912436789437 ], [ -77.707233685291868, 24.41287544285165 ], [ -77.707235189969964, 24.412838272215545 ], [ -77.707229859367061, 24.41276653214517 ], [ -77.707227142861669, 24.412695409623126 ], [ -77.707223200155852, 24.412671042254384 ], [ -77.70721662718293, 24.412646291239344 ], [ -77.707203339303248, 24.412607475539033 ], [ -77.707185582305016, 24.41256829663487 ], [ -77.707139364881954, 24.412490935114253 ], [ -77.707124340558835, 24.412462734556701 ], [ -77.707110440028146, 24.412433139301946 ], [ -77.707091713747758, 24.412381343499369 ], [ -77.70707673074709, 24.412325455215594 ], [ -77.707064158824707, 24.412267036828251 ], [ -77.707034252112265, 24.412111820932886 ], [ -77.70702574416822, 24.412062583711631 ], [ -77.707012010724128, 24.411964270358101 ], [ -77.707007665573116, 24.411928404169696 ], [ -77.707003619561078, 24.411868003574547 ], [ -77.7070037623932, 24.411808088027197 ], [ -77.707007760794525, 24.411750340164399 ], [ -77.707018560340885, 24.41165304089467 ], [ -77.707019653590592, 24.411610171670052 ], [ -77.707016376536416, 24.411567717159922 ], [ -77.707007883863724, 24.411526564901784 ], [ -77.706996521073691, 24.411495028297868 ], [ -77.706981212882951, 24.411461890028903 ], [ -77.706962515348593, 24.411428064625223 ], [ -77.706941204615148, 24.411393219975558 ], [ -77.706846938104164, 24.411250460452788 ], [ -77.706751593614868, 24.411090911948854 ], [ -77.706725102297085, 24.411051754660356 ], [ -77.706715655613593, 24.411039978595671 ], [ -77.706707424350171, 24.411033023882908 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 388, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 67 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.707544753907996, 24.416238858729646 ], [ -77.707564490793573, 24.416239624350226 ], [ -77.707577142666025, 24.41623845955262 ], [ -77.70758754156374, 24.416234741034366 ], [ -77.707591097095644, 24.416231351342368 ], [ -77.707594235809253, 24.416222756869356 ], [ -77.707595542857959, 24.416212818461215 ], [ -77.707597281996371, 24.416169400287181 ], [ -77.707597837155205, 24.416136844826532 ], [ -77.707595627299639, 24.416117502134718 ], [ -77.707591685492147, 24.41611031620986 ], [ -77.707588693203945, 24.41610803405489 ], [ -77.707559448549873, 24.416099301335425 ], [ -77.707553419057703, 24.41609356404642 ], [ -77.707549672184626, 24.416076264654244 ], [ -77.707550245309747, 24.416049856268636 ] ], [ [ -77.707560207625875, 24.416013646875669 ], [ -77.707570387335068, 24.416013068561476 ], [ -77.707581520156396, 24.416008278486302 ], [ -77.707591935223803, 24.41599868606572 ], [ -77.707605603090855, 24.415981880718924 ], [ -77.707616123261161, 24.415975177393126 ], [ -77.707638107731114, 24.415971829410964 ], [ -77.70769806578474, 24.415972217132278 ], [ -77.707722191838343, 24.415970822480535 ], [ -77.707735582125977, 24.415967284727447 ], [ -77.707740788761342, 24.415964081527139 ], [ -77.707744689246297, 24.415959576106317 ], [ -77.707747486600113, 24.415954008132328 ], [ -77.707750870553781, 24.41594073971557 ], [ -77.707752963628366, 24.415918009747173 ], [ -77.707753074121186, 24.41587847032422 ], [ -77.70775027407241, 24.415856762817508 ], [ -77.707747554872043, 24.415850140464848 ], [ -77.707743105516471, 24.415844055523635 ], [ -77.707730654866594, 24.415835091298085 ], [ -77.70770695281783, 24.415821947201515 ], [ -77.707704525569952, 24.415819219243069 ], [ -77.70770412671709, 24.415815460636836 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 390, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 140 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.709088140413002, 24.417535984247206 ], [ -77.709103726185148, 24.417507404457623 ], [ -77.709112620404767, 24.417484330406936 ], [ -77.709120332441501, 24.417455473318661 ], [ -77.709126111303732, 24.417422469943272 ], [ -77.709129425188792, 24.417387202422674 ], [ -77.709129824939083, 24.417351684593886 ], [ -77.709126883854822, 24.417317990825595 ], [ -77.709120185117783, 24.417288203668544 ], [ -77.709113299531154, 24.417270686042347 ], [ -77.709073300246473, 24.417195131026919 ], [ -77.709062860026236, 24.41717085613951 ], [ -77.709044244238612, 24.417120203349366 ], [ -77.709025531432957, 24.417080820535404 ], [ -77.708994742574859, 24.417025972337338 ], [ -77.708982088905771, 24.417007354503923 ], [ -77.708947961908166, 24.416971176465559 ], [ -77.708935456461077, 24.416960310537043 ], [ -77.708917328458668, 24.416947612351997 ], [ -77.708853544480178, 24.416909458895347 ], [ -77.708815609524081, 24.416892728923244 ], [ -77.708803583777353, 24.416889825942025 ], [ -77.708791412503587, 24.416889388327199 ], [ -77.708779392146766, 24.416891570675485 ], [ -77.708764057904872, 24.416898353295878 ], [ -77.708732054524546, 24.416918171109426 ], [ -77.708713171038951, 24.416927602319813 ], [ -77.708639245979285, 24.416957544976448 ], [ -77.708615951765665, 24.416963289587969 ], [ -77.708591328045372, 24.416966515666125 ], [ -77.708566185997228, 24.416967294374682 ], [ -77.708540009988155, 24.416964741486758 ], [ -77.708512584422536, 24.41695765622061 ], [ -77.708485850559669, 24.416945924877325 ], [ -77.708461034599949, 24.416929847651215 ], [ -77.708415263639594, 24.416893186169389 ], [ -77.708368804569744, 24.41685893033204 ], [ -77.708355824812216, 24.41685071053298 ], [ -77.708342244980045, 24.416844137310779 ], [ -77.708332153306159, 24.416841273591075 ], [ -77.708326775092132, 24.416842309148006 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 391, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 408 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.729260365806695, 24.415633019801163 ], [ -77.729259005229707, 24.415634993977037 ], [ -77.729231974922783, 24.415654669660547 ], [ -77.729209464040082, 24.415667445683731 ], [ -77.729158970636277, 24.41568988695051 ], [ -77.729094815653625, 24.415713109383514 ], [ -77.728974793545149, 24.4157528574429 ], [ -77.728814563742858, 24.415803051895725 ], [ -77.728740406019554, 24.415829088153981 ], [ -77.728599727151078, 24.415889703617985 ], [ -77.728518066698513, 24.41592693470389 ], [ -77.728470501802519, 24.415950831924889 ], [ -77.728429221520273, 24.415978087757178 ], [ -77.728408516251278, 24.415996965041213 ], [ -77.728390345129682, 24.416017160083879 ], [ -77.728230346194422, 24.416211173511442 ], [ -77.72820290805241, 24.416242364569175 ], [ -77.728172962712407, 24.416270502116284 ], [ -77.728135264013162, 24.416296606988031 ], [ -77.728095067997515, 24.416318147552158 ], [ -77.728067773585877, 24.416330590592235 ], [ -77.728026267826536, 24.416345125193558 ], [ -77.727985589415511, 24.416355401414982 ], [ -77.727959773630872, 24.416360103953686 ], [ -77.727934640565849, 24.416361966482842 ], [ -77.727909778792039, 24.416359871648766 ], [ -77.727885153275167, 24.416353839082543 ], [ -77.727834744313014, 24.416334691920035 ], [ -77.727808844985006, 24.416322812465367 ], [ -77.727729076384435, 24.416282211436972 ], [ -77.727672337892784, 24.416257163386881 ], [ -77.727642739302453, 24.416246472443767 ], [ -77.727595477138735, 24.416235482120509 ], [ -77.727545851507486, 24.416230610256164 ], [ -77.727511992207809, 24.416230499829446 ], [ -77.727459876446616, 24.416233137801701 ], [ -77.72740704203315, 24.416239064036763 ], [ -77.727310319528215, 24.416256900816656 ], [ -77.727250316558823, 24.416271901672591 ], [ -77.727195172576785, 24.41629186191226 ], [ -77.727148589539397, 24.416319183926912 ], [ -77.727117691086903, 24.416350055129723 ], [ -77.727094134565206, 24.41638574337918 ], [ -77.727081364115094, 24.416411020436701 ], [ -77.727043706738428, 24.416494347494496 ], [ -77.726978521388119, 24.416646731903398 ], [ -77.726958363193162, 24.416704849703731 ], [ -77.726907701804407, 24.416886904965267 ], [ -77.726838512662894, 24.417099825257868 ], [ -77.726809101820493, 24.417171902322838 ], [ -77.726788005784343, 24.417216996989541 ], [ -77.72671860823371, 24.41735292381631 ], [ -77.726697976626582, 24.417402866516504 ], [ -77.726680520563988, 24.417453115117016 ], [ -77.726665964263063, 24.417501222258164 ], [ -77.726657152688475, 24.417534612511609 ], [ -77.726651074687268, 24.41756592511943 ], [ -77.726648376148148, 24.417608946099129 ], [ -77.726652391617492, 24.417644415595507 ], [ -77.726663130976689, 24.417676547778552 ], [ -77.726667951336537, 24.417685899589436 ], [ -77.726672009924286, 24.417690130934471 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 392, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 33 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.715285320218285, 24.425536583377223 ], [ -77.715285140554769, 24.425533033619391 ], [ -77.715283354704013, 24.425530369668287 ], [ -77.715274600621541, 24.42552496242801 ], [ -77.715260820465119, 24.425521075692846 ], [ -77.715245187982546, 24.425518850962177 ], [ -77.715024743208446, 24.425513928745442 ], [ -77.715010627082037, 24.425516095404163 ], [ -77.714998458503231, 24.425521440483216 ], [ -77.714991581001414, 24.425529549298926 ], [ -77.714989577757265, 24.425541617647294 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 393, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 1163 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.714693874824178, 24.425545137956124 ], [ -77.714693413988925, 24.425542177915428 ], [ -77.714687723161589, 24.425534476422467 ], [ -77.71467687420791, 24.425522673082131 ], [ -77.714641117666346, 24.425489990803815 ], [ -77.714604138517672, 24.425458856014274 ], [ -77.71455856788161, 24.425425708325093 ], [ -77.714493900859239, 24.425389896673064 ], [ -77.714419895849545, 24.42535890335844 ], [ -77.71434206132173, 24.425333125892312 ], [ -77.714266501328268, 24.425312515202865 ], [ -77.714226258600164, 24.42530319503804 ], [ -77.714188765615148, 24.425296780114191 ], [ -77.714154164307004, 24.425293682661998 ], [ -77.71412207109519, 24.425294566012493 ], [ -77.714089914102942, 24.425298255636651 ], [ -77.71402438110465, 24.425310332182288 ], [ -77.713923017902943, 24.425335448776288 ], [ -77.713869260919736, 24.425346710673274 ], [ -77.713775991538711, 24.425361776699894 ], [ -77.71371116641285, 24.425367139779592 ], [ -77.713644553639611, 24.425367701688362 ], [ -77.71357787708591, 24.42536363746035 ], [ -77.713538029616558, 24.425359144643895 ], [ -77.713408914760805, 24.425341125937202 ], [ -77.713345217918928, 24.425329307038275 ], [ -77.713284132479615, 24.425314537093783 ], [ -77.713227340987359, 24.425295765896944 ], [ -77.713194405155747, 24.425281601207196 ], [ -77.713010069961115, 24.425191572208071 ], [ -77.712841247773184, 24.425112263600671 ], [ -77.712788589429536, 24.425081118084968 ], [ -77.712736702738695, 24.425045858430341 ], [ -77.712711316348788, 24.425026876988351 ], [ -77.712663135208558, 24.42498495291353 ], [ -77.712618429650078, 24.424938531085747 ], [ -77.712557036986937, 24.424862047414756 ], [ -77.712477942122788, 24.424755695693147 ], [ -77.712394617092002, 24.424652297395774 ], [ -77.712354663621426, 24.424598969733282 ], [ -77.712279100034664, 24.424488466015962 ], [ -77.712244394521974, 24.424430299453384 ], [ -77.712211396706664, 24.424370908433069 ], [ -77.712196005870865, 24.424340379448527 ], [ -77.712168642289015, 24.424275876362561 ], [ -77.712156377590446, 24.424242646570118 ], [ -77.712140594190871, 24.424190173465401 ], [ -77.712127297328067, 24.424135551650831 ], [ -77.712066292737106, 24.423858039325001 ], [ -77.712050370098723, 24.423794713807077 ], [ -77.712030358329145, 24.423734946241066 ], [ -77.712016523375397, 24.423703122323502 ], [ -77.712001374186485, 24.423672197300348 ], [ -77.711984728404261, 24.42364257195706 ], [ -77.71196640636569, 24.423614647897111 ], [ -77.711867692295797, 24.423480473275447 ], [ -77.71178476072707, 24.423376924251805 ], [ -77.711765218776364, 24.423349819698707 ], [ -77.711728195610235, 24.423294066322917 ], [ -77.711693844932114, 24.423235749528398 ], [ -77.71166142203856, 24.423176003781649 ], [ -77.711630903573422, 24.423114602513785 ], [ -77.711489877056948, 24.422796805550007 ], [ -77.711474984786136, 24.422765903206894 ], [ -77.711444301030994, 24.422704387228645 ], [ -77.711394580178336, 24.422615556300457 ], [ -77.711358511921404, 24.422558944586573 ], [ -77.711311585727572, 24.422489706380269 ], [ -77.711281620624646, 24.42244957928478 ], [ -77.711259957751551, 24.422424534094677 ], [ -77.711168116691823, 24.422328334998795 ], [ -77.711002969511711, 24.422163820895367 ], [ -77.710911392556682, 24.422067294425567 ], [ -77.710867424515129, 24.422017241513814 ], [ -77.710733546791673, 24.421870177741823 ], [ -77.710690407895086, 24.421820355410791 ], [ -77.7106500411995, 24.42176885301134 ], [ -77.710623982869734, 24.421726662841269 ], [ -77.710600899760195, 24.421682433531284 ], [ -77.710573653857594, 24.421621775862828 ], [ -77.710562237168659, 24.421590282678434 ], [ -77.710549061578419, 24.421540296648633 ], [ -77.710540159273933, 24.42148814059939 ], [ -77.710534498091036, 24.421435122417574 ], [ -77.710525769161379, 24.421296133519242 ], [ -77.710518662589195, 24.421244396156073 ], [ -77.710496679017581, 24.421142463190733 ], [ -77.710464178868889, 24.421016318977067 ], [ -77.710451034719668, 24.420970419173997 ], [ -77.710429261353809, 24.420902888784457 ], [ -77.710326205726105, 24.420597760348709 ], [ -77.710272531387844, 24.420453406421739 ], [ -77.710247730699507, 24.420401376705357 ], [ -77.710230437231957, 24.420372498199498 ], [ -77.710211597763816, 24.420344718192855 ], [ -77.71019131470301, 24.420318439117313 ], [ -77.710083826787724, 24.420191626632484 ], [ -77.710037925571626, 24.420143497614248 ], [ -77.709989615073965, 24.420097472347315 ], [ -77.709914798885507, 24.420030618754215 ], [ -77.709862763074355, 24.419981206308584 ], [ -77.7098047606531, 24.41992337057459 ], [ -77.709682689487437, 24.419796861971193 ], [ -77.709651266418831, 24.419767626699514 ], [ -77.709619908028898, 24.419740168833254 ], [ -77.709560286843484, 24.419692747990577 ], [ -77.709474260578588, 24.419629216711758 ], [ -77.709463060383641, 24.419621654727994 ], [ -77.709455525314695, 24.419618565317137 ] ], [ [ -77.709452919302279, 24.419573398712938 ], [ -77.709459128457624, 24.419574938099377 ], [ -77.709469069214578, 24.419573381532494 ], [ -77.709486775907138, 24.419566691484633 ], [ -77.709508482797673, 24.419555382448419 ], [ -77.709532331271845, 24.419539326821486 ], [ -77.709555836589558, 24.419517920951748 ], [ -77.709581332573933, 24.419482782435697 ], [ -77.709600464892901, 24.41944007618952 ], [ -77.709612318163067, 24.419392623333867 ], [ -77.70961637046328, 24.419343674419256 ], [ -77.709614236066187, 24.419305578943916 ], [ -77.709609025837537, 24.419268361124029 ], [ -77.709601175460278, 24.419233572623828 ], [ -77.709564910472253, 24.419118527817208 ], [ -77.709559917635886, 24.419092374451711 ], [ -77.709558316838084, 24.419067348226225 ], [ -77.709561804996312, 24.419042658994396 ], [ -77.709570910320053, 24.419019160704277 ], [ -77.70958588613415, 24.418997989500198 ], [ -77.709611368643777, 24.418976729135153 ], [ -77.709642685711216, 24.41895846985523 ], [ -77.709711828140328, 24.41892377697075 ], [ -77.70974463371617, 24.418903939023142 ], [ -77.709769204435858, 24.418884736626293 ], [ -77.709791654233115, 24.418864092983121 ], [ -77.709833323485896, 24.418823292372309 ], [ -77.709851681457025, 24.418803207385224 ], [ -77.709866172180881, 24.418781849650209 ], [ -77.709875285589447, 24.41875824988454 ], [ -77.709879302855398, 24.41873298802042 ], [ -77.709880218238638, 24.418705279633318 ], [ -77.709878476405336, 24.418675835529019 ], [ -77.709873982133956, 24.418645554644424 ], [ -77.709858912895086, 24.418583361839939 ], [ -77.709839131094199, 24.418518670133835 ], [ -77.70980069397983, 24.418422884402798 ], [ -77.709757056518285, 24.418327925558984 ], [ -77.709741031471921, 24.418297130092554 ], [ -77.709704705398437, 24.418239339392663 ], [ -77.709684459168528, 24.418212130672654 ], [ -77.709662044405604, 24.418187101000722 ], [ -77.709637754858647, 24.418163531388544 ], [ -77.709611420746057, 24.418142103200353 ], [ -77.709583758025218, 24.418121988658193 ], [ -77.70949122885601, 24.418057975625715 ], [ -77.709455946624871, 24.418035370369175 ], [ -77.709418756372116, 24.418014067307769 ], [ -77.709379706606754, 24.417995646749564 ], [ -77.709339500709561, 24.417980208487496 ], [ -77.709299025317819, 24.417968765980834 ], [ -77.709259688989832, 24.417960919245896 ], [ -77.7091438305727, 24.417947327126104 ], [ -77.709130966697813, 24.417944527232617 ], [ -77.709126588308649, 24.417942349814741 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 394, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 1399 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.726197862048707, 24.418880933121795 ], [ -77.726182239448903, 24.418895374178607 ], [ -77.726150544190745, 24.41892025402365 ], [ -77.726079659029992, 24.418970180562454 ], [ -77.726050991094326, 24.418987092663759 ], [ -77.725926073167528, 24.419052656890571 ], [ -77.725867803946656, 24.41909072544966 ], [ -77.725772778359257, 24.419166085474473 ], [ -77.725597284383639, 24.419295041216781 ], [ -77.725413012071115, 24.41943789224937 ], [ -77.725354958445863, 24.419474596343598 ], [ -77.725291507742412, 24.419506049976242 ], [ -77.725258080532356, 24.419520440251851 ], [ -77.725199656801237, 24.419541433054196 ], [ -77.725078271948476, 24.419579104758046 ], [ -77.724827101198386, 24.419662124627408 ], [ -77.724720500818592, 24.419698897364526 ], [ -77.724665593991773, 24.419715474007351 ], [ -77.724571925758781, 24.419741273070002 ], [ -77.724520698431377, 24.419753671603111 ], [ -77.724376712864412, 24.419785022922053 ], [ -77.724176203503063, 24.419823394720691 ], [ -77.724005765245892, 24.419860057805156 ], [ -77.723942664885399, 24.419876396402717 ], [ -77.723870275046536, 24.419899435662028 ], [ -77.723766184559636, 24.419938411074352 ], [ -77.723588784358995, 24.419998766909949 ], [ -77.72352092831737, 24.42002612656578 ], [ -77.72345553994785, 24.420055841914866 ], [ -77.723328979002403, 24.420119039255027 ], [ -77.723235323345847, 24.420167965784138 ], [ -77.723171268076172, 24.420198951376442 ], [ -77.723138040292142, 24.420213171439482 ], [ -77.723069290426835, 24.420239674655253 ], [ -77.72300932967822, 24.420258999538355 ], [ -77.722850254211096, 24.420306465973436 ], [ -77.72277854080366, 24.420329884682737 ], [ -77.722637117231798, 24.420378889653222 ], [ -77.722535189888106, 24.420419660314927 ], [ -77.722437320234548, 24.420464305585377 ], [ -77.722344097565937, 24.420513385754866 ], [ -77.722196059698661, 24.420602273783462 ], [ -77.721940839343276, 24.420773369484248 ], [ -77.721853631793834, 24.420828192333186 ], [ -77.721793418618674, 24.420862846250682 ], [ -77.721729746031343, 24.420894198112038 ], [ -77.721696684435571, 24.42090857514221 ], [ -77.721628316354256, 24.42093544301558 ], [ -77.721574854916767, 24.420953315121281 ], [ -77.721482966246356, 24.420980698290585 ], [ -77.721292562033682, 24.42102862577504 ], [ -77.721206520497432, 24.421053936256282 ], [ -77.7211585100371, 24.4210693553296 ], [ -77.721112524379379, 24.421086707203717 ], [ -77.721079633463575, 24.421101503817386 ], [ -77.720886790324911, 24.421193557691918 ], [ -77.720855393307346, 24.421209780786736 ], [ -77.720809275597318, 24.421234664265164 ], [ -77.720765426133369, 24.421261712834578 ], [ -77.720738141603263, 24.42128186286585 ], [ -77.720712408463598, 24.421303236536595 ], [ -77.72068815305262, 24.421326277171307 ], [ -77.720665365488813, 24.421350462921634 ], [ -77.720630545890089, 24.421394217941373 ], [ -77.720597531905071, 24.421439696350046 ], [ -77.720562975512721, 24.421483701629064 ], [ -77.720540480799684, 24.421508167903209 ], [ -77.720493023701536, 24.421555000781773 ], [ -77.720468044248449, 24.421577350210157 ], [ -77.720441684084747, 24.421598125097951 ], [ -77.720413847090711, 24.421617746685609 ], [ -77.720369289754316, 24.421644120371727 ], [ -77.720322567478078, 24.421668426298396 ], [ -77.720290805744568, 24.421684301707483 ], [ -77.72022525298334, 24.421713857985669 ], [ -77.720167695228156, 24.421735476147354 ], [ -77.720050312369963, 24.421776548190639 ], [ -77.719982830925815, 24.42180426244683 ], [ -77.719851212465343, 24.421862628161424 ], [ -77.719789232304024, 24.421895595204237 ], [ -77.7196405808874, 24.421984155083699 ], [ -77.719520327911894, 24.422053629133572 ], [ -77.719473114257198, 24.422077466302891 ], [ -77.719296235079398, 24.422161536396064 ], [ -77.719235045435539, 24.42219525913486 ], [ -77.719175882390942, 24.422230917921468 ], [ -77.719147125522056, 24.422249406568127 ], [ -77.719092213305359, 24.422289124758972 ], [ -77.718987273012161, 24.422373482624614 ], [ -77.718934038848445, 24.422414552006405 ], [ -77.718856721750242, 24.422479089579308 ], [ -77.718807373698439, 24.422523873987998 ], [ -77.718716628583394, 24.422621815953139 ], [ -77.718669783237942, 24.422669516246444 ], [ -77.718618977220387, 24.422713186561595 ], [ -77.718563619439351, 24.42275252017771 ], [ -77.718518917474142, 24.422778794656697 ], [ -77.718349397295228, 24.422870097263086 ], [ -77.718291542197662, 24.42290710708367 ], [ -77.718263814798107, 24.422926893690139 ], [ -77.718210423429198, 24.422968191094846 ], [ -77.718083164492768, 24.423077562490551 ], [ -77.718003843253186, 24.423140140779406 ], [ -77.717920316101427, 24.423198862493805 ], [ -77.717842597456325, 24.423247070503731 ], [ -77.71780521765902, 24.423272447610309 ], [ -77.717766105909888, 24.423304017260232 ], [ -77.717604196257994, 24.423443000675086 ], [ -77.717559156526306, 24.423487657962678 ], [ -77.717518845526243, 24.423534599708955 ], [ -77.717500881915512, 24.423558951893323 ], [ -77.71748473290161, 24.423584363290118 ], [ -77.717470594317362, 24.423610418391217 ], [ -77.717458892862467, 24.423637796894127 ], [ -77.71741864025293, 24.423769601813941 ], [ -77.717400602081995, 24.423822583026098 ], [ -77.717388287976092, 24.423853545636963 ], [ -77.717273943220206, 24.424126054727221 ], [ -77.717255086684091, 24.424166184561273 ], [ -77.717224982342273, 24.424222537907969 ], [ -77.717197632235155, 24.424278930489773 ], [ -77.717186106850036, 24.424307859630762 ], [ -77.717152577232042, 24.42441089996025 ], [ -77.717135060982358, 24.424455399046177 ], [ -77.717121491929973, 24.424484172741412 ], [ -77.717099208321045, 24.424527201995463 ], [ -77.717073881219903, 24.424568586393974 ], [ -77.717014960720419, 24.424645017077967 ], [ -77.7169774614472, 24.424698554926728 ], [ -77.716955090701688, 24.424736750196089 ], [ -77.716934539942955, 24.424776259852091 ], [ -77.716900142552376, 24.424844763947217 ], [ -77.716873241602883, 24.424902796179914 ], [ -77.71685661827857, 24.42494703744773 ], [ -77.716835459360382, 24.425018898189471 ], [ -77.716827782357925, 24.42506040675039 ], [ -77.7168244594897, 24.425099494259126 ], [ -77.716823679752039, 24.4251456681985 ], [ -77.716821630694852, 24.425167387194087 ], [ -77.716817281052272, 24.425187875219567 ], [ -77.71680926179171, 24.425207540416515 ], [ -77.716792699552855, 24.42523174259907 ], [ -77.716748695578644, 24.425278507844212 ], [ -77.716648571153712, 24.425389766624381 ], [ -77.716635403648283, 24.425408033152792 ], [ -77.71661244091294, 24.425444277477279 ], [ -77.716598899708373, 24.425463098544885 ], [ -77.716583030070566, 24.42548193269635 ], [ -77.716527697442316, 24.425542223718686 ], [ -77.71650686551088, 24.425562386970871 ], [ -77.716441376530014, 24.425623858206105 ], [ -77.716418486558268, 24.425643381017903 ], [ -77.716395012681573, 24.425662192240846 ], [ -77.71634668870918, 24.425695818347943 ], [ -77.716322017378261, 24.425710074597571 ], [ -77.716297107993711, 24.425722420197644 ], [ -77.716272043200675, 24.425732026601494 ], [ -77.716246892169366, 24.425738736770271 ], [ -77.716213429026695, 24.425741682079529 ], [ -77.716181395103675, 24.425737527893016 ], [ -77.716153063137924, 24.425726062370259 ], [ -77.71613012375883, 24.425707220076127 ], [ -77.716112057740133, 24.425683207740935 ], [ -77.716097632593275, 24.425656644324917 ], [ -77.716078423019269, 24.425615921976608 ], [ -77.716067288401348, 24.425596009014971 ], [ -77.716054681444604, 24.425577701618018 ], [ -77.71604103873041, 24.425560980974282 ], [ -77.716025207720165, 24.425547123850521 ], [ -77.715994557202691, 24.425534668632643 ], [ -77.71595908632537, 24.425532591944982 ], [ -77.715934612623741, 24.42553668070498 ], [ -77.715909584661617, 24.425543924165098 ], [ -77.715852832695219, 24.42556472866266 ], [ -77.71575668421373, 24.425596634720101 ], [ -77.715697065723276, 24.425614356487138 ], [ -77.715670901392315, 24.425620454043813 ], [ -77.715638493770101, 24.425624577153428 ], [ -77.715617491158781, 24.425622829269038 ], [ -77.71561137902161, 24.425618687347345 ], [ -77.715610841828592, 24.425616677734492 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 395, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 292 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.833223127933337, 24.426592444165966 ], [ -77.833170204587176, 24.426627269892343 ], [ -77.833047147969666, 24.426701023134115 ], [ -77.832900020994103, 24.426791517263275 ], [ -77.832864749542793, 24.426813655561919 ], [ -77.832801968982551, 24.426856092674651 ], [ -77.832776026535456, 24.426875508149966 ], [ -77.832715676816321, 24.426930847718086 ], [ -77.832623088358318, 24.427006700347182 ], [ -77.832543363775144, 24.427062124920013 ], [ -77.832515123437574, 24.427080088581235 ], [ -77.832469881584942, 24.427104483430341 ], [ -77.832295769218234, 24.427189698512208 ], [ -77.83226531992338, 24.42720685570114 ], [ -77.832177392823311, 24.427261569427152 ], [ -77.832027043590884, 24.42734884552058 ], [ -77.831968152735783, 24.427385081108437 ], [ -77.831939615055859, 24.42740391088347 ], [ -77.831912192185172, 24.427424032125035 ], [ -77.83186052827655, 24.427466931147649 ], [ -77.831813173586369, 24.427513686567291 ], [ -77.83176879231975, 24.427562866232403 ], [ -77.831747750182487, 24.427588198304051 ], [ -77.831719268198114, 24.427629114676446 ], [ -77.831676295489871, 24.427699799383827 ], [ -77.831629685503032, 24.427785408291854 ], [ -77.831543820934911, 24.427936715795202 ], [ -77.831417489958199, 24.42812059512385 ], [ -77.831295495149362, 24.428331527781371 ], [ -77.831245708718029, 24.428410588180661 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 422, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 144 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.715024137742532, 24.487719912168139 ], [ -77.71505039549973, 24.487679651331831 ], [ -77.715061876867381, 24.487666037300393 ], [ -77.715090272613494, 24.487637059756352 ], [ -77.71512466281753, 24.487608686347521 ], [ -77.715163128677958, 24.487583833142551 ], [ -77.715183161108826, 24.487573436014006 ], [ -77.715212611477128, 24.48756268817155 ], [ -77.715328504030239, 24.487539869747614 ], [ -77.715354713276938, 24.487532162233801 ], [ -77.715377782911773, 24.487521787173815 ], [ -77.715391634933482, 24.487512483055468 ], [ -77.715414897706054, 24.487490750280269 ], [ -77.715424199760832, 24.48747839765176 ], [ -77.715433208964811, 24.487459509000626 ], [ -77.715438652755438, 24.487438686109144 ], [ -77.715441046765662, 24.487416901000341 ], [ -77.715440680252996, 24.487395041494022 ], [ -77.715437635862514, 24.487373961892359 ], [ -77.715431812982828, 24.487354529578592 ], [ -77.715407104820983, 24.487304952230645 ], [ -77.715403897835401, 24.487291783704151 ], [ -77.715402852196391, 24.487278082974157 ], [ -77.715407801015274, 24.487226277049821 ], [ -77.715410956796887, 24.48717399776266 ], [ -77.715411251444294, 24.487117990581531 ], [ -77.715409748562848, 24.487090087944878 ], [ -77.715406613442525, 24.487063108277827 ], [ -77.715401242415439, 24.487037824951464 ], [ -77.715392809031528, 24.487015192826117 ], [ -77.715380197583244, 24.4869964308206 ], [ -77.715363546411155, 24.486983230378609 ], [ -77.715343156450828, 24.486974052117962 ], [ -77.715320167664416, 24.486968290259561 ], [ -77.715294441711293, 24.486965899840321 ], [ -77.715264730831578, 24.486967516888637 ], [ -77.715232927775574, 24.486973056382546 ], [ -77.715208544803787, 24.486979534385444 ], [ -77.715110125381258, 24.487009396633862 ], [ -77.715078262138164, 24.487020359530423 ], [ -77.71502651109256, 24.487043320300973 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 423, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 467 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.716374346041789, 24.491803325395164 ], [ -77.716364170822956, 24.491667688957477 ], [ -77.716356076103963, 24.491513641747829 ], [ -77.716350308919871, 24.491445103595169 ], [ -77.716340280128023, 24.491376652058836 ], [ -77.716292496941378, 24.491161618967865 ], [ -77.716278717683281, 24.491105168847739 ], [ -77.716262901944361, 24.491050145222808 ], [ -77.716243629488275, 24.490998062905128 ], [ -77.71618646609349, 24.490877854937096 ], [ -77.716169603817306, 24.490836674617697 ], [ -77.716118446558497, 24.490694189823749 ], [ -77.716110598876156, 24.490663234644703 ], [ -77.716104837980254, 24.490631627098615 ], [ -77.716073428386338, 24.490398719034694 ], [ -77.716057746496432, 24.49026477984188 ], [ -77.716048118353214, 24.490197826950592 ], [ -77.716020197815865, 24.490026124912696 ], [ -77.716008004982513, 24.489959851234754 ], [ -77.715992792013182, 24.489896032467719 ], [ -77.715965736553457, 24.489809551798398 ], [ -77.715947183647884, 24.489759472656356 ], [ -77.71589976787223, 24.489646628357104 ], [ -77.715868308870981, 24.489563821361081 ], [ -77.715834118092971, 24.489461337889601 ], [ -77.715817675329959, 24.489398389508342 ], [ -77.715775596445468, 24.48920332216559 ], [ -77.715740950221573, 24.489071945389675 ], [ -77.715726801755821, 24.489025436809104 ], [ -77.715644135190146, 24.48878908652765 ], [ -77.715614094628719, 24.488712554956937 ], [ -77.715595895659391, 24.488669581955985 ], [ -77.715575488631089, 24.48862852599207 ], [ -77.715558268825404, 24.488599641047927 ], [ -77.715502737669468, 24.488515857259646 ], [ -77.715462635078566, 24.488462760183815 ], [ -77.71544138183728, 24.488437132968226 ], [ -77.715367690339562, 24.488358656332345 ], [ -77.715314217223934, 24.488294318452802 ], [ -77.715211470616666, 24.48815067155094 ], [ -77.715118884853638, 24.488027275843049 ], [ -77.715071059446203, 24.487965282413665 ], [ -77.715060585089986, 24.487953626350627 ], [ -77.715053515348686, 24.487947084632026 ], [ -77.715050430535086, 24.487946031678916 ] ], [ [ -77.715046068314962, 24.487908511213863 ], [ -77.715048202712111, 24.48781949816161 ], [ -77.715047042987081, 24.487815403247474 ], [ -77.715044240243387, 24.487812209230682 ], [ -77.715034655218972, 24.487810359206382 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 425, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 292 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.716761572029711, 24.499125335519764 ], [ -77.716784218558288, 24.499126102276414 ], [ -77.716799193474074, 24.499125240696973 ], [ -77.716812325945199, 24.49912230037318 ], [ -77.716817078033074, 24.499119722174274 ], [ -77.716822098717202, 24.499112555696506 ], [ -77.716830803392241, 24.499091987322675 ], [ -77.716837201193755, 24.499086573430581 ], [ -77.716859677940462, 24.499079307223457 ], [ -77.716867225585489, 24.499075023847723 ], [ -77.716872095352613, 24.499068119765095 ], [ -77.716878758157094, 24.499051376995254 ], [ -77.716883724942292, 24.499044566099254 ], [ -77.716887597579486, 24.499042135855117 ], [ -77.716897491624039, 24.499039325502025 ], [ -77.716947557429748, 24.499037341579125 ], [ -77.716960525509194, 24.499034049754723 ], [ -77.716966016012236, 24.499031142126299 ], [ -77.716972992328735, 24.499023369104169 ], [ -77.716975688172909, 24.499015148942654 ], [ -77.716975804953819, 24.499008116519732 ] ], [ [ -77.717021040273607, 24.499002134959074 ], [ -77.717026953229549, 24.499002974012718 ], [ -77.717053455327061, 24.499004623603799 ], [ -77.717100729168848, 24.499001268018368 ], [ -77.717152422721895, 24.498987450852745 ], [ -77.717194908543249, 24.49896611488343 ], [ -77.717235731583017, 24.498937439125669 ], [ -77.717376292772144, 24.498819651011495 ], [ -77.717428128258987, 24.498772495353396 ], [ -77.717452018055653, 24.498748635909497 ], [ -77.717495273733263, 24.498695948604375 ], [ -77.717515558590634, 24.498668604396006 ], [ -77.717534601078043, 24.498639892602984 ], [ -77.717570267788062, 24.498580909319212 ], [ -77.717601659415664, 24.498518824633816 ], [ -77.717615859983695, 24.498487376010985 ], [ -77.717628229785191, 24.498454669336816 ], [ -77.717638778701556, 24.498421190988431 ], [ -77.717655499942239, 24.498354354429214 ], [ -77.717661169210004, 24.498308673263963 ], [ -77.717661276109538, 24.498262528591738 ], [ -77.717655664333932, 24.498217409794353 ], [ -77.717647843601085, 24.498184988337908 ], [ -77.717635440561963, 24.498144723496399 ], [ -77.717619800892862, 24.498105835218396 ], [ -77.717599656172624, 24.498069857031435 ], [ -77.717573437044408, 24.498038495762881 ], [ -77.717537810758571, 24.498011610815698 ], [ -77.71749629960928, 24.497989699199351 ], [ -77.717406583065227, 24.497952321512585 ], [ -77.71736358520414, 24.497932865492366 ], [ -77.717325453516992, 24.49791016257484 ], [ -77.717301349022947, 24.497889877658075 ], [ -77.717281216879144, 24.497867335769655 ], [ -77.717265598769572, 24.497841855975839 ], [ -77.717254269217236, 24.497814141278514 ], [ -77.717246582333345, 24.497785083510468 ], [ -77.71722976587121, 24.497674317823638 ], [ -77.717221708881411, 24.497632718744203 ], [ -77.717210709010786, 24.497592340918054 ], [ -77.717186019713495, 24.497530274545873 ], [ -77.717169741342218, 24.497497099224756 ], [ -77.717130094197188, 24.497429877155888 ], [ -77.717098180648421, 24.497380358548526 ], [ -77.717070447858973, 24.497330922484075 ], [ -77.717056810534615, 24.497297515772139 ], [ -77.717047016203097, 24.497265192989882 ], [ -77.717025478195822, 24.497165804939677 ], [ -77.717023371646007, 24.497146214740294 ] ], [ [ -77.716986025086641, 24.498994892814508 ], [ -77.71699910635401, 24.498999022514507 ], [ -77.717016511390057, 24.49900149230637 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 428, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 1516 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.718349342497874, 24.51254626359728 ], [ -77.718349892267, 24.512499274101454 ], [ -77.718355385464974, 24.512380230983311 ], [ -77.718367356414433, 24.512219301705468 ], [ -77.718376388076294, 24.512132677824269 ], [ -77.718387820934907, 24.512047098461387 ], [ -77.718431411684108, 24.511776177270821 ], [ -77.718437614551121, 24.511727133477123 ], [ -77.718441594087821, 24.511677658100204 ], [ -77.718446907622749, 24.511529451721788 ], [ -77.718451984002414, 24.511466072198566 ], [ -77.718459882888681, 24.511402846306577 ], [ -77.718496612305742, 24.511159754005117 ], [ -77.718526509136723, 24.510989542034299 ], [ -77.718568729955066, 24.510693035934811 ], [ -77.718577177711964, 24.510620987854871 ], [ -77.718582612519469, 24.510547541224636 ], [ -77.71858540358501, 24.510473595959461 ], [ -77.718585720690342, 24.510400012743201 ], [ -77.718579411822105, 24.510224191797839 ], [ -77.718579208802822, 24.510159157267363 ], [ -77.718580813193938, 24.510093838259657 ], [ -77.718584221402153, 24.510028849434317 ], [ -77.718599503541739, 24.509853184086953 ], [ -77.718603269279413, 24.509779425590523 ], [ -77.718604939247527, 24.509705104700981 ], [ -77.718604473021898, 24.509631037151994 ], [ -77.718596606474961, 24.509450584726039 ], [ -77.718596762781857, 24.509312311690017 ], [ -77.71860367980949, 24.509174542820702 ], [ -77.718620123470743, 24.508996832027783 ], [ -77.718623673612797, 24.508924814035588 ], [ -77.718624677030945, 24.50885349322261 ], [ -77.718622968435284, 24.508784133251723 ], [ -77.718618196584501, 24.508718177611296 ], [ -77.718603965473761, 24.508584076475493 ], [ -77.718599653560389, 24.508523567728446 ], [ -77.718599737103716, 24.5084946750939 ], [ -77.718603532485787, 24.508414344085992 ], [ -77.718603032124165, 24.508388519044384 ], [ -77.718600658775202, 24.508363271883532 ], [ -77.718586828313065, 24.50828846953808 ], [ -77.718580118796211, 24.508238288227059 ], [ -77.718575549066387, 24.50818141419759 ], [ -77.718572590015839, 24.508119482199323 ], [ -77.718565132202357, 24.50762778997812 ], [ -77.718562029421335, 24.507556803556117 ], [ -77.718548850237823, 24.507373708000951 ], [ -77.718545663015206, 24.507299845058856 ], [ -77.71853992008559, 24.506922945979998 ], [ -77.718535202133737, 24.506776077780053 ], [ -77.718530606352701, 24.506705463606167 ], [ -77.718523745020576, 24.506637709436514 ], [ -77.718501508124035, 24.50645260503217 ], [ -77.718498246341213, 24.506397875027393 ], [ -77.71849824184963, 24.50634301748584 ], [ -77.718501784805127, 24.506246983830405 ], [ -77.718503286788291, 24.506124303115655 ], [ -77.718502266302082, 24.506063296209614 ], [ -77.718495231595142, 24.505913612718814 ], [ -77.718493913766594, 24.505789226593816 ], [ -77.718472095485012, 24.50546765420539 ], [ -77.71845620698258, 24.505296665353946 ], [ -77.718449285463308, 24.505156328720819 ], [ -77.718442832864582, 24.504941693563911 ], [ -77.718435730783966, 24.504801600119858 ], [ -77.718418655607039, 24.504625344658471 ], [ -77.718398985197254, 24.504384072683646 ], [ -77.718395771923497, 24.504328857057626 ], [ -77.71839436606011, 24.504189631831938 ], [ -77.718392050203278, 24.504140435492488 ], [ -77.718387793087132, 24.504091307795822 ], [ -77.718368436189394, 24.503928858153696 ], [ -77.718345935188154, 24.503765103719054 ], [ -77.718325602719986, 24.503572747937348 ], [ -77.718304223714554, 24.503406588218631 ], [ -77.718283615463648, 24.503212678807046 ], [ -77.718245167569506, 24.502932943207863 ], [ -77.718220074928681, 24.502767461914637 ], [ -77.718201768161492, 24.502628968998277 ], [ -77.718191115938808, 24.502561029530227 ], [ -77.718162683361754, 24.502394830055657 ], [ -77.718091403840631, 24.502001242555171 ], [ -77.718054499252105, 24.501768443830624 ], [ -77.718029485663024, 24.501568940726298 ], [ -77.718018694201533, 24.501504498435661 ], [ -77.718004621194282, 24.501442875402923 ], [ -77.717983323037217, 24.501372982469832 ], [ -77.717938427934257, 24.501235302989034 ], [ -77.717891283449816, 24.50106484869864 ], [ -77.717873539926302, 24.501010531600183 ], [ -77.717852022580317, 24.500960165097577 ], [ -77.717836198756586, 24.500931449740733 ], [ -77.717818963679548, 24.500904179586918 ], [ -77.71780015026259, 24.50087884018841 ], [ -77.717768870026049, 24.500845149137263 ], [ -77.71770648202957, 24.500784332581841 ], [ -77.717682730573486, 24.500752256741531 ], [ -77.717668258714255, 24.500716329992386 ], [ -77.717663043095712, 24.500678124244537 ], [ -77.717664068073432, 24.500652332762861 ], [ -77.717667450230479, 24.500625685428645 ], [ -77.717672862580073, 24.500598675150727 ], [ -77.71768752757707, 24.500544213983439 ], [ -77.71769813039235, 24.500495031748478 ], [ -77.717705630426678, 24.500443769136879 ], [ -77.717709892034364, 24.500392844920299 ], [ -77.717710493007331, 24.500363370859102 ], [ -77.717708355915235, 24.50033399569995 ], [ -77.717703327146296, 24.500305093826054 ], [ -77.717696214285894, 24.50027592137609 ], [ -77.717687018232297, 24.50024694918973 ], [ -77.717662934399542, 24.500190304512241 ], [ -77.71764852632073, 24.500162407228043 ], [ -77.717614919447598, 24.500108771477528 ], [ -77.717576878490249, 24.500056860485074 ], [ -77.717536652830162, 24.50000575545922 ], [ -77.717479132804201, 24.499925028293369 ], [ -77.717442586643529, 24.499869746948971 ], [ -77.717386537159683, 24.499774786543146 ], [ -77.717356062711971, 24.499731163374989 ], [ -77.717335493986909, 24.499708075770776 ], [ -77.717313271463411, 24.499687046461535 ], [ -77.717289385260003, 24.499668724491123 ], [ -77.717263848851417, 24.499652894058038 ], [ -77.71722243561851, 24.499635140199558 ], [ -77.717178764919282, 24.499623765598155 ], [ -77.717080122714577, 24.499604674412456 ], [ -77.717045561830616, 24.499596115870972 ], [ -77.71699463364223, 24.499578299879488 ], [ -77.716947733499552, 24.499553697540151 ], [ -77.716907541975431, 24.499522979963182 ], [ -77.716873601827359, 24.499490209798449 ], [ -77.716854084131171, 24.499469270370721 ], [ -77.716810238260479, 24.499417587996234 ], [ -77.716798521534244, 24.499406490485939 ], [ -77.716783763112417, 24.499397352368828 ], [ -77.716774015492803, 24.499396263548331 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 437, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 381 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.719538560118693, 24.515876303303632 ], [ -77.719531288256732, 24.515866525593683 ], [ -77.719489743869815, 24.515799314166216 ], [ -77.719461124443157, 24.515757501223696 ], [ -77.719438095232547, 24.515727905714154 ], [ -77.71938481794966, 24.515665338282954 ], [ -77.719325406071718, 24.515600920384014 ], [ -77.719263084550548, 24.515538244184544 ], [ -77.71923138210586, 24.515508926516024 ], [ -77.719199313148508, 24.515482438441964 ], [ -77.7191676484331, 24.51545858462212 ], [ -77.719137184765188, 24.515437214668836 ], [ -77.719107720023871, 24.515418579504281 ], [ -77.719017856156086, 24.515364247358502 ], [ -77.718955796943021, 24.515329753483215 ], [ -77.718891928522893, 24.515296787193162 ], [ -77.718793721102813, 24.515249498770171 ], [ -77.718726600781395, 24.515219330190426 ], [ -77.718585794352208, 24.515165477733259 ], [ -77.718499948648713, 24.515130244933708 ], [ -77.718450525138365, 24.515107842631895 ], [ -77.71841919639283, 24.515091505761642 ], [ -77.718374568987869, 24.515065806327058 ], [ -77.718334198698983, 24.515037207802443 ], [ -77.718310595464899, 24.515015617097152 ], [ -77.718289353003385, 24.51499256662855 ], [ -77.718270141632715, 24.514968694734325 ], [ -77.718253220067709, 24.514943470963573 ], [ -77.71823839876383, 24.514917463363371 ], [ -77.718225507939479, 24.514891227721307 ], [ -77.718215074007489, 24.514864131419461 ], [ -77.71820738892022, 24.514836596202606 ], [ -77.718203184804693, 24.514807925700257 ], [ -77.718202575746901, 24.514778589062534 ], [ -77.718205139538753, 24.514749036641195 ], [ -77.7182127725237, 24.514702862041649 ], [ -77.718224523385956, 24.51465577527733 ], [ -77.718270469517762, 24.514515105813604 ], [ -77.718305598136965, 24.514383984341904 ], [ -77.718319008187535, 24.514315743091483 ], [ -77.718328244665301, 24.5142445904408 ], [ -77.718333721693611, 24.514171815330041 ], [ -77.718335565934865, 24.514098584918514 ], [ -77.718333609404169, 24.514026016510414 ], [ -77.718319672042512, 24.513779859345437 ], [ -77.718308453881235, 24.513621914346746 ], [ -77.71828352383551, 24.513396928896569 ], [ -77.718260347301168, 24.513170251136273 ], [ -77.718250741990929, 24.513092302303846 ] ], [ [ -77.718249550277804, 24.513080014382894 ], [ -77.718247952346857, 24.513062364625874 ], [ -77.718249157885538, 24.513051449775819 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 441, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 693 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.722726104337482, 24.520637032743739 ], [ -77.722633323646448, 24.520611942514066 ], [ -77.722597726106684, 24.520603770350647 ], [ -77.722528071637868, 24.520592238273846 ], [ -77.722448027254472, 24.520584964319841 ], [ -77.722362023447488, 24.52058310087989 ], [ -77.722309033625521, 24.520584719947699 ], [ -77.722215868449098, 24.520590304546346 ], [ -77.722125697357484, 24.520599195115739 ], [ -77.722044258788756, 24.520611900831874 ], [ -77.721975761350052, 24.520628923514529 ], [ -77.721833001983384, 24.520677389272997 ], [ -77.721783857849147, 24.520690783145724 ], [ -77.72173304284847, 24.520701621327916 ], [ -77.721681580162453, 24.520710522514335 ], [ -77.72164265795783, 24.520715997589509 ], [ -77.721571157451109, 24.520720832720674 ], [ -77.721498717306631, 24.520719208750862 ], [ -77.721427696500228, 24.520711222938196 ], [ -77.721360572585581, 24.520696399614348 ], [ -77.721300114170347, 24.520673690183912 ], [ -77.721270135592661, 24.520657229808158 ], [ -77.721242185410901, 24.520638908443058 ], [ -77.721215703076339, 24.520619635740399 ], [ -77.721190580791117, 24.520599228625006 ], [ -77.721166773639439, 24.520578401414955 ], [ -77.721144689456523, 24.520556788777647 ], [ -77.721118648194704, 24.520526269216763 ], [ -77.721073729735579, 24.520467134379377 ], [ -77.721042320141663, 24.520431831144471 ], [ -77.721027324564645, 24.520418435609514 ], [ -77.721012542786625, 24.52040916253117 ], [ -77.720998391625955, 24.520404194168258 ], [ -77.720985076796779, 24.520404450800232 ], [ -77.720973419359368, 24.520410142473107 ], [ -77.720961894872602, 24.520425942503433 ], [ -77.720954833216155, 24.520448760679404 ], [ -77.720951690010978, 24.520475887651319 ], [ -77.720951655874998, 24.520567434089017 ], [ -77.720947865882792, 24.520605192449313 ], [ -77.720938297028411, 24.520638115664134 ], [ -77.720921913554264, 24.520661178173548 ], [ -77.720908585250385, 24.520668196308986 ], [ -77.720893169261785, 24.520670099795272 ], [ -77.720866773165454, 24.520665285094609 ], [ -77.720839133800808, 24.520651449060988 ], [ -77.720812841909066, 24.520628465010383 ], [ -77.720769641927077, 24.520577633154531 ], [ -77.720735252621324, 24.520529716582221 ], [ -77.720687159515975, 24.520448511403163 ], [ -77.720643341493044, 24.520361441229216 ], [ -77.720600044492983, 24.520262986819329 ], [ -77.720577347659017, 24.520217783565045 ], [ -77.720515407023541, 24.520121766234784 ], [ -77.720483504254574, 24.520069610145363 ], [ -77.720451890743064, 24.520014369536792 ], [ -77.720393735608198, 24.519893922057719 ], [ -77.720356151893384, 24.519810241673376 ], [ -77.720336191327718, 24.5197691059759 ], [ -77.720269715098382, 24.519651934834695 ], [ -77.720239765266825, 24.519590502142183 ], [ -77.720226224960541, 24.519558999946018 ], [ -77.72020858743825, 24.519509459816955 ], [ -77.720184764116922, 24.519423796392616 ], [ -77.720173265681268, 24.519360771476183 ], [ -77.720166256127143, 24.519295708982657 ], [ -77.720162521830503, 24.519230272128791 ], [ -77.720160687470667, 24.519130554909154 ], [ -77.720158094034446, 24.519076997542161 ], [ -77.720152098678241, 24.519024019623991 ], [ -77.720146187763675, 24.518989531657464 ], [ -77.720126970104815, 24.518897018010243 ], [ -77.720114722474221, 24.518851966284029 ], [ -77.72009303355, 24.518786860209556 ], [ -77.720045436314663, 24.518661006677608 ], [ -77.720034805651594, 24.518629105400599 ], [ -77.720025583546871, 24.518596769305987 ], [ -77.720015009477692, 24.518540000494415 ], [ -77.720010247508355, 24.518480972607112 ], [ -77.72001058347827, 24.518421284303745 ], [ -77.720027237345334, 24.518166076642959 ], [ -77.720029031280916, 24.518131308102078 ], [ -77.720028760888042, 24.518079270514122 ], [ -77.720024160615466, 24.518028408203328 ], [ -77.720008965612436, 24.517947212849634 ], [ -77.719997000052842, 24.51790042153495 ], [ -77.719961004559423, 24.517786577580463 ], [ -77.719955379309141, 24.517758353188924 ], [ -77.719952306172516, 24.517730024174469 ], [ -77.719951388992627, 24.517702072754069 ], [ -77.719951619859657, 24.517616529877486 ], [ -77.719938560152031, 24.517403249867115 ], [ -77.719939983083449, 24.517379028618311 ], [ -77.719945478976385, 24.517365307464754 ], [ -77.719951244363855, 24.51736392537806 ], [ -77.719957764336201, 24.517368905303726 ], [ -77.719972695234532, 24.517393504155809 ], [ -77.719984998560676, 24.51742614623743 ], [ -77.720009269243008, 24.517507652508854 ], [ -77.720040365324877, 24.517602892933574 ], [ -77.720050516287586, 24.517616222566129 ], [ -77.720056049011419, 24.517611866263518 ], [ -77.720061678753325, 24.517585438297075 ], [ -77.720062836681706, 24.517540358311621 ], [ -77.7200596970698, 24.517483288249522 ], [ -77.720052549175094, 24.517420661210991 ], [ -77.720041922105267, 24.517358477128273 ], [ -77.720034149881428, 24.517322297670486 ], [ -77.720012837351319, 24.517234734120237 ], [ -77.720003210107635, 24.517203284463346 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 442, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 47 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.724216105769329, 24.52319556262772 ], [ -77.724210023276953, 24.523195068985608 ], [ -77.724205763465903, 24.523192197059309 ], [ -77.724201437179445, 24.523186800551024 ], [ -77.724194803121065, 24.523169860760429 ], [ -77.724190978094626, 24.523148178282909 ], [ -77.724188082824455, 24.523099088257268 ], [ -77.724185096824471, 24.523082792473094 ], [ -77.724182425234815, 24.523075667408644 ], [ -77.724173895731198, 24.523064859670772 ], [ -77.724152775440558, 24.523048124184335 ], [ -77.724146642642069, 24.523035816731127 ], [ -77.72413902403018, 24.522998357409652 ], [ -77.724134498317738, 24.522984657302004 ], [ -77.724126322750323, 24.52297417156565 ], [ -77.724105058729265, 24.522957559476847 ], [ -77.724098487552951, 24.522944223872894 ], [ -77.724095480891719, 24.522927794851523 ], [ -77.724094456812296, 24.522909600496448 ], [ -77.724097813816385, 24.522811547740183 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 444, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 1072 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.727614367810475, 24.529990734730269 ], [ -77.727608868324779, 24.52998998450229 ], [ -77.727597902590105, 24.529994863407207 ], [ -77.727564551736847, 24.530018667883862 ], [ -77.727351610590333, 24.530184577474799 ], [ -77.7271763986857, 24.530325675599514 ], [ -77.727144157251857, 24.530349471023857 ], [ -77.727084719322775, 24.530390506822041 ], [ -77.727025311038076, 24.530428048930695 ], [ -77.726963762068081, 24.530462122687414 ], [ -77.726901327359229, 24.53049367526874 ], [ -77.726869521608251, 24.530507949072387 ], [ -77.726837157105194, 24.53052049932888 ], [ -77.7267715234956, 24.530541215380794 ], [ -77.726721671488903, 24.530551535404033 ], [ -77.726672308165732, 24.530557095859717 ], [ -77.726640276039319, 24.53055809778779 ], [ -77.726598596006781, 24.530554372021033 ], [ -77.726558893166157, 24.530544334760716 ], [ -77.726522858146851, 24.530527539795813 ], [ -77.726487855291765, 24.530500268710398 ], [ -77.72645705475567, 24.530466793996499 ], [ -77.726437977233985, 24.530442406099716 ], [ -77.726420231015538, 24.530416029867233 ], [ -77.726387659899927, 24.530359783707841 ], [ -77.726365955704352, 24.530314540774427 ], [ -77.726332772836088, 24.530236934489487 ], [ -77.726308880344476, 24.530173452444071 ], [ -77.726287948700019, 24.530109535596861 ], [ -77.726279498248189, 24.530076950749333 ], [ -77.726270809742772, 24.530025929850105 ], [ -77.726266655034536, 24.529973434634346 ], [ -77.72626218861096, 24.529818805102813 ], [ -77.726258236922021, 24.529757541648554 ], [ -77.726251804086246, 24.52969681590767 ], [ -77.726241981906966, 24.529637807974453 ], [ -77.726215908305832, 24.529531763774148 ], [ -77.726175133775087, 24.529392793669743 ], [ -77.726110588923632, 24.529185016535894 ], [ -77.726090476542737, 24.529114406785034 ], [ -77.726075569000557, 24.529050054625344 ], [ -77.72603825388201, 24.528850584214219 ], [ -77.725994901186397, 24.52864569024343 ], [ -77.725980611685131, 24.528591908922444 ], [ -77.725958810471539, 24.528523089425303 ], [ -77.725944008032272, 24.528469773882559 ], [ -77.725903951255432, 24.528306098016049 ], [ -77.725813423532642, 24.527988387559351 ], [ -77.725768847331636, 24.527851249657882 ], [ -77.725726890617992, 24.527711355016152 ], [ -77.72567918019493, 24.527562006238302 ], [ -77.725658122786328, 24.527506818777681 ], [ -77.725600534488436, 24.527380968262978 ], [ -77.725566616798261, 24.527300444200659 ], [ -77.72553428643117, 24.527218536473832 ], [ -77.725471994554411, 24.527052389228263 ], [ -77.72543057233834, 24.526934227011296 ], [ -77.725403253672226, 24.526847896865604 ], [ -77.725352269788303, 24.526671470468393 ], [ -77.725322326244935, 24.526587290350886 ], [ -77.725302530969316, 24.526538193496961 ], [ -77.725272775173892, 24.526475853745271 ], [ -77.725256693533638, 24.526445587338888 ], [ -77.725221654745965, 24.526387758001821 ], [ -77.725146198957049, 24.526276621154075 ], [ -77.725107007257847, 24.526222269187084 ], [ -77.724943400688389, 24.526011203044366 ], [ -77.72489092649937, 24.525947458155372 ], [ -77.724856541685284, 24.52591218588244 ], [ -77.724831159786916, 24.525891409406515 ], [ -77.72480410073392, 24.525872463598144 ], [ -77.724775638512455, 24.525854965161301 ], [ -77.724745646460093, 24.525839599781236 ], [ -77.724713864065322, 24.525826261214277 ], [ -77.724656520109164, 24.525810179907204 ], [ -77.724594845375009, 24.525801109908596 ], [ -77.724531018277446, 24.525798321402778 ], [ -77.724492051157043, 24.525799284140156 ], [ -77.724419884100385, 24.525803016586131 ], [ -77.72434587819231, 24.525808945021016 ], [ -77.724272219033978, 24.525817624366827 ], [ -77.724201227872015, 24.525829960968888 ], [ -77.724135544855031, 24.525847246920534 ], [ -77.724036320542041, 24.52588418806431 ], [ -77.723999890264025, 24.525893387184652 ], [ -77.72396138847094, 24.52589976102394 ], [ -77.723921470932979, 24.525903090555946 ], [ -77.723860120490613, 24.525900468774246 ], [ -77.723799533616301, 24.52588874349232 ], [ -77.72376086473659, 24.525876388098929 ], [ -77.723724101183592, 24.525861731289233 ], [ -77.723689329195565, 24.525845314908508 ], [ -77.723612007605794, 24.525804611885974 ], [ -77.723575122780233, 24.525783153793768 ], [ -77.723529123648447, 24.525751878717934 ] ], [ [ -77.723528431952388, 24.52574952908256 ], [ -77.723530127964281, 24.525739169433422 ], [ -77.72353559061952, 24.525647407738354 ], [ -77.723537338741053, 24.525593303947794 ], [ -77.723536117032268, 24.525461074384999 ], [ -77.723539474934825, 24.525424982256911 ], [ -77.723546892324109, 24.525391149861566 ], [ -77.723558366505216, 24.525361054819804 ], [ -77.723572959637025, 24.525334726555943 ], [ -77.723590514514314, 24.525313697448894 ], [ -77.723610773320601, 24.525299366663248 ], [ -77.723633109031795, 24.525290199372868 ], [ -77.723670345098668, 24.525284122988072 ], [ -77.72370910470822, 24.525286258508398 ], [ -77.723786013971306, 24.525302617753514 ], [ -77.723823727941848, 24.52530505729705 ], [ -77.723862767825779, 24.525301786592451 ], [ -77.723900688408889, 24.525292233551916 ], [ -77.723927424966661, 24.525280687194858 ], [ -77.723952691880655, 24.525266333521955 ], [ -77.72397635440359, 24.525249069556551 ], [ -77.724020611702684, 24.525209915063876 ], [ -77.724060819396485, 24.525166686476023 ], [ -77.724078279950646, 24.525143417207719 ], [ -77.724098825319516, 24.525104720352616 ], [ -77.724113501096312, 24.525063883057925 ], [ -77.724138149969406, 24.524981655954406 ], [ -77.724168201310604, 24.524902154392993 ], [ -77.724183622689083, 24.52484941430577 ], [ -77.724188469998367, 24.52480904277229 ], [ -77.724186496399696, 24.52476970017015 ], [ -77.724172219474852, 24.524697642183227 ], [ -77.724172165575951, 24.524659800874254 ], [ -77.724180752571755, 24.524621975082017 ], [ -77.724191368861767, 24.524598060067813 ], [ -77.724205025050722, 24.524574610076968 ], [ -77.724221388761933, 24.524552153067699 ], [ -77.72423980961517, 24.524530045847101 ], [ -77.724301220244598, 24.524465388129645 ], [ -77.724319615945021, 24.524441109399014 ], [ -77.724335730822887, 24.52441519284805 ], [ -77.72435359472064, 24.524368059870699 ], [ -77.724363046794039, 24.524310567111083 ], [ -77.724364303537087, 24.524247531570282 ], [ -77.724357823988981, 24.524183692616745 ], [ -77.724349977204966, 24.524142808437876 ], [ -77.72432310140826, 24.524030648825821 ], [ -77.724310860065927, 24.523971546694916 ], [ -77.72430837173259, 24.523948685843266 ], [ -77.72430864302379, 24.523931425783175 ], [ -77.724311135848708, 24.523920617301574 ], [ -77.724315656169978, 24.52391655625793 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 460, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 46 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.730006788025065, 24.629422712780222 ], [ -77.730004490590986, 24.629510913696837 ] ], [ [ -77.729862450318237, 24.629280311084266 ], [ -77.729862910256003, 24.629264835079404 ], [ -77.729866347210262, 24.629252166507904 ], [ -77.729869688943126, 24.629246578584741 ], [ -77.729874633270427, 24.629241982001201 ], [ -77.729887432466597, 24.629236877498666 ], [ -77.729923473774122, 24.629235536658229 ], [ -77.729975310159304, 24.629236959974222 ], [ -77.729994620344613, 24.629240096495469 ], [ -77.730004109248981, 24.629245089941662 ], [ -77.730007114113604, 24.629249006305884 ], [ -77.730010456744765, 24.629259136100568 ], [ -77.730011846438487, 24.629277449754643 ], [ -77.73000725425068, 24.629404841738385 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 461, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 176 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.730648963321173, 24.629793958563795 ], [ -77.730649120284212, 24.629793966045199 ], [ -77.7306570101874, 24.629794530306217 ], [ -77.730675314259585, 24.629799326933025 ], [ -77.730800566359648, 24.629841114086151 ], [ -77.730835597960805, 24.629854111681979 ], [ -77.73090947540976, 24.629886054878614 ], [ -77.730960263460986, 24.62990970727618 ], [ -77.731032426026104, 24.629949833458241 ], [ -77.731090908147721, 24.629987114645839 ], [ -77.731111506517209, 24.629998639107519 ], [ -77.731141324296416, 24.630010356282135 ], [ -77.731174313128591, 24.630019324831729 ], [ -77.731209364492642, 24.630026507510131 ], [ -77.731318155863477, 24.63004489944392 ], [ -77.731427922804627, 24.630068948671358 ], [ -77.73157613943664, 24.630090731056473 ], [ -77.731611532160542, 24.630097616494147 ], [ -77.731644658434945, 24.630106466632785 ], [ -77.731662769369379, 24.630112801691936 ], [ -77.731732266633031, 24.630140332003371 ], [ -77.731756386398416, 24.630152293323256 ], [ -77.731777889371358, 24.630166523111498 ], [ -77.731796105408677, 24.630183784056403 ], [ -77.731842713598908, 24.630242536414638 ], [ -77.731866059914807, 24.630266122601444 ], [ -77.731891377134474, 24.630288246283847 ], [ -77.731937888306632, 24.630321559595323 ], [ -77.73196303394802, 24.630341658143209 ], [ -77.731986499739918, 24.63036479437439 ], [ -77.732000395779039, 24.630382094487885 ], [ -77.732023823841658, 24.630418950923865 ], [ -77.732033024386766, 24.630437983000093 ], [ -77.732043625405424, 24.630469588799304 ], [ -77.732049503082365, 24.630499349932858 ], [ -77.732051843193673, 24.630524442663781 ], [ -77.732051749768871, 24.630542114299669 ], [ -77.732050117529539, 24.630549791800654 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 478, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 648 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.756275771822686, 24.693701599736023 ], [ -77.756276979158898, 24.693690539021738 ], [ -77.756273329303909, 24.693665346357989 ], [ -77.756264365914035, 24.693628949328339 ], [ -77.756255033316506, 24.693599306900403 ], [ -77.756161847478822, 24.693338840258974 ], [ -77.756071417672416, 24.693069095644152 ], [ -77.756025129282477, 24.69294785157491 ], [ -77.756006023014734, 24.69290564563077 ], [ -77.755926362211923, 24.692755043618497 ], [ -77.755896151868924, 24.692693321242416 ], [ -77.755830779669068, 24.692529607111318 ], [ -77.755787222157537, 24.692435378772963 ], [ -77.755739633905378, 24.692344642784473 ], [ -77.755688467663433, 24.692257005755927 ], [ -77.755652658121278, 24.692200378531727 ], [ -77.755619781578474, 24.692140966481638 ], [ -77.755598643321562, 24.692093175154312 ], [ -77.755579954770383, 24.692043260927274 ], [ -77.755568423995399, 24.692009423777758 ], [ -77.755550887084411, 24.691945290037985 ], [ -77.755507630508532, 24.691744780680388 ], [ -77.755489356080716, 24.691681284242041 ], [ -77.755417180040908, 24.691480113351698 ], [ -77.755371829492077, 24.691343350456968 ], [ -77.755328697782048, 24.691204409832164 ], [ -77.755282878312656, 24.691068266935705 ], [ -77.755247412825241, 24.690952028221268 ], [ -77.755228600306566, 24.69089483397072 ], [ -77.75520393795874, 24.690828482893867 ], [ -77.755187321820955, 24.690776712150694 ], [ -77.755157552550713, 24.690670129483646 ], [ -77.755130317427941, 24.690583605374801 ], [ -77.755058919329187, 24.690380535887456 ], [ -77.755009135594449, 24.690246781081072 ], [ -77.754969786690054, 24.690148253769326 ], [ -77.754916928920395, 24.689993872719111 ], [ -77.754897149814468, 24.689944142110829 ], [ -77.754866722977496, 24.689881500125345 ], [ -77.754850061923918, 24.689851281389817 ], [ -77.754778235328729, 24.689735687965925 ], [ -77.754729459503764, 24.689644909202034 ], [ -77.754672368872505, 24.689519737533807 ], [ -77.75464348174792, 24.689460504584947 ], [ -77.754600636600429, 24.68937793574009 ], [ -77.754561435918077, 24.689306541391741 ], [ -77.754551483483027, 24.689284746485981 ], [ -77.754538420182186, 24.689245697168285 ], [ -77.754536246259207, 24.689228823105751 ], [ -77.754537479646089, 24.689214400081781 ], [ -77.754541788864501, 24.689203203484968 ], [ -77.75454819924235, 24.689194627697479 ], [ -77.7545743159626, 24.689172487520487 ], [ -77.754582805940387, 24.68916287597601 ], [ -77.754589419337492, 24.689151313717907 ], [ -77.754602938084204, 24.689109378281863 ], [ -77.754612418903704, 24.689085716696191 ], [ -77.754626385011434, 24.689063150444333 ], [ -77.754638262536091, 24.689050205536756 ], [ -77.754677302420077, 24.689016144752237 ], [ -77.754690591198056, 24.689001602538671 ], [ -77.754703432615059, 24.688983526998236 ], [ -77.75471544309039, 24.688962442129185 ], [ -77.75473201790571, 24.688919781028325 ], [ -77.754744466758879, 24.688870183032119 ], [ -77.754753635862997, 24.688816614202935 ], [ -77.754760193564579, 24.688761954090811 ], [ -77.754768875781792, 24.68863747693916 ], [ -77.754774108468325, 24.688608116545861 ], [ -77.754785938382284, 24.688593860771391 ], [ -77.754797330816757, 24.688594986313248 ], [ -77.754810571984024, 24.688604628101043 ], [ -77.754825429220517, 24.688621329213412 ], [ -77.754841610573735, 24.688643489077105 ], [ -77.754858320136321, 24.688670584504358 ], [ -77.754874958732003, 24.688701097358457 ], [ -77.754898526033472, 24.688751809535745 ], [ -77.754940950769409, 24.688850797471872 ], [ -77.754960260056464, 24.68888870341771 ], [ -77.754971930070298, 24.688906587981201 ], [ -77.75498180525021, 24.688917807458296 ], [ -77.754991740616745, 24.688919616976854 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 481, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 230 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.756572573398131, 24.695585796742051 ], [ -77.756554162424649, 24.695547376202516 ], [ -77.756519261079248, 24.695449993252538 ], [ -77.756508512736858, 24.695411084613443 ], [ -77.756500128760322, 24.695371163111194 ], [ -77.756494995786767, 24.695332070812015 ], [ -77.756495175449828, 24.695293971764443 ], [ -77.756501678354184, 24.695258737419241 ], [ -77.756514966233894, 24.695228476731319 ], [ -77.756542618174947, 24.695198717157147 ], [ -77.756577204211709, 24.69518026789887 ], [ -77.756640375539121, 24.695158891893556 ], [ -77.756667289065035, 24.695153759072646 ], [ -77.75669491854822, 24.6951533583388 ], [ -77.756722418674016, 24.695157769675575 ], [ -77.756748388968859, 24.695166881268829 ], [ -77.756771997592864, 24.695180452350641 ], [ -77.756814712484626, 24.695213880560026 ], [ -77.756851975500908, 24.695249142667247 ], [ -77.756885083809053, 24.695276413764525 ], [ -77.75689909752748, 24.6952848340635 ], [ -77.756910360604508, 24.695288785898864 ], [ -77.756918429272361, 24.695286650014324 ], [ -77.756921998278997, 24.695278203598402 ], [ -77.756920725366243, 24.695265052848445 ], [ -77.756906555340962, 24.695229105989153 ], [ -77.75681500982698, 24.695038149347241 ], [ -77.756783284026071, 24.69497813958893 ], [ -77.756766060627157, 24.69493766132689 ], [ -77.756721956939955, 24.694811289505452 ], [ -77.756685499712475, 24.694717812128598 ], [ -77.756675673041585, 24.694686778404282 ], [ -77.75665383499701, 24.694597895111059 ], [ -77.756644753029462, 24.694570376568112 ], [ -77.756616600726815, 24.694512542474357 ], [ -77.756535632875313, 24.694367645756095 ], [ -77.756516003788022, 24.69432853355417 ], [ -77.756498627675455, 24.694288973265859 ], [ -77.756484140544899, 24.694250407869383 ], [ -77.756472078865542, 24.694207689814938 ], [ -77.756464603085789, 24.694169180708705 ], [ -77.756460946044257, 24.694137655516261 ], [ -77.756460447479313, 24.694115808404714 ], [ -77.756462792979448, 24.694106068291749 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 485, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 1463 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.764470430219419, 24.707134441577448 ], [ -77.764473390169016, 24.707020020574479 ] ], [ [ -77.764476991515778, 24.706880770184078 ], [ -77.764359002294356, 24.706759792539334 ], [ -77.764275131087842, 24.70666748541483 ], [ -77.764218155440929, 24.706600074484772 ], [ -77.764113202571338, 24.706470545638663 ], [ -77.764014007902745, 24.706338623895924 ], [ -77.763973165998337, 24.70629195686832 ], [ -77.763890124835157, 24.706208481897225 ], [ -77.763830162289935, 24.706152253552119 ], [ -77.763810952715914, 24.706131076106445 ], [ -77.763772808452302, 24.706085651901418 ], [ -77.763571683745013, 24.705835782161696 ], [ -77.763525394456735, 24.705788502879017 ], [ -77.763449729360374, 24.705722841984691 ], [ -77.76340095173876, 24.705677192390048 ], [ -77.763308483654995, 24.705581292850074 ], [ -77.763244159789053, 24.705504842311722 ], [ -77.76322379498157, 24.705478590302899 ], [ -77.763198667306412, 24.70544151120804 ], [ -77.763151129359898, 24.705365015698806 ], [ -77.763114115176933, 24.705309328857965 ], [ -77.763061662547486, 24.705222678628182 ], [ -77.763011064939121, 24.705134208450485 ], [ -77.762974939190002, 24.705077560148258 ], [ -77.762918356106852, 24.704994556881644 ], [ -77.762878085531, 24.704941519733744 ], [ -77.762814412045344, 24.704864683605763 ], [ -77.762768184740821, 24.704816821262426 ], [ -77.762646174660617, 24.704703123640407 ], [ -77.762601708054035, 24.704653743295939 ], [ -77.762571488727829, 24.704613814146327 ], [ -77.762485358258445, 24.704490594115391 ], [ -77.762247664932559, 24.704124808948915 ], [ -77.76219509462382, 24.704038383138734 ], [ -77.762161247900536, 24.703979806708208 ], [ -77.762052863466565, 24.70376544951236 ], [ -77.761985391903906, 24.703648107031306 ], [ -77.76195286929736, 24.70358838460827 ], [ -77.761937850364134, 24.703557567728883 ], [ -77.761915694315945, 24.70350331070987 ], [ -77.761829010484263, 24.703255703746276 ], [ -77.761785594008288, 24.703117030214813 ], [ -77.7617440711809, 24.702991650915678 ], [ -77.761684575759659, 24.70283801374757 ], [ -77.761594915809454, 24.702578052006512 ], [ -77.761555218358737, 24.702480472973132 ], [ -77.761513588631843, 24.702384811724531 ], [ -77.761476697518077, 24.702284802158761 ], [ -77.761458874942832, 24.702223116332192 ], [ -77.76142804745723, 24.702095571801411 ], [ -77.761410896821815, 24.702033303176098 ], [ -77.761382300751421, 24.701948143339685 ], [ -77.761363128008242, 24.701898646014676 ], [ -77.761334156442018, 24.701835846816316 ], [ -77.761318509586417, 24.70180533064973 ], [ -77.761284574828224, 24.701746833148349 ], [ -77.761230582486405, 24.70166164128759 ], [ -77.761115451704626, 24.701497694105907 ], [ -77.761097210514492, 24.701469670278282 ], [ -77.761071401018057, 24.701425924758958 ], [ -77.760995676632845, 24.70129345332186 ], [ -77.760944157352981, 24.7012063628585 ], [ -77.76089494674342, 24.701117027189593 ], [ -77.760863755440127, 24.701056153640078 ], [ -77.760801554293224, 24.700911720743768 ], [ -77.76077817294302, 24.700865871884478 ], [ -77.760760592014591, 24.700837275813647 ], [ -77.760723292167384, 24.700781693860378 ], [ -77.760666482708771, 24.700698943177152 ], [ -77.760568628326595, 24.700564099313258 ], [ -77.760474431884205, 24.70042559906798 ], [ -77.760396408710193, 24.700317401382577 ], [ -77.760356410323865, 24.700264157395644 ], [ -77.760232427543272, 24.700107880776134 ], [ -77.760153546478179, 24.700000423857855 ], [ -77.76008215287095, 24.699885990588999 ], [ -77.760024122601948, 24.699804537770493 ], [ -77.759963199757664, 24.699725345574969 ], [ -77.759921023855085, 24.69967398251217 ], [ -77.759876666842985, 24.699624507951196 ], [ -77.759808051724946, 24.699552215202011 ], [ -77.759764689147872, 24.699501871414213 ], [ -77.75974437105279, 24.699475394520459 ], [ -77.759725095901757, 24.699448256555449 ], [ -77.759698488701318, 24.699405184450246 ], [ -77.759656830228323, 24.69933130501478 ], [ -77.759613742535734, 24.699251058892337 ], [ -77.759590583967707, 24.699212329357103 ], [ -77.759571664549512, 24.699184865698076 ], [ -77.759473131939288, 24.699050181789591 ], [ -77.759432613428359, 24.698997289830604 ], [ -77.759411702445178, 24.698971281290259 ], [ -77.759324517353619, 24.698871018430715 ], [ -77.759282898406482, 24.698819046995396 ], [ -77.759224364182572, 24.698737619595626 ], [ -77.759128963099371, 24.698600197067506 ], [ -77.759089229716068, 24.698547263294561 ], [ -77.759051735832742, 24.698492462994547 ], [ -77.75898534404503, 24.698376638458498 ], [ -77.758951348201393, 24.6983213214682 ], [ -77.758904965488355, 24.69823692055121 ], [ -77.758877958537639, 24.698180341748408 ], [ -77.758861378332426, 24.69813678033761 ], [ -77.758838763245151, 24.698065282460977 ], [ -77.7588171758306, 24.698009662544646 ], [ -77.75879769047377, 24.697967924331049 ], [ -77.758774741213202, 24.697927377668435 ], [ -77.75875696804529, 24.697901906741375 ], [ -77.758718125790722, 24.69785208135221 ], [ -77.758572405576899, 24.697676764379889 ], [ -77.75837531610189, 24.697452652400763 ], [ -77.758333424965244, 24.697400928481446 ], [ -77.758273227061409, 24.697320673770331 ], [ -77.758252198398907, 24.697295001947627 ], [ -77.758208315697274, 24.697245005741518 ], [ -77.758116925591878, 24.697148193788035 ], [ -77.758073859458833, 24.697097530731835 ], [ -77.757991576473756, 24.696992907326056 ], [ -77.757952476402679, 24.696938842506786 ], [ -77.757844117121536, 24.69676845786379 ], [ -77.757824857241843, 24.696741307883059 ], [ -77.757804804149771, 24.696714603513399 ], [ -77.757762528534172, 24.696663318375638 ], [ -77.757717787043134, 24.696614173975561 ], [ -77.757694132605053, 24.696590593797474 ], [ -77.75766901391313, 24.696568525939622 ], [ -77.757642368983468, 24.696547537843351 ], [ -77.757614099001458, 24.696528201630304 ], [ -77.757553761858773, 24.696492577514576 ], [ -77.757510840354513, 24.69647132823766 ], [ -77.757421767004189, 24.69643162906797 ], [ -77.75733944179828, 24.696393139420557 ], [ -77.757288683391465, 24.696366070973088 ], [ -77.757218227625415, 24.696319685861962 ], [ -77.757096275935709, 24.696232387883526 ], [ -77.757049620134794, 24.696196171973227 ], [ -77.757007738879608, 24.696158881996443 ], [ -77.756968053106988, 24.69611609522337 ], [ -77.756935618535337, 24.696076078457203 ], [ -77.756878143424714, 24.695997570281065 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 490, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 942 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.772020532130767, 24.714990109862569 ], [ -77.77201640167641, 24.714979086128231 ], [ -77.771982518122257, 24.714829275424332 ], [ -77.771961342136038, 24.714757206117351 ], [ -77.771929146516243, 24.714672384658702 ], [ -77.771910398676269, 24.714630148538294 ], [ -77.771868474301954, 24.714549930226358 ], [ -77.771768504387239, 24.714382156499315 ], [ -77.771719626154322, 24.714292521821815 ], [ -77.771689185842575, 24.714230988013274 ], [ -77.771643089692105, 24.714116657584295 ], [ -77.771618854942375, 24.714060520942091 ], [ -77.771589791747985, 24.71400856563783 ], [ -77.771570184220266, 24.713981720532246 ], [ -77.771549019912186, 24.713956222695174 ], [ -77.771526887220233, 24.713931321374822 ], [ -77.771480065230989, 24.713883974986924 ], [ -77.77138198626993, 24.713793358258989 ], [ -77.771334350407045, 24.713746707081899 ], [ -77.771288229103732, 24.713698737171502 ], [ -77.771244080500779, 24.713649051932194 ], [ -77.771223336604237, 24.713623175385599 ], [ -77.771192210877956, 24.713576649814531 ], [ -77.771133748519276, 24.713480292848587 ], [ -77.771094642160008, 24.713426196016457 ], [ -77.771052415951772, 24.713374789641858 ], [ -77.771029949984808, 24.713350130568845 ], [ -77.77090782312365, 24.713236247336852 ], [ -77.770791176884003, 24.713117085848765 ], [ -77.770743136779217, 24.713070701263693 ], [ -77.770667877721351, 24.713003905831393 ], [ -77.770641380115407, 24.712982846244998 ], [ -77.770613470357858, 24.712963302044653 ], [ -77.770554621723591, 24.712926794775917 ], [ -77.770383389355686, 24.712837615218408 ], [ -77.770338541863481, 24.712812958487135 ], [ -77.770310299729232, 24.712795305847731 ], [ -77.77025770516596, 24.712758289318749 ], [ -77.770221634214053, 24.712729371193408 ], [ -77.770190309960128, 24.712698123256942 ], [ -77.770173231189915, 24.71267500392447 ], [ -77.770159014452219, 24.712650572389109 ], [ -77.770113898363718, 24.71255345170481 ], [ -77.77009436988773, 24.712517499226312 ], [ -77.770024485450236, 24.712413322909537 ], [ -77.769945744522303, 24.712281834255059 ], [ -77.769921523247305, 24.712245179898133 ], [ -77.769901631851951, 24.712219418122313 ], [ -77.769859641900624, 24.712169773910997 ], [ -77.76983773648243, 24.712145831904834 ], [ -77.769814760272425, 24.712123269830084 ], [ -77.769767515176653, 24.712079941789142 ], [ -77.769719848771089, 24.712038710160222 ], [ -77.769695494545388, 24.71201931678058 ], [ -77.769670243801102, 24.71200165586809 ], [ -77.76964407767349, 24.711985435278294 ], [ -77.769616974603053, 24.711971246646737 ], [ -77.769533244432054, 24.711934944731343 ], [ -77.769477669258649, 24.711906543789649 ], [ -77.76942415482057, 24.711873106187351 ], [ -77.769398931924016, 24.711853836005268 ], [ -77.769374850786193, 24.711833270750155 ], [ -77.769330200024996, 24.71178759320172 ], [ -77.769309741792696, 24.711762513548774 ], [ -77.769271276830551, 24.711709722466313 ], [ -77.769217467745051, 24.711625527290234 ], [ -77.769160670862888, 24.711543268546581 ], [ -77.76911882194706, 24.711491695736058 ], [ -77.769073709451817, 24.711442834644306 ], [ -77.769049638195455, 24.711419570637453 ], [ -77.769015197685775, 24.711390891304433 ], [ -77.768943550753661, 24.711335904883214 ], [ -77.768892673769216, 24.71129194249529 ], [ -77.768747924634226, 24.711153049417607 ], [ -77.768673926811033, 24.711085060701379 ], [ -77.768620654019742, 24.711043248528291 ], [ -77.768505652595366, 24.710967472140293 ], [ -77.768478160554395, 24.710947200518579 ], [ -77.76845162072766, 24.710926349494368 ], [ -77.768401197392436, 24.710882105422748 ], [ -77.768354277486836, 24.710834832136271 ], [ -77.768311085589659, 24.710784333778165 ], [ -77.768291068430187, 24.710757596512781 ], [ -77.768253003218348, 24.710702660407474 ], [ -77.768180102238077, 24.71058975402261 ], [ -77.768063900664487, 24.710426708913889 ], [ -77.768027384148198, 24.710370439222427 ], [ -77.767935450562035, 24.710207920185113 ], [ -77.767908993380303, 24.710164730207914 ], [ -77.767779070939028, 24.709984184924085 ], [ -77.767750467682106, 24.709950196780024 ], [ -77.767726812345714, 24.70992685823267 ], [ -77.767701269648924, 24.709904909434407 ], [ -77.767664292296871, 24.709878499221027 ], [ -77.7674072106322, 24.70972078044089 ], [ -77.767352419688095, 24.709680298808962 ], [ -77.767326480834271, 24.709658669048064 ], [ -77.76727727022471, 24.709613330184389 ], [ -77.767206512624696, 24.709542757784092 ], [ -77.767140296906788, 24.709467949967824 ], [ -77.767054513187034, 24.709365843089532 ], [ -77.767010445432462, 24.709315872130166 ], [ -77.766964854135182, 24.709267180742376 ], [ -77.766870287586897, 24.70917285815975 ], [ -77.766808194237825, 24.709108614926329 ], [ -77.766774726603614, 24.709078599974937 ], [ -77.766728057327967, 24.709045717355103 ], [ -77.766627919428302, 24.708986164814515 ], [ -77.766570137094263, 24.708948622421222 ], [ -77.76639266323177, 24.70882389613568 ], [ -77.766354448001294, 24.708795587516317 ], [ -77.766309353472337, 24.708755428747057 ], [ -77.76628951956917, 24.708734529207728 ], [ -77.766209904580492, 24.708639725556218 ], [ -77.766194299047385, 24.708625416581064 ], [ -77.766176679491394, 24.708613673329445 ], [ -77.766158002178372, 24.708604447865923 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 491, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 206 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.771000849959293, 24.714316601329212 ], [ -77.770997552244125, 24.714391437236884 ], [ -77.770995442101508, 24.714497920452295 ], [ -77.770996306280807, 24.714558101964823 ], [ -77.77099933629826, 24.714618409117108 ], [ -77.771005247212798, 24.714675423556734 ], [ -77.771014768456496, 24.714725714696907 ], [ -77.771026589387347, 24.714764055873591 ], [ -77.771038846001076, 24.71479763958483 ], [ -77.771052005421694, 24.714830349319328 ], [ -77.771151686977191, 24.715052547450817 ], [ -77.771237885718563, 24.715198713508624 ], [ -77.771257157276366, 24.715226379275006 ], [ -77.771279467834773, 24.715251200365653 ], [ -77.771349603800573, 24.71532329713154 ], [ -77.771394612989582, 24.715372946613503 ], [ -77.771437759072683, 24.715424068186078 ], [ -77.771485779414476, 24.715469550186228 ], [ -77.771512127001799, 24.715489247405813 ], [ -77.771565005432663, 24.715525219426702 ], [ -77.771591968365939, 24.715539986214921 ], [ -77.771621686432155, 24.715549137934268 ], [ -77.771653220891878, 24.71555249261251 ], [ -77.771684709537524, 24.715550035561652 ], [ -77.771715414852267, 24.715541780653737 ], [ -77.771749043284942, 24.715527399029561 ], [ -77.771785211254908, 24.715506979633759 ], [ -77.771823098600336, 24.715483306741685 ], [ -77.771860236750769, 24.71545665045597 ], [ -77.771894324222586, 24.715427333104884 ], [ -77.77192456151505, 24.715398090005195 ], [ -77.771949685596894, 24.715369885699875 ], [ -77.771969003867099, 24.715345442452968 ], [ -77.771988183796267, 24.715315065877903 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 494, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 159 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.773176979211684, 24.716105347413912 ], [ -77.773201955967636, 24.716131945619765 ], [ -77.773211451160179, 24.7161450582615 ], [ -77.77321643680996, 24.716156544572179 ], [ -77.773218785904476, 24.716168996234479 ], [ -77.773218191219712, 24.716181853457808 ], [ -77.773214967166211, 24.716195127666314 ], [ -77.773209510799163, 24.716208883325635 ], [ -77.77320179966074, 24.71622252392449 ], [ -77.773191847225732, 24.716235414599122 ], [ -77.773180145770823, 24.716247609207095 ], [ -77.773167175894756, 24.716259163237979 ], [ -77.77315295107222, 24.716269427956004 ], [ -77.773132160463263, 24.716280173308999 ], [ -77.773069849721907, 24.716304276908009 ], [ -77.773051958874731, 24.716310315455338 ], [ -77.773020049817504, 24.716318286337447 ], [ -77.77298601983793, 24.716324325700061 ], [ -77.772880324959885, 24.716339218876524 ], [ -77.772772915198004, 24.716360486796223 ], [ -77.772629641995053, 24.71637781415437 ], [ -77.772555151895034, 24.716391021428404 ], [ -77.772522809849846, 24.716395458125653 ], [ -77.772489104162105, 24.716398249727735 ], [ -77.772419526050058, 24.716400132284249 ], [ -77.772316764171492, 24.716396552407527 ], [ -77.772222426693588, 24.716387603939289 ], [ -77.772201239927597, 24.716388061726175 ], [ -77.772181165275967, 24.716391667715737 ], [ -77.772163128901667, 24.716398922127635 ], [ -77.77214600162246, 24.716411910706324 ], [ -77.772131412083951, 24.716428718253134 ], [ -77.772098759221691, 24.716472336915238 ], [ -77.772051728823286, 24.716526296148565 ], [ -77.772031595781129, 24.716547443265576 ], [ -77.772010496151751, 24.716566268807181 ], [ -77.771986157197446, 24.716583507190681 ], [ -77.771930788636567, 24.716615946353947 ], [ -77.771924504920705, 24.716621891864676 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 495, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 539 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.776514208812088, 24.720058860174447 ], [ -77.776459434935759, 24.719931355128509 ], [ -77.77637067240255, 24.719736593014826 ], [ -77.776281833512542, 24.719549693559646 ], [ -77.776257428981211, 24.719505390536892 ], [ -77.77621946707562, 24.719449792436439 ], [ -77.776035148948964, 24.719213766860715 ], [ -77.77593727749877, 24.719078406117127 ], [ -77.775842436066029, 24.718940304273502 ], [ -77.775750452174151, 24.718799651449526 ], [ -77.775697000618138, 24.718713510002772 ], [ -77.775678180014637, 24.718685940483979 ], [ -77.775639121266082, 24.718631876106258 ], [ -77.775558960999987, 24.718525965182948 ], [ -77.775517105795998, 24.718475310823614 ], [ -77.775474129494469, 24.718426364344257 ], [ -77.775336806731929, 24.718275564708726 ], [ -77.775305895703013, 24.718243936273158 ], [ -77.775284268762547, 24.718225255418584 ], [ -77.775219323262448, 24.718173980771017 ], [ -77.775198937793704, 24.718154662603865 ], [ -77.775171157393544, 24.718121443737964 ], [ -77.775145469169672, 24.718085134639896 ], [ -77.775065236140065, 24.717957717333661 ], [ -77.775040676200206, 24.717921206633569 ], [ -77.775014619667076, 24.717887662117544 ], [ -77.774995745164645, 24.717868044430404 ], [ -77.774934271653109, 24.717812260364234 ], [ -77.774871806401507, 24.717747578495278 ], [ -77.774804517196856, 24.717681675024401 ], [ -77.77478324329428, 24.717657576588152 ], [ -77.774742466966913, 24.717607147094505 ], [ -77.774703917563116, 24.717553874595588 ], [ -77.774668545500504, 24.717496991220347 ], [ -77.774651588002854, 24.717467997490647 ], [ -77.774554427120023, 24.717287657009418 ], [ -77.774450044680677, 24.717113267461759 ], [ -77.774411392868942, 24.717058698919629 ], [ -77.77439104872272, 24.717032479539437 ], [ -77.7742850547057, 24.716905802914113 ], [ -77.774264956697849, 24.71687976547328 ], [ -77.774226562702594, 24.716827035314026 ], [ -77.77417173582586, 24.716747688292028 ], [ -77.774133072336028, 24.716699435564067 ], [ -77.774092838591088, 24.716655666834306 ], [ -77.77407198869335, 24.716635872693161 ], [ -77.774050143462262, 24.716618440104593 ], [ -77.773979908681738, 24.716570304017132 ], [ -77.773747276464221, 24.716394605385414 ], [ -77.773649676305197, 24.716326802320157 ], [ -77.773604346417656, 24.716292796323092 ], [ -77.773573652781053, 24.716267043545109 ], [ -77.773546337708197, 24.716242074141295 ], [ -77.773522656320679, 24.716217969714187 ], [ -77.773503026335078, 24.716195695616687 ], [ -77.773487740602221, 24.716175404445764 ], [ -77.773477100057704, 24.716158043602618 ], [ -77.773470592661766, 24.716140295962994 ], [ -77.773472642616312, 24.716130404976532 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 496, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 617 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.780268879238236, 24.724019090891126 ], [ -77.780340930412706, 24.724035251158508 ], [ -77.780364874108287, 24.724039445240333 ], [ -77.780388720785837, 24.724042042470355 ], [ -77.780411182261176, 24.724041728322177 ], [ -77.78043079158553, 24.724037686826716 ], [ -77.780445895858719, 24.724029461856588 ], [ -77.78045545662826, 24.724017632749366 ], [ -77.780459127144525, 24.724003077487154 ], [ -77.780457511973651, 24.723985881745747 ], [ -77.780450820423098, 24.723966950434384 ], [ -77.780439774738369, 24.723946353725779 ], [ -77.780424787246147, 24.723925069967073 ], [ -77.780406558632421, 24.723903131796707 ], [ -77.780385589258742, 24.723881533066038 ], [ -77.780338138448798, 24.723839663993559 ], [ -77.780234143183293, 24.723757690751697 ], [ -77.780209004728405, 24.723735562430548 ], [ -77.780184726859545, 24.7237127821443 ], [ -77.780114877456285, 24.72364059395348 ], [ -77.780065434183044, 24.723595003151104 ], [ -77.780012506344832, 24.723552397975062 ], [ -77.779900039067854, 24.723473255970092 ], [ -77.779764918076097, 24.723369732625841 ], [ -77.779738571387114, 24.723348581772232 ], [ -77.779637003369558, 24.723260304805368 ], [ -77.779564803075203, 24.723190636082162 ], [ -77.779406702280156, 24.723019486070307 ], [ -77.779348679197625, 24.722959746828252 ], [ -77.779311480860002, 24.722925831584909 ], [ -77.779275026327511, 24.722898951683625 ], [ -77.779021784062351, 24.722737924290968 ], [ -77.778967897721714, 24.722696696192411 ], [ -77.778917836407572, 24.722652156840223 ], [ -77.778847156062696, 24.722581160995038 ], [ -77.778822625767233, 24.722558581228288 ], [ -77.778722308204522, 24.722469678660815 ], [ -77.77862023713034, 24.722382542626583 ], [ -77.778547221165752, 24.722313822397332 ], [ -77.778524051817911, 24.722290065937948 ], [ -77.77836693018655, 24.722118398986947 ], [ -77.778301004624453, 24.722043535897235 ], [ -77.7782588655528, 24.721992137977423 ], [ -77.778238615729663, 24.721965850277932 ], [ -77.778200032189886, 24.721911128826616 ], [ -77.778087747270916, 24.721744690180198 ], [ -77.778051529893659, 24.721688162041641 ], [ -77.777982891419384, 24.721571327675214 ], [ -77.777886183287507, 24.721435470112223 ], [ -77.777764985284293, 24.721276511801701 ], [ -77.777681971070564, 24.72117262269931 ], [ -77.777638733359311, 24.721122177494149 ], [ -77.777524853032446, 24.721001200635612 ], [ -77.777482094123243, 24.720950340838293 ], [ -77.777400931337311, 24.720844604877918 ], [ -77.777335419898563, 24.720769382801993 ], [ -77.777243516855123, 24.72067344021562 ], [ -77.777087485778452, 24.720500590293604 ], [ -77.777039419622582, 24.720454329226815 ], [ -77.777012556402298, 24.720431685426743 ], [ -77.776981909478081, 24.720407978383612 ], [ -77.776947392611604, 24.720384329271486 ], [ -77.776884494372055, 24.720348810715254 ], [ -77.776746625433802, 24.720282352113891 ], [ -77.776681912597354, 24.720249033448543 ], [ -77.776626217049738, 24.720214617262041 ], [ -77.77659732453526, 24.720192589494086 ], [ -77.776573404195886, 24.720171217781935 ], [ -77.776554550354703, 24.720150758348179 ], [ -77.776540712706066, 24.720132309522409 ], [ -77.776531848130844, 24.720116824387432 ], [ -77.776528178512891, 24.720103602004855 ], [ -77.776531056708222, 24.720095401257634 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 498, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 133 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.780705850335337, 24.724826729018393 ], [ -77.780706151271247, 24.724823902514466 ], [ -77.780711067750801, 24.724823106133609 ], [ -77.780766364446436, 24.724826922397472 ], [ -77.780792072433243, 24.724826099089729 ], [ -77.780819775578294, 24.724822758532856 ], [ -77.7808410997865, 24.724818336007452 ], [ -77.780895029246281, 24.724802898781586 ], [ -77.780925792053154, 24.724791305561592 ], [ -77.780952391168711, 24.724777304429619 ], [ -77.780972225970174, 24.724760268724239 ], [ -77.780986873899224, 24.724736103933587 ], [ -77.780996088817446, 24.724708055961749 ], [ -77.781000988228968, 24.724677899529908 ], [ -77.781002195564724, 24.724647133564751 ], [ -77.780999900369167, 24.724617117464216 ], [ -77.780993907707895, 24.724589206547684 ], [ -77.780983650743991, 24.724564863027396 ], [ -77.780966372547823, 24.724542258325592 ], [ -77.78094598977404, 24.724524479242991 ], [ -77.780934532660908, 24.724518105732123 ], [ -77.780922530270374, 24.724513345385979 ], [ -77.780871014583767, 24.724498227981019 ], [ -77.7808052111926, 24.724469792371437 ], [ -77.780773771055934, 24.724452215638163 ], [ -77.780746013113671, 24.724432674054697 ], [ -77.780732227567299, 24.724421137101938 ], [ -77.780721564564899, 24.724408474929881 ], [ -77.780716358827817, 24.724397846961946 ], [ -77.780713593813402, 24.724386593962414 ], [ -77.780712966789295, 24.72437508474825 ], [ -77.780715387749026, 24.724343147795253 ], [ -77.780725050028195, 24.724263471018329 ], [ -77.780723736691286, 24.724255086133528 ], [ -77.780720165888013, 24.724248227107982 ], [ -77.780711874437927, 24.724242317052742 ], [ -77.780700661666557, 24.724240064981341 ], [ -77.780687952301932, 24.724241430095613 ], [ -77.780655808784402, 24.724251853269017 ], [ -77.780634161182675, 24.724256789874257 ], [ -77.780605510315041, 24.724259157812764 ], [ -77.780574268706104, 24.724257835128995 ], [ -77.780542953435258, 24.724252970329008 ], [ -77.780513861494782, 24.724244882455771 ], [ -77.780496468314254, 24.724238034037246 ], [ -77.780455471899643, 24.724217168104072 ], [ -77.78043652193827, 24.724203135089287 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 500, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 40 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.781034834953459, 24.725476538245047 ], [ -77.781037700578011, 24.725393210767148 ], [ -77.781036668413748, 24.725377637347172 ], [ -77.781033832432385, 24.72536387698959 ], [ -77.78102783797452, 24.725352852546408 ], [ -77.781003919431754, 24.725337049836376 ], [ -77.780996624213344, 24.725328050605452 ], [ -77.78099265186313, 24.725315464410048 ], [ -77.780987588059887, 24.725279780805213 ], [ -77.780983657032209, 24.725267157886652 ], [ -77.780976413017754, 24.725258115404731 ], [ -77.780956728234926, 24.725245949422284 ], [ -77.780949088961734, 24.725237248826623 ], [ -77.780944827354048, 24.725224913122201 ], [ -77.780939715041754, 24.725194217464992 ], [ -77.780933891263786, 24.725178067135186 ], [ -77.780929644927411, 24.725171386040188 ], [ -77.780919302623573, 24.725163100763918 ], [ -77.780909512783595, 24.725160214706808 ], [ -77.780904207333052, 24.72516050437747 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 503, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 1453 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.809589899994265, 24.746437709978821 ], [ -77.809590571934208, 24.746432269255894 ], [ -77.809598416921588, 24.746417023983465 ], [ -77.809613341531715, 24.746394092029206 ], [ -77.809635771566036, 24.746366431562212 ], [ -77.809657674289312, 24.74634452345639 ], [ -77.809683754178621, 24.746322211514279 ], [ -77.809713598008997, 24.74630070315397 ], [ -77.809746981201613, 24.746280329600193 ], [ -77.809796051673985, 24.746256766989212 ], [ -77.809848515083203, 24.746237582083154 ], [ -77.809901415073696, 24.746222638641594 ], [ -77.809939945612825, 24.746214238104798 ], [ -77.809994155346971, 24.746207975025829 ], [ -77.810040908165959, 24.746209158786122 ], [ -77.810108021300806, 24.746221692286102 ], [ -77.810127500369461, 24.746221691470328 ], [ -77.810145892476541, 24.746217822834289 ], [ -77.810163098807493, 24.746208898538338 ], [ -77.810178777104156, 24.746194518011816 ], [ -77.810193079181801, 24.74617559415983 ], [ -77.81020613170287, 24.746153003991399 ], [ -77.810223054166187, 24.746109496082269 ], [ -77.810236181247447, 24.746058418935931 ], [ -77.810246677163221, 24.746002071538395 ], [ -77.810255461788401, 24.745942280515766 ], [ -77.810282880167506, 24.74571707412283 ], [ -77.810288473976797, 24.74564752403543 ], [ -77.810290262522514, 24.745577105868222 ], [ -77.810288225143452, 24.745507067021343 ], [ -77.810282020479747, 24.745438644291937 ], [ -77.810276672808897, 24.74540073435201 ], [ -77.810258529535091, 24.745286700158399 ], [ -77.810247465884061, 24.745231157635438 ], [ -77.810233949832266, 24.745177923072255 ], [ -77.810170172142065, 24.744981178854616 ], [ -77.810158658435057, 24.744937863071755 ], [ -77.810133415775567, 24.744822547595898 ], [ -77.810125216851986, 24.744792674239918 ], [ -77.810104052543849, 24.744733975036638 ], [ -77.810091625250237, 24.744704773906331 ], [ -77.810063249267046, 24.744647590481144 ], [ -77.809981073181461, 24.744506704839736 ], [ -77.809961107225973, 24.744466122755369 ], [ -77.809886736601939, 24.744304394740777 ], [ -77.80986379273125, 24.744258193923905 ], [ -77.809830452657792, 24.74419910776151 ], [ -77.809812728897228, 24.74417032584585 ], [ -77.809718009635347, 24.74403207645225 ], [ -77.809657403896423, 24.743952836523498 ], [ -77.8096329939752, 24.74391511540512 ], [ -77.80958714486141, 24.743837121188538 ], [ -77.80955142694738, 24.743780044239251 ], [ -77.809532949500309, 24.743751926320286 ], [ -77.809493827869687, 24.743697824701361 ], [ -77.809473071396724, 24.743671693335187 ], [ -77.809451091418381, 24.743646869756017 ], [ -77.809382070261805, 24.743574600128042 ], [ -77.809208039641803, 24.743417942228191 ], [ -77.809161270653178, 24.743370531187622 ], [ -77.809096596444306, 24.743294549313848 ], [ -77.809055227228825, 24.743242465892077 ], [ -77.808995271870145, 24.743162159152302 ], [ -77.808910606552942, 24.74305991512135 ], [ -77.808827932800696, 24.74295546006605 ], [ -77.808784304322288, 24.742905341873897 ], [ -77.808761315535847, 24.742881178976695 ], [ -77.808666256710808, 24.742787949815838 ], [ -77.808527605339975, 24.742644086672406 ], [ -77.808430365405371, 24.742552749284705 ], [ -77.808383184090047, 24.742505712388439 ], [ -77.808360541154983, 24.74248125081316 ], [ -77.808338582736184, 24.742456438418152 ], [ -77.808297092248168, 24.742404469679929 ], [ -77.808202295731178, 24.742266440233699 ], [ -77.808182704373138, 24.742239333626188 ], [ -77.808141367497015, 24.742187230181951 ], [ -77.808097884545674, 24.742136987670882 ], [ -77.808007501451712, 24.742039708882789 ], [ -77.80798566789872, 24.742014544767756 ], [ -77.807921680901046, 24.741937986889802 ], [ -77.80781766138098, 24.741808197853661 ], [ -77.807690634209919, 24.74165450335607 ], [ -77.807623521075072, 24.741580655523922 ], [ -77.807577363839144, 24.741532732241968 ], [ -77.80743505542678, 24.741392284448519 ], [ -77.807338187394734, 24.741300383200546 ], [ -77.807239721259791, 24.74120986639333 ], [ -77.807138612281307, 24.741121640447084 ], [ -77.806980545622253, 24.740995096041885 ], [ -77.806903551019261, 24.740930056641712 ], [ -77.806855695967371, 24.740883604102301 ], [ -77.806788440898728, 24.740809635880932 ], [ -77.806765156566527, 24.740785973514011 ], [ -77.806741099683251, 24.740762737837166 ], [ -77.806690522736133, 24.740718643070156 ], [ -77.806636303120527, 24.740677705665963 ], [ -77.806460984316388, 24.74056635458561 ], [ -77.806404276367473, 24.740527329509657 ], [ -77.806274337756562, 24.740442404871146 ], [ -77.80623240170415, 24.740412983265976 ], [ -77.806180787202891, 24.740369782559757 ], [ -77.80615674199764, 24.74034653211957 ], [ -77.806064545205089, 24.740250314184205 ], [ -77.806016783578073, 24.74020376348723 ], [ -77.805916484879972, 24.740114783784861 ], [ -77.805890270243367, 24.740093644752875 ], [ -77.805781876826217, 24.74001164387629 ], [ -77.805640542187618, 24.73991426470571 ], [ -77.805582296322953, 24.739876723484141 ], [ -77.805490846030366, 24.739824040601032 ], [ -77.805396838234202, 24.73977379060808 ], [ -77.805335297349004, 24.739738813611638 ], [ -77.805047681049572, 24.739592677197624 ], [ -77.804948354328602, 24.739547739224484 ], [ -77.804897013813459, 24.739527211180949 ], [ -77.804775684656221, 24.739482036582494 ], [ -77.804705586419672, 24.73945838946447 ], [ -77.804652142050173, 24.739442726428134 ], [ -77.804562684220912, 24.739419785844628 ], [ -77.804508852677515, 24.739408746329801 ], [ -77.804420006600964, 24.739394583669483 ], [ -77.804367484801247, 24.739384794878902 ], [ -77.804316075115821, 24.739371573728235 ], [ -77.804282828467166, 24.739360525234513 ], [ -77.804217847034479, 24.739335181902032 ], [ -77.804169488926078, 24.739314543681047 ], [ -77.804122269881518, 24.73929197021501 ], [ -77.804062523830268, 24.739257759184433 ], [ -77.804005283180359, 24.739220518004629 ], [ -77.803977629442656, 24.739200971398347 ], [ -77.803925251373386, 24.739158872511478 ], [ -77.80382622648635, 24.739069633430393 ], [ -77.803749961315347, 24.739006264742748 ], [ -77.803723794289439, 24.738986227764279 ], [ -77.803670395734002, 24.738948924496945 ], [ -77.803541936648386, 24.738864448325852 ], [ -77.803394287751615, 24.738783618231643 ], [ -77.803345061870701, 24.738758008807036 ], [ -77.803272937933173, 24.738727918603416 ], [ -77.80325052047526, 24.73872083193157 ], [ -77.803229095655752, 24.73871574659556 ], [ -77.803208707492075, 24.738713473573508 ], [ -77.803159419627363, 24.738716318522496 ], [ -77.803135395083416, 24.738715703354313 ], [ -77.803116861940751, 24.738711398808551 ], [ -77.803098503969636, 24.738703180519781 ], [ -77.803080949092362, 24.738690911420566 ], [ -77.803063932305918, 24.738675458782922 ], [ -77.803047185912405, 24.738657693958352 ], [ -77.803031006355809, 24.738637404002894 ], [ -77.802999350623494, 24.738592246214509 ], [ -77.802958281445356, 24.738525608891631 ], [ -77.802936100244338, 24.738492858881262 ], [ -77.802898516529496, 24.738448131822253 ], [ -77.802856701749619, 24.738409160745096 ], [ -77.802834444191845, 24.738392290897401 ], [ -77.802763595862004, 24.738344055538079 ], [ -77.802690683203664, 24.738288539285094 ], [ -77.80263814613258, 24.738251862401203 ], [ -77.802609487180106, 24.738235368651093 ], [ -77.802547904972414, 24.738205563061907 ], [ -77.802492404359214, 24.73818482511653 ], [ -77.802342658794615, 24.738141153691139 ], [ -77.802211450864178, 24.738108001352227 ], [ -77.80218018050914, 24.738097509990229 ], [ -77.80214981026603, 24.738085123345002 ], [ -77.802091152074595, 24.738056758558958 ], [ -77.802034596839277, 24.738025272219428 ], [ -77.801981647441465, 24.737990292283492 ], [ -77.801906510554474, 24.737937171290529 ], [ -77.80188114572411, 24.737921498272083 ], [ -77.801854940070626, 24.737907988960874 ], [ -77.801813035459261, 24.737893800837334 ], [ -77.801767576214289, 24.737888192489468 ], [ -77.801735123676394, 24.737890002107736 ], [ -77.80170156621061, 24.737895111137959 ], [ -77.801667236193708, 24.737903010471683 ], [ -77.801615593844645, 24.737917917382838 ], [ -77.801566699442063, 24.737936219160801 ], [ -77.80153718888667, 24.737950706706762 ], [ -77.801498870349874, 24.737977279849289 ], [ -77.8014700236495, 24.738009500490886 ], [ -77.801453883618777, 24.738041471465639 ], [ -77.801445924545376, 24.738072921902535 ], [ -77.801444609411789, 24.738100217070112 ], [ -77.801446784233079, 24.738116049162024 ], [ -77.801454374997689, 24.738131634045271 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 505, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 512 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.812672516504861, 24.751011879300041 ], [ -77.81265367523784, 24.750993218048652 ], [ -77.812566434450716, 24.750918617076831 ], [ -77.812508569471689, 24.750866496059899 ], [ -77.812418584331368, 24.750778974470826 ], [ -77.812390323332508, 24.750749279573689 ], [ -77.81234026112007, 24.750691219502961 ], [ -77.812319825345639, 24.750663753335498 ], [ -77.812303282869692, 24.750638289938077 ], [ -77.812291390073639, 24.750614742021707 ], [ -77.812284143364238, 24.750593568064346 ], [ -77.812280106335351, 24.750562487086892 ], [ -77.812283635816087, 24.750534142279363 ], [ -77.812289518882864, 24.750517950371464 ], [ -77.81230969773911, 24.750480234508501 ], [ -77.812319874752973, 24.750454061330956 ], [ -77.812322877820975, 24.750433827143322 ], [ -77.812322327153709, 24.750411971965345 ], [ -77.812318468889544, 24.750389184328281 ], [ -77.812308310740363, 24.750352544461968 ], [ -77.812292724071852, 24.75031491094429 ], [ -77.812200147291918, 24.750158122853335 ], [ -77.81217092958731, 24.750098066248118 ], [ -77.812149100525886, 24.750038677752965 ], [ -77.812112468126927, 24.749911838947398 ], [ -77.812092633325449, 24.749849235295905 ], [ -77.812068328507081, 24.749790369609848 ], [ -77.812034982145462, 24.749730892861223 ], [ -77.811972778303598, 24.749629577720203 ], [ -77.81194507066698, 24.74958701409458 ], [ -77.81188602440335, 24.749505893204013 ], [ -77.811862245997787, 24.749467429758937 ], [ -77.811817909646905, 24.749387804157045 ], [ -77.811748583961517, 24.749271491818352 ], [ -77.81165683632662, 24.749130625286337 ], [ -77.811581229620671, 24.749019818577171 ], [ -77.811522350443738, 24.748938696500609 ], [ -77.811480016437642, 24.7488873749592 ], [ -77.811370133613764, 24.748762461099037 ], [ -77.811203572485354, 24.748599072794029 ], [ -77.811137284003934, 24.748524308855067 ], [ -77.81105087415844, 24.748423045758141 ], [ -77.811009539977249, 24.748370801323173 ], [ -77.810990123790702, 24.748343481488718 ], [ -77.810952693687767, 24.748287911778274 ], [ -77.810871368306763, 24.748160515618729 ], [ -77.810842826135257, 24.748119486030973 ], [ -77.81082216757865, 24.748093916872556 ], [ -77.810800269346998, 24.748069311182363 ], [ -77.810752750265081, 24.748024097265564 ], [ -77.810700559045387, 24.747984166531712 ], [ -77.810673444296839, 24.747965369403104 ], [ -77.810617072317797, 24.74793129781575 ], [ -77.81058752762641, 24.747916469607372 ], [ -77.810556796260599, 24.747903224073827 ], [ -77.810508156081212, 24.747887677131054 ], [ -77.810457412945723, 24.747876640815583 ], [ -77.81032777527048, 24.747854691369454 ], [ -77.810279266245132, 24.747843583259492 ], [ -77.810177002033171, 24.747811912577109 ], [ -77.810111431305629, 24.747787407176151 ], [ -77.809895577820924, 24.747693564939333 ], [ -77.809730710016836, 24.747623915612643 ], [ -77.80969388807334, 24.747610671679517 ], [ -77.809686842368208, 24.747610065559901 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 506, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 216 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.814829157700331, 24.752320898364733 ], [ -77.814825782730253, 24.752325867298563 ], [ -77.814808969861389, 24.752332595881736 ], [ -77.814780561538825, 24.752340402114584 ], [ -77.814595397199213, 24.752381516781973 ], [ -77.814540451744875, 24.752392229647217 ], [ -77.814484565754441, 24.752401279945595 ], [ -77.814379451188046, 24.752414745261273 ], [ -77.814253765201741, 24.752428466731228 ], [ -77.814213696746776, 24.752430437662866 ], [ -77.814173506120994, 24.752429519091269 ], [ -77.814134070978312, 24.752425684095559 ], [ -77.814096311193651, 24.75241871649304 ], [ -77.814061228388567, 24.752408202681071 ], [ -77.814029115413788, 24.752394013765095 ], [ -77.813998958071352, 24.752377781310319 ], [ -77.813971376198893, 24.75235897179369 ], [ -77.813947187263238, 24.752336838772077 ], [ -77.813924992587502, 24.752313017074226 ], [ -77.813862874085615, 24.752240028884319 ], [ -77.81384148969029, 24.752217862394289 ], [ -77.813819542051263, 24.752197132496839 ], [ -77.813796668249168, 24.752178954370155 ], [ -77.813773304865265, 24.752162978043724 ], [ -77.813749033284594, 24.752150505510894 ], [ -77.813698518321246, 24.752129189868626 ], [ -77.813672998980607, 24.752115434918405 ], [ -77.813571608829449, 24.752043497344076 ], [ -77.813542535753612, 24.752026549399616 ], [ -77.813511304924432, 24.752010706842444 ], [ -77.813476951551365, 24.75199741116645 ], [ -77.813439852028424, 24.75198620308516 ], [ -77.813323004566129, 24.751956320845661 ], [ -77.813285858330858, 24.751944593104799 ], [ -77.813249910448107, 24.751929767822631 ], [ -77.813212442615935, 24.751910701265473 ], [ -77.813175211938983, 24.751887194379609 ], [ -77.813140103981027, 24.75185917210996 ], [ -77.813107594849228, 24.751828757946896 ], [ -77.813078647537509, 24.751796369571572 ], [ -77.813053737254663, 24.751764117424369 ], [ -77.81303378118065, 24.751732510556685 ], [ -77.81301910001396, 24.751703701017018 ], [ -77.813014593163672, 24.751690883469596 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 507, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 1000 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.821195731019756, 24.7581864883431 ], [ -77.821197459378794, 24.758171948497285 ], [ -77.821195224370356, 24.758137294002992 ], [ -77.821187792608015, 24.758087391579469 ], [ -77.82116625549908, 24.757993708033503 ], [ -77.821148003529146, 24.757930169529054 ], [ -77.821133461601306, 24.757886943096878 ], [ -77.821111966713204, 24.757828294128448 ], [ -77.821087993373197, 24.757770770048559 ], [ -77.821060778013361, 24.757716949439139 ], [ -77.821026400385762, 24.757663562784678 ], [ -77.820959698679289, 24.757575530429431 ], [ -77.820928307949984, 24.757536602057638 ], [ -77.820862859393344, 24.757461544931221 ], [ -77.820821434482326, 24.757409513128124 ], [ -77.820783347710901, 24.757354587020135 ], [ -77.820748307126593, 24.757297020301916 ], [ -77.820732229978006, 24.757267108341008 ], [ -77.820710470086851, 24.757215423150924 ], [ -77.820692316033274, 24.757160613609607 ], [ -77.820658578904457, 24.757048763371102 ], [ -77.820639115107213, 24.756995088468678 ], [ -77.82061045795129, 24.756931988328866 ], [ -77.820594625144452, 24.756901621089561 ], [ -77.820559584560144, 24.756844054977229 ], [ -77.820483289744729, 24.756734552195745 ], [ -77.820456589119559, 24.756691559469271 ], [ -77.820347303675362, 24.756500423855307 ], [ -77.82032762787567, 24.75645869057594 ], [ -77.820309630128975, 24.756415502788137 ], [ -77.820235208300943, 24.756230404174552 ], [ -77.820210148897729, 24.756178639424618 ], [ -77.820174372593272, 24.756121710900612 ], [ -77.820133713046857, 24.756069015324368 ], [ -77.820111524659339, 24.756044157512015 ], [ -77.820075268654463, 24.756009811597071 ], [ -77.819987494268091, 24.755932183088682 ], [ -77.819963345756605, 24.755909267573852 ], [ -77.819918659062793, 24.755860061730594 ], [ -77.819898322103086, 24.755833598459606 ], [ -77.819860592861119, 24.755778362481493 ], [ -77.819792795209992, 24.755660761510136 ], [ -77.819774968143207, 24.755632364841002 ], [ -77.819682253022748, 24.755492998365124 ], [ -77.819660017024518, 24.755453481175671 ], [ -77.819578617083351, 24.755296460549058 ], [ -77.819553138166967, 24.755252401936691 ], [ -77.819534695754143, 24.755224534605432 ], [ -77.819495029744473, 24.755170963332834 ], [ -77.819430401349663, 24.755094925858813 ], [ -77.819338705817046, 24.754998717707775 ], [ -77.819278971443907, 24.754932864157869 ], [ -77.819247127065381, 24.75490164476955 ], [ -77.819212229313223, 24.754873393949264 ], [ -77.819110996367257, 24.754799991221745 ], [ -77.819031587092738, 24.754736893230167 ], [ -77.818980084880891, 24.754693482954998 ], [ -77.818904543751984, 24.754626983154633 ], [ -77.818833623556941, 24.754555985168647 ], [ -77.818783883839671, 24.75451105097326 ], [ -77.818704636261927, 24.754447893283768 ], [ -77.818570186311675, 24.754345605511137 ], [ -77.818545126010207, 24.754323595208938 ], [ -77.818498679516736, 24.75427702367752 ], [ -77.818393481407085, 24.754154989198046 ], [ -77.818351331555604, 24.754108791226926 ], [ -77.818284450186113, 24.754048176911137 ], [ -77.818261876421317, 24.754029912583331 ], [ -77.81823864958136, 24.754013593054676 ], [ -77.818059709668319, 24.753898944328132 ], [ -77.817974567345701, 24.753847251210736 ], [ -77.817919795266178, 24.753809121129283 ], [ -77.817893643511624, 24.75378875206944 ], [ -77.817845289894819, 24.753743839622487 ], [ -77.817812425030141, 24.753706692517646 ], [ -77.817738737125723, 24.753617220778931 ], [ -77.817679804049817, 24.753536279542324 ], [ -77.817641783753714, 24.753480962596978 ], [ -77.817554137826392, 24.753358720128436 ], [ -77.817523342680147, 24.753319178602663 ], [ -77.817477548363598, 24.753270812800245 ], [ -77.817426323731155, 24.753227167884688 ], [ -77.817384277185951, 24.753197770515751 ], [ -77.817311226187044, 24.753151123510754 ], [ -77.817281238626251, 24.753132989575665 ], [ -77.817239422948063, 24.753110726983113 ], [ -77.817153238579692, 24.753068428862058 ], [ -77.817059382598842, 24.753017926436723 ], [ -77.816985716253953, 24.752971864278042 ], [ -77.816944987537283, 24.75294136391463 ], [ -77.816908579717122, 24.752906754460941 ], [ -77.816786673841477, 24.75277026789713 ], [ -77.816626968655314, 24.752600719182148 ], [ -77.816560202270182, 24.752526090622965 ], [ -77.816536539747261, 24.752502660537004 ], [ -77.816463009047979, 24.752434263684759 ], [ -77.816386867844486, 24.752367761043864 ], [ -77.816333931921449, 24.752325309302584 ], [ -77.816278445681306, 24.752284993269072 ], [ -77.816219406604176, 24.75224767604502 ], [ -77.816172135457293, 24.752222411207679 ], [ -77.8159582672494, 24.752120166471336 ], [ -77.815896977892535, 24.752084698582898 ], [ -77.815838323294344, 24.75204695382709 ], [ -77.815759231125156, 24.751998887738708 ], [ -77.815721500086568, 24.751973916533768 ], [ -77.81564423149743, 24.751913256308303 ], [ -77.81561853788368, 24.751894548694718 ], [ -77.81556745698164, 24.751859761107944 ], [ -77.815541952912398, 24.751844323159695 ], [ -77.815502569872066, 24.751826020981831 ], [ -77.815463456326299, 24.751813110337537 ], [ -77.815438495737794, 24.751807465907252 ], [ -77.815414463109008, 24.75180525512441 ], [ -77.815390451141482, 24.751807740011742 ], [ -77.815366110390499, 24.751815619698327 ], [ -77.815341321380259, 24.751827793686772 ], [ -77.815314259632274, 24.751843833687673 ], [ -77.815124565987034, 24.751960491959654 ], [ -77.815070911411752, 24.751996201356171 ], [ -77.815027114948379, 24.752031426981564 ], [ -77.815007078025971, 24.752051771855914 ], [ -77.814991930633624, 24.752070089500503 ], [ -77.814981759907994, 24.752085167659409 ], [ -77.814976829953707, 24.752096832571446 ], [ -77.814977981594694, 24.752102821254322 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 519, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 7208 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.861336927036021, 24.806247132184531 ], [ -77.861265361848581, 24.806136433527264 ], [ -77.861225985096439, 24.806069436147585 ], [ -77.861140298394716, 24.805914497739209 ], [ -77.861075488540237, 24.805800718901271 ], [ -77.86103848873033, 24.805732162232875 ], [ -77.860980776464885, 24.805605117755867 ], [ -77.860950528392635, 24.805543367406443 ], [ -77.860902704781864, 24.805452740862453 ], [ -77.86085234253207, 24.80536455240312 ], [ -77.860828949503784, 24.805318661338045 ], [ -77.860704835569166, 24.805051707070291 ], [ -77.860613194833775, 24.804867042218476 ], [ -77.860556853397497, 24.804739255620628 ], [ -77.860526595443716, 24.804677396386396 ], [ -77.86047786363622, 24.804587375896897 ], [ -77.86042503371435, 24.804501178128376 ], [ -77.86037474422811, 24.804412644060456 ], [ -77.860287801681679, 24.804246514080472 ], [ -77.860262537462589, 24.804202936828062 ], [ -77.860225536754399, 24.804148491335177 ], [ -77.860186546277774, 24.804096894162338 ], [ -77.860060310522471, 24.80392037907275 ], [ -77.859990435966424, 24.803834407534204 ], [ -77.859965722414643, 24.803798681245517 ], [ -77.859908246406121, 24.80370808930569 ], [ -77.859883310072163, 24.803660034248381 ], [ -77.859835354409014, 24.803559160236784 ], [ -77.85980308243245, 24.803500606237424 ], [ -77.859731956523191, 24.803387851017778 ], [ -77.85970605090705, 24.803336968676692 ], [ -77.859631526671066, 24.803166521896344 ], [ -77.859557984293687, 24.803009665997369 ], [ -77.859525461687127, 24.802949761351709 ], [ -77.859424760543774, 24.802772826301911 ], [ -77.85937717678317, 24.802681869920569 ], [ -77.859332987756019, 24.802587979471379 ], [ -77.85928774051348, 24.802480045201765 ], [ -77.859263161708995, 24.802427767245611 ], [ -77.859144771839411, 24.802222225265851 ], [ -77.859095995116093, 24.802131959172147 ], [ -77.859044869298316, 24.802043946120246 ], [ -77.859008579157475, 24.80198726287982 ], [ -77.858952927627328, 24.801903219374225 ], [ -77.858875668919609, 24.801794292910888 ], [ -77.858836272404503, 24.801740805339968 ], [ -77.858795510450193, 24.801688643682745 ], [ -77.858710333991581, 24.801590274791003 ], [ -77.858650772094961, 24.80151571889861 ], [ -77.858614476564213, 24.801465760521673 ], [ -77.858583130750716, 24.801414602581342 ], [ -77.858569770107508, 24.801388630143208 ], [ -77.858559037934768, 24.801361402704526 ], [ -77.858550621618903, 24.801333311685966 ], [ -77.858514813873327, 24.801193664621259 ], [ -77.85849920295037, 24.801147545313665 ], [ -77.858486929268594, 24.80111833461595 ], [ -77.858459320446684, 24.801062052160393 ], [ -77.858443722100077, 24.801035937757685 ], [ -77.858377723774439, 24.800939604562263 ], [ -77.858364114297913, 24.800915018314111 ], [ -77.85828738200297, 24.800752744060954 ], [ -77.858198693131612, 24.800576344899405 ], [ -77.858157552088173, 24.800481504467413 ], [ -77.858104307144671, 24.800330019107296 ], [ -77.858084573852821, 24.800281205170464 ], [ -77.858032076307623, 24.800174012600763 ], [ -77.85799307684789, 24.800099763288816 ], [ -77.857959779893577, 24.800043163153084 ], [ -77.857942125303296, 24.800016512771922 ], [ -77.857905233291206, 24.799965580934447 ], [ -77.857885483829705, 24.799942379162506 ], [ -77.857865009427741, 24.799920333723968 ], [ -77.857822369994466, 24.799880696123218 ], [ -77.85775627824404, 24.799829128162255 ], [ -77.857712444051444, 24.799790566139617 ], [ -77.857669947450276, 24.79974735917629 ], [ -77.857649545811881, 24.799723905382564 ], [ -77.857629873605475, 24.799699513791239 ], [ -77.857602104883384, 24.799660246344523 ], [ -77.857539493206403, 24.799564461709256 ], [ -77.857523081884494, 24.799535191109062 ], [ -77.857493053899503, 24.799474046079972 ], [ -77.857471340720721, 24.79941970941498 ], [ -77.857431827424676, 24.799307117656593 ], [ -77.857394351507651, 24.799207606025206 ], [ -77.857343586812618, 24.799052654148756 ], [ -77.857324129303564, 24.799003179172743 ], [ -77.857309403221123, 24.798971958634212 ], [ -77.857277126752948, 24.798911724215792 ], [ -77.85714075800125, 24.798676886033235 ], [ -77.857063042051081, 24.798568627060106 ], [ -77.85702201778868, 24.798516808201139 ], [ -77.856979860750712, 24.798466468602005 ], [ -77.856935763351714, 24.798418546067531 ], [ -77.856823859318453, 24.798305816399235 ], [ -77.856801327774491, 24.798285086857152 ], [ -77.856778453972424, 24.798265175239823 ], [ -77.856731796374859, 24.798229113814294 ], [ -77.856635863489061, 24.798165654617449 ], [ -77.856562474723589, 24.798110586706581 ], [ -77.856411220887637, 24.797988984297014 ], [ -77.856332230228048, 24.797927405483488 ], [ -77.85622905422612, 24.797841349056636 ], [ -77.856041854304053, 24.797695684669137 ], [ -77.855989847238988, 24.79765270531194 ], [ -77.855939689805098, 24.797608277636527 ], [ -77.855891196051132, 24.797562668305417 ], [ -77.855752510544306, 24.797423073262937 ], [ -77.855615765398483, 24.797294797039608 ], [ -77.855514301585458, 24.797197243413017 ], [ -77.855486553524642, 24.797164121514918 ], [ -77.855362291368024, 24.797005079033397 ], [ -77.855236062799207, 24.796855309297126 ], [ -77.855215999825674, 24.796828827037576 ], [ -77.855159314334642, 24.796746153323848 ], [ -77.855035128534794, 24.796544979493287 ], [ -77.854961315764527, 24.79643251641934 ], [ -77.85490444252558, 24.796349427354826 ], [ -77.854864109067663, 24.796296304407896 ], [ -77.854821069884053, 24.79624566054332 ], [ -77.854753150062066, 24.796172923254556 ], [ -77.854706498752734, 24.796126179856287 ], [ -77.854612499939691, 24.796035639395658 ], [ -77.854590264839771, 24.796012405899557 ], [ -77.854569035853018, 24.795988913886607 ], [ -77.854510625596575, 24.795916241687017 ], [ -77.854472160634458, 24.79587116669996 ], [ -77.854452699532089, 24.795850168452215 ], [ -77.854391778484512, 24.795794165767944 ], [ -77.854350730865917, 24.795753183722628 ], [ -77.854310686665457, 24.795707816727809 ], [ -77.85427289184652, 24.795657928590437 ], [ -77.854246812855536, 24.795617122647961 ], [ -77.854171616679693, 24.795488398478216 ], [ -77.854078280823401, 24.7953054172572 ], [ -77.854030370076018, 24.795214485572032 ], [ -77.853939389602331, 24.795027601764765 ], [ -77.853881736625695, 24.794900894539868 ], [ -77.853833052428911, 24.794812327521132 ], [ -77.853796985968557, 24.794757890137536 ], [ -77.853759241455279, 24.794706722090414 ], [ -77.853721427771717, 24.794658299013715 ], [ -77.853683458679583, 24.79461391185648 ], [ -77.853664297614571, 24.794593731348243 ], [ -77.853626534236668, 24.794558306580981 ], [ -77.853590931306968, 24.794530168352971 ], [ -77.853552220206467, 24.794506369428788 ], [ -77.853532121300304, 24.794491667476628 ], [ -77.853519501767181, 24.794478049331111 ], [ -77.853499472031302, 24.794444028833656 ], [ -77.853462265608854, 24.794355724897613 ], [ -77.853439451095568, 24.794310609383608 ], [ -77.853409707876523, 24.794270902302692 ], [ -77.853378152755539, 24.794244775052828 ], [ -77.853342554317422, 24.794223949417411 ], [ -77.853317643136307, 24.794212430361242 ], [ -77.853291875860705, 24.794203451612976 ], [ -77.853265256083887, 24.794196541809278 ], [ -77.853182018189671, 24.794178366568993 ], [ -77.853154004227505, 24.794170547471683 ], [ -77.853097450788823, 24.794149525286205 ], [ -77.853069181705123, 24.794136820473092 ], [ -77.853013884111192, 24.794106660502422 ], [ -77.852987142163457, 24.794089529100791 ], [ -77.852961472804239, 24.794070519578735 ], [ -77.852936848185664, 24.79405023459692 ], [ -77.852913254833041, 24.794028326747583 ], [ -77.852867497347432, 24.793982356459995 ], [ -77.852755958030144, 24.793860871513793 ], [ -77.852709392060774, 24.7938132244734 ], [ -77.852661024969251, 24.793766949920361 ], [ -77.852610754347651, 24.793722233792913 ], [ -77.852558298124933, 24.793679381094073 ], [ -77.852503171210913, 24.793638847697238 ], [ -77.852417663273926, 24.793580660887283 ], [ -77.852310088222026, 24.793512360873152 ], [ -77.852272721899482, 24.793486121738209 ], [ -77.852221486487267, 24.793442128869938 ], [ -77.852173425721261, 24.79339565193105 ], [ -77.852128029358354, 24.793346882564553 ], [ -77.85208546179031, 24.793295675606117 ], [ -77.852003439316633, 24.793190337188562 ], [ -77.851982184278725, 24.793164836026858 ], [ -77.851938067116805, 24.793114978671721 ], [ -77.851891551453051, 24.793066952945413 ], [ -77.85186651271114, 24.79304472605563 ], [ -77.851813967555245, 24.793002165077606 ], [ -77.851676042921454, 24.792901611864977 ], [ -77.851589586363559, 24.792844667557752 ], [ -77.851559345477853, 24.792826808540166 ], [ -77.851512213569862, 24.792801997231692 ], [ -77.85133505681263, 24.792715839386343 ], [ -77.851145270640913, 24.792626160886162 ], [ -77.85105806398974, 24.792580677759457 ], [ -77.851001151224892, 24.792553537278497 ], [ -77.850918114553309, 24.792516811990328 ], [ -77.850863076572466, 24.792488046980026 ], [ -77.85064654216481, 24.792364971936074 ], [ -77.850603411353049, 24.79233787055302 ], [ -77.85054984930423, 24.792297457414875 ], [ -77.850500563236196, 24.792252845144372 ], [ -77.850477492703035, 24.792228925901604 ], [ -77.85043462419938, 24.792178316259221 ], [ -77.85037600373721, 24.792097080473575 ], [ -77.850357748174005, 24.792069009375627 ], [ -77.850256276276127, 24.791892240663042 ], [ -77.850220845823017, 24.791834871819923 ], [ -77.850183372600895, 24.791779285686655 ], [ -77.850143509860189, 24.79172578645646 ], [ -77.850020696686101, 24.791568163356025 ], [ -77.849923605871894, 24.791431969652834 ], [ -77.849883398178093, 24.791378839706642 ], [ -77.849781628937862, 24.791246999899247 ], [ -77.849677479162139, 24.791117489917578 ], [ -77.849617356716792, 24.791037543604702 ], [ -77.849598521740234, 24.791010012147517 ], [ -77.84957194598087, 24.790966896726641 ], [ -77.849493726075806, 24.790836491815419 ], [ -77.849347693248262, 24.7906112534667 ], [ -77.849257558089292, 24.790469376078743 ], [ -77.849205648940639, 24.790382075681638 ], [ -77.849113418910406, 24.79024225807186 ], [ -77.849023773333244, 24.790099714784965 ], [ -77.848878135764409, 24.789873896882799 ], [ -77.848839920533948, 24.789819068320575 ], [ -77.848799326564517, 24.789766303044434 ], [ -77.848755760069906, 24.789716113214912 ], [ -77.848664649340535, 24.78961918322339 ], [ -77.848642868788133, 24.789594207350113 ], [ -77.848601750202619, 24.789541896233636 ], [ -77.848527857482324, 24.789429797880718 ], [ -77.848473941497289, 24.789344480146447 ], [ -77.848405059579591, 24.789228281073942 ], [ -77.848362547707112, 24.789147535128169 ], [ -77.848340435676363, 24.78910790387102 ], [ -77.848322652627033, 24.789079464287127 ], [ -77.848265183805026, 24.788997227432436 ], [ -77.848163898756752, 24.78886501728385 ], [ -77.84812136083309, 24.788813937331273 ], [ -77.84807733260439, 24.78876414917973 ], [ -77.848030691176547, 24.788716625775571 ], [ -77.847980066618675, 24.788672555370177 ], [ -77.847873724055347, 24.78858907372344 ], [ -77.847822132011942, 24.788545842469262 ], [ -77.84774868395769, 24.788477458128416 ], [ -77.847725279251264, 24.788453891289212 ], [ -77.847680300604992, 24.788404926695332 ], [ -77.8475957951879, 24.788302028319954 ], [ -77.847534901988055, 24.788223004208369 ], [ -77.847459097652788, 24.788112563489438 ], [ -77.847387560315184, 24.787998422525106 ], [ -77.847350087093105, 24.787942952112012 ], [ -77.847253341231919, 24.787806809886323 ], [ -77.84719262949173, 24.787727384208161 ], [ -77.847148472803966, 24.787677708166711 ], [ -77.847125203743161, 24.787654023736213 ], [ -77.846953929154452, 24.787494776590371 ], [ -77.846906556497927, 24.787447888015677 ], [ -77.846838084212052, 24.787375191238933 ], [ -77.846774001094616, 24.787298932080294 ], [ -77.846714520046405, 24.787218197927665 ], [ -77.846672995422381, 24.787166239760161 ], [ -77.846629810711732, 24.787115721025636 ], [ -77.846497023543066, 24.786967209985058 ], [ -77.846395168962857, 24.786835252942527 ], [ -77.846351732723932, 24.786784951011473 ], [ -77.846328686445332, 24.786760830902889 ], [ -77.846280119927812, 24.786714976993586 ], [ -77.846203362480054, 24.786649947665449 ], [ -77.846178787268812, 24.786627152812898 ], [ -77.846034716361856, 24.786488179968508 ], [ -77.845964509429123, 24.7864172303738 ], [ -77.845900690416428, 24.786340499232544 ], [ -77.845737621937829, 24.78612978847606 ], [ -77.845672761777678, 24.786053955090892 ], [ -77.845605683677078, 24.785980040678076 ], [ -77.845461537311664, 24.785841100547032 ], [ -77.845333759149028, 24.785732051507086 ], [ -77.845230104345006, 24.785646170937024 ], [ -77.845129458897205, 24.785557402390666 ], [ -77.845081018143802, 24.785511367796666 ], [ -77.845035093571539, 24.785463139313123 ], [ -77.845013595090165, 24.785437871446018 ], [ -77.84498439714848, 24.785396955302417 ], [ -77.844939953898148, 24.785325328978885 ], [ -77.844895252831279, 24.785246304602524 ], [ -77.844871581325194, 24.785207937044635 ], [ -77.84483198897739, 24.785154178076755 ], [ -77.844788320973123, 24.785103983934768 ], [ -77.844672466149248, 24.784985072385915 ], [ -77.844567544720675, 24.784857662484548 ], [ -77.844482567688047, 24.784760139039861 ], [ -77.844439265298078, 24.784714144928543 ], [ -77.844393895884693, 24.784672096533534 ], [ -77.844346774756431, 24.784634547631835 ], [ -77.844298042050582, 24.784602454892891 ], [ -77.8442477597509, 24.784573742690917 ], [ -77.844195944925289, 24.784542119705765 ], [ -77.844143947741713, 24.784507147157452 ], [ -77.844093050096006, 24.78446865866627 ], [ -77.844017561069393, 24.784406794214924 ], [ -77.843884294200393, 24.784305538351251 ], [ -77.84382890138501, 24.784265920227799 ], [ -77.843743273972137, 24.784208683243456 ], [ -77.843576828726427, 24.784089284753847 ], [ -77.843403417045636, 24.783980219494072 ], [ -77.843346064106314, 24.783945494722445 ], [ -77.84325931739258, 24.783898028194088 ], [ -77.843128212768463, 24.783823076714604 ], [ -77.843103705829179, 24.783807840109073 ], [ -77.843030520082991, 24.783754807213906 ], [ -77.842975996836799, 24.783720685906488 ], [ -77.842930805289825, 24.783697546342033 ], [ -77.842850253358279, 24.783661323274934 ], [ -77.842713272853871, 24.783607562821395 ], [ -77.842645599170268, 24.783578880565624 ], [ -77.84237931606215, 24.783458619402928 ], [ -77.842316372906822, 24.78342509012468 ], [ -77.842163429339791, 24.78333728482049 ], [ -77.84206803723977, 24.783288195054812 ], [ -77.84197420641172, 24.783237522227822 ], [ -77.841884256305704, 24.783183493264559 ], [ -77.841827830427746, 24.783144321721441 ], [ -77.841800590813392, 24.783123768257912 ], [ -77.841747976487184, 24.783081530109062 ], [ -77.841723260240457, 24.783058785982622 ], [ -77.84167552556292, 24.783012063741499 ], [ -77.841605777669301, 24.782940244379471 ], [ -77.841494010179971, 24.782816811609855 ], [ -77.841448161066154, 24.782768570660942 ], [ -77.841424041300797, 24.782745406451397 ], [ -77.841372042320572, 24.782702951228416 ], [ -77.841316966610506, 24.782663175185554 ], [ -77.841231498199434, 24.782606916163594 ], [ -77.84120244578483, 24.782588812628042 ], [ -77.841114028204686, 24.782537817359302 ], [ -77.840977614537167, 24.782451460723216 ], [ -77.840951210356053, 24.782435492368741 ], [ -77.840924242032898, 24.782421236742778 ], [ -77.840843008280075, 24.782382919693308 ], [ -77.840816532233688, 24.782368232616136 ], [ -77.840766110695128, 24.782333558775367 ], [ -77.840742553275092, 24.782313719631514 ], [ -77.840720690976042, 24.782291550353072 ], [ -77.840680586588491, 24.78224276357205 ], [ -77.840656210803246, 24.782207146061715 ], [ -77.840608920791766, 24.782133133118169 ], [ -77.840589968135873, 24.78210629375053 ], [ -77.840550097310327, 24.782053648348239 ], [ -77.840508311276551, 24.782002251589965 ], [ -77.840335981167414, 24.781799114376433 ], [ -77.84029155408669, 24.781749453089031 ], [ -77.840222099043871, 24.781677659910816 ], [ -77.840150021818786, 24.781608280025662 ], [ -77.84010066029218, 24.78156363373467 ], [ -77.840050200126043, 24.781520446521494 ], [ -77.839998475131992, 24.781479101715913 ], [ -77.83981835123943, 24.781345673216553 ], [ -77.839769262800743, 24.781311711918597 ], [ -77.83969754939325, 24.781265117883507 ], [ -77.839674320756671, 24.781247399928034 ], [ -77.839651479293948, 24.78122854340106 ], [ -77.839606795295083, 24.781187045166593 ], [ -77.839572938690338, 24.781154838984154 ], [ -77.839540553525993, 24.78112024717943 ], [ -77.839514702707106, 24.78108591064624 ], [ -77.839421783669039, 24.780942664399479 ], [ -77.839392684541991, 24.780902100742324 ], [ -77.83932756476878, 24.780827193942365 ], [ -77.839242132290309, 24.780724815343188 ], [ -77.839197810312498, 24.780675039442265 ], [ -77.839174613116938, 24.780650922224019 ], [ -77.839126336755228, 24.780604575882645 ], [ -77.839026553690118, 24.780515125967536 ], [ -77.838954375853632, 24.780445854722768 ], [ -77.838885484054515, 24.780374740184676 ], [ -77.838797981857624, 24.780278330589049 ], [ -77.838757310633156, 24.780229196386546 ], [ -77.838667216796665, 24.780105639395941 ], [ -77.838649301694957, 24.780083322914862 ], [ -77.838593907082981, 24.780022615247354 ], [ -77.838575597620817, 24.780000645382007 ], [ -77.838460613264459, 24.779857081428801 ], [ -77.838342642009778, 24.779701101373078 ], [ -77.838257382906178, 24.779599773974791 ], [ -77.838210558221959, 24.77955250723868 ], [ -77.838033808401619, 24.779397954110372 ], [ -77.83800929337751, 24.779375040478406 ], [ -77.837916143472455, 24.77927939106717 ], [ -77.837891830569262, 24.779256557342741 ], [ -77.837791480667192, 24.779167459614083 ], [ -77.83773999193005, 24.779124070927608 ], [ -77.837687141346933, 24.779081875460303 ], [ -77.837417676406119, 24.778875788301868 ], [ -77.837340425783253, 24.778810926959366 ], [ -77.837240285188599, 24.778721570362308 ], [ -77.837161745483343, 24.778657840191251 ], [ -77.837028570242467, 24.778553519463181 ], [ -77.836951509164138, 24.778488512773325 ], [ -77.836851824015383, 24.778399022183784 ], [ -77.836631478954246, 24.77819412468758 ], [ -77.836482320887839, 24.778059810161711 ], [ -77.836409516027331, 24.777990869501917 ], [ -77.836335082521217, 24.77792358124087 ], [ -77.836263409537935, 24.777853652794505 ], [ -77.836149223783877, 24.777732607169924 ], [ -77.836125100425235, 24.77770941347395 ], [ -77.836072870577979, 24.777666716736807 ], [ -77.836029984108009, 24.777638092648033 ], [ -77.835954896628351, 24.777593263046178 ], [ -77.835892712549438, 24.777559173485074 ], [ -77.835860383080671, 24.777543318687648 ], [ -77.835826841784566, 24.777528267272068 ], [ -77.835764812215885, 24.777505234214669 ], [ -77.83563460141545, 24.777464459820195 ], [ -77.835571568428591, 24.777442252157041 ], [ -77.835537106359354, 24.777427960885916 ], [ -77.83547058880751, 24.777397516280594 ], [ -77.835307338869242, 24.77731900803688 ], [ -77.835244479257213, 24.777285299294832 ], [ -77.835213977860079, 24.777267756129458 ], [ -77.835155480467094, 24.777230252293403 ], [ -77.835072220114995, 24.777170282182606 ], [ -77.834919188513055, 24.777039163784387 ], [ -77.834800777982196, 24.776940265582176 ], [ -77.834770620639773, 24.776909995400366 ], [ -77.83473756533229, 24.77686541185351 ], [ -77.834683807450745, 24.776771789778547 ], [ -77.834656488784617, 24.776730033132576 ], [ -77.834639403726229, 24.776709586269185 ], [ -77.834587788326658, 24.776656326044321 ], [ -77.834572103741806, 24.776637420697984 ], [ -77.834558300229091, 24.776616703032182 ], [ -77.834546200820569, 24.77659481412638 ], [ -77.834510007697759, 24.776524977097051 ], [ -77.834413620264399, 24.776373582379829 ], [ -77.834358704454459, 24.776296081602471 ], [ -77.834317929923699, 24.776247533074685 ], [ -77.834295938267232, 24.776224666167451 ], [ -77.834249099209998, 24.776182408542528 ], [ -77.834198719892257, 24.776144972891284 ], [ -77.834172214201473, 24.77612846459575 ], [ -77.834144778754364, 24.776113368149129 ], [ -77.834116385703211, 24.776100291194322 ], [ -77.834013530399801, 24.776061698958198 ], [ -77.833969847124138, 24.776041800902235 ], [ -77.833941987672247, 24.776026108220968 ], [ -77.833915149604778, 24.776009011026243 ], [ -77.833864343587294, 24.775970315176849 ], [ -77.833817381460875, 24.775926488195914 ], [ -77.833774196750227, 24.775877888954533 ], [ -77.833733344964372, 24.775826881956515 ], [ -77.833714875602141, 24.775799212545621 ], [ -77.833681366645393, 24.775740815909082 ], [ -77.833659326479903, 24.77569395225602 ], [ -77.83361875047683, 24.775596875101208 ], [ -77.833596513580261, 24.775549934724452 ], [ -77.833529479497145, 24.775432087393003 ], [ -77.833482515574119, 24.775340511474607 ], [ -77.833337804168323, 24.775025159826281 ], [ -77.833295922014855, 24.774929326807744 ], [ -77.833241793129091, 24.774799776957579 ], [ -77.833211164171161, 24.774738346498999 ], [ -77.83317760580708, 24.774679460796982 ], [ -77.833067246876098, 24.774510972137403 ], [ -77.83301008976953, 24.77442844504867 ], [ -77.832990088779724, 24.77440191885146 ], [ -77.832927760970364, 24.774323867102385 ], [ -77.832864079399883, 24.77424697840641 ], [ -77.832819973017706, 24.774197467437727 ], [ -77.83273374103868, 24.77409621058564 ], [ -77.832673719204621, 24.774016078759391 ], [ -77.832578832856129, 24.77387804038489 ], [ -77.832542849939131, 24.773821120788742 ], [ -77.83245164129336, 24.773657306233122 ], [ -77.832425255078491, 24.77361384058139 ], [ -77.832386179261974, 24.773559499115414 ], [ -77.832343522760709, 24.773508274203422 ], [ -77.832298045549493, 24.77345954514346 ], [ -77.832274408179387, 24.7734361206372 ], [ -77.832152195079928, 24.773322895194934 ], [ -77.832035560518378, 24.77320845596741 ], [ -77.832011702162745, 24.77318688864111 ], [ -77.831962708945468, 24.773146653602129 ], [ -77.831911858910487, 24.773110846698323 ], [ -77.831858788240126, 24.773080950780535 ], [ -77.831831253080011, 24.773068928138429 ], [ -77.831803344220802, 24.773058833685717 ], [ -77.831775350021616, 24.773050507556103 ], [ -77.831747195023951, 24.773044681385755 ], [ -77.831648617497933, 24.773032616326351 ], [ -77.83160634996716, 24.77302476490193 ], [ -77.831564222573604, 24.773013782205279 ], [ -77.831502546941152, 24.772991356783557 ], [ -77.831472503684793, 24.772977989129192 ], [ -77.831414857894671, 24.772946550788657 ], [ -77.831359692353118, 24.772910603535713 ], [ -77.831306245288644, 24.772871542125614 ], [ -77.831280406147798, 24.772850927418702 ], [ -77.831231945631458, 24.772806051227278 ], [ -77.831165747879894, 24.772731975582481 ], [ -77.831123671690307, 24.772680507265381 ], [ -77.830983092534822, 24.772493402734302 ], [ -77.830839018932934, 24.772309564609067 ], [ -77.830774747169315, 24.772233000926771 ], [ -77.830705692775112, 24.772161127204232 ], [ -77.83066307220642, 24.772110033035457 ], [ -77.830643556306924, 24.772082815484083 ], [ -77.830607177232835, 24.772026337965215 ], [ -77.830541731371156, 24.771906593337931 ], [ -77.830454429498545, 24.771762455589649 ], [ -77.830421295139303, 24.771702970600028 ], [ -77.8303747228817, 24.771611523251682 ], [ -77.830354757824523, 24.771562680886579 ], [ -77.830336711568762, 24.771512175376415 ], [ -77.830325331710753, 24.771478185286998 ], [ -77.830310266963437, 24.771425097368574 ], [ -77.83027099172088, 24.771260708690026 ], [ -77.830185294239428, 24.770938866249018 ], [ -77.830146704411433, 24.770773891281049 ], [ -77.830132195721305, 24.770720326714383 ], [ -77.830121336886165, 24.770685887793562 ], [ -77.830086012434236, 24.770584223508326 ], [ -77.830004334015342, 24.770391188380867 ], [ -77.829954621247524, 24.770257902123962 ], [ -77.829824849723238, 24.769930422449111 ], [ -77.82980607583211, 24.769873205771237 ], [ -77.829731708801333, 24.769614797675889 ], [ -77.829716777902973, 24.769550575058801 ], [ -77.829690704301839, 24.76941884664755 ], [ -77.829676039304871, 24.769354393909623 ], [ -77.829640060879413, 24.769224144920539 ], [ -77.829624995233772, 24.769178412593035 ], [ -77.82959941660441, 24.76911263915505 ], [ -77.829556796035746, 24.769017545467488 ], [ -77.829511379011606, 24.768925118147475 ], [ -77.829490980068087, 24.768876659724295 ], [ -77.829460881116191, 24.768792756924302 ], [ -77.8294455423827, 24.768739911744788 ], [ -77.829367960281516, 24.76841790860686 ], [ -77.829351645079328, 24.768358560680273 ], [ -77.829318013053438, 24.768255674233735 ], [ -77.829247276114643, 24.768052914208319 ], [ -77.829235992376411, 24.768018843235275 ], [ -77.829221218683244, 24.767965509133571 ], [ -77.829176844603154, 24.767761699666973 ], [ -77.829143865652441, 24.767591863899046 ], [ -77.829131480579605, 24.767536458592964 ], [ -77.829096511860527, 24.767405334914546 ], [ -77.829081942084912, 24.767359172867021 ], [ -77.829050830731717, 24.767276149981971 ], [ -77.829030077851982, 24.767227997613141 ], [ -77.828935082807334, 24.767046751286621 ], [ -77.828912340159278, 24.766987096821996 ], [ -77.828894029798846, 24.76692359962361 ], [ -77.828861295189895, 24.766793236335602 ], [ -77.828842347025599, 24.766730292075316 ], [ -77.828830226955816, 24.766696947518493 ], [ -77.828765264387755, 24.766533033022164 ], [ -77.828666768608372, 24.766310483949734 ], [ -77.82862623033455, 24.766213584620413 ], [ -77.828577838090197, 24.766079401511028 ], [ -77.828534970484839, 24.765940426868823 ], [ -77.82848898033555, 24.765759822246885 ], [ -77.828453277692915, 24.765629336198408 ], [ -77.828439391535255, 24.76558257966359 ], [ -77.828405582541208, 24.765480090608946 ], [ -77.828356212929791, 24.765302411227832 ], [ -77.828317224249872, 24.765174766595088 ], [ -77.828301558529603, 24.765129551561323 ], [ -77.828275271129485, 24.765064386938192 ], [ -77.828246457666708, 24.765001410805066 ], [ -77.828215640062538, 24.764939925741039 ], [ -77.828165208642531, 24.764851582050156 ], [ -77.828128515158141, 24.764795425075928 ], [ -77.828109164548565, 24.764768093354487 ], [ -77.828067638127948, 24.764716117632371 ], [ -77.828023785070727, 24.764666394859173 ], [ -77.827873719705877, 24.764488352141477 ], [ -77.827853710631246, 24.764461805875275 ], [ -77.827835268218436, 24.764433654297715 ], [ -77.827802126672694, 24.764374338726704 ], [ -77.827780756650384, 24.764326638764643 ], [ -77.827723150386163, 24.764177862271954 ], [ -77.82769381679887, 24.764115214418965 ], [ -77.827600895065856, 24.763931540082972 ], [ -77.827487851968812, 24.763723691132054 ], [ -77.827399358930194, 24.763545286519278 ], [ -77.827367147140748, 24.763491868109657 ], [ -77.827350080946943, 24.763466941631524 ], [ -77.827332093980033, 24.763443899439935 ], [ -77.82731349076883, 24.763422193378265 ], [ -77.827255886301231, 24.763363431192051 ], [ -77.827218356485275, 24.763319496165877 ], [ -77.827183563835987, 24.763269693709489 ], [ -77.827157924121195, 24.763223115742989 ], [ -77.827109726811244, 24.763123594751377 ], [ -77.827046625552384, 24.763005588797732 ], [ -77.827028141817095, 24.762963274468198 ], [ -77.826984394761098, 24.762840290871925 ], [ -77.82693306502577, 24.762664229357295 ], [ -77.826921824406597, 24.762630064730025 ], [ -77.826856407291004, 24.762436779864892 ], [ -77.82683996722298, 24.762392160123831 ], [ -77.826762492021274, 24.762209677452127 ], [ -77.826742853052551, 24.762167863702967 ], [ -77.826710052866602, 24.76210829417688 ], [ -77.826673311771444, 24.762052151461024 ], [ -77.82663260461436, 24.761999455137357 ], [ -77.826589220477715, 24.761949086041692 ], [ -77.82652176688137, 24.761875727464975 ], [ -77.826500104008261, 24.761850401774865 ], [ -77.826437143784958, 24.761772916404372 ], [ -77.826397583776455, 24.76171949478535 ], [ -77.826369024536945, 24.761670752126431 ], [ -77.826317454951436, 24.761568457248824 ], [ -77.826284717647539, 24.761508880909492 ], [ -77.826232075473555, 24.761422700525213 ], [ -77.826180695432598, 24.761334933497068 ], [ -77.826091516081078, 24.761192437769679 ], [ -77.826046438620111, 24.761113880124896 ], [ -77.82602264673983, 24.761075681305329 ], [ -77.825983090324598, 24.761021973066502 ], [ -77.825961853252934, 24.760996497924339 ], [ -77.825848954784661, 24.760874405602383 ], [ -77.825760406948802, 24.76077476852706 ], [ -77.825602340289706, 24.760603474469718 ], [ -77.825493848057903, 24.76047717585713 ], [ -77.825426935247336, 24.760403237242418 ], [ -77.825357989549275, 24.760331677255472 ], [ -77.825308296544407, 24.760287906750449 ], [ -77.825281955245316, 24.760267715766393 ], [ -77.825227645798165, 24.760229281755873 ], [ -77.825144617211393, 24.760175941862002 ], [ -77.825089834352127, 24.760142655094068 ], [ -77.825034751455519, 24.760112955908788 ], [ -77.82492049203961, 24.760063152166811 ], [ -77.824861744914955, 24.760033948112419 ], [ -77.82479879996302, 24.760005446397553 ], [ -77.824747683128365, 24.759986115966253 ], [ -77.824639641850879, 24.759949982237305 ], [ -77.824586364568006, 24.75993060448484 ], [ -77.824551913278526, 24.759916471897789 ], [ -77.824485268165901, 24.759887072032789 ], [ -77.824407299789144, 24.759847348228689 ], [ -77.824364584897339, 24.759822081673644 ], [ -77.824338804147047, 24.759803920977173 ], [ -77.824315217082642, 24.759785383408641 ], [ -77.824250361414045, 24.759724976611643 ], [ -77.824220964944701, 24.759704221863061 ], [ -77.824197052690138, 24.759696576792667 ], [ -77.824174529231044, 24.759697328084872 ], [ -77.824156056275498, 24.759706594836686 ], [ -77.824143802356716, 24.759724356652967 ], [ -77.824137851916277, 24.759748366180428 ], [ -77.824137783644346, 24.759776062008427 ], [ -77.824141166699704, 24.759797933485629 ], [ -77.824146362555268, 24.759820903753166 ], [ -77.82417285566963, 24.759915497095911 ], [ -77.824182358947056, 24.759959264469241 ], [ -77.824184782601691, 24.759978232719103 ], [ -77.824183198871822, 24.760002519546696 ], [ -77.824174595706367, 24.760018720823219 ], [ -77.824165040326648, 24.760023256299302 ], [ -77.824153521229789, 24.760022606160039 ], [ -77.824140999613022, 24.760017030624237 ], [ -77.824127788090138, 24.760007515912619 ], [ -77.824107749371109, 24.759986657613187 ], [ -77.824028082280137, 24.759890440198305 ], [ -77.824001226246395, 24.759861084376855 ], [ -77.823989080125429, 24.75985019921983 ], [ -77.823977953592362, 24.759843048493405 ], [ -77.823967827782425, 24.759840795435345 ], [ -77.823959695334196, 24.75984368639763 ], [ -77.823954651293846, 24.759851692829148 ], [ -77.823952869934672, 24.759863826059348 ], [ -77.823953979354059, 24.759879088444048 ], [ -77.82396122247016, 24.759918412528425 ], [ -77.82398405674634, 24.760017038781555 ], [ -77.823991198352871, 24.76007204528576 ], [ -77.823992175719951, 24.760099639075026 ], [ -77.823987892552637, 24.760141684372627 ], [ -77.823975716787288, 24.760182650442498 ], [ -77.823963141271634, 24.760208342736234 ], [ -77.82394758245087, 24.76023324458064 ], [ -77.823929311616325, 24.760256871431576 ], [ -77.823908693483901, 24.760279763304112 ], [ -77.823885933767897, 24.760301423418184 ], [ -77.823836349459128, 24.760343506171136 ], [ -77.823730512647316, 24.760426993762223 ], [ -77.823658095859017, 24.760482039239893 ], [ -77.823624396459451, 24.760511762808825 ], [ -77.82359086414651, 24.760549238249641 ], [ -77.823560880178974, 24.760589180444736 ], [ -77.823542242831778, 24.76061612561443 ], [ -77.823525325758297, 24.760643952581415 ], [ -77.823501598556732, 24.760696254667451 ], [ -77.82348417932505, 24.7607503700956 ], [ -77.823455072113205, 24.760872410332865 ], [ -77.823443994987429, 24.760901177776017 ], [ -77.823428320284037, 24.760920570060151 ], [ -77.823415064743727, 24.760926604809786 ], [ -77.823400057488598, 24.760927223946723 ], [ -77.823383493453065, 24.760923449577128 ], [ -77.823366121832095, 24.760915496236926 ], [ -77.823348651396472, 24.76090337452969 ], [ -77.823331243842901, 24.760887922206326 ], [ -77.823314226158132, 24.760869103373498 ], [ -77.823280486334383, 24.760824741655131 ], [ -77.82321216945698, 24.760719593478207 ], [ -77.823135963574856, 24.760610273573079 ], [ -77.82309446949354, 24.760557012968569 ], [ -77.823050770048212, 24.760505244311155 ], [ -77.822982032759313, 24.760430031542366 ], [ -77.822931831307969, 24.760383847324686 ], [ -77.822823889743404, 24.760298968882811 ], [ -77.822774191348657, 24.760252580683566 ], [ -77.822678326734803, 24.760157654778759 ], [ -77.822602405618554, 24.760090077057281 ], [ -77.822548822010162, 24.760047745419939 ], [ -77.822464854683943, 24.759987756405987 ], [ -77.822411068954608, 24.759945599300764 ], [ -77.822385474155539, 24.759923506785782 ], [ -77.822338372790256, 24.759875506555844 ], [ -77.82230997973906, 24.759840714677654 ], [ -77.822255274134903, 24.759769312619255 ], [ -77.822166205276162, 24.759669019621981 ], [ -77.822118167866307, 24.759622300814584 ], [ -77.822092818307354, 24.759600412991812 ], [ -77.822066508449282, 24.759579305824499 ], [ -77.822039170020261, 24.759559574800477 ], [ -77.822010674561099, 24.759540919729417 ], [ -77.821980928647122, 24.759523982596395 ], [ -77.821949720275825, 24.759508571704004 ], [ -77.821899966185498, 24.759489547096653 ], [ -77.821847685134287, 24.759474594644029 ], [ -77.821794816584855, 24.759462683256277 ], [ -77.821710179115428, 24.759447631280512 ], [ -77.821677959241143, 24.759444057537227 ], [ -77.821646789497393, 24.759442365698913 ], [ -77.82161688817483, 24.759442752358193 ], [ -77.821588161848695, 24.759446176821609 ], [ -77.821560464093523, 24.759452728820083 ], [ -77.821533782332978, 24.759461445783629 ], [ -77.821508465113297, 24.759472272241638 ], [ -77.82147007650795, 24.759494550824829 ], [ -77.821434319068061, 24.759517370237269 ], [ -77.821397872620352, 24.759534674452535 ], [ -77.821374698780986, 24.759539985711452 ], [ -77.821350563744232, 24.759541321071644 ], [ -77.821325489069693, 24.759539596605233 ], [ -77.821299935593146, 24.759534955881552 ], [ -77.821274363251973, 24.75952739971601 ], [ -77.821240379086447, 24.759514023270718 ], [ -77.821207887022609, 24.759496438439196 ], [ -77.821179210103807, 24.759473602708201 ], [ -77.821156110824589, 24.759444611422555 ], [ -77.821138205604313, 24.759410934536326 ], [ -77.821124479346793, 24.759374332406853 ], [ -77.821116758326951, 24.759345855828453 ], [ -77.821111227399712, 24.759305650565974 ], [ -77.821111363045347, 24.759264034879436 ], [ -77.821117096991799, 24.759222366971674 ], [ -77.821124848554348, 24.759191797173315 ], [ -77.821151255430479, 24.759106809423621 ], [ -77.821169775098369, 24.75905107974685 ], [ -77.821220692506984, 24.758918593797134 ], [ -77.821235333249504, 24.758877491081737 ], [ -77.821248763961293, 24.758834151591216 ], [ -77.821260338753703, 24.758789573790409 ], [ -77.821273989552793, 24.758708234578336 ], [ -77.821279133306092, 24.758627646611675 ], [ -77.821276702464971, 24.758553419754772 ], [ -77.821268039112326, 24.758490666281386 ], [ -77.8212612828831, 24.758461642136691 ], [ -77.821248194429401, 24.758419344205674 ], [ -77.82124295455634, 24.758405977430051 ], [ -77.821239747128573, 24.75840153112043 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 521, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 283 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.863627041711183, 24.809511295078543 ], [ -77.863632795423086, 24.809282855103095 ] ], [ [ -77.863611529605024, 24.809245444929349 ], [ -77.863512005255089, 24.809153770843874 ], [ -77.86342968094749, 24.809089673879704 ], [ -77.86340119357321, 24.809065054185112 ], [ -77.863373395206779, 24.809039211369281 ], [ -77.863323107517147, 24.808984896020043 ], [ -77.863302172279447, 24.808957683296299 ], [ -77.863228071149976, 24.808850041597562 ], [ -77.863131295644422, 24.808715061454727 ], [ -77.86307516351556, 24.808631277734428 ], [ -77.863032534862086, 24.808580116227638 ], [ -77.863009503854812, 24.808556142239826 ], [ -77.862985560159231, 24.808532717021226 ], [ -77.862885180612764, 24.808443539208614 ], [ -77.862699049685887, 24.80829710121602 ], [ -77.862673684855523, 24.80827496104401 ], [ -77.862649175221307, 24.808252325910402 ], [ -77.862578730235043, 24.808181274607808 ], [ -77.862530320922687, 24.808135252487901 ], [ -77.862454504011055, 24.808068883244442 ], [ -77.862401706428514, 24.808026921047091 ], [ -77.862350661459146, 24.807983196717537 ], [ -77.862301712259281, 24.807937658882548 ], [ -77.862199635795264, 24.807837534459821 ], [ -77.862142175956393, 24.807773920358692 ], [ -77.862087978798698, 24.807704123712789 ], [ -77.862063771896729, 24.80766830802764 ], [ -77.862042210533261, 24.807633268612157 ], [ -77.862018392601811, 24.807588272087802 ], [ -77.861984694998881, 24.807518918110958 ], [ -77.861976182563239, 24.807504376708675 ], [ -77.861970674093939, 24.807497112122544 ], [ -77.861968953821702, 24.807496691366488 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 523, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 1441 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.87342257161076, 24.82094517113509 ], [ -77.873415124575615, 24.82093690202829 ], [ -77.873403382696495, 24.8209269549697 ], [ -77.873285717767331, 24.820832775853123 ], [ -77.873020974371642, 24.820610822355249 ], [ -77.872964853022566, 24.820560154179987 ], [ -77.872892609609124, 24.820490417732291 ], [ -77.872842314732992, 24.820445803376725 ], [ -77.87264884457025, 24.820305977272504 ], [ -77.872594808210962, 24.820264843524523 ], [ -77.87251818281554, 24.820199420045988 ], [ -77.87249410527096, 24.820176421819141 ], [ -77.872471403047129, 24.820151987778292 ], [ -77.872428520170388, 24.820101172654422 ], [ -77.872328249320063, 24.819967974867637 ], [ -77.872213148182695, 24.819803439344785 ], [ -77.872194696786764, 24.819775533511407 ], [ -77.872141833627239, 24.819688903576036 ], [ -77.872086048248065, 24.819605017203966 ], [ -77.871905378179832, 24.81936507911821 ], [ -77.871780177283739, 24.819210007308289 ], [ -77.871720720490032, 24.819130749322888 ], [ -77.871684562401512, 24.819075265930749 ], [ -77.871650247655978, 24.819019294937373 ], [ -77.87153995160709, 24.818828704574841 ], [ -77.871499046820617, 24.8187537440397 ], [ -77.871483611069067, 24.818730347655112 ], [ -77.871465819934869, 24.818708029970562 ], [ -77.8714459249463, 24.8186863148238 ], [ -77.871400566312644, 24.818645687684331 ], [ -77.871350615491295, 24.81860631698278 ], [ -77.871324102613997, 24.818587148965694 ], [ -77.871099636980659, 24.818438080412811 ], [ -77.871046010253167, 24.818398253049683 ], [ -77.870943606802328, 24.818316643075946 ], [ -77.870829802832262, 24.818232969396497 ], [ -77.870796218417027, 24.818204997981368 ], [ -77.870776673771431, 24.818185104239998 ], [ -77.870758985943468, 24.818164676440645 ], [ -77.870646474649064, 24.818027448734064 ], [ -77.870562704053896, 24.817932443091941 ], [ -77.87050019568315, 24.817858614539748 ], [ -77.870455374242042, 24.817812615582085 ], [ -77.87033799407881, 24.817708006537558 ], [ -77.870274481391604, 24.817646513347306 ], [ -77.870210064100888, 24.817593409310721 ], [ -77.870142759624841, 24.817535052734495 ], [ -77.870117690340223, 24.817516438993099 ], [ -77.870064183986955, 24.817480110023713 ], [ -77.869978793729288, 24.817427181217308 ], [ -77.869922976909123, 24.817389272061853 ], [ -77.869841850954089, 24.817328978102662 ], [ -77.869791555179674, 24.817284877098714 ], [ -77.869675314080212, 24.817165372659453 ], [ -77.869585207667342, 24.817066871731527 ], [ -77.869471272543194, 24.816945876605914 ], [ -77.869331632127228, 24.816806269960175 ], [ -77.869289140017671, 24.816757971296251 ], [ -77.869210658702897, 24.816660774621774 ], [ -77.869172138943483, 24.816615753652691 ], [ -77.869152694909161, 24.816594751580286 ], [ -77.869071559971019, 24.816518476961157 ], [ -77.869031617280228, 24.816474932560954 ], [ -77.869007466972107, 24.816441748138359 ], [ -77.868820574273883, 24.816146852471043 ], [ -77.868670557418085, 24.815925298261121 ], [ -77.868652345872306, 24.815897164067156 ], [ -77.868630240129789, 24.815857432915823 ], [ -77.868560458100205, 24.815712040014848 ], [ -77.868489344767369, 24.81555338987452 ], [ -77.868450437834099, 24.815454934141204 ], [ -77.868412526234181, 24.815340689516294 ], [ -77.868392913316555, 24.815284146892282 ], [ -77.868380062916415, 24.815251405712004 ], [ -77.868300906068498, 24.815055564269844 ], [ -77.868262801330786, 24.814978558130047 ], [ -77.868237173294077, 24.814934607948789 ], [ -77.868218188298854, 24.814907200026635 ], [ -77.868117726107371, 24.814774476910767 ], [ -77.867960283777393, 24.814558841497636 ], [ -77.867941809025282, 24.81453099482076 ], [ -77.86791887503604, 24.81449206800654 ], [ -77.867857812054623, 24.814383526862855 ], [ -77.867831305465543, 24.814340347816273 ], [ -77.867802771378848, 24.814298925890601 ], [ -77.867781921481097, 24.814273137980937 ], [ -77.867693695242139, 24.814173931083435 ], [ -77.867672520154187, 24.81414818228594 ], [ -77.867652313450208, 24.814121839072818 ], [ -77.867615207639105, 24.814065795719301 ], [ -77.867597802780466, 24.814037022662127 ], [ -77.867566120997026, 24.813976520780948 ], [ -77.867542991175085, 24.813919388015588 ], [ -77.867503070043853, 24.813799627562801 ], [ -77.867481015505305, 24.813741562736535 ], [ -77.867451558848799, 24.813679131521138 ], [ -77.867435355037742, 24.813649073334375 ], [ -77.867364433944402, 24.813534865367483 ], [ -77.867313776148862, 24.813446465766866 ], [ -77.867278657411163, 24.813388943004369 ], [ -77.867241650414712, 24.81333305750362 ], [ -77.867202144305139, 24.813279094650881 ], [ -77.867073589099789, 24.813126878037384 ], [ -77.866910444264406, 24.812916179362293 ], [ -77.866784935246159, 24.812760804311363 ], [ -77.866741615788214, 24.812710372649594 ], [ -77.866696949755635, 24.812661102893944 ], [ -77.866628041786839, 24.812588718513855 ], [ -77.866578523055097, 24.812543638172748 ], [ -77.866508171493635, 24.812487589213152 ], [ -77.866474294227643, 24.812458431741621 ], [ -77.86645064787443, 24.812434788736436 ], [ -77.86640643998264, 24.812385062253352 ], [ -77.866344646670882, 24.812306161119842 ], [ -77.866301783557105, 24.812255231885299 ], [ -77.866234354215237, 24.812181658429193 ], [ -77.866117353141078, 24.81206298565948 ], [ -77.866094717392528, 24.812038470925529 ], [ -77.865962542874883, 24.811889679066276 ], [ -77.865858998563638, 24.811762216080602 ], [ -77.865792536707374, 24.811692670375564 ], [ -77.865746167469013, 24.811650165537436 ], [ -77.865721721615202, 24.811630804826759 ], [ -77.865695969610968, 24.811613341534791 ], [ -77.865654072186075, 24.811592033657128 ], [ -77.865609703495906, 24.811575428154544 ], [ -77.865538467992195, 24.811552862932196 ], [ -77.86549738354266, 24.811537851520544 ], [ -77.865457926840449, 24.811519806839215 ], [ -77.865430024269415, 24.811503698717683 ], [ -77.86540353295166, 24.811485948388846 ], [ -77.865366209748231, 24.811455886408613 ], [ -77.865279667850373, 24.811382077644005 ], [ -77.865226835233599, 24.811341484802501 ], [ -77.865141771962698, 24.811282411810271 ], [ -77.865110931900702, 24.811258749011103 ], [ -77.86507897253783, 24.811233022438994 ], [ -77.865013235621959, 24.811176159120567 ], [ -77.864947840065923, 24.811115508255796 ], [ -77.864886035974337, 24.811054769298412 ], [ -77.864831015061512, 24.810997678402181 ], [ -77.864741095498204, 24.810897989428092 ], [ -77.864733147204589, 24.810890349957443 ], [ -77.864729140717969, 24.810888240525244 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 524, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 115 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.874552273148524, 24.821231198444966 ], [ -77.874550403753616, 24.821227644414392 ], [ -77.874542900126031, 24.821222870652878 ], [ -77.87445561082987, 24.821180614498491 ], [ -77.874432763977239, 24.821171224330623 ], [ -77.874408889451956, 24.821163035144817 ], [ -77.874343289978327, 24.82114420180914 ], [ -77.87428955455465, 24.821124708867444 ], [ -77.874268437857253, 24.821119070850663 ], [ -77.874221829667064, 24.821111575508532 ], [ -77.8740975755953, 24.821099440114061 ], [ -77.874051069813021, 24.821091756429094 ], [ -77.874029853402618, 24.821086133902092 ], [ -77.873993662974783, 24.821073207633326 ], [ -77.873971797082447, 24.821066976868032 ], [ -77.873854749295845, 24.821042689762429 ], [ -77.873833837414338, 24.821035857280577 ], [ -77.873784112968465, 24.821014296639568 ], [ -77.873706103269171, 24.820985458338807 ], [ -77.873691788615119, 24.820982610382984 ], [ -77.873677477554338, 24.820982201086139 ], [ -77.873644737555495, 24.820985562701352 ], [ -77.873624189491665, 24.820985870896948 ], [ -77.873601835814171, 24.820984380469444 ], [ -77.873579086877868, 24.820981116694153 ], [ -77.8735572470367, 24.820976209208606 ], [ -77.873501898238786, 24.820960056657764 ], [ -77.873473771986767, 24.820955842208495 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 526, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 129 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.876265358597365, 24.821906983454863 ], [ -77.876266116776023, 24.821904518719222 ], [ -77.876264333620185, 24.821900566017394 ], [ -77.876258464028126, 24.821894025469682 ], [ -77.876236256775996, 24.821876802514879 ], [ -77.876220325154407, 24.821867108282976 ], [ -77.876193826650166, 24.821855075693676 ], [ -77.876162247274678, 24.8218445539035 ], [ -77.876127381861835, 24.821835599985704 ], [ -77.876091248926159, 24.82182807859645 ], [ -77.875995490313514, 24.821811471204303 ], [ -77.875969237947672, 24.821805331792675 ], [ -77.875945361625739, 24.821797434535839 ], [ -77.875868301445678, 24.821761910734466 ], [ -77.87585329958047, 24.821756142294255 ], [ -77.875832063407159, 24.821751134554237 ], [ -77.875810025038263, 24.821748984536192 ], [ -77.875788328927541, 24.82174934980279 ], [ -77.875756947181415, 24.821752540178423 ], [ -77.875735125306534, 24.821752838588239 ], [ -77.875712892901518, 24.82175061682139 ], [ -77.875691399810037, 24.8217455780987 ], [ -77.875676159891285, 24.821739834932934 ], [ -77.87561997835509, 24.821714121951448 ], [ -77.875600822679971, 24.821702452983409 ], [ -77.875550847604089, 24.821658614441191 ], [ -77.875480310989659, 24.821614280979258 ], [ -77.875465304632826, 24.821600852523428 ], [ -77.875452226958927, 24.821582646241801 ], [ -77.875442227811519, 24.821561773017933 ], [ -77.875418912936652, 24.821493348998416 ], [ -77.875407417195902, 24.821470594795223 ], [ -77.875395350126695, 24.821454103947179 ], [ -77.875365793757211, 24.821422033782884 ], [ -77.875349156958166, 24.821407053734063 ], [ -77.875331437689169, 24.821393754077796 ], [ -77.875295843742691, 24.821371565695198 ], [ -77.875278853905684, 24.821363278683091 ], [ -77.875260966651794, 24.821357008796461 ], [ -77.875245654867769, 24.821353564027699 ], [ -77.87523454719927, 24.821352479638925 ], [ -77.875229074662073, 24.821353468638513 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 527, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 140 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.877825377197894, 24.822771350764359 ], [ -77.877825381005152, 24.822770956394656 ], [ -77.877820714257311, 24.822762659692266 ], [ -77.877810987299398, 24.822751616173917 ], [ -77.87774052344848, 24.822685539305873 ], [ -77.877717694562207, 24.822666648313806 ], [ -77.877688949371418, 24.822647727151999 ], [ -77.877658280887644, 24.822631370988713 ], [ -77.877627892678191, 24.822617221083579 ], [ -77.877543707959632, 24.822580109270273 ], [ -77.877462075354842, 24.822547997000736 ], [ -77.877341722666316, 24.822511428171428 ], [ -77.877314031199376, 24.822500201998462 ], [ -77.877267510145757, 24.822474281267674 ], [ -77.877185380772588, 24.82242136193279 ], [ -77.877167065920588, 24.822408459447708 ], [ -77.877117463645504, 24.822366602390808 ], [ -77.877099417389786, 24.822355163405373 ], [ -77.877080526717677, 24.822345262934121 ], [ -77.877048133468548, 24.822329955236842 ], [ -77.877020744733855, 24.822320407798657 ], [ -77.876964453603179, 24.822312838334774 ], [ -77.876890181793812, 24.822296118492858 ], [ -77.876828629230545, 24.822284547418484 ], [ -77.876798559923046, 24.822277618796896 ], [ -77.876770563028884, 24.822267655539473 ], [ -77.876746143226185, 24.822251754276781 ], [ -77.876731065004137, 24.82223460230496 ], [ -77.876719883673815, 24.822215086705796 ], [ -77.876697829135253, 24.822152808964386 ], [ -77.876692519928397, 24.822141398051716 ] ], [ [ -77.876664818663627, 24.822106008748737 ], [ -77.876662870297679, 24.822105019516936 ], [ -77.87665898688023, 24.82210517443319 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 529, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 550 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.882027857109378, 24.826684177298038 ], [ -77.882028165231716, 24.826679214595114 ], [ -77.882024110236543, 24.826668798387793 ], [ -77.882015879871901, 24.826653982847748 ], [ -77.881970285879646, 24.826586610111189 ], [ -77.881902960742352, 24.826494296618691 ], [ -77.88185065902988, 24.826426373470117 ], [ -77.881723753131382, 24.82625425447446 ], [ -77.881679732089182, 24.826198249221019 ], [ -77.881581798655262, 24.826079715432861 ], [ -77.881487829486616, 24.825977096993068 ], [ -77.881465105703199, 24.825946089519942 ], [ -77.881419876427003, 24.825878766131549 ], [ -77.881382126523789, 24.825828647992974 ], [ -77.881341840676527, 24.825778920363224 ], [ -77.881236680296084, 24.825653766740235 ], [ -77.881104385404242, 24.825505283925253 ], [ -77.881057339734511, 24.82545803224048 ], [ -77.880958836768613, 24.825367466732764 ], [ -77.880865938391793, 24.825271775342046 ], [ -77.880802095124565, 24.825194857082785 ], [ -77.880719203980078, 24.825090331726077 ], [ -77.880655019353028, 24.825013783502968 ], [ -77.880609147781357, 24.824965519835857 ], [ -77.880560135699454, 24.824919987426441 ], [ -77.880377266555342, 24.824770669672294 ], [ -77.880320975424738, 24.824720558423099 ], [ -77.880260472093696, 24.824662046219025 ], [ -77.880136722875108, 24.824536628937981 ], [ -77.880075914116887, 24.824480804721912 ], [ -77.88004659130938, 24.82445654682153 ], [ -77.879992860377257, 24.82441752447334 ], [ -77.87994976639645, 24.824392729271345 ], [ -77.879934170744789, 24.824385767339997 ], [ -77.879924080867539, 24.82438302382204 ], [ -77.879918590363928, 24.824383817933988 ] ], [ [ -77.879911158602141, 24.824358548214928 ], [ -77.879911741608836, 24.824354284958002 ], [ -77.879907949819994, 24.824346766982913 ], [ -77.879895791122621, 24.82433217863673 ], [ -77.879876707312718, 24.824313190058607 ], [ -77.879757788335425, 24.824209865726356 ], [ -77.87969444812471, 24.824148597528172 ], [ -77.879666894100012, 24.824117870879881 ], [ -77.87964518451453, 24.82408649605096 ], [ -77.87959573585141, 24.823996319259791 ], [ -77.879556852274348, 24.823942025957738 ], [ -77.879514124806164, 24.823891055033165 ], [ -77.879424201649584, 24.82379293612782 ], [ -77.879400670280731, 24.823769181141444 ], [ -77.879375045837264, 24.823747478296262 ], [ -77.879269377010402, 24.823663088362071 ], [ -77.879172920406731, 24.823570102501417 ], [ -77.879122140440359, 24.823525952354316 ], [ -77.879069246738112, 24.823483984792109 ], [ -77.879018692248891, 24.823439794663742 ], [ -77.878884344706535, 24.823341480540204 ], [ -77.878780778835761, 24.823275556451129 ], [ -77.878752480107664, 24.823264162392082 ], [ -77.878678753575684, 24.823244801865489 ], [ -77.878547369575443, 24.823207097504266 ], [ -77.878503206599476, 24.823195795569809 ], [ -77.878460928288931, 24.82318751520225 ], [ -77.878422581006106, 24.823182076216924 ], [ -77.878391107631813, 24.823179006545132 ], [ -77.878360075330249, 24.823178324124072 ] ], [ [ -77.878359168682479, 24.823168300113309 ], [ -77.878359715105887, 24.823135495468065 ], [ -77.878359287178782, 24.823135113985263 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 531, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 1935 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.888550105771841, 24.842605096545658 ], [ -77.888580118486459, 24.842564252259258 ], [ -77.888610038673619, 24.842512545546832 ], [ -77.88863477109004, 24.842454887103724 ], [ -77.888657511043121, 24.842385101031617 ], [ -77.888677731221875, 24.842306407318191 ], [ -77.888695361557623, 24.842222458823997 ], [ -77.888710533204446, 24.842137108956013 ], [ -77.888749259576343, 24.84187044353266 ], [ -77.888756685050481, 24.841806242848808 ], [ -77.888761873719574, 24.841740781839178 ], [ -77.888765104959631, 24.841674618095904 ], [ -77.888766511721386, 24.841608256224486 ], [ -77.888766090411522, 24.84154217311486 ], [ -77.888763702689516, 24.84147684647321 ], [ -77.888733566906666, 24.841115098836838 ], [ -77.888726653472233, 24.841051655897374 ], [ -77.88871767930253, 24.840989954193894 ], [ -77.888705740692401, 24.840930796702047 ], [ -77.88867616276336, 24.840823963749944 ], [ -77.88863195487157, 24.84068558644454 ], [ -77.888528283897898, 24.840378179678993 ], [ -77.888483532525399, 24.840240154859167 ], [ -77.888447946663732, 24.840138981287829 ], [ -77.888433933843643, 24.84009229686481 ], [ -77.888400420395328, 24.83996019339283 ], [ -77.888387062447023, 24.839895079500536 ], [ -77.888352751294789, 24.839697550412211 ], [ -77.888319008776051, 24.839539302731747 ], [ -77.888303990741136, 24.83948262115614 ], [ -77.888285233918054, 24.839431975375973 ], [ -77.888272401484173, 24.839406633728263 ], [ -77.888214902119472, 24.83930772739452 ], [ -77.888173950620626, 24.839221892095722 ], [ -77.888147339826929, 24.839161420451127 ], [ -77.888134986195169, 24.83912987171756 ], [ -77.88811886413076, 24.839079524976313 ], [ -77.888105106432207, 24.839026580944267 ], [ -77.888071267793748, 24.838881435349261 ], [ -77.88803276959392, 24.838694642665278 ], [ -77.887984560605901, 24.838471707050335 ], [ -77.887902086279666, 24.838146421103772 ], [ -77.887887883016745, 24.838079264947062 ], [ -77.887862033994381, 24.837942764472011 ], [ -77.887846678192943, 24.837876635383399 ], [ -77.887827031139366, 24.837814233452342 ], [ -77.887716935414758, 24.83755767645102 ], [ -77.887667953875592, 24.83742391944514 ], [ -77.88757807653306, 24.837149173946273 ], [ -77.887464277952901, 24.836829500630181 ], [ -77.887435996292794, 24.836743984812905 ], [ -77.887393750321607, 24.836604165696698 ], [ -77.887349814619341, 24.836466055960766 ], [ -77.88730438951039, 24.836329236581808 ], [ -77.887257333959184, 24.836193832294818 ], [ -77.887207619394744, 24.836060731708358 ], [ -77.887167245512629, 24.835963646378993 ], [ -77.8871112858603, 24.835835960333103 ], [ -77.887065526578041, 24.835743543679307 ], [ -77.887016915144756, 24.835653842506808 ], [ -77.886970191970178, 24.835562260519016 ], [ -77.886926426947866, 24.835468114543346 ], [ -77.886873351785937, 24.835337929282396 ], [ -77.886809785199787, 24.835172729377874 ], [ -77.886784520980754, 24.835106654245813 ], [ -77.886736570707498, 24.834971782603912 ], [ -77.886552187902168, 24.834515060535352 ], [ -77.88650971016564, 24.834419797694359 ], [ -77.886406535062022, 24.834201202899436 ], [ -77.886378361199746, 24.834137651249701 ], [ -77.886357690965056, 24.834082054738989 ], [ -77.886319679652118, 24.833967973223167 ], [ -77.886289441461329, 24.833884155220048 ], [ -77.886270645112319, 24.833834284895772 ], [ -77.886243848367457, 24.833769539534355 ], [ -77.886117035893704, 24.833483216712303 ], [ -77.886090258911722, 24.833418454047031 ], [ -77.886049084630656, 24.833307116055298 ], [ -77.88602709477081, 24.833252662969603 ], [ -77.885997346161872, 24.833190476380004 ], [ -77.885902419389197, 24.833008842183549 ], [ -77.885813774535237, 24.832821518875466 ], [ -77.885729958125978, 24.832607710071354 ], [ -77.885709966119322, 24.832558877869211 ], [ -77.885681515575968, 24.832495565877132 ], [ -77.88563629618119, 24.832402682033187 ], [ -77.885588436637789, 24.83231208736342 ], [ -77.885538020489108, 24.83222370849953 ], [ -77.885485019887341, 24.83213781448169 ], [ -77.885436359046707, 24.832047915034444 ], [ -77.885379947541793, 24.83192062361238 ], [ -77.885288062464653, 24.831691756997788 ], [ -77.885245768882783, 24.831596337084601 ], [ -77.885201562787614, 24.831502574527786 ], [ -77.885005360848112, 24.831100217898225 ], [ -77.88495681050027, 24.831010221496161 ], [ -77.884868961553636, 24.830866320383464 ], [ -77.884815096772627, 24.83078117628569 ], [ -77.884780913181103, 24.830722835705551 ], [ -77.884719977760426, 24.830599224676259 ], [ -77.884672559289839, 24.830508491721677 ], [ -77.88462675688848, 24.830416114300554 ], [ -77.884582827474404, 24.83032186984018 ], [ -77.884537331398519, 24.830229470267422 ], [ -77.88445020829073, 24.830040586398962 ], [ -77.884389479482564, 24.829917040725785 ], [ -77.884355763015009, 24.829858296177893 ], [ -77.884311651242953, 24.829786507212738 ], [ -77.884283520499878, 24.829744731730912 ], [ -77.884263197014846, 24.829718484775732 ], [ -77.884241780280192, 24.829692942212581 ], [ -77.884173568505702, 24.829620237597151 ], [ -77.884055454418871, 24.82950281993633 ], [ -77.884010179328556, 24.829454096572025 ], [ -77.883967397063174, 24.829403211074254 ], [ -77.883928044565479, 24.829349353054646 ], [ -77.883901439161718, 24.829306254229916 ], [ -77.883859532753746, 24.829232554748277 ], [ -77.883697617711974, 24.8289325622343 ], [ -77.883629640397771, 24.828815301270584 ], [ -77.883538178427145, 24.828674533995947 ], [ -77.88344315912795, 24.828536852405993 ], [ -77.883365545585704, 24.828428189861164 ], [ -77.883328282569408, 24.82837251904186 ], [ -77.883151005438009, 24.82808609161259 ], [ -77.882921966481561, 24.827711874150609 ], [ -77.882878651515171, 24.827649882078141 ], [ -77.882853200446576, 24.82761720205151 ], [ -77.882795512435649, 24.827552405337187 ], [ -77.882732182106395, 24.827490369159229 ], [ -77.882699260647883, 24.827461492417008 ], [ -77.882632826639366, 24.827411295835784 ], [ -77.88257107285348, 24.827370655252071 ], [ -77.882543491879318, 24.827354604631115 ], [ -77.882498490775149, 24.827332540425154 ], [ -77.882482748698109, 24.827326345032152 ], [ -77.882468789776752, 24.827324289685926 ] ], [ [ -77.888328073675112, 24.842469121156558 ], [ -77.888373258036083, 24.842469584995843 ], [ -77.888386282709376, 24.842471146901513 ], [ -77.888394997265948, 24.842474267452033 ], [ -77.888400622516301, 24.842480167803149 ], [ -77.888407154166714, 24.842502075238585 ], [ -77.888411598132393, 24.842509250546474 ], [ -77.888419291304501, 24.842513547416061 ], [ -77.888438274503088, 24.842519024681433 ], [ -77.888445956895396, 24.842523330517704 ], [ -77.888450408945943, 24.84253049930285 ], [ -77.888455369442951, 24.842548254149808 ], [ -77.888459522354495, 24.842555682164001 ], [ -77.888466967591569, 24.842560194242221 ], [ -77.888486991039272, 24.842566539683059 ], [ -77.888495751409906, 24.842573419073165 ], [ -77.888499790235414, 24.842581976124148 ], [ -77.888500862824074, 24.842597237300776 ] ], [ [ -77.882456963454672, 24.827314095292191 ], [ -77.882458575033809, 24.827282656048084 ], [ -77.882457991128874, 24.827253475153828 ], [ -77.882453669334041, 24.827224749185259 ], [ -77.882449361912265, 24.827212841040669 ], [ -77.882443216537439, 24.827203796198337 ], [ -77.88243498078289, 24.827198018228096 ], [ -77.88239436525393, 24.82718309839413 ], [ -77.882385307540886, 24.82717841862069 ], [ -77.882377881168495, 24.827172322685549 ], [ -77.882372728431974, 24.827164760855776 ], [ -77.882366689956669, 24.827145936585548 ], [ -77.882357782262275, 24.82708148041678 ], [ -77.882350530163023, 24.827063707860948 ], [ -77.882345337002391, 24.827057243408106 ], [ -77.88232700418402, 24.827040238039025 ], [ -77.882305871316973, 24.827014450335653 ], [ -77.882279038639467, 24.826993847073823 ], [ -77.882257233832561, 24.826968642295174 ], [ -77.882223944064734, 24.826944131325934 ], [ -77.882199876401671, 24.826922968761163 ], [ -77.882192244314993, 24.826917772081984 ], [ -77.882178760602613, 24.826912355273397 ], [ -77.882171616301136, 24.826912070735982 ] ], [ [ -77.882170492508706, 24.826910095280425 ], [ -77.882170734155508, 24.826868964540651 ], [ -77.88216597847439, 24.826866694763272 ], [ -77.882145655887484, 24.82686641593288 ] ], [ [ -77.88213275277576, 24.826879229584325 ], [ -77.882131709542946, 24.826881095293459 ], [ -77.88212561254204, 24.8269038934842 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 534, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 242 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.89073817963471, 24.843286253553707 ], [ -77.890738373058895, 24.8432862576262 ], [ -77.890795293908553, 24.843303590913887 ], [ -77.891022802135737, 24.843364591219977 ], [ -77.891226928114349, 24.843415866343801 ], [ -77.891380619978023, 24.843449930459194 ], [ -77.891500997819335, 24.843480854475718 ], [ -77.891569789905489, 24.843496921755261 ], [ -77.89160319016608, 24.843502173171075 ], [ -77.89167015148567, 24.843508803062871 ], [ -77.89173669958025, 24.843517492109036 ], [ -77.891776034111572, 24.843521201195959 ], [ -77.891813803777694, 24.843522525054713 ], [ -77.891847420532272, 24.843521425371566 ], [ -77.891873931612949, 24.843517688568365 ], [ -77.89188983987826, 24.843510916835012 ], [ -77.891892461162314, 24.84350296145406 ], [ -77.891885367166509, 24.843494498212923 ], [ -77.891870870154463, 24.843485579283278 ], [ -77.89182845440169, 24.843465137723332 ], [ -77.891802108611017, 24.843455049001967 ], [ -77.891743344418401, 24.843436396766933 ], [ -77.891711469497153, 24.843429318519824 ], [ -77.891610192533719, 24.843415895690452 ], [ -77.891574844725596, 24.843409475296138 ], [ -77.891464492981143, 24.843384090442843 ], [ -77.891228075263001, 24.84332319693566 ], [ -77.890927571732433, 24.843239454557949 ], [ -77.89077842983572, 24.843201249239623 ], [ -77.89075173190497, 24.843196309216601 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 536, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 270 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.893894442111744, 24.846365133324181 ], [ -77.893894214839193, 24.846360764848406 ], [ -77.893889323512454, 24.846351869765119 ], [ -77.893878372150837, 24.846337763329021 ], [ -77.893767794929232, 24.846212048460114 ], [ -77.893707252072346, 24.846149459167577 ], [ -77.8936750115368, 24.846118998832669 ], [ -77.893642213147487, 24.846089554188381 ], [ -77.89354868594998, 24.846014343595954 ], [ -77.893441078558723, 24.845931425544052 ], [ -77.893386349598359, 24.845891136671391 ], [ -77.893333645440649, 24.845848846546723 ], [ -77.893106477674976, 24.84564975368307 ], [ -77.893027357657985, 24.84558649729675 ], [ -77.892999745242776, 24.845566324274944 ], [ -77.892941538903955, 24.845528805233517 ], [ -77.892815060603496, 24.845462980996341 ], [ -77.892755138482514, 24.845426705875148 ], [ -77.892663952294654, 24.845374154210401 ], [ -77.89260703683486, 24.845335516694782 ], [ -77.892552960051361, 24.845294418162005 ], [ -77.892369921125706, 24.845145049168703 ], [ -77.89231582727426, 24.845104208982711 ], [ -77.892158155873886, 24.844980459061013 ], [ -77.89208477519324, 24.84492733821487 ], [ -77.892047472651058, 24.844903006063703 ], [ -77.891991676492168, 24.844872397875339 ], [ -77.891911151510101, 24.844834757977498 ], [ -77.891856746843004, 24.844813150126878 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 547, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 1538 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.901709706038645, 24.858117544619514 ], [ -77.90170916973905, 24.858109445902201 ], [ -77.901703386385194, 24.858090090825485 ], [ -77.901654447965157, 24.857963314427423 ], [ -77.901617578410949, 24.857862258049533 ], [ -77.901556670838076, 24.857682465489681 ], [ -77.901505344695977, 24.857515436190489 ], [ -77.901461718014204, 24.857354331575312 ], [ -77.901444675176649, 24.857302921217126 ], [ -77.901418235062906, 24.857237836828794 ], [ -77.901321792832292, 24.857013014258982 ], [ -77.901221605525308, 24.856791326141728 ], [ -77.901175380915717, 24.856699395448775 ], [ -77.901130983479433, 24.856605607894885 ], [ -77.90103390524159, 24.856381012403649 ], [ -77.90099359513988, 24.856283552583566 ], [ -77.900936998582011, 24.856156802047106 ], [ -77.900858187585527, 24.85600782111516 ], [ -77.900800425014424, 24.855887397936716 ], [ -77.900769525663577, 24.855831640025482 ], [ -77.900736695833217, 24.855780104323451 ], [ -77.900701904082268, 24.855733559478711 ], [ -77.900645043419715, 24.855674131085451 ], [ -77.900522729708968, 24.855541127256163 ], [ -77.900502834720356, 24.855516260853364 ], [ -77.900464697643315, 24.85546424736836 ], [ -77.900410959524706, 24.855381204418016 ], [ -77.900394152045692, 24.855352381458669 ], [ -77.9003718702334, 24.855306025557589 ], [ -77.900313514774211, 24.855158611867161 ], [ -77.900242355627299, 24.855000283701393 ], [ -77.900223538617041, 24.854950328148679 ], [ -77.900188462100161, 24.854848194994812 ], [ -77.90016902974395, 24.854798776537912 ], [ -77.900139490442413, 24.854736286957372 ], [ -77.900092255228174, 24.854645238316838 ], [ -77.900046953188365, 24.854552300996566 ], [ -77.899989003767701, 24.854425977434946 ], [ -77.899939147269492, 24.854337045413718 ], [ -77.899627664529518, 24.853858980091129 ], [ -77.899561238605841, 24.85374034970733 ], [ -77.899529673603354, 24.853679727840237 ], [ -77.899472973739265, 24.85355242606115 ], [ -77.899428057975044, 24.853459265392452 ], [ -77.899396391462957, 24.853398733865745 ], [ -77.899363351426842, 24.853339392383567 ], [ -77.8993289558329, 24.853280983369771 ], [ -77.899292946864747, 24.853224460516074 ], [ -77.899242680734716, 24.853135940081984 ], [ -77.899119137230315, 24.852890621146102 ], [ -77.899089479351204, 24.852828349054391 ], [ -77.899062025039484, 24.852764165467789 ], [ -77.899006774157911, 24.85261355264678 ], [ -77.898985648477378, 24.852565696705607 ], [ -77.898952356912957, 24.852506574907398 ], [ -77.898933984568757, 24.852478632428333 ], [ -77.898894391322628, 24.852424729835832 ], [ -77.898849445015699, 24.852375713082768 ], [ -77.898774327891644, 24.852308982807582 ], [ -77.898643359811402, 24.85220293160403 ], [ -77.898523790453851, 24.85208626816495 ], [ -77.898437109317129, 24.852007627083474 ], [ -77.898401004229228, 24.851973123524523 ], [ -77.898378745773101, 24.851948306942376 ], [ -77.898337391829017, 24.851896175393652 ], [ -77.898187550144641, 24.851673903438606 ], [ -77.898135840421958, 24.851586636381203 ], [ -77.898086136637318, 24.851497386047605 ], [ -77.898050947830953, 24.851439908674823 ], [ -77.897996871047525, 24.85135469395561 ], [ -77.897921973112389, 24.851243659025613 ], [ -77.897885847363227, 24.851186995038116 ], [ -77.897834125962461, 24.851099737418856 ], [ -77.897716837427353, 24.850893113002588 ], [ -77.897620032277402, 24.850727548301755 ], [ -77.897595798425954, 24.850689739821586 ], [ -77.897576015726798, 24.850663020452533 ], [ -77.89739035821205, 24.85042792660041 ], [ -77.897328230727013, 24.850349687958555 ], [ -77.897285761973649, 24.850298764587659 ], [ -77.897224675636011, 24.8502196218741 ], [ -77.897184847031269, 24.850166163363784 ], [ -77.897126906593741, 24.850084044486731 ], [ -77.897046381611659, 24.849978111201541 ], [ -77.897009146443153, 24.849922150916818 ], [ -77.896938219061568, 24.849807629966879 ], [ -77.896835385317729, 24.849632470387824 ], [ -77.896787700945822, 24.849541620961652 ], [ -77.896757382804964, 24.849479843607217 ], [ -77.896684003022685, 24.849322879248056 ], [ -77.896637564614082, 24.849230849262685 ], [ -77.896588903773463, 24.849140741325346 ], [ -77.896537239864799, 24.849053281736516 ], [ -77.896519177439401, 24.849024802925353 ], [ -77.896481094261233, 24.848969861144489 ], [ -77.896382916485521, 24.848836110766616 ], [ -77.896326673863911, 24.848754444229865 ], [ -77.896140692057358, 24.84850632389773 ], [ -77.896084766541037, 24.848446045089954 ], [ -77.896026747051749, 24.848379843359009 ], [ -77.895893461318124, 24.848245235617679 ], [ -77.895798423154346, 24.848154679443251 ], [ -77.895751826642226, 24.848107605139973 ], [ -77.895706406024829, 24.848059176032788 ], [ -77.895639700725042, 24.847984807061859 ], [ -77.895570862824883, 24.847912083029104 ], [ -77.895312347449021, 24.847653050135506 ], [ -77.895154554776113, 24.847491197403109 ], [ -77.895108539473995, 24.847449612121853 ], [ -77.89506141475249, 24.847412013765947 ], [ -77.895037514176067, 24.847394876691769 ], [ -77.894964794655465, 24.847349295470174 ], [ -77.894940799755929, 24.847332519502618 ], [ -77.894895318951413, 24.847293692666415 ], [ -77.894873959708903, 24.847271789339921 ], [ -77.894832673138438, 24.847225147550436 ], [ -77.894689239137023, 24.847049275125485 ], [ -77.8946453106213, 24.846999998651722 ], [ -77.89457519980833, 24.846929263034163 ], [ -77.89445239292246, 24.846815707726655 ], [ -77.894405528712412, 24.846768216365898 ], [ -77.894358863029993, 24.846718021091668 ], [ -77.894303678623828, 24.846663692104382 ], [ -77.894241937414321, 24.846607854225404 ], [ -77.894177273086896, 24.846553892013542 ], [ -77.894113364242642, 24.846505144384178 ], [ -77.894082892489905, 24.846483839248741 ], [ -77.894027205027115, 24.846448810813534 ], [ -77.893982864184707, 24.846425462865451 ], [ -77.893966025264689, 24.846418842911902 ], [ -77.893952958370548, 24.846416189550254 ], [ -77.893944140507713, 24.846416920753189 ], [ -77.893940001070419, 24.846420595520616 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 548, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 70 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.902087128707635, 24.85884504987488 ], [ -77.902090003317184, 24.858764544098896 ], [ -77.902089290953157, 24.858748444568636 ], [ -77.902087323642732, 24.858739005900173 ], [ -77.902082886863511, 24.858731707640782 ], [ -77.902079349297949, 24.858729290102477 ], [ -77.902051585067426, 24.858720457854915 ], [ -77.902045501676355, 24.858714733521367 ], [ -77.90204256328704, 24.858706251758818 ], [ -77.902041410748538, 24.85869622296633 ], [ -77.902041138558999, 24.858657851253522 ], [ -77.902038513681731, 24.858647207068433 ], [ -77.90203558337727, 24.858642512183014 ], [ -77.902026151066806, 24.85863605508499 ], [ -77.902014551121553, 24.858633547885557 ], [ -77.902004684026267, 24.858633444369804 ] ], [ [ -77.901994186314042, 24.858606498493913 ], [ -77.901996792326713, 24.858518122920572 ], [ -77.90199501545905, 24.858502440681878 ], [ -77.901992001611248, 24.858499305864065 ], [ -77.901984385694306, 24.858497268965973 ], [ -77.901951534733698, 24.85849700088712 ] ], [ [ -77.901947714667784, 24.858487222225076 ], [ -77.901949646943947, 24.858421699128446 ], [ -77.901948330013767, 24.858410071929537 ], [ -77.901946095005314, 24.858407747304721 ], [ -77.901940448195433, 24.858406237765728 ], [ -77.90191608412313, 24.858406038070036 ] ], [ [ -77.901901246873877, 24.858367843899288 ], [ -77.901903551691788, 24.858287670429718 ], [ -77.901902736021484, 24.858276147549336 ], [ -77.901901013951104, 24.858272747822561 ], [ -77.901895014103332, 24.858270194155828 ], [ -77.901869750782325, 24.858269736076899 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 549, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 118 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.902456257240033, 24.85990533866703 ], [ -77.902439970782254, 24.859870576482717 ], [ -77.902432715089688, 24.85985013599996 ], [ -77.902426409814694, 24.859825597309229 ], [ -77.902421101669702, 24.859798229482504 ], [ -77.902405171844762, 24.859690722451525 ], [ -77.902400538334504, 24.859670228958993 ], [ -77.902394127058372, 24.859651278405114 ], [ -77.902379023683451, 24.859620501884223 ], [ -77.902351744543239, 24.859555920803786 ], [ -77.902335885685204, 24.859525797952159 ], [ -77.902329293847643, 24.859509454812521 ], [ -77.902307992097306, 24.859439693031803 ], [ -77.902301360733873, 24.859423384929137 ], [ -77.90227828391258, 24.859377461731025 ], [ -77.902258141887259, 24.859328752573177 ], [ -77.902242971138762, 24.859298032212571 ], [ -77.90223623557074, 24.859278662650429 ], [ -77.9022311385298, 24.859257873215455 ], [ -77.902215161094176, 24.859170890266508 ], [ -77.902191050311956, 24.859098205413286 ], [ -77.902176341297505, 24.859023028812345 ], [ -77.90216339028602, 24.858969550469403 ], [ -77.902155157226431, 24.858946437182802 ], [ -77.902145573100682, 24.858927642198729 ], [ -77.902134810385263, 24.858914327011604 ], [ -77.902124988205927, 24.858907543079717 ], [ -77.90211655751699, 24.858905002467342 ], [ -77.902111004131498, 24.858906331871484 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 550, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 317 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.903724979354962, 24.862566193214956 ], [ -77.90372651547429, 24.862514603259864 ], [ -77.903725383597035, 24.862506609978222 ], [ -77.903723530372631, 24.862504699480315 ], [ -77.903719001066946, 24.862503457330586 ], [ -77.903693544608359, 24.862503132937189 ] ], [ [ -77.903677450391768, 24.862489258191292 ], [ -77.903677586935729, 24.862479638048505 ], [ -77.903671056183612, 24.862458446512491 ], [ -77.903649642143861, 24.86241082911782 ], [ -77.903539655115424, 24.862192308222973 ], [ -77.903363217908776, 24.861850204682749 ], [ -77.903255986911617, 24.861634848508015 ], [ -77.903212185956676, 24.861540719109495 ], [ -77.90318431662331, 24.861476892967616 ], [ -77.903131905316357, 24.861345869470028 ], [ -77.903102317505841, 24.861283533169907 ], [ -77.903070227887255, 24.861223367362452 ], [ -77.902919533701734, 24.860957704860144 ], [ -77.902888170820191, 24.860896908030487 ], [ -77.902859926889377, 24.860833406769213 ], [ -77.902843384413373, 24.860788928398911 ], [ -77.902802543407333, 24.860662823125921 ], [ -77.902760867866348, 24.860522492275098 ], [ -77.902732072369915, 24.860437285443549 ], [ -77.902711240438464, 24.860382122141573 ], [ -77.902656498003381, 24.860261801846402 ], [ -77.902594239364305, 24.860141739812807 ], [ -77.902499922547676, 24.859973286637892 ], [ -77.902487229352701, 24.859955852171144 ], [ -77.90247832165791, 24.859951564062349 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 553, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 1074 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.905203087086065, 24.872700179401026 ], [ -77.905198301761132, 24.872697480959193 ], [ -77.905193377196753, 24.872692273977496 ], [ -77.905185488191918, 24.872680993677257 ], [ -77.905167321561905, 24.872645957177049 ], [ -77.9051532081305, 24.872611958151996 ], [ -77.905144801696039, 24.872582176703272 ], [ -77.905139325566054, 24.872549744891504 ], [ -77.905137033963811, 24.872516070207105 ], [ -77.905138053551639, 24.872482666906244 ], [ -77.90514045474842, 24.872461308381379 ], [ -77.905154323838062, 24.872369224710777 ], [ -77.905174579051078, 24.872186753168286 ], [ -77.905179722804391, 24.87215225034986 ], [ -77.905193698793596, 24.872085222678642 ], [ -77.905197826552296, 24.87205895944016 ], [ -77.905200543057745, 24.872005926833765 ], [ -77.905196031718376, 24.87194700748454 ], [ -77.905195353490342, 24.871894754782261 ], [ -77.905197611855002, 24.871868113344629 ], [ -77.905201692901301, 24.871841784045191 ], [ -77.905215069714203, 24.87177399336769 ], [ -77.905219556799068, 24.871738791980778 ], [ -77.905225211693761, 24.871664667079006 ], [ -77.905227067613126, 24.871588414170507 ], [ -77.905224687077649, 24.871512974584423 ], [ -77.90522134264981, 24.871476527803612 ], [ -77.905216018335139, 24.871441561051963 ], [ -77.905202573250293, 24.87137057779843 ], [ -77.905195755037255, 24.871297358956767 ], [ -77.905194058119719, 24.871252966666336 ], [ -77.905193647589627, 24.871100804225168 ], [ -77.905198288286357, 24.870908851505465 ], [ -77.905204493848373, 24.870636791649758 ], [ -77.905200839501788, 24.870624219378453 ], [ -77.905197186053513, 24.870618775142873 ], [ -77.905192230946412, 24.870614470284554 ], [ -77.905180135131118, 24.870609920924469 ], [ -77.90516373279236, 24.870608934767922 ], [ -77.905160171870577, 24.870484753146044 ], [ -77.905156299233369, 24.870405290012979 ], [ -77.905114621895763, 24.869857401323081 ], [ -77.90510759527362, 24.869794156502426 ], [ -77.905098396525091, 24.8697328049204 ], [ -77.905072773878274, 24.869593503129586 ], [ -77.905045171344526, 24.869455918414122 ], [ -77.905020670693474, 24.869315643999638 ], [ -77.905011572556234, 24.869247904097559 ], [ -77.905004989701865, 24.869177983993616 ], [ -77.904986143047225, 24.868891814019268 ], [ -77.904967626074267, 24.868708959174693 ], [ -77.904950344284799, 24.868485716594275 ], [ -77.904931573986957, 24.868305182327685 ], [ -77.904911390639143, 24.868028574621249 ], [ -77.904892358033209, 24.86785414910382 ], [ -77.904873385614394, 24.867650018130597 ], [ -77.904865148961576, 24.867583632702853 ], [ -77.904854383551211, 24.867519438843857 ], [ -77.904834468799663, 24.867426657904034 ], [ -77.904778326789341, 24.867189062811367 ], [ -77.904765581492114, 24.867122909419205 ], [ -77.904718003121388, 24.866818091683168 ], [ -77.904692234049165, 24.866628676026526 ], [ -77.904681407553369, 24.866567477729511 ], [ -77.9046504884396, 24.866418304766896 ], [ -77.904639070852326, 24.866348795469417 ], [ -77.904630175734397, 24.866277099396662 ], [ -77.904615040020161, 24.866131403837777 ], [ -77.904592889361879, 24.865947918147175 ], [ -77.904571935259582, 24.865727859007659 ], [ -77.904562539780017, 24.865656596175043 ], [ -77.904528880804605, 24.865443383663802 ], [ -77.904517851289569, 24.865386771824305 ], [ -77.904487089380979, 24.865251926668932 ], [ -77.904474857920064, 24.86520370966495 ], [ -77.904405616676286, 24.864955413680104 ], [ -77.90439652213233, 24.864919425465018 ], [ -77.90438301596204, 24.864851726351169 ], [ -77.904372588318211, 24.864781358746793 ], [ -77.904355210409008, 24.864637608567151 ], [ -77.904310900109337, 24.864314517873176 ], [ -77.904299154637002, 24.864245291844359 ], [ -77.904283612884271, 24.864179357754907 ], [ -77.904248066548504, 24.864063608687029 ], [ -77.904212261497904, 24.863933136458826 ], [ -77.904200028240354, 24.863884921385601 ], [ -77.904137632159021, 24.86361330576019 ], [ -77.904118168361748, 24.863538338927455 ], [ -77.904095071777519, 24.863464417761616 ], [ -77.904067762992881, 24.863395363232986 ], [ -77.90404881393026, 24.863356228458432 ], [ -77.904029208199191, 24.863319927612366 ], [ -77.904009286261086, 24.863287290422083 ], [ -77.903970491617244, 24.863234719448272 ], [ -77.903937906128633, 24.863199899520147 ], [ -77.903925687244183, 24.863189689335044 ], [ -77.90391707240056, 24.863184455056018 ], [ -77.903912861996332, 24.863184384966839 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 554, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 129 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.906066832502631, 24.875742922941079 ], [ -77.906067287051215, 24.875729264827505 ], [ -77.906065531743167, 24.875725997606121 ], [ -77.90603016866369, 24.875724722175459 ] ], [ [ -77.906017998288192, 24.875718107866447 ], [ -77.906018336953068, 24.87567865100311 ], [ -77.906015551277363, 24.875659369579552 ], [ -77.906012890467508, 24.87565105604882 ], [ -77.90600915257761, 24.875644376536826 ], [ -77.906003972891696, 24.875639481813668 ], [ -77.905986437777358, 24.875628359072081 ], [ -77.90598172611368, 24.875623668906318 ], [ -77.905978319702115, 24.875617798660411 ], [ -77.90597437609803, 24.875603570871782 ], [ -77.905968208265307, 24.875564801810107 ], [ -77.90596214553544, 24.875552411779083 ], [ -77.905957298226156, 24.87554783815159 ], [ -77.905934216014927, 24.875532749743467 ], [ -77.905914904931279, 24.875505373984382 ], [ -77.905885544394522, 24.875486953145526 ], [ -77.905872663451646, 24.875469940577894 ], [ -77.905859409707958, 24.875458457602825 ], [ -77.905841724574955, 24.875452152153198 ], [ -77.905823998119459, 24.875449633070193 ], [ -77.905810199996964, 24.875449479015874 ] ], [ [ -77.905803175171243, 24.875404219473879 ], [ -77.905829582047247, 24.875405514472426 ], [ -77.905845889164624, 24.875404806260256 ], [ -77.905863465601456, 24.875402610720815 ], [ -77.905880783323482, 24.875398341073069 ], [ -77.905896272973948, 24.875391370601669 ], [ -77.905908842201399, 24.875381031842689 ], [ -77.905917898117806, 24.875368176443054 ], [ -77.905923664403616, 24.875353939660979 ], [ -77.905938297959594, 24.875266592333816 ], [ -77.905947783270676, 24.875242028994034 ], [ -77.905966630823656, 24.875214021564819 ], [ -77.905971961426502, 24.875201773304337 ], [ -77.905978670943412, 24.875173525448329 ], [ -77.905984080598046, 24.875109426808617 ], [ -77.905987982879637, 24.874940041321132 ], [ -77.905992680170243, 24.874874904279249 ], [ -77.906001530372421, 24.87484115851041 ], [ -77.906008862421771, 24.87482516539086 ], [ -77.906031799105932, 24.874789250137443 ], [ -77.906037564493431, 24.874777047473572 ], [ -77.906041076007867, 24.874766502473758 ], [ -77.906042001271842, 24.874755062632531 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 557, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 201 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.909494685049907, 24.877101997890637 ], [ -77.909493322306076, 24.877096222246461 ], [ -77.909476023448647, 24.877089590080377 ], [ -77.909444440479874, 24.877083101347434 ], [ -77.909401388719886, 24.877076756047554 ], [ -77.909234231110133, 24.877056152157412 ], [ -77.909176525132906, 24.877047576302569 ], [ -77.909123294562434, 24.877037446312681 ], [ -77.909077837114111, 24.877025335146676 ], [ -77.9090073714666, 24.876996919010161 ], [ -77.908974947674722, 24.876981184513014 ], [ -77.908945778479151, 24.87696286413469 ], [ -77.908872964635478, 24.876897147904689 ], [ -77.90884559476541, 24.87687974108859 ], [ -77.908816421976539, 24.876865196424273 ], [ -77.908786417347727, 24.876852920618614 ], [ -77.908754389712897, 24.876844958417763 ], [ -77.908721101741747, 24.876841174538534 ], [ -77.908651358339725, 24.876838961910444 ], [ -77.908614029746388, 24.876836197551402 ], [ -77.908499967959813, 24.876822216837258 ], [ -77.908459222175168, 24.876820408431175 ], [ -77.908417916740078, 24.876820835472543 ], [ -77.90837708381882, 24.876823748155399 ], [ -77.908337802288088, 24.876829612639369 ], [ -77.908301266907173, 24.876839142832516 ], [ -77.908235200309605, 24.876867363413918 ], [ -77.908200862207863, 24.876880586206351 ], [ -77.908129937521224, 24.876905481725725 ], [ -77.907989654809825, 24.876957762463 ], [ -77.907914953605754, 24.87699494109421 ], [ -77.907718715733594, 24.87709642109736 ], [ -77.907691780648136, 24.877111059455185 ], [ -77.907664238300327, 24.877129110877071 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 559, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 170 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.907227494477894, 24.877238296234278 ], [ -77.907172738568534, 24.877238285635404 ], [ -77.907136881415653, 24.877236790180678 ], [ -77.907096317989001, 24.877233714515153 ], [ -77.907053536621845, 24.877228530543562 ], [ -77.90701107056347, 24.877220674311978 ], [ -77.906971490792031, 24.877209546008 ], [ -77.906948510988769, 24.877200455107836 ], [ -77.906908687773893, 24.877179938439287 ], [ -77.90689218302721, 24.877169076624181 ], [ -77.906878490905612, 24.877157747019876 ], [ -77.906842534039768, 24.877122986431264 ], [ -77.906797621868833, 24.877073687712702 ], [ -77.906757584854915, 24.877042464039853 ], [ -77.906742862365732, 24.877033169386685 ], [ -77.906717072632247, 24.877020426623805 ], [ -77.906633937145941, 24.876987200572582 ], [ -77.906608879539405, 24.876973824578425 ], [ -77.906581647111565, 24.87695331520689 ], [ -77.906557608194589, 24.876930281889237 ], [ -77.906543968175299, 24.876912694970866 ], [ -77.906531810376237, 24.876893824481748 ], [ -77.906503345459839, 24.876845216761456 ], [ -77.906492449793745, 24.876821574645277 ], [ -77.906462715557822, 24.876748090094789 ], [ -77.906426252940435, 24.876677004758662 ], [ -77.906405738114287, 24.876643441219297 ], [ -77.906347791388583, 24.876561690361392 ], [ -77.906322461592538, 24.876517718039725 ], [ -77.906312492089484, 24.876490800510098 ], [ -77.906304637220643, 24.876457809841867 ], [ -77.906298133417977, 24.876419459941285 ], [ -77.906282011353639, 24.876294377098585 ], [ -77.906269754739867, 24.876224406378224 ], [ -77.906262255603863, 24.876199649266319 ], [ -77.906253854559338, 24.876184104555374 ], [ -77.90624725284033, 24.876179084348401 ], [ -77.906241572790961, 24.876180240787839 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 560, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 303 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.912341728956378, 24.877954960866766 ], [ -77.912325347477577, 24.877938022802656 ], [ -77.912291360617118, 24.877907300546902 ], [ -77.912184206875096, 24.877818346297897 ], [ -77.912117653390652, 24.877769971204398 ], [ -77.912082052257603, 24.877747610379672 ], [ -77.912045277026536, 24.877727074242973 ], [ -77.912007789431385, 24.877709524111069 ], [ -77.911970352141921, 24.877694977914398 ], [ -77.91186554839264, 24.877661850654572 ], [ -77.911767296056766, 24.877627599557233 ], [ -77.911633388688927, 24.87757511454851 ], [ -77.911567967980076, 24.877545288658233 ], [ -77.911472959460667, 24.877496646150952 ], [ -77.911412190228319, 24.877461461063444 ], [ -77.9112952295783, 24.877387221424897 ], [ -77.911155216361507, 24.877290453767227 ], [ -77.911126338220058, 24.877272347769619 ], [ -77.911085474756092, 24.877251065049009 ], [ -77.911042679914289, 24.877232175052463 ], [ -77.910967262752933, 24.877201740302809 ], [ -77.910902077402639, 24.877179526883335 ], [ -77.910868484004283, 24.877171003194707 ], [ -77.910834221361043, 24.877164390591727 ], [ -77.910690287896301, 24.877141609951849 ], [ -77.910480197104178, 24.877101315762779 ], [ -77.910424632710587, 24.877087916962051 ], [ -77.910389159138347, 24.877077699774386 ], [ -77.91019798417112, 24.877016923912244 ], [ -77.910169478830539, 24.877009729417374 ], [ -77.910138483359972, 24.877006227520408 ], [ -77.910104279107244, 24.877006572249861 ], [ -77.910004674806828, 24.877014989189693 ], [ -77.909873130008194, 24.877030577804142 ], [ -77.909812327538219, 24.87704072490882 ], [ -77.909775796648859, 24.877048730290085 ], [ -77.909743042276972, 24.877058392490358 ], [ -77.909714589038657, 24.877069599044379 ], [ -77.909680825858715, 24.877087587717078 ], [ -77.909642826222495, 24.877110763626899 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 561, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 317 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.914231444051353, 24.87733824716754 ], [ -77.914225803529803, 24.877339714911066 ], [ -77.914213840665155, 24.877350546557494 ], [ -77.914196609181332, 24.877369051059496 ], [ -77.914150981053126, 24.877424275237917 ], [ -77.914121694178249, 24.877454866405152 ], [ -77.914087204261236, 24.877482843172878 ], [ -77.913979200712888, 24.87755337224289 ], [ -77.913919732241126, 24.877590124471126 ], [ -77.913799376857682, 24.877659978693973 ], [ -77.913765707102513, 24.877673916120497 ], [ -77.913509607296461, 24.877752606074129 ], [ -77.913470866551492, 24.877761730346904 ], [ -77.913349539190904, 24.877784252530834 ], [ -77.913310966430913, 24.877793534903098 ], [ -77.913201769021654, 24.87782782751734 ], [ -77.913167767788124, 24.877841449536227 ], [ -77.913104970159878, 24.877874144005538 ], [ -77.913071504322275, 24.877888274552809 ], [ -77.912965601035111, 24.877925694131346 ], [ -77.912890601590377, 24.877946296246609 ], [ -77.912808261113085, 24.877965491742827 ], [ -77.912754204092565, 24.877972993420812 ], [ -77.912693535471533, 24.877977670458122 ], [ -77.91262976766275, 24.877980087619974 ], [ -77.912506920352698, 24.877980342701463 ], [ -77.912376469171789, 24.877976562986426 ] ], [ [ -77.914061940940286, 24.876396194263943 ], [ -77.914062301164932, 24.876407386203187 ], [ -77.914064803871298, 24.876418688167451 ], [ -77.914091473953761, 24.876491199028745 ], [ -77.91411668157896, 24.876583306521788 ], [ -77.914122945531432, 24.876601227623162 ], [ -77.914136864926732, 24.876632854000526 ], [ -77.914142374294372, 24.876649794691094 ], [ -77.914157420177105, 24.876719978691415 ], [ -77.914167134558582, 24.876748815413546 ], [ -77.914174171960497, 24.876759370838723 ], [ -77.914183003298078, 24.87676645695791 ], [ -77.914192548796294, 24.876770603498741 ], [ -77.914210967852853, 24.876775012458115 ], [ -77.914220310331785, 24.876779477649887 ], [ -77.914228785936544, 24.876787060896373 ], [ -77.914235806270483, 24.876799451618595 ], [ -77.914240738919673, 24.87681531408828 ], [ -77.914246569884199, 24.876853905910306 ], [ -77.914255665326465, 24.876964096359458 ], [ -77.914264311611063, 24.877004841267954 ], [ -77.914276394849949, 24.877038025751329 ], [ -77.91428101398715, 24.877055659104833 ], [ -77.914284094310247, 24.877074264706366 ], [ -77.914286312250695, 24.877113077302408 ], [ -77.914285274696539, 24.877133784683327 ], [ -77.91428221862796, 24.877156596293204 ], [ -77.914277126078602, 24.877180302727304 ], [ -77.914270042862555, 24.877203727994932 ], [ -77.91425314375546, 24.877247651989791 ], [ -77.914245732654337, 24.877271315213399 ], [ -77.914237244473256, 24.877310838393743 ], [ -77.914236581516519, 24.877328353539699 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 563, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 1898 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.922340711293643, 24.891539046198588 ], [ -77.922322167370481, 24.891431462471083 ], [ -77.922307639815685, 24.89133547260662 ], [ -77.922298633306639, 24.891246657591694 ], [ -77.922290013971491, 24.891119918463769 ], [ -77.922282403444427, 24.891039804482798 ], [ -77.922271973105651, 24.890964534043952 ], [ -77.922243964533394, 24.890826140326947 ], [ -77.922232220857694, 24.890779692611396 ], [ -77.922209453056837, 24.890701671003221 ], [ -77.922196147210855, 24.890658474584793 ], [ -77.922181749911772, 24.890617667360139 ], [ -77.922152513342539, 24.890548996327745 ], [ -77.922134310779924, 24.890513256769101 ], [ -77.922097001051256, 24.890456372838699 ], [ -77.922086220369522, 24.890437800217931 ], [ -77.922077020722682, 24.890419307452117 ], [ -77.922070458529575, 24.890400421913839 ], [ -77.922067793228067, 24.890370694460529 ], [ -77.922073890093912, 24.890341646605982 ], [ -77.922082415105962, 24.890323961367244 ], [ -77.922093173329813, 24.89030725397653 ], [ -77.922129208349119, 24.890261898814209 ], [ -77.922147196214368, 24.890235479723909 ], [ -77.922151636586818, 24.890223632241938 ], [ -77.922151296125335, 24.89021233480026 ], [ -77.922145776876235, 24.89020250087507 ], [ -77.922128414238429, 24.890192196765557 ], [ -77.922103645889408, 24.89018673220539 ], [ -77.92200309476469, 24.890178990065721 ], [ -77.921985094323034, 24.890174906720386 ], [ -77.921969020767662, 24.890168115540725 ], [ -77.921955200187, 24.890157365690843 ], [ -77.921939774316968, 24.890133061183107 ], [ -77.921930367159277, 24.890101409741263 ], [ -77.921926109144863, 24.89006524631704 ], [ -77.921926386724294, 24.890027126361787 ], [ -77.921930988793477, 24.889975599213312 ], [ -77.92193174697158, 24.889919628513521 ], [ -77.921921560076242, 24.889766592694539 ], [ -77.921921685840388, 24.889653498025258 ], [ -77.921920411131012, 24.889605047708201 ], [ -77.921910433543147, 24.889449884659726 ], [ -77.92190176120738, 24.88923192739626 ], [ -77.921893331416769, 24.889085193034532 ], [ -77.921886179030452, 24.88901392329976 ], [ -77.921875833133342, 24.888945277451828 ], [ -77.921833198191607, 24.888738506865828 ], [ -77.921785910875101, 24.888469150136888 ], [ -77.921741909595838, 24.888193192216409 ], [ -77.921714516369562, 24.88800537228472 ], [ -77.921702937085527, 24.887945274083734 ], [ -77.921669484722671, 24.887801080656359 ], [ -77.92165963379729, 24.887752548123331 ], [ -77.921638663525286, 24.887617620622148 ], [ -77.921633518873634, 24.887554934130236 ], [ -77.921632513658878, 24.887490964148462 ], [ -77.921635203214805, 24.887426756999215 ], [ -77.92164299520158, 24.887319292742802 ], [ -77.9216464635969, 24.887247999986759 ], [ -77.921648385991602, 24.88717557203929 ], [ -77.921648434500625, 24.887102897135605 ], [ -77.921646132118568, 24.887030865957879 ], [ -77.921640808702165, 24.886960425418174 ], [ -77.921631555156424, 24.886892643035644 ], [ -77.921617169535466, 24.886828773758264 ], [ -77.921594470006553, 24.886760988858747 ], [ -77.921514608879477, 24.886566289806829 ], [ -77.92149671443903, 24.886515463658593 ], [ -77.921480539374016, 24.886463120959018 ], [ -77.921470419852326, 24.886427886271544 ], [ -77.921455200594806, 24.886361425366957 ], [ -77.921420744813759, 24.886152530077673 ], [ -77.92140731949182, 24.886084754585891 ], [ -77.921383700986397, 24.885988164055856 ], [ -77.921367539396087, 24.885929180477305 ], [ -77.921348432229976, 24.885873120748833 ], [ -77.921335145248634, 24.88584154074173 ], [ -77.921249578022881, 24.885662696684687 ], [ -77.921224813267131, 24.885604087807764 ], [ -77.921214258062548, 24.885574543368907 ], [ -77.921205633337507, 24.885544123712851 ], [ -77.921198934600469, 24.885513209400759 ], [ -77.921177908632899, 24.885395337106157 ], [ -77.921167582498697, 24.885351439640445 ], [ -77.921138742984809, 24.885253313248693 ], [ -77.92109628411292, 24.885120008762026 ], [ -77.921053190132113, 24.884961219430327 ], [ -77.92103708693233, 24.884909293306553 ], [ -77.921025066575467, 24.884875950399881 ], [ -77.921006133682596, 24.884826266877113 ], [ -77.920985391582661, 24.884778076253063 ], [ -77.920954196686097, 24.884717057260602 ], [ -77.920921675876187, 24.88465738691853 ], [ -77.920906674909261, 24.884626206722785 ], [ -77.92087948649889, 24.884561648486482 ], [ -77.920861228240696, 24.884506780356183 ], [ -77.920815564179861, 24.884334320854634 ], [ -77.920797905996338, 24.884278965304013 ], [ -77.920771921328452, 24.884213417578597 ], [ -77.920757731540192, 24.884181566595053 ], [ -77.920712604671891, 24.884088731341794 ], [ -77.920684648201956, 24.884024928252568 ], [ -77.920628821500287, 24.883874716154303 ], [ -77.920608070417245, 24.883826509675565 ], [ -77.920576127224038, 24.883766187783298 ], [ -77.92048829534545, 24.883622427088884 ], [ -77.920387718169593, 24.883445354716187 ], [ -77.920290782763942, 24.883265110413557 ], [ -77.920275702745244, 24.883234296581371 ], [ -77.920253681444422, 24.883176155132684 ], [ -77.920235983734969, 24.883114261751409 ], [ -77.920184385403303, 24.882901736187112 ], [ -77.920111381116868, 24.882582749127959 ], [ -77.920071071015087, 24.88239676973577 ], [ -77.920025136561364, 24.882215994199314 ], [ -77.91998278279236, 24.882076684477195 ], [ -77.91993663813281, 24.881941723883038 ], [ -77.919839875203678, 24.881685947034036 ], [ -77.91980755022648, 24.881614402471985 ], [ -77.919787081214437, 24.8815749784603 ], [ -77.919742553522411, 24.881504842039217 ], [ -77.919699726341264, 24.881425723375283 ], [ -77.919661129326769, 24.881336129490855 ], [ -77.919644419764168, 24.881287286372199 ], [ -77.919598567057108, 24.881133020713111 ], [ -77.919563827408453, 24.881032346738081 ], [ -77.919549519042562, 24.880986145525018 ], [ -77.919512479706782, 24.880856876080301 ], [ -77.91947418811948, 24.880713391524132 ], [ -77.919424381028549, 24.880535830092363 ], [ -77.91933029507895, 24.880242225625967 ], [ -77.919310366852699, 24.880193206862305 ], [ -77.919295152985043, 24.88016243953054 ], [ -77.91927881981654, 24.880132395860194 ], [ -77.919227255620925, 24.8800449500431 ], [ -77.919194426688875, 24.879985200024581 ], [ -77.919100655149606, 24.879801413813095 ], [ -77.91899955964584, 24.879579389240995 ], [ -77.918958205701756, 24.87948267871667 ], [ -77.918905859073504, 24.879351748465176 ], [ -77.918876906371892, 24.879289667359654 ], [ -77.918861723046959, 24.879259429519344 ], [ -77.918829582224433, 24.8792016195139 ], [ -77.918812783728612, 24.87917381345968 ], [ -77.918777189782091, 24.879121791184055 ], [ -77.918758459908446, 24.879097521992403 ], [ -77.918718782220651, 24.879054160155604 ], [ -77.918679417146564, 24.879015143616844 ], [ -77.918659505988316, 24.878998509671803 ], [ -77.918561797133151, 24.878920997300323 ], [ -77.918522981828048, 24.878893571764898 ], [ -77.918503031143885, 24.878882870645906 ], [ -77.918445925241301, 24.878859353607083 ], [ -77.918428007444646, 24.878850003673904 ], [ -77.918411206253879, 24.878838150210093 ], [ -77.918396238524608, 24.878823498202699 ], [ -77.918382921898854, 24.87880681696474 ], [ -77.918328239650862, 24.878726492889022 ], [ -77.918223434104974, 24.878538033493889 ], [ -77.917993001861561, 24.87816882902575 ], [ -77.917954316812157, 24.878113940127051 ], [ -77.917914124389725, 24.878060617549909 ], [ -77.917856543278333, 24.877977623190553 ], [ -77.91777528167772, 24.87787150109834 ], [ -77.917723474936963, 24.877806086886054 ], [ -77.917691008025969, 24.877767919954643 ], [ -77.917643607521683, 24.877721112006657 ], [ -77.9175693069662, 24.877653479396468 ], [ -77.917448013741605, 24.877538332162317 ], [ -77.917402488919635, 24.87748974832942 ], [ -77.917360107302827, 24.877438450659447 ], [ -77.91731996698266, 24.877385214176609 ], [ -77.917144030137649, 24.877141222844738 ], [ -77.9170613860298, 24.877036775598064 ], [ -77.917022522215689, 24.876982651447094 ], [ -77.916993817449139, 24.876930260700213 ], [ -77.916943942984503, 24.876818920306075 ], [ -77.916916525503751, 24.876765387724046 ], [ -77.916880105107182, 24.876709096461816 ], [ -77.916804236991553, 24.876598422510462 ], [ -77.916725773643023, 24.876490418290722 ], [ -77.916687689566572, 24.8764356150329 ], [ -77.916669587615303, 24.876407610319127 ], [ -77.916603104199439, 24.876290640470643 ], [ -77.916564275419603, 24.876232608219766 ], [ -77.916517350124082, 24.876171356815128 ], [ -77.916491727477222, 24.876140692797911 ], [ -77.916411057866398, 24.876055552964285 ], [ -77.916385149555268, 24.876029766511881 ], [ -77.916314538380703, 24.875964580331214 ], [ -77.916262307635122, 24.875912579523533 ], [ -77.916239684463008, 24.875894100882494 ], [ -77.916231993985278, 24.875890870343831 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 564, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 495 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.932162675911769, 24.900084714102587 ], [ -77.932202289819742, 24.900124541235609 ], [ -77.932246959445564, 24.900165213318818 ], [ -77.932274593420317, 24.90018865622686 ], [ -77.93233864599506, 24.900238537271065 ], [ -77.9324499517503, 24.900314354496629 ], [ -77.932551446106046, 24.900377205620575 ], [ -77.932597039199976, 24.900407058589476 ], [ -77.932669449700114, 24.90046254298322 ], [ -77.932702945182115, 24.900486422572111 ], [ -77.93272940056724, 24.900501873780769 ], [ -77.932840470963882, 24.90055624591918 ], [ -77.932896015594551, 24.900589481111265 ], [ -77.932923165377389, 24.900607784133275 ], [ -77.933232396939218, 24.90085235161812 ], [ -77.933256533772592, 24.900869442170144 ], [ -77.933302798806352, 24.900899158132706 ], [ -77.933344309955615, 24.900920934624313 ], [ -77.933362794589215, 24.900927545140519 ], [ -77.933379340658433, 24.900930703326104 ], [ -77.933393699329955, 24.90092942245214 ], [ -77.933405001034558, 24.900923409188355 ], [ -77.933412218099534, 24.900912652126923 ], [ -77.933415187929839, 24.900898142884987 ], [ -77.933414285123007, 24.900880869005597 ], [ -77.933407787608559, 24.900849791498032 ], [ -77.933395222872662, 24.900815064466045 ], [ -77.933383451349172, 24.90079123056989 ], [ -77.933369651429771, 24.900766555788895 ], [ -77.933337428860554, 24.900715912298985 ], [ -77.933225998239436, 24.900552837578005 ], [ -77.933183710945784, 24.90049964609512 ], [ -77.933160965602752, 24.90047410918865 ], [ -77.933124216422826, 24.900438343984757 ], [ -77.932998779269781, 24.90032129993201 ], [ -77.932962198074804, 24.900285645497981 ], [ -77.93292871516924, 24.900247065071447 ], [ -77.932834018365241, 24.90012734744359 ], [ -77.932747317465555, 24.900024435999423 ], [ -77.932706869921589, 24.899970552513683 ], [ -77.93268835025367, 24.899942055286196 ], [ -77.932653901659165, 24.899883146002566 ], [ -77.932593183630829, 24.89975838188429 ], [ -77.932549642288961, 24.899663433307254 ], [ -77.932416879374827, 24.899404305975036 ], [ -77.932394552646755, 24.899368589350161 ], [ -77.93237601411424, 24.8993444463595 ], [ -77.932356138888537, 24.899322152996394 ], [ -77.932334967393956, 24.899302295114673 ], [ -77.93229087448654, 24.899268075277863 ], [ -77.932268054583375, 24.899254194880861 ], [ -77.932244145023759, 24.899243650341063 ], [ -77.932219155689211, 24.899235970695361 ], [ -77.932107796034984, 24.899211511529877 ], [ -77.932013147740037, 24.899184726057449 ], [ -77.931953814015515, 24.899169730166534 ], [ -77.93183546187511, 24.899142415053845 ], [ -77.931751278953257, 24.899125479077981 ], [ -77.93150175122183, 24.899079823228028 ], [ -77.931434732410025, 24.899065117399541 ], [ -77.931358790632572, 24.899044775474675 ], [ -77.931333985452611, 24.899035827960006 ], [ -77.931327778093987, 24.899031513499331 ], [ -77.931328161674102, 24.899029914016197 ] ], [ [ -77.931330120899773, 24.899120182769334 ], [ -77.931383112518873, 24.89912067328563 ], [ -77.931392053450892, 24.899121627436688 ], [ -77.931398757577853, 24.899124521667684 ], [ -77.931401567508075, 24.899131153465316 ], [ -77.931402112785449, 24.899139748157253 ], [ -77.931399837352259, 24.899211241016197 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 633, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 596 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.959710417866418, 25.057211805262313 ], [ -77.959711463444876, 25.057213094055349 ], [ -77.959760188964196, 25.057279818346657 ], [ -77.959786880606217, 25.057311010967876 ], [ -77.95980639470919, 25.057328471215438 ], [ -77.959826766703202, 25.057342039199735 ], [ -77.95984743963281, 25.057350095520214 ], [ -77.959867432537806, 25.057351886627412 ], [ -77.959893931940343, 25.057342388306932 ], [ -77.959915735848924, 25.057321043937602 ], [ -77.95992812182007, 25.057302178308152 ], [ -77.959993713208831, 25.057175699661435 ], [ -77.960034520078921, 25.057107294061883 ], [ -77.960062105544665, 25.057066830089237 ], [ -77.960167197653163, 25.056939373858967 ], [ -77.960193203880635, 25.056902404170909 ], [ -77.960262230427048, 25.056797997903036 ], [ -77.960341067474701, 25.056687059381503 ], [ -77.960381681207025, 25.056632836785582 ], [ -77.960442900495337, 25.056551679842837 ], [ -77.960548333065276, 25.056419725337467 ], [ -77.960592363090598, 25.056368717039483 ], [ -77.960728310532431, 25.056219063497249 ], [ -77.960817391967609, 25.05611737547931 ], [ -77.961004514634553, 25.055940389235079 ], [ -77.961038932686364, 25.055912159235366 ], [ -77.96106693766535, 25.055893704347618 ], [ -77.961096567696657, 25.055877218803541 ], [ -77.961127605388029, 25.055862358375084 ], [ -77.961176961524671, 25.055844369775635 ], [ -77.961228726942977, 25.055830676303469 ], [ -77.96126413403988, 25.05582362164602 ], [ -77.961312731100108, 25.055818112356292 ], [ -77.961362557954004, 25.055817014567157 ], [ -77.961412509673679, 25.055820127275243 ], [ -77.961449887674348, 25.05582500588557 ], [ -77.96151265925144, 25.055835731503528 ], [ -77.961575234995834, 25.055849761879976 ], [ -77.961635527222739, 25.055867973454205 ], [ -77.961703888117555, 25.055895464552393 ], [ -77.961903825252065, 25.05598793996543 ], [ -77.962040122138518, 25.056046708612751 ], [ -77.962120340795082, 25.056086765219401 ], [ -77.962165438917282, 25.056112512342459 ], [ -77.962247365271196, 25.056169277409687 ], [ -77.962274734242982, 25.056186883486038 ], [ -77.962329835105862, 25.056219904942953 ], [ -77.962357427758135, 25.056234983420275 ], [ -77.962385262057239, 25.05624902270252 ], [ -77.962413460173991, 25.056261333520908 ], [ -77.962607806194114, 25.056336423952626 ], [ -77.962659640782661, 25.056360574394141 ], [ -77.962747256167262, 25.056412630838913 ], [ -77.962963606420288, 25.056530110733839 ], [ -77.963022105609923, 25.056567587516032 ], [ -77.963134235120322, 25.056647162470821 ], [ -77.963223392912269, 25.056701722776619 ], [ -77.963379915367383, 25.056782475988385 ], [ -77.963443734380093, 25.056811738465935 ], [ -77.96349892058295, 25.056829476281305 ], [ -77.963557327246107, 25.056842267167514 ], [ -77.963616878362913, 25.056851124273621 ], [ -77.963675435943017, 25.056856874393731 ], [ -77.963762786324622, 25.056861647986011 ], [ -77.963794384564778, 25.056865051998336 ], [ -77.963826280147217, 25.056872113919763 ], [ -77.963857978998661, 25.056884006396395 ], [ -77.963889163115439, 25.056901024012369 ], [ -77.963919868430182, 25.056921972147599 ], [ -77.963950118299039, 25.056945573991094 ], [ -77.96400830128168, 25.056999029875378 ], [ -77.96404941807053, 25.057040268581144 ], [ -77.96408560580349, 25.057081661075912 ], [ -77.964160421991906, 25.057189457271246 ], [ -77.964168735899861, 25.057196651004787 ], [ -77.964174145553983, 25.057197376078921 ] ], [ [ -77.959627740460149, 25.057239627860717 ], [ -77.959663129591021, 25.057239784915488 ], [ -77.959665100494774, 25.057236314184482 ], [ -77.959665334056766, 25.057221501933757 ] ], [ [ -77.959693878839431, 25.057195868022152 ], [ -77.959702262899754, 25.057201753347268 ], [ -77.959707947205914, 25.057208759895147 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 635, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 73 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.964303920671782, 25.057425602753753 ], [ -77.964301237404243, 25.057426383966927 ], [ -77.964285028203278, 25.057424140405178 ], [ -77.964260252667742, 25.057417159892463 ], [ -77.964246940533542, 25.057411745071509 ], [ -77.964204285828899, 25.057388410234218 ], [ -77.964190235279546, 25.057383412875783 ], [ -77.964176959976299, 25.057381030972408 ], [ -77.964164687192849, 25.057380920299764 ], [ -77.964152839312561, 25.057382638167244 ], [ -77.964142063122438, 25.057386370927905 ], [ -77.964133072783028, 25.057392483964108 ], [ -77.964126372249382, 25.057401323127486 ], [ -77.964121584228891, 25.057412291924539 ], [ -77.964118169732501, 25.057424763752358 ], [ -77.964112811281851, 25.057467120433426 ], [ -77.964111581488226, 25.057511764603607 ], [ -77.964113069996614, 25.057540449945169 ], [ -77.964117999950901, 25.05756628220848 ], [ -77.964122646935891, 25.057577291679181 ], [ -77.964129494793312, 25.057586369263312 ], [ -77.964138976511109, 25.057593053554744 ], [ -77.96415065460981, 25.057597804332886 ], [ -77.96416393979456, 25.057601133458064 ], [ -77.964193638996136, 25.057605002111348 ], [ -77.964290334551691, 25.057609567349953 ], [ -77.964321183596809, 25.057613195941357 ], [ -77.96433715294765, 25.057617112606646 ], [ -77.964352555461474, 25.057622803285774 ], [ -77.964393219499485, 25.057644506474119 ], [ -77.964404755664361, 25.057648934998227 ], [ -77.964424336242601, 25.057653673567671 ], [ -77.964433695789069, 25.057653828187217 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 638, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 549 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.964600407833643, 25.057937482869807 ], [ -77.964597917704921, 25.057945960677387 ], [ -77.964566719215128, 25.058011537974313 ], [ -77.96454754916698, 25.058062848309085 ], [ -77.964531737021318, 25.058123151535238 ], [ -77.96452145580291, 25.058187604115247 ], [ -77.964518921655483, 25.058226038190661 ], [ -77.96452058892865, 25.058264188250519 ], [ -77.96452718795274, 25.058300930487814 ], [ -77.964543609156138, 25.058346031689076 ], [ -77.964566291617061, 25.058387282961778 ], [ -77.964617555775376, 25.058461200273065 ], [ -77.964643711123159, 25.05849506905728 ], [ -77.964671921816361, 25.058527910864594 ], [ -77.964695044451787, 25.058550966364706 ], [ -77.964719736443996, 25.058573138929095 ], [ -77.964745963657023, 25.058593924839979 ], [ -77.964773713514489, 25.058613773294308 ], [ -77.964924479565255, 25.058702561133696 ], [ -77.964952771106823, 25.058722287506306 ], [ -77.965089495591357, 25.058824398145504 ], [ -77.965141959000604, 25.058867212489492 ], [ -77.965243050012774, 25.058956345179176 ], [ -77.965296029953294, 25.058998650063998 ], [ -77.965323955880521, 25.059018432538345 ], [ -77.965353046922672, 25.059037443566361 ], [ -77.965399081987741, 25.059063514759067 ], [ -77.965479215304342, 25.059104249867673 ], [ -77.965545372631766, 25.059134867511439 ], [ -77.965613264606006, 25.059164234402058 ], [ -77.965648508209512, 25.059177920177934 ], [ -77.965710061671118, 25.0591979003663 ], [ -77.965878520939697, 25.059242897890279 ], [ -77.966078093358192, 25.059290333413216 ], [ -77.966233488427633, 25.059332570641029 ], [ -77.966289450774838, 25.059350422831159 ], [ -77.966342012998794, 25.059371282661981 ], [ -77.966374819472946, 25.059387404800866 ], [ -77.966406070963401, 25.059404657244745 ], [ -77.966465135193289, 25.059442462718952 ], [ -77.966521575444332, 25.059482868944301 ], [ -77.966608238614725, 25.059541278677155 ], [ -77.966638071665272, 25.059560047125085 ], [ -77.966685420067293, 25.059585466388921 ], [ -77.96676891937129, 25.05962352000245 ], [ -77.966803744359879, 25.059637069830039 ], [ -77.966839958143964, 25.059649367288007 ], [ -77.966902400937656, 25.059665011716518 ], [ -77.966968763979253, 25.059675817560052 ], [ -77.967037522827738, 25.05968248708993 ], [ -77.967107280602804, 25.059685406026318 ], [ -77.967176680848411, 25.059684658999942 ], [ -77.967244331175834, 25.059680025483352 ], [ -77.967308713432274, 25.059670970839417 ], [ -77.967368101954008, 25.059656625163822 ], [ -77.96740174925128, 25.059644830606882 ], [ -77.967433358271208, 25.05963154687786 ], [ -77.967533760275586, 25.059578707340698 ], [ -77.967572848668496, 25.059555591816064 ], [ -77.967642390847899, 25.059506210706676 ], [ -77.967667319097032, 25.059490052778216 ], [ -77.96769389485641, 25.059474191054687 ], [ -77.967722215144065, 25.059459319669852 ], [ -77.967783144276552, 25.059431252418136 ], [ -77.967832492328327, 25.0594123749072 ], [ -77.967936114793005, 25.059376703906413 ], [ -77.967986559687759, 25.059356681431801 ], [ -77.96804996278054, 25.059325474683643 ], [ -77.968172413035234, 25.059257420199643 ], [ -77.968280928623244, 25.059206305666759 ], [ -77.968338890620302, 25.059174781514859 ], [ -77.968374469295469, 25.059151658590253 ], [ -77.968446843862964, 25.059100325926106 ], [ -77.968654149877722, 25.058945519741886 ], [ -77.968711792074572, 25.058908753285159 ], [ -77.968744126933188, 25.058891560989615 ], [ -77.968787245167235, 25.058872213858901 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 644, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 1901 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.967800835696593, 25.076794602895944 ], [ -77.967803992377668, 25.076785918093098 ], [ -77.967807747335527, 25.076745428888341 ], [ -77.967807178701989, 25.076720334573388 ], [ -77.967804183718798, 25.076691323384559 ], [ -77.967798526129187, 25.076659320429176 ], [ -77.96777582300696, 25.07655836945062 ], [ -77.967758124399239, 25.076486789263186 ], [ -77.967736922361922, 25.076413987755689 ], [ -77.967707205194003, 25.076330450991033 ], [ -77.967654068946629, 25.076196303048707 ], [ -77.967634889017006, 25.076154001661966 ], [ -77.967555018008454, 25.07600270512814 ], [ -77.967495333042663, 25.075877862503862 ], [ -77.967479318776128, 25.07584801956833 ], [ -77.967364935392652, 25.075645016951469 ], [ -77.96731609309235, 25.075563535752639 ], [ -77.967253197547706, 25.075464810015454 ], [ -77.967240610353954, 25.075440372053336 ], [ -77.967207131041633, 25.075365306349184 ], [ -77.967169506902593, 25.075290059968584 ], [ -77.967146015957894, 25.075239222257501 ], [ -77.967117168359181, 25.075159991348496 ], [ -77.967093959485481, 25.075105283041864 ], [ -77.967066770176757, 25.075049572291356 ], [ -77.967035638162287, 25.074994467686611 ], [ -77.96701880642884, 25.074967051661776 ], [ -77.966891841241505, 25.074774931020592 ], [ -77.966835079393647, 25.074692249102359 ], [ -77.96679475402054, 25.074639077580862 ], [ -77.966711613144355, 25.074534841022878 ], [ -77.966682929039067, 25.07449327867527 ], [ -77.966600292117732, 25.074365860916078 ], [ -77.96650684307366, 25.074226194222838 ], [ -77.966454641074179, 25.074138872455055 ], [ -77.96640978459881, 25.074059722199969 ], [ -77.966385651358678, 25.074021638083313 ], [ -77.966365928846628, 25.073994734445936 ], [ -77.966324656649192, 25.073942307933692 ], [ -77.96628119166418, 25.073891870797375 ], [ -77.966141722826393, 25.073749748749012 ], [ -77.966013676067533, 25.073603237644196 ], [ -77.96595679833699, 25.0735429013546 ], [ -77.965931867392868, 25.073511421574995 ], [ -77.965909560427775, 25.073472557799008 ], [ -77.965892455606436, 25.073431642766526 ], [ -77.965862073685216, 25.073347263453019 ], [ -77.965823803657443, 25.073260991498792 ], [ -77.965786293604452, 25.073189599781301 ], [ -77.965760809298175, 25.073147996293926 ], [ -77.965721377748807, 25.073096641016193 ], [ -77.965699260328151, 25.073072727395509 ], [ -77.965658174082009, 25.073036865092554 ], [ -77.965572663450104, 25.072968970380924 ], [ -77.965549591120364, 25.072946711732296 ], [ -77.965528271403699, 25.072923594661745 ], [ -77.965508886658199, 25.072899108999835 ], [ -77.965491543783315, 25.07287373643641 ], [ -77.965472048545024, 25.072837732497135 ], [ -77.965456036973393, 25.072800515369611 ], [ -77.965421343138814, 25.072710704389461 ], [ -77.96540820976935, 25.072685308190628 ], [ -77.965392870137563, 25.072661421340772 ], [ -77.965375685366197, 25.072638553198743 ], [ -77.965356777626084, 25.072617242413717 ], [ -77.96533639934384, 25.072597093543507 ], [ -77.965314643046014, 25.072578680225032 ], [ -77.965291666835967, 25.072561709538395 ], [ -77.965267537189135, 25.072546795804143 ], [ -77.965168157467559, 25.07249481374901 ], [ -77.965121615752665, 25.072463576173394 ], [ -77.96504820812261, 25.072405614424301 ], [ -77.965020897541351, 25.072382134354768 ], [ -77.964972960742827, 25.072327335303413 ], [ -77.964962596879417, 25.072319415037025 ], [ -77.964949534476858, 25.072314088751128 ], [ -77.96492430439379, 25.072312693306543 ], [ -77.964894758804093, 25.072319528950853 ], [ -77.964863082410531, 25.072334160369273 ], [ -77.964828049012766, 25.072352954522053 ], [ -77.964716130606476, 25.072407284888246 ], [ -77.964685617531245, 25.072421464709524 ], [ -77.964642514567259, 25.072438359744286 ], [ -77.964597427224803, 25.072453341026343 ], [ -77.964517795168135, 25.072476606273462 ], [ -77.964483781358226, 25.072484642884429 ], [ -77.964449533088015, 25.072490888609046 ], [ -77.964391882806353, 25.072495055408748 ], [ -77.964335158687732, 25.072490982180973 ], [ -77.964282490462594, 25.072478152245019 ], [ -77.964253828815146, 25.072465973243226 ], [ -77.964227460566619, 25.072451156323979 ], [ -77.964203833078017, 25.072433454944417 ], [ -77.964183524864396, 25.072412481796576 ], [ -77.964166693130892, 25.072388847131155 ], [ -77.964146541224125, 25.07234039308279 ], [ -77.964137305644684, 25.072285813703836 ], [ -77.964137680242189, 25.072228377502004 ], [ -77.964147163756621, 25.072171053559877 ], [ -77.964156412810823, 25.072139365127683 ], [ -77.964167558208544, 25.072107731203275 ], [ -77.964180493050293, 25.072076603374629 ], [ -77.964210845327131, 25.072016405470897 ], [ -77.964260872505307, 25.071927553236065 ], [ -77.964390617080085, 25.071707236453889 ], [ -77.96441509347666, 25.071658638929243 ], [ -77.964441036822066, 25.071592731261823 ], [ -77.96445148063556, 25.071572150975118 ], [ -77.964491744024897, 25.071512715237542 ], [ -77.96450447045757, 25.071491487251524 ], [ -77.964526444147694, 25.07144810611868 ], [ -77.964534528086944, 25.071425940766431 ], [ -77.964539143630844, 25.07140259069735 ], [ -77.964540028471433, 25.071378647453606 ], [ -77.964537462883001, 25.071354713969296 ], [ -77.964532440402209, 25.071330262168122 ], [ -77.964525085895005, 25.071305881965706 ], [ -77.964515517938906, 25.071282161650604 ], [ -77.964504473152459, 25.071258573960311 ], [ -77.964480008434052, 25.071212614200515 ], [ -77.964445699078368, 25.0711406386954 ], [ -77.96443216236537, 25.071115897182096 ], [ -77.96440041859816, 25.071067018703598 ], [ -77.964365089654649, 25.071018202858898 ], [ -77.964313353880826, 25.070940529856102 ], [ -77.964268457879541, 25.070877976604411 ], [ -77.964239874385498, 25.070843029862534 ], [ -77.964158114219941, 25.070764530049242 ], [ -77.964139922437099, 25.070743480943214 ], [ -77.964113198455735, 25.07070235588299 ], [ -77.964089524254717, 25.070656007788465 ], [ -77.964009704450177, 25.07048641532235 ], [ -77.96396383826837, 25.070396609968284 ], [ -77.963934663682878, 25.070335180135732 ], [ -77.96391741423281, 25.070292280294126 ], [ -77.9638752536016, 25.070171601981837 ], [ -77.963805179619513, 25.069949896333682 ], [ -77.963736887894981, 25.069659512597841 ], [ -77.963696584979772, 25.069523844700324 ], [ -77.963649729752873, 25.069390275158462 ], [ -77.963610188608996, 25.069292857740891 ], [ -77.963514174874803, 25.06906742216584 ], [ -77.963456552440917, 25.06894076688739 ], [ -77.963310198914812, 25.068670845178374 ], [ -77.963294273581468, 25.068640715693409 ], [ -77.963275099041709, 25.068598441803434 ], [ -77.963228427969426, 25.068477210950196 ], [ -77.963189290169126, 25.068363955017386 ], [ -77.963167921045155, 25.068308893785158 ], [ -77.963138489541507, 25.068246348140136 ], [ -77.963099030144349, 25.068170422829965 ], [ -77.963073709331411, 25.068126149521312 ], [ -77.963055383699626, 25.068098129008504 ], [ -77.96301618122061, 25.068044056300703 ], [ -77.962931816839031, 25.06794083369493 ], [ -77.962864303055511, 25.067867638158464 ], [ -77.962823463846092, 25.067814746028002 ], [ -77.962785871148071, 25.067759286649249 ], [ -77.962768597443471, 25.067730358776164 ], [ -77.962747688256911, 25.067689628162906 ], [ -77.962653664291082, 25.067477107164528 ], [ -77.962608452981101, 25.067384118025068 ], [ -77.962560108347503, 25.067294085000515 ], [ -77.96246540166203, 25.067111576010948 ], [ -77.962413501496499, 25.067024380177152 ], [ -77.962375231468755, 25.066969508749896 ], [ -77.962354810965721, 25.066943064121027 ], [ -77.962288764131131, 25.066868605115914 ], [ -77.96226753783921, 25.066842858625574 ], [ -77.962165461375179, 25.066710859870568 ], [ -77.962077978941224, 25.066610593157069 ], [ -77.962032999396627, 25.066561774722505 ], [ -77.961967854470544, 25.066486049354342 ], [ -77.961914673307419, 25.066422147952345 ], [ -77.96188601974481, 25.066381133733127 ], [ -77.961861493042605, 25.066331770021382 ], [ -77.961842204416826, 25.066277869854222 ], [ -77.961754329419051, 25.065951180954237 ], [ -77.961735510612201, 25.065893932190676 ], [ -77.961709372332379, 25.065828797703958 ], [ -77.961659024455642, 25.065695888937466 ], [ -77.961631774959798, 25.065631473669239 ], [ -77.961472370709302, 25.065285085398948 ], [ -77.961415949322912, 25.065157436728786 ], [ -77.961384387913725, 25.065096998632409 ], [ -77.961323447103169, 25.064973262941432 ], [ -77.961271756245083, 25.064885887380893 ], [ -77.961196515153503, 25.064775263768169 ], [ -77.961162053982591, 25.064716851648143 ], [ -77.961145479167271, 25.064687320902944 ], [ -77.961004778739266, 25.064412505857163 ], [ -77.960923734530965, 25.064262538276626 ], [ -77.960855858726404, 25.064145051961606 ], [ -77.960767114159509, 25.064001995024896 ], [ -77.960702083319433, 25.063881802820049 ], [ -77.960650445461965, 25.063794623403037 ], [ -77.960602378407714, 25.063704110082401 ], [ -77.960572457322243, 25.063642010450344 ], [ -77.960531533671158, 25.063545311052415 ], [ -77.960472903327499, 25.063375449975467 ], [ -77.960433728696287, 25.06327723601493 ], [ -77.960391874390567, 25.063181342736534 ], [ -77.960291721219562, 25.062959669191933 ], [ -77.960245960140654, 25.062867159980925 ], [ -77.960118802713865, 25.062624989520117 ], [ -77.960068065866622, 25.062536788784794 ], [ -77.959997154654715, 25.06242217411689 ], [ -77.95997652101596, 25.062384455131202 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 645, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 57 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.968085322266631, 25.077310839657805 ], [ -77.96808952548399, 25.077181751987293 ], [ -77.968087440494202, 25.077156675661865 ], [ -77.968083137563994, 25.077142480116152 ], [ -77.968074582009251, 25.077132150978155 ], [ -77.968051598612689, 25.077116944077023 ], [ -77.968031583249854, 25.077090148520021 ], [ -77.968002496699256, 25.07707144947635 ], [ -77.967982793950128, 25.077044382153975 ], [ -77.967951396034366, 25.077023258459 ], [ -77.967925469756878, 25.076992388176205 ], [ -77.967920915298421, 25.076989639702791 ], [ -77.967915070859348, 25.07698880246803 ] ], [ [ -77.96789592147222, 25.07695624794469 ], [ -77.967897347996939, 25.076910263471284 ], [ -77.967896201746626, 25.076900929395222 ], [ -77.967894320674404, 25.076899064532654 ], [ -77.967889584756222, 25.076897846513777 ], [ -77.967861349808402, 25.076897475493958 ] ], [ [ -77.967848378135855, 25.076875425037993 ], [ -77.967848490425254, 25.07685320045837 ], [ -77.967845832310346, 25.076851962098026 ], [ -77.967834488384767, 25.076851812388256 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 647, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 814 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.97210951805485, 25.083675764591259 ], [ -77.972067275443649, 25.083636569859582 ], [ -77.971927440991593, 25.083493607287593 ], [ -77.971863790862102, 25.083416577617459 ], [ -77.971823867035909, 25.083363133261859 ], [ -77.971787037905926, 25.083307007266306 ], [ -77.971764892637481, 25.083267343578836 ], [ -77.971723058094724, 25.083185891047169 ], [ -77.971625952907488, 25.083005927899876 ], [ -77.97153368784295, 25.082821529551733 ], [ -77.971504711785158, 25.082758604858714 ], [ -77.971485277632297, 25.082709239612573 ], [ -77.971448960541977, 25.082608298504198 ], [ -77.971428787974006, 25.082559572688837 ], [ -77.971398017082237, 25.082498201028628 ], [ -77.97129897333059, 25.082319916962263 ], [ -77.97126717386783, 25.08225943689218 ], [ -77.971210123660768, 25.082132320926299 ], [ -77.971165853785251, 25.082038751423781 ], [ -77.97103131759674, 25.081729150464881 ], [ -77.971011642695373, 25.081687348917892 ], [ -77.970978907188083, 25.081627678889262 ], [ -77.970944168437754, 25.081569745072805 ], [ -77.970889163694579, 25.081485472255036 ], [ -77.970854333316069, 25.081427616477793 ], [ -77.970833498689686, 25.081386818008998 ], [ -77.97075990241342, 25.08123014183629 ], [ -77.97073935434959, 25.081189095963836 ], [ -77.970716720397661, 25.081149857109022 ], [ -77.970678050619696, 25.081095568861691 ], [ -77.970636957187011, 25.081042893170022 ], [ -77.970481704949677, 25.080869389404299 ], [ -77.97043499435155, 25.080821576585102 ], [ -77.970258102597342, 25.080667039496042 ], [ -77.970209030328334, 25.080621507160942 ], [ -77.970161979268681, 25.080574219840518 ], [ -77.970025006849127, 25.080428467869478 ], [ -77.970001449429134, 25.080404719217725 ], [ -77.969927819915171, 25.080336750484236 ], [ -77.969904319987322, 25.080312942420559 ], [ -77.969881726459604, 25.080288588415108 ], [ -77.969796456576205, 25.08018598552993 ], [ -77.969751788747033, 25.080136293798972 ], [ -77.969679350399133, 25.080067151678122 ], [ -77.969587002689593, 25.079970718283857 ], [ -77.969544484528882, 25.079919060760144 ], [ -77.969504400802592, 25.079865767024515 ], [ -77.969486440785147, 25.07983707552015 ], [ -77.969454329607004, 25.079776651990407 ], [ -77.969433804001071, 25.079728104044644 ], [ -77.969379203499784, 25.079576890035025 ], [ -77.96933682008634, 25.079482405694634 ], [ -77.96930535928847, 25.079423075499331 ], [ -77.969257263488146, 25.079337072253558 ], [ -77.969212548946587, 25.079251894775979 ], [ -77.969188819948329, 25.079212951459574 ], [ -77.969161521045166, 25.079179385376626 ], [ -77.969140677435604, 25.079161069055662 ], [ -77.96911830489347, 25.079145571128826 ], [ -77.969030331979383, 25.079095900943532 ], [ -77.969000286028077, 25.079075026571857 ], [ -77.968980227546112, 25.079057147965838 ], [ -77.968962466954636, 25.079037855275828 ], [ -77.968947313274072, 25.079016759588054 ], [ -77.968934381127255, 25.078994358840617 ], [ -77.968895698772783, 25.078918458907381 ], [ -77.968866642764937, 25.078865299798249 ], [ -77.968820879889407, 25.078767121853666 ], [ -77.968795925589134, 25.078717786729424 ], [ -77.968708978551092, 25.07857632443984 ], [ -77.968651656154506, 25.078494692229409 ], [ -77.968623672735092, 25.07844535048639 ], [ -77.968572460679056, 25.078342296118912 ], [ -77.968490694225267, 25.078192532729549 ], [ -77.968403363606612, 25.078003086677647 ], [ -77.968379202518719, 25.077942852632898 ], [ -77.968326254917557, 25.077801952482648 ], [ -77.968272585070906, 25.077673438132173 ], [ -77.968226712600909, 25.077570273274208 ], [ -77.968200522218794, 25.077516680725473 ], [ -77.96817586795585, 25.077476460262158 ], [ -77.968162336632702, 25.077459997149649 ], [ -77.968150875027987, 25.077449122902145 ], [ -77.968142302405226, 25.077443884712128 ], [ -77.968137394010256, 25.077444490057516 ] ], [ [ -77.968131910694026, 25.077430416590641 ], [ -77.968132139764421, 25.077400569965178 ], [ -77.968129092679007, 25.077399089146713 ], [ -77.968119676537896, 25.077399014292151 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 648, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 137 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.985135240356243, 25.084242443675301 ], [ -77.985120790957296, 25.084243537140662 ], [ -77.985114575513833, 25.084246768724302 ], [ -77.985111186170258, 25.084251631557798 ], [ -77.98511095799816, 25.084257908412237 ], [ -77.985116184396489, 25.08426754214236 ], [ -77.985153263258155, 25.08430242240637 ], [ -77.985203876137945, 25.084344831625966 ], [ -77.985220279375, 25.084361009056071 ], [ -77.985234806031471, 25.084381378914067 ], [ -77.985271104257137, 25.084449234753688 ], [ -77.985327175300554, 25.084532818048199 ], [ -77.985373322655022, 25.084625202686556 ], [ -77.985382872644806, 25.084650074085108 ], [ -77.985426106762787, 25.084785481960648 ], [ -77.985446232618401, 25.084885974614469 ], [ -77.985469801716505, 25.08497065513858 ], [ -77.985485160212932, 25.085052020242458 ], [ -77.985491381046273, 25.085078063930968 ], [ -77.985499667106438, 25.085102181043851 ], [ -77.985511228424201, 25.085123243139535 ], [ -77.98552748164262, 25.085139365142958 ], [ -77.985549357416403, 25.085152638783171 ], [ -77.985574591092728, 25.085163575806025 ], [ -77.985594704371948, 25.085170383071034 ], [ -77.985615715068136, 25.085175298750833 ], [ -77.985644790838947, 25.08517804215899 ], [ -77.985673488418968, 25.085176881173386 ], [ -77.985699788395536, 25.085172642396234 ], [ -77.985745829748851, 25.085159873180885 ], [ -77.985759158052204, 25.08515742266739 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 652, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 131 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.986598620210145, 25.091995350756218 ], [ -77.986595508446868, 25.092122290512528 ], [ -77.986594958677898, 25.09215749151258 ], [ -77.986593107250144, 25.092163392920295 ], [ -77.986590269472146, 25.092165739978604 ], [ -77.986576047344542, 25.09216716773842 ], [ -77.986505993125462, 25.092165378767501 ], [ -77.986475671391347, 25.092164778376137 ], [ -77.986456403426786, 25.092168152933418 ], [ -77.986450375731238, 25.092173691502513 ], [ -77.986442833476147, 25.092197535495348 ], [ -77.986438418256498, 25.092203737096703 ], [ -77.986425858910522, 25.092208314062205 ], [ -77.986392328394203, 25.092209420473985 ], [ -77.986369740256379, 25.092207987019833 ], [ -77.986355556756394, 25.09220447741642 ], [ -77.986349632367094, 25.092199383854041 ], [ -77.986342541066222, 25.092175169701644 ], [ -77.9863365861342, 25.092167724198678 ], [ -77.986325762333351, 25.092163098419352 ], [ -77.98630477678951, 25.092161287487233 ] ], [ [ -77.987335422898667, 25.092182238539412 ], [ -77.987292360358893, 25.092181519368168 ], [ -77.987261592162085, 25.092177363000982 ], [ -77.987253930430995, 25.092174735272188 ], [ -77.987248481250504, 25.092171300513343 ], [ -77.987232533459263, 25.092148333509911 ], [ -77.987222765178842, 25.092141456668713 ], [ -77.987208795477898, 25.092137594801194 ], [ -77.98716944118361, 25.09213177637314 ], [ -77.987156171270215, 25.092127308418991 ], [ -77.987151096687185, 25.092123722340599 ], [ -77.987144910888162, 25.09211303162844 ], [ -77.987142124314133, 25.092099395904857 ], [ -77.987139079025297, 25.092069934406112 ], [ -77.987135426475334, 25.092057049574365 ], [ -77.987132067674523, 25.092051934040299 ], [ -77.987121243873659, 25.092045301255489 ], [ -77.987106470180493, 25.09204193645731 ], [ -77.987085835878432, 25.092040417579582 ], [ -77.987016008933068, 25.092040402122326 ], [ -77.98693961170973, 25.092039502347966 ], [ -77.986913301851672, 25.092035366314438 ], [ -77.986903863253005, 25.092030114104897 ], [ -77.986900867371531, 25.092026404365669 ], [ -77.986892918179592, 25.09200806800164 ], [ -77.986887354014698, 25.092000277547708 ], [ -77.986877527343822, 25.091995328786968 ], [ -77.986864905115738, 25.091992801933159 ], [ -77.986828446091621, 25.091990731474965 ], [ -77.986675771120559, 25.091988371396749 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 654, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 274 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.987886434222489, 25.094028409809749 ], [ -77.987891254582394, 25.094033069682482 ], [ -77.98791683231353, 25.094047841686212 ], [ -77.987923410676302, 25.094053685242425 ], [ -77.987945700573448, 25.094079173817736 ], [ -77.987967169410425, 25.094096038203713 ], [ -77.987971564867109, 25.094101009658246 ], [ -77.987977981533191, 25.094115068191979 ], [ -77.987987287181227, 25.094156047901546 ], [ -77.987994055088578, 25.094169802170548 ], [ -77.988019756787168, 25.094191435427135 ], [ -77.988040132374451, 25.094217924609222 ], [ -77.988067883130185, 25.094237783560164 ], [ -77.988090048161567, 25.094262722154607 ], [ -77.988105394081515, 25.094269689177768 ], [ -77.988126794646519, 25.094273471252659 ], [ -77.988154990068338, 25.094275383848483 ], [ -77.988182240157968, 25.094276002653448 ] ], [ [ -77.988125861271342, 25.092649440545014 ], [ -77.988113593005139, 25.092646622389289 ], [ -77.98808329372892, 25.092646150538904 ], [ -77.988040454869633, 25.092648976760145 ], [ -77.987990625320833, 25.092656417352636 ], [ -77.98793941775638, 25.092669930983888 ], [ -77.987892579597442, 25.092691108926083 ], [ -77.987860374994526, 25.092715761471641 ], [ -77.987836240856083, 25.092745395284194 ], [ -77.987820609271822, 25.092777983032743 ], [ -77.987813719193596, 25.092811289936797 ], [ -77.987815145718272, 25.092843315515875 ], [ -77.987822822720688, 25.092874026416172 ], [ -77.987834905959573, 25.092902693712624 ], [ -77.987864773146143, 25.092955858114582 ], [ -77.987881604879618, 25.092980184380028 ], [ -77.987900830623346, 25.093001189799679 ], [ -77.987922891450083, 25.093017701260937 ], [ -77.987947100148659, 25.093030050687073 ], [ -77.987973472888783, 25.09303711377731 ], [ -77.988000902047673, 25.093039186658331 ], [ -77.98809260476682, 25.093031577687871 ], [ -77.988128977552677, 25.09303200886017 ], [ -77.98816297249796, 25.093035509490978 ], [ -77.988191610789258, 25.093042619765804 ], [ -77.988211561473406, 25.093054107658531 ], [ -77.988219328307324, 25.093067391016152 ], [ -77.988219410952325, 25.09308284731717 ], [ -77.988214109095523, 25.0931006970279 ], [ -77.988204471969141, 25.093119942757003 ], [ -77.988177454238652, 25.093162831345388 ], [ -77.988142596910677, 25.09320587611677 ], [ -77.988126724577953, 25.093229654012394 ], [ -77.988114596423301, 25.093256673824989 ], [ -77.98810636066878, 25.093286087039633 ], [ -77.988101686734325, 25.093316766914647 ], [ -77.988100368905791, 25.093347635521024 ], [ -77.988106655316159, 25.093469351830926 ], [ -77.988104745497893, 25.093499409309835 ], [ -77.988098853447909, 25.093528920903221 ], [ -77.988088408736161, 25.093556724891819 ], [ -77.98807324427581, 25.093581918259705 ], [ -77.988054331145833, 25.093605428431243 ], [ -77.988005885002551, 25.093649803166038 ], [ -77.987979029867134, 25.093676616249653 ], [ -77.987953969565652, 25.093708061556676 ], [ -77.987928058559589, 25.093754328520035 ], [ -77.987908148299624, 25.093804661476369 ], [ -77.987893291063145, 25.093854741405003 ], [ -77.987882780774314, 25.093900577957136 ], [ -77.987877626241229, 25.093932031341911 ], [ -77.987876337158795, 25.093958627965606 ], [ -77.987878508386842, 25.093978690340208 ], [ -77.987882778977692, 25.093990904624022 ], [ -77.98788725797759, 25.093994783521225 ] ], [ [ -77.987762567769565, 25.092596941567049 ], [ -77.987915208159393, 25.092600053185414 ] ], [ [ -77.98772359930598, 25.092586559888169 ], [ -77.987724680877577, 25.092589895380719 ], [ -77.987729721324641, 25.092592914411171 ], [ -77.987751266518401, 25.092596711181496 ], [ -77.987761459225723, 25.092596918968479 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 655, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 200 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.987018327823407, 25.093639391924455 ], [ -77.986988979524497, 25.093463768576331 ], [ -77.986979111531099, 25.093421740808189 ], [ -77.986946159529836, 25.093317765930351 ], [ -77.986933261518985, 25.093284694274683 ], [ -77.986904157002101, 25.093221921396925 ], [ -77.986890435236106, 25.093182213738025 ], [ -77.986879560231301, 25.093140049199871 ], [ -77.98686090671444, 25.093053066336928 ], [ -77.986850399120556, 25.093010612950099 ], [ -77.986837082494759, 25.092970607469535 ], [ -77.986822825332908, 25.092939040756484 ], [ -77.986773063157742, 25.092842902240644 ], [ -77.986738361238324, 25.09276638691405 ], [ -77.986723795055951, 25.092726095802938 ], [ -77.986714316931426, 25.092683749689257 ], [ -77.986709827151614, 25.092641596368757 ], [ -77.986709530707572, 25.092602148039344 ], [ -77.986712632590269, 25.092567829853486 ], [ -77.986718289281612, 25.092540924597309 ], [ -77.986725486583637, 25.092523470183448 ], [ -77.98673255901987, 25.0925167479352 ], [ -77.986734460753354, 25.09251690250704 ], [ -77.986734433803861, 25.09246576443347 ], [ -77.986739164332164, 25.092434093457516 ], [ -77.986744063743743, 25.092420475667517 ], [ -77.98675122331656, 25.092409936299156 ], [ -77.986760778696222, 25.092403420683056 ], [ -77.986784530152335, 25.09239808225438 ], [ -77.986826397932802, 25.092396014243754 ], [ -77.986885773878143, 25.092396796866129 ], [ -77.986944768039464, 25.092399170766715 ], [ -77.986986122881873, 25.092403347464742 ], [ -77.987010148324131, 25.092409107305205 ], [ -77.987020270540768, 25.092413599655146 ], [ -77.987047864989691, 25.092434047085902 ], [ -77.987057683575728, 25.092438591501324 ], [ -77.987068823583584, 25.09244198476237 ], [ -77.987093864122116, 25.092446362402477 ], [ -77.987164460923665, 25.092450474015973 ], [ -77.987312220312873, 25.092452454163791 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 664, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 1834 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.990871770760521, 25.125442732777238 ], [ -77.99090043112129, 25.125397412860934 ], [ -77.99092667091071, 25.125341196356324 ], [ -77.990973359050983, 25.125223201797951 ], [ -77.991001194248383, 25.125157095255716 ], [ -77.991077917560148, 25.124982620334364 ], [ -77.991105568602919, 25.124931445412088 ], [ -77.991143858393599, 25.124875339304655 ], [ -77.991183966374393, 25.124820403540589 ], [ -77.991258105233143, 25.124728582802661 ], [ -77.991287849350485, 25.124687433595035 ], [ -77.991312741666988, 25.124641359706953 ], [ -77.991333261883057, 25.124591244401202 ], [ -77.991350746691737, 25.124538419082654 ], [ -77.991375874366867, 25.124447465135749 ], [ -77.991388530730902, 25.124383503722669 ], [ -77.991397281220074, 25.124316750133115 ], [ -77.991402782502888, 25.124248223458761 ], [ -77.991405414566685, 25.124178823234413 ], [ -77.991405299582297, 25.124109376611177 ], [ -77.991402308192434, 25.124040702608394 ], [ -77.99139605681637, 25.12397365766061 ], [ -77.991385891480604, 25.123909192549959 ], [ -77.991370868055796, 25.123848402832788 ], [ -77.991346671933641, 25.123780615210944 ], [ -77.99133278936921, 25.123748040604326 ], [ -77.991287882588168, 25.123653687167657 ], [ -77.991268072041208, 25.123596379999444 ], [ -77.991252900394358, 25.123535079355587 ], [ -77.991240942919603, 25.12347103775852 ], [ -77.99120685634611, 25.123233592305134 ], [ -77.991198889187899, 25.123164429810807 ], [ -77.991193170512801, 25.123093532438922 ], [ -77.991172595499521, 25.12269830175207 ], [ -77.991170633578932, 25.122638685889118 ], [ -77.991171244433289, 25.122578663329122 ], [ -77.991174375062116, 25.122518799340217 ], [ -77.9911801009237, 25.122459663258478 ], [ -77.991216965088057, 25.122162172741557 ], [ -77.991241775657898, 25.121989491024813 ], [ -77.991249168792663, 25.121919474632215 ], [ -77.991271239500847, 25.121631902323976 ], [ -77.991284673805978, 25.121490409137564 ], [ -77.991294024369751, 25.121422185068639 ], [ -77.991333480173651, 25.121182485920485 ], [ -77.991347202837929, 25.121118487824454 ], [ -77.99136451517009, 25.121057902495437 ], [ -77.991387127562405, 25.121002345244907 ], [ -77.99140372214066, 25.120972135923434 ], [ -77.991422234622007, 25.120943490660661 ], [ -77.991442884195493, 25.120916872252216 ], [ -77.991465897236438, 25.120892746747447 ], [ -77.991516924239519, 25.120848982962258 ], [ -77.991573286337072, 25.120810274118288 ], [ -77.991603484103663, 25.120792957941713 ], [ -77.991666750652485, 25.120760790026104 ], [ -77.991777587487192, 25.120712700806486 ], [ -77.991830864770051, 25.120686625664696 ], [ -77.991860843347752, 25.12066884260835 ], [ -77.991889337010221, 25.120649907034068 ], [ -77.992021973261942, 25.120545117556784 ], [ -77.992125572370412, 25.120458700758089 ], [ -77.992204457927087, 25.120395544914146 ], [ -77.992304099058387, 25.120305301192349 ], [ -77.992330164574668, 25.120283771784326 ], [ -77.992410590742054, 25.120222099403556 ], [ -77.992487684159741, 25.120156671744692 ], [ -77.992596270714657, 25.120076321469423 ], [ -77.992706961123972, 25.119999425452484 ], [ -77.992786863573556, 25.119941007969462 ], [ -77.992875126643469, 25.119880499325319 ], [ -77.992913182872186, 25.119847160752709 ], [ -77.992940477283767, 25.119812373586761 ], [ -77.992962098834369, 25.119774799044279 ], [ -77.99299386416115, 25.1197095679779 ], [ -77.993016074108198, 25.119669968148806 ], [ -77.993051291660606, 25.119619584023368 ], [ -77.99307122617509, 25.11959542735497 ], [ -77.993104470128813, 25.119561695040247 ], [ -77.993162932487465, 25.119506074481091 ], [ -77.993208766329886, 25.119459348767055 ], [ -77.993231033769163, 25.1194351936937 ], [ -77.993273606727115, 25.11938433935094 ], [ -77.993370814322361, 25.119246853418247 ], [ -77.993428759251429, 25.119147830265945 ], [ -77.993458616556538, 25.119099100297902 ], [ -77.993478008488566, 25.119071507896507 ], [ -77.993558310688456, 25.118963211483642 ], [ -77.993703267334269, 25.118777613948705 ], [ -77.993725252702532, 25.118752505480874 ], [ -77.993771689314514, 25.118704378869733 ], [ -77.993808568750197, 25.118670045234477 ], [ -77.993848846512577, 25.118638933317641 ], [ -77.993903734474756, 25.118608268742257 ], [ -77.99402373682031, 25.118556638920616 ], [ -77.994081118505719, 25.118528352598094 ], [ -77.994131407991944, 25.118493353582291 ], [ -77.994167780777801, 25.11845395751331 ], [ -77.994197882424686, 25.118408626316043 ], [ -77.994276301755704, 25.118261387042171 ], [ -77.994294198891112, 25.118232443452417 ], [ -77.994351287725706, 25.118148578172768 ], [ -77.994480777178978, 25.117948704812779 ], [ -77.994498721026787, 25.117919807510937 ], [ -77.994566550118947, 25.117799471420174 ], [ -77.994584662850031, 25.117770734316476 ], [ -77.994651500202124, 25.117672781988098 ], [ -77.994682377993371, 25.117632807349302 ], [ -77.994728325023544, 25.117584284999676 ], [ -77.994779349331679, 25.117540569645222 ], [ -77.994974696973344, 25.11740381285847 ], [ -77.995135781073458, 25.117279995843759 ], [ -77.995194145515796, 25.117243481972576 ], [ -77.995224492402741, 25.117226075006318 ], [ -77.995350043641821, 25.117161398926008 ], [ -77.995530941882137, 25.11705634048446 ], [ -77.995594685436402, 25.117024919075163 ], [ -77.995661621603162, 25.11699626556674 ], [ -77.995731874349957, 25.116970752486381 ], [ -77.995793279589492, 25.116952410101717 ], [ -77.996013968705398, 25.116893422613831 ], [ -77.99629291626232, 25.116812842448155 ], [ -77.996389418680053, 25.11678922367895 ], [ -77.996567833078657, 25.116751605098099 ], [ -77.996706921929032, 25.116714724236871 ], [ -77.996755201883985, 25.116699221306668 ], [ -77.996917352284342, 25.116637939977348 ], [ -77.996962672290394, 25.116619602423022 ], [ -77.997028426274298, 25.116589461155101 ], [ -77.997128231797262, 25.116546066728411 ], [ -77.997226206553776, 25.116500600616352 ], [ -77.997290357044847, 25.116468788643285 ], [ -77.997401484035365, 25.11642048137649 ], [ -77.997455425173229, 25.116394731483158 ], [ -77.997545867556042, 25.116341479664868 ], [ -77.997603794518838, 25.116303771474644 ], [ -77.997686201471424, 25.11624309672726 ], [ -77.997712372090575, 25.116221759374291 ], [ -77.99773736951002, 25.116199092957121 ], [ -77.997785429377728, 25.116152360285106 ], [ -77.997831830057095, 25.116104456329307 ], [ -77.997921105528349, 25.116007782925287 ], [ -77.997962665186648, 25.115958795490471 ], [ -77.997999859930999, 25.115908255292705 ], [ -77.998053622304113, 25.115818848480075 ], [ -77.998079960908228, 25.115781123047579 ], [ -77.998110149691669, 25.115754404282232 ], [ -77.998130058154999, 25.115745996357525 ], [ -77.998151415600901, 25.115742626517783 ], [ -77.998185423122607, 25.115745781624838 ], [ -77.998352988567504, 25.115783309416507 ], [ -77.998414966033891, 25.115793869545342 ], [ -77.998481838420275, 25.115802060293976 ], [ -77.998552021098462, 25.11580801668406 ], [ -77.998624157612426, 25.115811753356908 ], [ -77.998697036134828, 25.115813145865364 ], [ -77.998769517601829, 25.115811908712708 ], [ -77.998840460254755, 25.11580756851107 ], [ -77.998908646876416, 25.115799436326324 ], [ -77.999014956202075, 25.115778864287698 ], [ -77.999078176038481, 25.115762440490972 ], [ -77.99913687016253, 25.115741429220101 ], [ -77.999169451159602, 25.115725977409461 ], [ -77.999200233729411, 25.115709031414585 ], [ -77.999286320181398, 25.115651351245123 ], [ -77.999374523962572, 25.115596142104579 ], [ -77.999526197311738, 25.11550863756673 ], [ -77.999589679456236, 25.115476327544894 ], [ -77.999634109231891, 25.115456975527088 ], [ -77.999725533473281, 25.115420742542046 ], [ -77.999895253976547, 25.115350511719413 ], [ -77.999957678803966, 25.11532905708329 ], [ -78.000086615793336, 25.115289965826975 ], [ -78.000148135118934, 25.115267587175172 ], [ -78.000213619608175, 25.115237146248173 ], [ -78.000276099232863, 25.115203550192614 ], [ -78.000339907465815, 25.115171401953791 ], [ -78.00037309123239, 25.115156643888891 ], [ -78.000441912064602, 25.115129149830508 ], [ -78.000495987051451, 25.11511102190331 ], [ -78.000607554216501, 25.115077999250225 ], [ -78.000661911274378, 25.115060199110076 ], [ -78.00073128726541, 25.11503346229258 ], [ -78.00076479532386, 25.115019238605925 ], [ -78.000829240462295, 25.114988560921564 ], [ -78.000967719356623, 25.114917886554672 ], [ -78.00101411554445, 25.114897081738949 ], [ -78.001067733288778, 25.114881735561898 ], [ -78.001124846377905, 25.11487340647578 ], [ -78.001183402161402, 25.114871638985083 ], [ -78.001241475549591, 25.114876481079904 ], [ -78.001301938456422, 25.114889444033004 ], [ -78.001340787897504, 25.11490187746972 ], [ -78.001379894256772, 25.114916464754099 ], [ -78.00149823112578, 25.114965520117753 ], [ -78.001537976187237, 25.114980227775774 ], [ -78.001577246938197, 25.114992707566255 ], [ -78.001615823291431, 25.115002713033764 ], [ -78.001676667083927, 25.115012194679682 ], [ -78.001729373038302, 25.115013317966365 ], [ -78.001769111811527, 25.11500747459819 ], [ -78.001785387487828, 25.115001586493527 ], [ -78.001795830403012, 25.114995238825173 ], [ -78.001800306707565, 25.114987914283581 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 665, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 1788 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.010055230388744, 25.156146941214605 ], [ -78.010017069051415, 25.156049928723395 ], [ -78.01000295562001, 25.156017818881846 ], [ -78.009969069370868, 25.155945614396014 ], [ -78.009949493284168, 25.155907519194468 ], [ -78.009863723039174, 25.155749147237284 ], [ -78.009821261472325, 25.155674165802587 ], [ -78.009746677049193, 25.155550046077977 ], [ -78.00971310790537, 25.155491073166427 ], [ -78.009652691710926, 25.155366821530531 ], [ -78.009603522423859, 25.155277216742704 ], [ -78.009530669054314, 25.155164218456832 ], [ -78.009492269669181, 25.155109428045094 ], [ -78.009371659164202, 25.154949498739303 ], [ -78.009288492236863, 25.154845431473035 ], [ -78.0091575762589, 25.154694668960801 ], [ -78.009022581929571, 25.154547439282304 ], [ -78.008934320656294, 25.154447538932679 ], [ -78.008889177618315, 25.154398586430464 ], [ -78.008795166228893, 25.154303909472485 ], [ -78.00869817063608, 25.154212058864868 ], [ -78.008674682386356, 25.154188255430395 ], [ -78.008488139132751, 25.153997618813584 ], [ -78.008419141332396, 25.153925183017165 ], [ -78.008351521547695, 25.153851551879924 ], [ -78.008304806457986, 25.153803961128098 ], [ -78.008256076447083, 25.153758115331417 ], [ -78.008205300073982, 25.153714042137981 ], [ -78.00784017892839, 25.153414155028944 ], [ -78.007790343091372, 25.153369266954034 ], [ -78.007742520378926, 25.153322635509152 ], [ -78.007628938292711, 25.153200764142035 ], [ -78.007468456962144, 25.153031704914248 ], [ -78.0073366363807, 25.152881727274814 ], [ -78.007254510600802, 25.15277651822975 ], [ -78.007234786292102, 25.15274969941018 ], [ -78.007197292408762, 25.152694124051582 ], [ -78.007171505370252, 25.152650242373891 ], [ -78.007047323163675, 25.152427442966349 ], [ -78.006968655897623, 25.152275100791353 ], [ -78.006902783336145, 25.152156060541444 ], [ -78.006855389120048, 25.152064919814233 ], [ -78.006810743748773, 25.151971399770421 ], [ -78.006712976503124, 25.151747315172553 ], [ -78.006667197457915, 25.151654775535135 ], [ -78.006618376717185, 25.151565113540613 ], [ -78.006571107366923, 25.151473864223892 ], [ -78.006526302993791, 25.151380481961681 ], [ -78.006505277026278, 25.151332477168687 ], [ -78.006457180327629, 25.151219875297187 ], [ -78.006444110738556, 25.151187294186421 ], [ -78.006428326440698, 25.151142107680911 ], [ -78.006389826444291, 25.151013840363827 ], [ -78.006348647671629, 25.150850867769925 ], [ -78.006333393379791, 25.150797865973455 ], [ -78.00631022133706, 25.15072989327648 ], [ -78.006207329202724, 25.15046659223032 ], [ -78.006159628661138, 25.150331335981644 ], [ -78.006128129235691, 25.150248503489966 ], [ -78.006108476792193, 25.150199311049601 ], [ -78.006065829274121, 25.1501040616265 ], [ -78.00597391275592, 25.149919536799587 ], [ -78.005952231018227, 25.149872100639975 ], [ -78.005917163484469, 25.149792357824925 ], [ -78.005876776127607, 25.149695150818999 ], [ -78.005827943708766, 25.149561117515674 ], [ -78.005782657838679, 25.149423770449239 ], [ -78.005686353050294, 25.149154525644924 ], [ -78.005646082474428, 25.149057218925424 ], [ -78.005545655317263, 25.148835925437695 ], [ -78.005475446587894, 25.148676503454414 ], [ -78.005456962852577, 25.148626298806203 ], [ -78.005408927239444, 25.148469263997544 ], [ -78.005379908960805, 25.148384283488522 ], [ -78.005348529909611, 25.148301347216506 ], [ -78.005321619078615, 25.148236369642799 ], [ -78.005264249071331, 25.148109729669493 ], [ -78.005085404379713, 25.147780261994523 ], [ -78.005025922433191, 25.147655450365182 ], [ -78.004997476381376, 25.147592045117381 ], [ -78.004976332734529, 25.147536786985629 ], [ -78.004936270567825, 25.147424345059129 ], [ -78.004896050297631, 25.147326993862094 ], [ -78.004853026385362, 25.147232071531871 ], [ -78.004770040917734, 25.147061644409931 ], [ -78.004746245444181, 25.147016039218983 ], [ -78.00472929872636, 25.146986816205754 ], [ -78.004657519741897, 25.146872651469458 ], [ -78.004464830215127, 25.146599070874487 ], [ -78.00432146448567, 25.14641495709505 ], [ -78.004172073755583, 25.146236304344896 ], [ -78.004131290241702, 25.146183580277906 ], [ -78.004111876750102, 25.146156250959439 ], [ -78.004074046896832, 25.146100970221845 ], [ -78.003982139361824, 25.145960338891985 ], [ -78.003851777644414, 25.145742656008611 ], [ -78.003824743744232, 25.145699855803095 ], [ -78.003747172422834, 25.145591191858106 ], [ -78.003635872955741, 25.145423212568279 ], [ -78.003600864710862, 25.145365488692978 ], [ -78.003567728554913, 25.145305902597446 ], [ -78.003505342355041, 25.145183849202798 ], [ -78.003373579265855, 25.144901415717378 ], [ -78.003320907447446, 25.144770466451963 ], [ -78.003244176949153, 25.144594624930402 ], [ -78.003222183496007, 25.14454745993288 ], [ -78.003173899049543, 25.144457093373159 ], [ -78.003138516207088, 25.144399694317297 ], [ -78.003083700110167, 25.144315224098495 ], [ -78.002941805821123, 25.144085693314985 ], [ -78.002889946079748, 25.143998174216797 ], [ -78.002853164560491, 25.143941982537939 ], [ -78.002702923125824, 25.143719640512252 ], [ -78.002663308320095, 25.143665884226156 ], [ -78.002561342348827, 25.1435338764798 ], [ -78.002518836764523, 25.143482592230409 ], [ -78.002430344624202, 25.143382986958805 ], [ -78.002407448364252, 25.143358620305627 ], [ -78.002358963593409, 25.143312440426595 ], [ -78.002228285669034, 25.143205148662116 ], [ -78.002064578488273, 25.143082006732339 ], [ -78.001901677096356, 25.142957191925223 ], [ -78.001823446411507, 25.142891822796511 ], [ -78.001669739276522, 25.142758155281701 ], [ -78.001628626979226, 25.14272754555309 ], [ -78.00150370995074, 25.142638823567928 ], [ -78.001448048539103, 25.142601622801461 ], [ -78.001390764770065, 25.142568249769976 ], [ -78.00136067480129, 25.142553983749703 ], [ -78.001306713900505, 25.142536427507821 ], [ -78.001249449894402, 25.142525913603667 ], [ -78.001191467236069, 25.142521657297813 ], [ -78.001185693899714, 25.142521665317769 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 669, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 636 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.013512995911555, 25.160920736819683 ], [ -78.013474891192644, 25.160866457221577 ], [ -78.013384832390429, 25.160723967941664 ], [ -78.013365933633494, 25.160696432104579 ], [ -78.01332654071166, 25.160642499540234 ], [ -78.013285478719993, 25.160589769501637 ], [ -78.013241083080359, 25.160540168997503 ], [ -78.013146813874442, 25.160445709833656 ], [ -78.013097650875579, 25.160400236486101 ], [ -78.012996493388073, 25.160311983489706 ], [ -78.012923577136405, 25.1602429355029 ], [ -78.012854183179044, 25.16017107989224 ], [ -78.012810587039979, 25.160120787281702 ], [ -78.012769909527265, 25.160067965951896 ], [ -78.012741813818451, 25.160026081427819 ], [ -78.012567927827249, 25.159758265848918 ], [ -78.012513895959529, 25.15967262646911 ], [ -78.012474781515422, 25.159618451964615 ], [ -78.01243351740284, 25.159566139411428 ], [ -78.012285243278654, 25.159386259446954 ], [ -78.012197965660619, 25.159285747549259 ], [ -78.012175349675033, 25.159261188116329 ], [ -78.012033642235579, 25.159120007666633 ], [ -78.011987741917807, 25.159071710765993 ], [ -78.011943244768531, 25.159022197458693 ], [ -78.011749109852474, 25.158793743229257 ], [ -78.011704866926408, 25.158744011086515 ], [ -78.01161369960316, 25.158647109618226 ], [ -78.011570434942456, 25.158596287866811 ], [ -78.011507521431525, 25.158518822545492 ], [ -78.011407162546305, 25.158385497385524 ], [ -78.011267600283773, 25.158198075001948 ], [ -78.0111900262674, 25.158088920503733 ], [ -78.0111499883552, 25.158035547012396 ], [ -78.011044342884503, 25.157906800707714 ], [ -78.010935193085899, 25.157781327814224 ], [ -78.010854334828878, 25.157675017988026 ], [ -78.010815877951543, 25.157620275863806 ], [ -78.010742502660804, 25.157507727768074 ], [ -78.010589227615469, 25.157243658327509 ], [ -78.010497741390296, 25.157102895105659 ], [ -78.010462889452214, 25.157045031208991 ], [ -78.010446889558693, 25.15701474380144 ], [ -78.010417439190391, 25.156952204497113 ], [ -78.010396185050809, 25.156897039232671 ], [ -78.010358005752906, 25.156782961013132 ], [ -78.010327299539838, 25.156697513877706 ], [ -78.010305058151729, 25.156640166926142 ], [ -78.01020279034654, 25.156403367345916 ], [ -78.010178491816433, 25.156350042716852 ], [ -78.010126431750763, 25.156248931493536 ], [ -78.010086907674861, 25.156183745929454 ], [ -78.01007884170194, 25.15617162893032 ], [ -78.010072212134702, 25.156164721545526 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 673, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 39 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.028283650990602, 25.173031542717546 ], [ -78.028284839462245, 25.173034149190759 ], [ -78.028309205366028, 25.173042834468333 ], [ -78.028322765435234, 25.173050459593561 ], [ -78.028327195027941, 25.173055812384032 ], [ -78.02833108832634, 25.173068163475591 ], [ -78.028332016286043, 25.173103577735944 ], [ -78.028325184591509, 25.173363013713686 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 675, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 175 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.029054502040353, 25.174177186821581 ], [ -78.029052093241404, 25.174165339800151 ], [ -78.02904486629491, 25.17414719299655 ], [ -78.029032472238953, 25.174126734852276 ], [ -78.029016768789475, 25.174108249838 ], [ -78.028997367874254, 25.174089758316885 ], [ -78.028958469924191, 25.174056757306502 ], [ -78.028863221554573, 25.173985609009868 ], [ -78.028845061212792, 25.173966883327996 ], [ -78.028830273146625, 25.173941726049172 ], [ -78.028819819451613, 25.173912794033921 ], [ -78.028812137957672, 25.173881437662917 ], [ -78.028794333348699, 25.173782649066371 ], [ -78.028770437263816, 25.173683721367595 ], [ -78.028749740977986, 25.173552698932365 ], [ -78.028734298938261, 25.173484613713843 ], [ -78.028728808435304, 25.173453975922179 ], [ -78.028725184631412, 25.173422031636228 ], [ -78.028722422311873, 25.173355919490195 ], [ -78.028724961849193, 25.173289424386248 ], [ -78.028728419464741, 25.173257045103014 ], [ -78.028733711440069, 25.173225889374006 ], [ -78.028741324662107, 25.1731965669494 ], [ -78.02875194185043, 25.173169836358564 ], [ -78.028760306064058, 25.173154801567367 ], [ -78.028779410535194, 25.173126715697585 ], [ -78.028801125510583, 25.173100988332738 ], [ -78.028836834441449, 25.173065210660795 ], [ -78.028908006164741, 25.173002286094786 ], [ -78.028927885881998, 25.172982397671518 ], [ -78.02894649178819, 25.172959661304755 ], [ -78.028966279877238, 25.172926937221593 ], [ -78.028982418111312, 25.172891836728251 ], [ -78.0290167517215, 25.172800123694635 ], [ -78.029025175223907, 25.172782490504822 ], [ -78.029029362271459, 25.172776436081964 ], [ -78.029033543928193, 25.172773857244785 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 676, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 205 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.026872914197796, 25.173602016100109 ], [ -78.026629265953147, 25.173594686939076 ], [ -78.02644003943179, 25.173592815421898 ], [ -78.026386430670584, 25.173594087760922 ], [ -78.026340634557386, 25.1735967365024 ], [ -78.026297238742671, 25.173601020178946 ], [ -78.026256083326246, 25.173607433905147 ], [ -78.026096363767053, 25.173640588693374 ], [ -78.026058729746467, 25.173651006421785 ], [ -78.025953721181352, 25.173689918832569 ], [ -78.025855759001345, 25.17373491406132 ], [ -78.02576572714861, 25.173785159594658 ], [ -78.02571281727667, 25.173822420770513 ], [ -78.025685090775383, 25.173837744092481 ], [ -78.025655982665285, 25.173850099169808 ], [ -78.025624397899875, 25.173857342950196 ], [ -78.025591180895631, 25.173859638846327 ], [ -78.025520267887075, 25.173857013687432 ], [ -78.025481373530212, 25.173856900681226 ], [ -78.0254417111138, 25.173858565693749 ], [ -78.025402699077674, 25.173862749362854 ], [ -78.025365897795425, 25.173870458988201 ], [ -78.025333138931941, 25.173883062838438 ], [ -78.025305632517913, 25.173901673087961 ], [ -78.025280624318725, 25.173926388919373 ], [ -78.025254512090072, 25.173957189191015 ], [ -78.02522710628736, 25.173990860135035 ], [ -78.025201417165192, 25.174027813936622 ], [ -78.025180180093571, 25.174068253841057 ], [ -78.025149128029099, 25.174145784893607 ], [ -78.025138541383527, 25.174176468851886 ], [ -78.02513362939554, 25.174195550592152 ], [ -78.025131639626693, 25.174213909584033 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 677, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 170 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.028332004607634, 25.173405765997956 ], [ -78.028343631502651, 25.173411921201286 ], [ -78.028375922343841, 25.173434409519512 ], [ -78.028449649774174, 25.173491456708501 ], [ -78.028471550700814, 25.173511485697066 ], [ -78.028493649256816, 25.173536696722465 ], [ -78.028512823796561, 25.173563348372255 ], [ -78.028599760953114, 25.173699762581908 ], [ -78.028619821231729, 25.173742472477716 ], [ -78.028641830854482, 25.173798563440549 ], [ -78.028649953421308, 25.17383041332053 ], [ -78.028655371160781, 25.173864642013736 ], [ -78.028658790148739, 25.173900586114843 ], [ -78.028661512942378, 25.173975600245857 ], [ -78.0286586338419, 25.17408996481711 ], [ -78.028651944087954, 25.174162492700898 ], [ -78.028646432923722, 25.17419580424566 ], [ -78.028638816108398, 25.174225868691547 ], [ -78.028628359718482, 25.174251323466766 ], [ -78.028614088183573, 25.174270353163791 ], [ -78.02859805505237, 25.174280280604403 ], [ -78.028579980948848, 25.174284208166682 ], [ -78.028561588841754, 25.174282430967164 ], [ -78.028544601699721, 25.174274873397284 ], [ -78.028529391425323, 25.17426035336608 ], [ -78.028516583246017, 25.174240848067303 ], [ -78.028493301608776, 25.174194135985786 ], [ -78.028471173408406, 25.174155818033359 ], [ -78.02844146073204, 25.17411343835748 ], [ -78.028350470376907, 25.173993503989919 ], [ -78.028313863130776, 25.173937761891114 ], [ -78.028278085927965, 25.173869919159976 ], [ -78.028270380179436, 25.173858384396027 ], [ -78.028267001605755, 25.173855592934562 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 678, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 512 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.033773264676569, 25.175629190406276 ], [ -78.033766124865835, 25.175618023273046 ], [ -78.033755815799637, 25.175606618751765 ], [ -78.033693590398187, 25.175542398789425 ], [ -78.033660684211057, 25.175504736525486 ], [ -78.033629101242283, 25.175460567941425 ], [ -78.033550264194645, 25.17533195141138 ], [ -78.033515005319742, 25.175287173839052 ], [ -78.033479310761919, 25.175253388622213 ], [ -78.033441781844303, 25.175225069909164 ], [ -78.033319889443391, 25.175145997308963 ], [ -78.033260082306739, 25.175111012898583 ], [ -78.033069840689109, 25.175012920402093 ], [ -78.032983416470572, 25.174970620696925 ], [ -78.032941607978913, 25.1749482147737 ], [ -78.032911638384405, 25.174929959146365 ], [ -78.032882704547418, 25.174911044183506 ], [ -78.032713876071256, 25.174792460161047 ], [ -78.032565393537908, 25.17470103554243 ], [ -78.032507488134698, 25.174663055139789 ], [ -78.032368137874556, 25.174563581826327 ], [ -78.032258203846709, 25.174482598270032 ], [ -78.032229530521178, 25.174463263734751 ], [ -78.032109709635279, 25.174391338456108 ], [ -78.03205277081932, 25.174352557973702 ], [ -78.031997543293997, 25.174312049872356 ], [ -78.03191188713501, 25.174254199831598 ], [ -78.031853110365944, 25.174216990006204 ], [ -78.03179122812098, 25.174182458165827 ], [ -78.031758507885058, 25.174166848713959 ], [ -78.031689598119655, 25.174138379344853 ], [ -78.031628094065368, 25.174118374849048 ], [ -78.031563416263211, 25.174101104444649 ], [ -78.03145725515958, 25.174075508990335 ], [ -78.031391440090303, 25.17406210842681 ], [ -78.031187143431765, 25.174027732637299 ], [ -78.031120519878684, 25.174014965390342 ], [ -78.03091677927732, 25.173970755616779 ], [ -78.030847925207397, 25.173957081062902 ], [ -78.030664739856334, 25.173925620640091 ], [ -78.030594159224478, 25.173916085846706 ], [ -78.030521294176836, 25.173909059139266 ], [ -78.030446871450479, 25.173904148655026 ], [ -78.030371547713898, 25.173901117813049 ], [ -78.030295942804671, 25.173899880435968 ], [ -78.03022068284848, 25.17390050644142 ], [ -78.030146442480103, 25.173903233223651 ], [ -78.030073923283851, 25.173908492482369 ], [ -78.030027289940818, 25.173913572069203 ], [ -78.029841026063281, 25.173936888735682 ], [ -78.029742972255065, 25.173952003916838 ], [ -78.029648641963732, 25.173969848315902 ], [ -78.029534552329395, 25.173995754355886 ], [ -78.029477834498977, 25.174009831337216 ], [ -78.029400192210659, 25.174032731732805 ], [ -78.029367462991587, 25.174044184367983 ], [ -78.029350757022229, 25.174052115115956 ], [ -78.029349502973346, 25.174054893117525 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 680, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 229 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.025037621050743, 25.174332066535676 ], [ -78.025031826019358, 25.174335985961989 ], [ -78.025026011224497, 25.174349523077911 ], [ -78.025006418069836, 25.174426454777528 ], [ -78.02499533465587, 25.174457618329562 ], [ -78.024978991605892, 25.174488396516256 ], [ -78.024956336094419, 25.174515995904272 ], [ -78.024927139949398, 25.174537854764765 ], [ -78.024893252801888, 25.174553795869006 ], [ -78.02485749087046, 25.174564233844055 ], [ -78.024822822188725, 25.174569728841256 ], [ -78.024790931097783, 25.174571922287349 ], [ -78.024759900592969, 25.174575728704802 ], [ -78.024730505920189, 25.174582552126399 ], [ -78.024704602998995, 25.174593068959005 ], [ -78.024684179800985, 25.174608094629956 ], [ -78.024668586844285, 25.174633845253386 ], [ -78.024663534719139, 25.174664332345571 ], [ -78.024668361367134, 25.174696103952382 ], [ -78.024683330893026, 25.174725983726489 ], [ -78.024702636586838, 25.174746833630618 ], [ -78.024726523688528, 25.174765925037388 ], [ -78.024753493808305, 25.174784185567237 ], [ -78.024871454283229, 25.174845008452976 ], [ -78.02490680748123, 25.17486998994006 ], [ -78.024930408020367, 25.174894433224317 ], [ -78.024950545554134, 25.174921938213885 ], [ -78.02496790459864, 25.174951616311812 ], [ -78.024984352751503, 25.1749935396107 ], [ -78.024995817051177, 25.175039713188788 ], [ -78.025003887515666, 25.175088737078994 ], [ -78.025026410974789, 25.175292376942117 ], [ -78.025035036598169, 25.175340495065992 ], [ -78.025061632120469, 25.175450395075774 ], [ -78.025126653079056, 25.175669318403369 ], [ -78.025179084148931, 25.175854770911034 ], [ -78.025232226684494, 25.176022231078349 ], [ -78.02523604003386, 25.176038730510072 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 681, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 50 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.034224061717836, 25.176363841492904 ], [ -78.034222901119847, 25.176363086273 ], [ -78.034218094234745, 25.176357308440434 ], [ -78.034213951204663, 25.176349082731484 ], [ -78.034208064544615, 25.176327238016395 ], [ -78.034204896186594, 25.176289952403842 ], [ -78.034206669460985, 25.176193320153107 ], [ -78.034202297360466, 25.176165572369683 ], [ -78.034198970898998, 25.176157941748428 ], [ -78.034194128979593, 25.176151623275072 ], [ -78.034187140086686, 25.17614669906056 ], [ -78.034178624956098, 25.176143095936951 ], [ -78.034139117948229, 25.176133401973079 ], [ -78.034121852328497, 25.176126400595784 ], [ -78.034102294208097, 25.176108019946042 ], [ -78.034089094363324, 25.176099643819096 ], [ -78.034070240522141, 25.176094018814101 ], [ -78.034039338476376, 25.176087318237041 ], [ -78.034028636846344, 25.176083446015404 ], [ -78.034011337988943, 25.176072479733683 ], [ -78.033987158036439, 25.176050675618075 ], [ -78.033976524678422, 25.176045721319216 ], [ -78.033970671255545, 25.176045435967886 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 682, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 86 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.025418389053627, 25.176695727839139 ], [ -78.025420950149282, 25.176696635117253 ], [ -78.025426570009699, 25.176704675444341 ], [ -78.025443538287121, 25.17674214628838 ], [ -78.025454110559679, 25.176769857356685 ], [ -78.025470603628293, 25.176821940587541 ], [ -78.025497571053123, 25.176928845891812 ], [ -78.025510800542321, 25.177001849301892 ], [ -78.025520247225828, 25.177078324062681 ], [ -78.025526230903964, 25.177154352453663 ], [ -78.025529296854018, 25.177225817585818 ], [ -78.025530773684338, 25.177375384819268 ], [ -78.02553513769999, 25.177415662644894 ], [ -78.025544229550633, 25.177453690159094 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 1102, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 64 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.863910855444317, 24.810016907236381 ], [ -77.863911595656404, 24.810006262125668 ], [ -77.863909219612523, 24.809982557497282 ], [ -77.863905901235853, 24.809968631199304 ], [ -77.863900574226207, 24.809954894073648 ], [ -77.863892899918696, 24.809942167233281 ], [ -77.863860333294738, 24.809900925672896 ], [ -77.863830114866886, 24.809868560603142 ], [ -77.863820164228457, 24.809847784069998 ], [ -77.863808310958305, 24.809813955332903 ], [ -77.863802979457091, 24.80980387610099 ], [ -77.863782584106886, 24.809777695861086 ], [ -77.863777315487738, 24.809767561994075 ], [ -77.863761536579744, 24.809722435779438 ], [ -77.863756282333668, 24.80971228886137 ], [ -77.863735878000284, 24.809686116756204 ], [ -77.86373054110922, 24.809676042406355 ], [ -77.863714463960562, 24.809631173011621 ], [ -77.863708954592909, 24.809621248692228 ], [ -77.863685434902166, 24.80959671553644 ], [ -77.863658940889493, 24.809563115044888 ], [ -77.863640193049505, 24.809542508880718 ], [ -77.863629168924348, 24.809525305409586 ], [ -77.863626995899651, 24.809518708760919 ], [ -77.863627041711183, 24.809511295078543 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 1103, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 128 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.864729140717969, 24.810888240525244 ], [ -77.864730277985572, 24.810882412050365 ], [ -77.864728087892885, 24.810870706184609 ], [ -77.864722035044494, 24.810854973877639 ], [ -77.86470411724784, 24.810825891038771 ], [ -77.864679189897004, 24.810793129926395 ], [ -77.864648672330205, 24.810761487533664 ], [ -77.864616705780819, 24.810732194299693 ], [ -77.864555971582789, 24.810691099774242 ], [ -77.86451935535348, 24.810656808119933 ], [ -77.864508201870891, 24.810644546945255 ], [ -77.86449502538234, 24.810626566550432 ], [ -77.864470015386487, 24.810589442176212 ], [ -77.864427392122877, 24.810538428249931 ], [ -77.864405050123437, 24.810513935230301 ], [ -77.864363193122799, 24.810462256720655 ], [ -77.864327622532514, 24.81040488423778 ], [ -77.864268847560083, 24.810324010200464 ], [ -77.864236011441491, 24.810264268092915 ], [ -77.86419522882592, 24.810196955752421 ], [ -77.86418244759605, 24.810178632823259 ], [ -77.864171229434788, 24.810166427048685 ], [ -77.864144574623694, 24.810143716427959 ], [ -77.864126886795731, 24.810132778602778 ], [ -77.864098216165104, 24.810120260524062 ], [ -77.864065573184334, 24.810109758937827 ], [ -77.863969097716065, 24.810084449614045 ], [ -77.863945089341755, 24.810076765246045 ], [ -77.863914188190378, 24.810063821532246 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 1729, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 144 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.526531655872276, 24.008275759373575 ], [ -77.526551495165748, 24.00827540897334 ], [ -77.526598336019617, 24.008269487530338 ], [ -77.526677060777871, 24.00825405206027 ], [ -77.52678400700907, 24.00823569279299 ], [ -77.526815654656531, 24.008228637279846 ], [ -77.526842216941176, 24.008220400923747 ], [ -77.526895941585067, 24.008194982854313 ], [ -77.52691628842625, 24.008183842393937 ], [ -77.526934858399798, 24.008170993443954 ], [ -77.526951079278859, 24.008155715517244 ], [ -77.527035722138223, 24.008059893218881 ], [ -77.527046406700194, 24.00804711728993 ], [ -77.527085805011936, 24.007992245362484 ], [ -77.527162805903103, 24.007904276918907 ], [ -77.527193556133625, 24.00786444163673 ], [ -77.527206571823768, 24.007842170504983 ], [ -77.527241332133684, 24.007771826855727 ], [ -77.527267738111462, 24.007729537930988 ], [ -77.527291320684284, 24.007687015941123 ], [ -77.527299354317904, 24.00766372969272 ], [ -77.527304059693336, 24.007639045953123 ], [ -77.527305770085604, 24.007614006066895 ], [ -77.527303442550746, 24.007551607377991 ], [ -77.527305285893704, 24.007524977965076 ], [ -77.527310348798665, 24.007498030972911 ], [ -77.527318502806509, 24.00747239448004 ], [ -77.527326257064004, 24.007454847499435 ], [ -77.527345206126625, 24.00741881968322 ], [ -77.527355184612787, 24.007402762092742 ], [ -77.527364227952759, 24.00739183245916 ], [ -77.527369908000338, 24.007387550543783 ], [ -77.527374581934012, 24.007386793127544 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 1731, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 170 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.522696132307161, 24.009451520471227 ], [ -77.522687876163033, 24.00945290416087 ], [ -77.522606934362685, 24.009477110788826 ], [ -77.522441436839557, 24.009520200036011 ], [ -77.522395287688454, 24.00952894425474 ], [ -77.522351385223899, 24.009533902265886 ], [ -77.522310696931399, 24.009535703463207 ], [ -77.522269835264112, 24.009535678024918 ], [ -77.522229261955957, 24.009533946577822 ], [ -77.522189691167696, 24.009530363877317 ], [ -77.522151923298196, 24.009524577889586 ], [ -77.522116915951557, 24.009516009277053 ], [ -77.522085857598967, 24.009503825139088 ], [ -77.522056220381074, 24.009485263364116 ], [ -77.522030648938212, 24.009463666218618 ], [ -77.522019706559746, 24.00945132862503 ], [ -77.522001046754667, 24.009424576516654 ], [ -77.521993510787752, 24.009410115227684 ], [ -77.521985024403236, 24.009384491424743 ], [ -77.521980553488106, 24.009356709459293 ], [ -77.521979500662539, 24.009327773735023 ], [ -77.521981538939954, 24.009298599211792 ], [ -77.521986584776911, 24.00927006310306 ], [ -77.522019609541672, 24.009150554385414 ], [ -77.522028343861237, 24.009123959768498 ], [ -77.522038541536276, 24.009100160088586 ], [ -77.522053319721081, 24.00907561694612 ], [ -77.522072554447917, 24.009050454250421 ], [ -77.52208243861098, 24.009043386473049 ], [ -77.522090235089323, 24.009041609066092 ], [ -77.522097952515935, 24.0090429704318 ], [ -77.522109309916075, 24.009051349518604 ], [ -77.522144891286175, 24.009100577770823 ], [ -77.522161951191748, 24.009117308856748 ], [ -77.522187846028089, 24.009131173607056 ], [ -77.522222893798883, 24.009141173360373 ], [ -77.522264118385607, 24.009147416435923 ], [ -77.522308528398312, 24.009150098135478 ], [ -77.522353233058425, 24.009149494999292 ], [ -77.522395567962818, 24.009146034556448 ], [ -77.522470258387145, 24.009135923202759 ], [ -77.522515410408076, 24.009131804643566 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 1805, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 79 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.546951345933692, 24.100979451667019 ], [ -77.54696775725813, 24.100935473062155 ], [ -77.546975447735264, 24.100919604287522 ], [ -77.547000346340013, 24.100881630577472 ], [ -77.547029655672802, 24.100826148875036 ], [ -77.547037396455622, 24.100814987751004 ], [ -77.547067223217965, 24.100783948816687 ], [ -77.547090809384073, 24.100755100116473 ], [ -77.547094490680109, 24.10074851955159 ], [ -77.547095882170495, 24.100741439601443 ], [ -77.547094842819703, 24.100734255509874 ], [ -77.547091321423764, 24.1007274970022 ], [ -77.547083949848556, 24.100720453951233 ], [ -77.547052853766701, 24.100700184164946 ], [ -77.547043537338865, 24.100691204252541 ], [ -77.547036180136672, 24.100679364969722 ], [ -77.547030981586161, 24.10066544614395 ], [ -77.547025159604786, 24.10063353632404 ], [ -77.547023443822582, 24.100598791724835 ], [ -77.547024819143303, 24.10056355593073 ], [ -77.547029730232936, 24.100530061007053 ], [ -77.54703410951997, 24.100514854750013 ], [ -77.547040363590995, 24.100501340991165 ], [ -77.547070470627716, 24.100464711973299 ], [ -77.547106543376273, 24.100417914818749 ], [ -77.547114342549563, 24.100405758986739 ], [ -77.547121428460542, 24.100390548614818 ], [ -77.547126053885918, 24.100376091830807 ], [ -77.547128606897971, 24.100363799053031 ], [ -77.547128614084727, 24.100350983929541 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 1823, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 45 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.555566123933602, 24.117051403463357 ], [ -77.555530224560258, 24.117050867243321 ], [ -77.555507794525937, 24.117047523676014 ], [ -77.555497950787085, 24.117044355567998 ], [ -77.555490095918245, 24.117039878073598 ], [ -77.555484874909823, 24.117034028879978 ], [ -77.555482093725686, 24.117027304028849 ], [ -77.555475574651666, 24.116988939902129 ], [ -77.555471155838802, 24.116975167152432 ], [ -77.555462876066827, 24.116964799463634 ], [ -77.555446323709376, 24.116952911671412 ], [ -77.555441689300849, 24.11694818164327 ], [ -77.555435694842927, 24.116935778129552 ], [ -77.555428734696122, 24.11689779687093 ], [ -77.555424437155793, 24.116883919163595 ], [ -77.555416301114263, 24.116873426021964 ], [ -77.555394647224333, 24.116857214042668 ], [ -77.555388208100382, 24.116844615382792 ], [ -77.55538523467682, 24.116828904361849 ], [ -77.555384376785682, 24.116807817220419 ], [ -77.555387042984677, 24.116736466589611 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 1825, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 132 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.556164171944104, 24.118237659227503 ], [ -77.556160258883097, 24.118236566301736 ], [ -77.556154890550985, 24.11823164692504 ], [ -77.556128863662266, 24.11820036870369 ], [ -77.556060562056274, 24.118093085223627 ], [ -77.556032147445507, 24.118046022306164 ], [ -77.556019162298099, 24.118026946573625 ], [ -77.556008434616999, 24.118014221764657 ], [ -77.555973779409896, 24.11797789865938 ], [ -77.555934964104836, 24.117945278202999 ], [ -77.55592149656205, 24.117934792527464 ], [ -77.555864536186562, 24.11789635816157 ], [ -77.555852038824284, 24.117885286254715 ], [ -77.555829183886843, 24.117861831420427 ], [ -77.555818972737001, 24.117849417336625 ], [ -77.555807638693068, 24.117831195909279 ], [ -77.555790241020944, 24.117792681162157 ], [ -77.555780339789919, 24.117764797215887 ], [ -77.555777768811552, 24.117745180307953 ], [ -77.555778971655741, 24.117725196902047 ], [ -77.555783879152116, 24.117705830057389 ], [ -77.555789842168991, 24.117692194308038 ], [ -77.555826653332701, 24.117622421653998 ], [ -77.555833971008994, 24.117601432211366 ], [ -77.555838583858019, 24.117578987442236 ], [ -77.555840576321259, 24.117555882649327 ], [ -77.555839834312863, 24.117532905756747 ], [ -77.555836030845938, 24.117510885684208 ], [ -77.555828588303811, 24.117490746460501 ], [ -77.555817256954811, 24.117473189921817 ], [ -77.555789348095573, 24.117440357802302 ], [ -77.555774804371111, 24.117419728266498 ], [ -77.555743259131603, 24.117371137624612 ], [ -77.55571746490655, 24.117334675773371 ], [ -77.555684976435955, 24.117283014565487 ], [ -77.555677109889004, 24.117268185813209 ], [ -77.555670089555093, 24.117249957743962 ], [ -77.555667379337876, 24.117236584314817 ], [ -77.555668676504297, 24.11723015956294 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 1833, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 113 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.557518720899765, 24.12155067625422 ], [ -77.557505762702206, 24.121558843842951 ], [ -77.557476670761744, 24.121573086707436 ], [ -77.557452832169062, 24.121580982920708 ], [ -77.557424331320021, 24.121587527980022 ], [ -77.557359099257354, 24.121596328513981 ], [ -77.557293844736805, 24.1216002926075 ], [ -77.557210417298052, 24.121602881771302 ], [ -77.557158621337081, 24.12160746404999 ], [ -77.557134758489894, 24.121611449459841 ], [ -77.55711295547961, 24.121617059040904 ], [ -77.557093933653448, 24.121624773239329 ], [ -77.557079909155235, 24.121633465547333 ], [ -77.557056234055935, 24.121651876644087 ], [ -77.557044788620914, 24.121659041524715 ], [ -77.557032917384419, 24.121663335205653 ], [ -77.557021345286941, 24.121664784743182 ], [ -77.557011225765265, 24.121663508199131 ], [ -77.557003818257428, 24.121659462940052 ], [ -77.557000218708055, 24.121652687499736 ], [ -77.557000518745383, 24.121644249354016 ], [ -77.557004325805579, 24.121635133991582 ], [ -77.557025095753247, 24.121600924730757 ], [ -77.557034599030644, 24.121588776649034 ], [ -77.557046336418139, 24.121577866576988 ], [ -77.55706389578701, 24.121567441049965 ], [ -77.55708434234117, 24.121559207047468 ], [ -77.557151298270853, 24.121538405182033 ], [ -77.557187284781179, 24.121525219952492 ], [ -77.557208933281188, 24.121519675957416 ], [ -77.557232106222258, 24.121515642172032 ], [ -77.557310254262106, 24.121506558775575 ], [ -77.55733983758104, 24.12150171659286 ], [ -77.557369010369897, 24.121495277292958 ], [ -77.557396166440924, 24.121487012950503 ], [ -77.557419847828442, 24.12147683337869 ], [ -77.557437524876605, 24.121466334054631 ], [ -77.557451954515017, 24.121455929015386 ], [ -77.557470537064972, 24.121438929716223 ], [ -77.557473338910341, 24.121433547232915 ], [ -77.557472798125261, 24.121430327585621 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 1846, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 125 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.564933826683344, 24.132012341274589 ], [ -77.564886811556761, 24.132011353401477 ], [ -77.564823121003101, 24.132005563918469 ], [ -77.564788603238341, 24.132000012179464 ], [ -77.564755508404943, 24.13199213628473 ], [ -77.564732304022826, 24.131984411234189 ], [ -77.564691858275481, 24.131968110990719 ], [ -77.564650078529937, 24.131947255890626 ], [ -77.564638260294075, 24.131942578064717 ], [ -77.56460645274646, 24.131933190439874 ], [ -77.564596817416714, 24.131927864145066 ], [ -77.564588023808412, 24.131920000543019 ], [ -77.564578470225371, 24.131905295638624 ], [ -77.564555918918501, 24.131846312862386 ], [ -77.564546815391409, 24.131826181633816 ], [ -77.564535064529196, 24.131807850702884 ], [ -77.564520034816169, 24.131792184969285 ], [ -77.564485706595889, 24.13176394663714 ], [ -77.564423951013367, 24.131707478152265 ], [ -77.564388451389945, 24.131672239444036 ], [ -77.564345765244312, 24.131621195603703 ], [ -77.564294637629885, 24.131533472589258 ], [ -77.564264239539, 24.131471709661497 ], [ -77.564246489727282, 24.131441493053511 ], [ -77.564205120511829, 24.131364961989242 ], [ -77.5641448633192, 24.131271943629841 ], [ -77.564140854138088, 24.131262878142149 ], [ -77.564139158118849, 24.131256390964666 ], [ -77.564139692615726, 24.131253144510836 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 1904, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 34 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.57263310911749, 24.144500888700186 ], [ -77.572627695869741, 24.144678090760067 ], [ -77.572628236655547, 24.144697524017381 ], [ -77.572630164440142, 24.144709117408603 ], [ -77.572634854544233, 24.144718311459759 ], [ -77.572638553806541, 24.144721353464181 ], [ -77.572667222640561, 24.144733976429404 ], [ -77.572673319506364, 24.144742122868674 ], [ -77.572682433813242, 24.144758705928663 ], [ -77.572690388395117, 24.144767435191572 ], [ -77.572698275603287, 24.144771254295151 ], [ -77.5727056175337, 24.144771897784555 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 1908, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 147 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.572710842135379, 24.145223080742774 ], [ -77.572707589336162, 24.145223267635341 ], [ -77.5727029603175, 24.145219720693355 ], [ -77.572694418237475, 24.145206901862238 ], [ -77.572660823042455, 24.145131356147747 ], [ -77.572628450454573, 24.145063073144819 ], [ -77.572592135160917, 24.144975843809679 ], [ -77.57257913743706, 24.14492842518592 ], [ -77.572563526514045, 24.144853921177933 ], [ -77.572538599163209, 24.144773081464432 ], [ -77.572521676699893, 24.14469971678572 ], [ -77.572515006708926, 24.144676156205236 ], [ -77.572506735920101, 24.144653986696692 ], [ -77.57246102604519, 24.144562092833816 ], [ -77.572452757951297, 24.144537823983395 ], [ -77.572446510168533, 24.144511800091419 ], [ -77.572426986184084, 24.144402952505054 ], [ -77.572419895781579, 24.144377660603165 ], [ -77.572388816767699, 24.144294825367908 ], [ -77.572378459192464, 24.144270799926282 ], [ -77.572365474045014, 24.144249057426524 ], [ -77.572350941100368, 24.144232492334371 ], [ -77.572317338718875, 24.144201081116908 ], [ -77.572304081381887, 24.14418631942414 ], [ -77.572264355185055, 24.144135101878312 ], [ -77.572249099096609, 24.144109586137102 ], [ -77.572216348318008, 24.144043939661863 ], [ -77.572205166987629, 24.144013621099333 ], [ -77.572203276033974, 24.14400219896882 ], [ -77.572204173450217, 24.143996789568504 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 1929, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 36 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.575518624472153, 24.149571298547308 ], [ -77.575513849926978, 24.149571501012009 ], [ -77.575506580759679, 24.14957712903934 ], [ -77.57550058809845, 24.149588847401244 ], [ -77.575496652579176, 24.14960406094167 ], [ -77.575494745455856, 24.149619501535874 ], [ -77.575492286766902, 24.149689379689011 ], [ -77.575493724969647, 24.149728836496024 ], [ -77.575497094550315, 24.149739467109868 ], [ -77.575500049109252, 24.149743677878675 ], [ -77.575508214795207, 24.149749098515763 ], [ -77.575527630981725, 24.149757256930801 ], [ -77.575534630654431, 24.149764207116334 ], [ -77.575538314645428, 24.149774555752529 ], [ -77.57554150096972, 24.149808285333432 ], [ -77.57554656028141, 24.149830492473473 ], [ -77.575552625706223, 24.149840080428771 ], [ -77.575556192017899, 24.149842435408196 ], [ -77.575561227972969, 24.149842895260232 ] ], [ [ -77.575512302394998, 24.14953053763427 ], [ -77.575512919272356, 24.149531680211627 ], [ -77.575517197894968, 24.14954328776324 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 1931, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 259 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.575683400648217, 24.150386918112606 ], [ -77.575675713764781, 24.150386074647088 ], [ -77.575662285747882, 24.150379082691209 ], [ -77.575619159427731, 24.15035216734594 ], [ -77.575561015072651, 24.150310556584774 ], [ -77.575458043886599, 24.150232681046607 ], [ -77.575385667522468, 24.150179980643156 ], [ -77.57531596634125, 24.150134336943271 ], [ -77.575284740901949, 24.150114884840004 ], [ -77.575256280477134, 24.150099422993723 ], [ -77.575229417256892, 24.150088853886732 ], [ -77.575201883893413, 24.150081720927506 ], [ -77.575173384841023, 24.150079050371083 ], [ -77.575144449207428, 24.15008088975982 ], [ -77.575115579150804, 24.150086831706723 ], [ -77.575072248014777, 24.150100677941893 ], [ -77.575031048580897, 24.150120583336861 ], [ -77.575006007143998, 24.15013756570853 ], [ -77.574959582210127, 24.150174998559219 ], [ -77.574927245554861, 24.150203540209045 ], [ -77.57489511102051, 24.150228164549233 ], [ -77.574872733088498, 24.150240011542927 ], [ -77.574849840421763, 24.150247794508136 ], [ -77.574826498597417, 24.150250260958003 ], [ -77.574803499031205, 24.150247199412554 ], [ -77.574781639427101, 24.150238789383714 ], [ -77.574760962005882, 24.15022619401201 ], [ -77.574741859331368, 24.150209507560678 ], [ -77.574723968484179, 24.150189893169948 ], [ -77.574706956189317, 24.150168454962877 ], [ -77.574691426114697, 24.150144819978934 ], [ -77.574664023006974, 24.150094543368091 ], [ -77.574653270173002, 24.150067955020059 ], [ -77.574645265285497, 24.150031782824751 ], [ -77.574643401281278, 24.149993657291947 ], [ -77.574647417648904, 24.149955171902615 ], [ -77.574657379067091, 24.14991787997474 ], [ -77.574669425475051, 24.14988975958337 ], [ -77.574713530060549, 24.149805060658345 ], [ -77.574734819234422, 24.149759788965632 ], [ -77.574767796388542, 24.149683240177247 ], [ -77.5747892445643, 24.149621176172523 ], [ -77.574797441691274, 24.149590424494665 ], [ -77.574802614190659, 24.149558885082151 ], [ -77.574804353329043, 24.14952699729124 ], [ -77.574800000991502, 24.149462211820218 ], [ -77.574790912735764, 24.149385749741366 ], [ -77.574784993736372, 24.149319229720263 ], [ -77.574781356457791, 24.149248719378086 ], [ -77.57477974038855, 24.149178958200778 ], [ -77.574780047612407, 24.149114453709764 ], [ -77.574781696020935, 24.149076345936617 ], [ -77.574787573697847, 24.149031818272174 ], [ -77.574797493793511, 24.148997222064615 ], [ -77.574810478042664, 24.14897523609848 ], [ -77.574821839036076, 24.14896779241116 ], [ -77.574832126542162, 24.148969490012796 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 1934, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 37 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.577974380405564, 24.153144764036821 ], [ -77.577979414564837, 24.153144853376723 ], [ -77.577988453413226, 24.153150055836747 ], [ -77.577997748281476, 24.153160714034822 ], [ -77.578010843023364, 24.153179638625286 ], [ -77.578020849357316, 24.153187156657392 ], [ -77.578026222181037, 24.153188441083465 ], [ -77.578037345120876, 24.153187955837666 ], [ -77.578046715447599, 24.153183229608626 ], [ -77.578050218877237, 24.153178534527008 ], [ -77.578054334957855, 24.153166000920457 ], [ -77.578055950128714, 24.153151391082883 ], [ -77.578055711176859, 24.153136407472989 ], [ -77.578053344116071, 24.153122427140502 ], [ -77.57804762993257, 24.15311105500442 ], [ -77.578038497659378, 24.153104045984499 ], [ -77.57802290739761, 24.153095239422104 ], [ -77.578015217818788, 24.153086372203386 ], [ -77.578011155637085, 24.153073696784421 ], [ -77.578007030573303, 24.153036970521342 ], [ -77.578003441803745, 24.153023852474053 ], [ -77.577998920582914, 24.153018461484063 ], [ -77.577992140997452, 24.153014527872706 ], [ -77.57798354771343, 24.153011760656163 ], [ -77.577963813523297, 24.153008883603349 ], [ -77.577932084128719, 24.153008494262998 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 1937, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 175 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.57810511851703, 24.154320471173332 ], [ -77.578224113851576, 24.154325669482702 ], [ -77.578278319992478, 24.154326499803087 ], [ -77.578335551659222, 24.154325720301948 ], [ -77.578392402440286, 24.154322575248358 ], [ -77.578445408431946, 24.154316253993589 ], [ -77.578491069797835, 24.154305915561167 ], [ -77.578511635827951, 24.154298471364744 ], [ -77.578550061264224, 24.154278708422705 ], [ -77.578569621181202, 24.154265955253837 ], [ -77.578587221872581, 24.154251275870532 ], [ -77.578604203624707, 24.154231811279324 ], [ -77.578618980911173, 24.15421019424371 ], [ -77.578665068078479, 24.154135514500851 ], [ -77.578725114167028, 24.15403211933705 ], [ -77.578745798774733, 24.153989955679538 ], [ -77.578752563088841, 24.153966849267999 ], [ -77.578755622750705, 24.153943913343017 ], [ -77.578755087354793, 24.153922544617885 ], [ -77.578750821255511, 24.153904277510748 ], [ -77.578742431889083, 24.153890863652506 ], [ -77.578734992940213, 24.153885749746767 ], [ -77.578726287366806, 24.153883181728318 ], [ -77.578716677189846, 24.153882988286732 ], [ -77.578690424824018, 24.153888548091746 ], [ -77.578673677532151, 24.153894642319777 ], [ -77.578656902392567, 24.153903172599104 ], [ -77.578640747988786, 24.153914357780497 ], [ -77.578573303375563, 24.153967591066639 ], [ -77.57854406680633, 24.153994109751252 ], [ -77.578511113008446, 24.154033599654984 ], [ -77.578496002447054, 24.154058951940499 ], [ -77.578457684808612, 24.154141852157792 ], [ -77.57843919298854, 24.154168005235306 ], [ -77.578412113274268, 24.154190680466332 ], [ -77.578375907575051, 24.154207924590029 ], [ -77.57833312441133, 24.15421987449254 ], [ -77.578286755172996, 24.154227486724981 ], [ -77.57823975082573, 24.154231686690224 ], [ -77.578195002148149, 24.154233336676512 ], [ -77.578155345121658, 24.154233239136335 ], [ -77.578140456390514, 24.154232446424711 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 1942, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 260 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.577817317138241, 24.156794844624351 ], [ -77.577810533088055, 24.156792987312819 ], [ -77.577780079301561, 24.156774446853362 ], [ -77.577702461267748, 24.156724400713756 ], [ -77.577611992833809, 24.156663013061713 ], [ -77.577583508154476, 24.156640011229154 ], [ -77.577551181380699, 24.156607516205458 ], [ -77.577495716700085, 24.156543716265826 ], [ -77.5774694571477, 24.156520325897375 ], [ -77.577445553876302, 24.156506667238261 ], [ -77.577419524292623, 24.156496842084515 ], [ -77.577392734734232, 24.156490338155194 ], [ -77.577365867920719, 24.156487184958376 ], [ -77.577338683103576, 24.156488757868356 ], [ -77.577311813595131, 24.156495347041403 ], [ -77.577285892707607, 24.156506731990657 ], [ -77.577204459528787, 24.156551526715194 ], [ -77.577053880327597, 24.156627000925948 ], [ -77.577022760889506, 24.15663958992911 ], [ -77.576982999658412, 24.156649832273647 ], [ -77.57694147054282, 24.156654896889791 ], [ -77.576899859680566, 24.156655082950302 ], [ -77.576859881057146, 24.156650397012385 ], [ -77.576823363642546, 24.156640547280247 ], [ -77.576796455506496, 24.156628273022655 ], [ -77.576772074331387, 24.15661375702112 ], [ -77.576749576025108, 24.156598391040728 ], [ -77.576729923581567, 24.156581789845525 ], [ -77.57671480763031, 24.156563175586822 ], [ -77.576705643017817, 24.156541926149153 ], [ -77.57670245040525, 24.156519075110495 ], [ -77.576704477902879, 24.156495598674244 ], [ -77.576735771614125, 24.156351161366484 ], [ -77.576741673545541, 24.156318462175985 ], [ -77.576745979170667, 24.156284747428092 ], [ -77.576754313739897, 24.156175404143777 ], [ -77.576760554336218, 24.156133314962329 ], [ -77.576770062105126, 24.156092077386933 ], [ -77.576784750458359, 24.156052115179321 ], [ -77.57680872290004, 24.156012405412572 ], [ -77.576835825970491, 24.155981295444725 ], [ -77.576867629924777, 24.155951586258468 ], [ -77.576902485456131, 24.155922793439039 ], [ -77.576994283396701, 24.155858297270452 ], [ -77.577035297777627, 24.155827792990188 ], [ -77.577068086285522, 24.155797372307433 ], [ -77.57708893528492, 24.155770162207947 ], [ -77.577101332035838, 24.155745972533651 ], [ -77.57710578498471, 24.155727486839144 ], [ -77.577102050688239, 24.155716821478865 ] ], [ [ -77.577096326622978, 24.155696123528227 ], [ -77.577076126207302, 24.155696272705583 ], [ -77.577062380186803, 24.155694735031073 ], [ -77.577057181636263, 24.15569193590596 ], [ -77.577054808287272, 24.155687138459523 ], [ -77.577053727614, 24.155670929761186 ], [ -77.577057215771077, 24.155554724608521 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 1946, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 116 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.581799151765992, 24.164913227723567 ], [ -77.581778860618641, 24.164882782156131 ], [ -77.581767935308136, 24.164869171927869 ], [ -77.581754117422406, 24.164855436299771 ], [ -77.581703749782761, 24.164813508980483 ], [ -77.581660063812208, 24.16476979492445 ], [ -77.581648849244161, 24.164756948549311 ], [ -77.581621553934283, 24.164714564681574 ], [ -77.581601372383091, 24.164688141656779 ], [ -77.581568374567766, 24.164650782724589 ], [ -77.581498420959974, 24.164579557958053 ], [ -77.581466122932184, 24.16454133431694 ], [ -77.581447070563385, 24.164513653171337 ], [ -77.581407365027829, 24.164437181250218 ], [ -77.58139937810661, 24.16441738791244 ], [ -77.581380907846068, 24.16435352056855 ], [ -77.581362160006094, 24.164300624368526 ], [ -77.581357397138433, 24.164280939196818 ], [ -77.581354795617372, 24.164260317218222 ], [ -77.581354221593926, 24.164239310843367 ], [ -77.58135571279729, 24.164218498710493 ], [ -77.581359500992846, 24.164198527485336 ], [ -77.581367177096936, 24.164179152107316 ], [ -77.581380380534981, 24.164160708613323 ], [ -77.581399829060913, 24.164143810885633 ], [ -77.581469007422598, 24.164101083401153 ], [ -77.5814874552253, 24.164087041159277 ], [ -77.5814989276098, 24.164075238068964 ], [ -77.581506847157343, 24.164064503738938 ], [ -77.581508317015874, 24.164061798301692 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 1947, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 2183 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.58104581468541, 24.162682949327369 ], [ -77.581039966653009, 24.162682637874262 ], [ -77.581026844063373, 24.162684967209024 ], [ -77.581007365893058, 24.162689938150177 ], [ -77.580968090650515, 24.162701542203038 ], [ -77.580919866391099, 24.162718434384288 ], [ -77.580884535650966, 24.162733043127744 ], [ -77.580829103309739, 24.162759024786912 ], [ -77.580773988073801, 24.162790605199636 ], [ -77.580739352629692, 24.162815352514095 ], [ -77.580707037533998, 24.162842279166924 ], [ -77.580677362586883, 24.162870400805364 ], [ -77.580650857794438, 24.162899885448532 ], [ -77.580627779176496, 24.162929683995362 ], [ -77.580553491197449, 24.16303807239083 ], [ -77.580533499190778, 24.163060907510307 ], [ -77.580511765350778, 24.163082781224798 ], [ -77.580418415121414, 24.163163242989274 ], [ -77.580397978448687, 24.1631851912706 ], [ -77.580379764208018, 24.163208039477443 ], [ -77.580364530577427, 24.163232438377769 ], [ -77.580350243771122, 24.163268379804229 ], [ -77.580342742838525, 24.163306893967267 ], [ -77.580341610961227, 24.163346435905641 ], [ -77.580344558333707, 24.163375961419302 ], [ -77.580351844568952, 24.163416058209879 ], [ -77.580362887558749, 24.163455773870982 ], [ -77.580378286479359, 24.16349364048887 ], [ -77.580392805949288, 24.163520009666772 ], [ -77.58040933225557, 24.163545162544615 ], [ -77.580427615666565, 24.163568581132427 ], [ -77.58045770204204, 24.163601123561541 ], [ -77.580492146145005, 24.163628280357727 ], [ -77.5805274104098, 24.163645943664658 ], [ -77.58056574781115, 24.163658099224669 ], [ -77.580605177563925, 24.163665592871595 ], [ -77.580710653252979, 24.163677464026957 ], [ -77.580756528417965, 24.163686745230446 ], [ -77.580814982691791, 24.163704047903323 ], [ -77.580966402716101, 24.163757493485299 ], [ -77.580993351276319, 24.163770804676595 ], [ -77.581011334649943, 24.163787722124123 ], [ -77.581016670642754, 24.163808626122783 ], [ -77.581008540889428, 24.163830581669583 ], [ -77.580995778524198, 24.16384419446743 ], [ -77.580977754726348, 24.163856917174265 ], [ -77.580938768741305, 24.16387396000977 ], [ -77.580889915661217, 24.163887880154135 ], [ -77.580594964617461, 24.163948182457997 ], [ -77.580554192781648, 24.163955930984351 ], [ -77.580486908068565, 24.163966403870209 ], [ -77.580275421294459, 24.163990201037262 ], [ -77.580091450815885, 24.164012603236277 ], [ -77.57988019490881, 24.164035834869029 ], [ -77.579812567937608, 24.164045670917332 ], [ -77.579609828059432, 24.164080808904828 ], [ -77.579490506636859, 24.164097509116797 ], [ -77.579450910695783, 24.16410163171491 ], [ -77.579381069377348, 24.164104720794814 ], [ -77.579311059175737, 24.164102293953341 ], [ -77.57924282045181, 24.164094267590748 ], [ -77.579178474127986, 24.164080148305459 ], [ -77.579143906955878, 24.164069181208788 ], [ -77.57911073217241, 24.164056942908072 ], [ -77.579079019846233, 24.164043350623043 ], [ -77.579020275416568, 24.164012458986221 ], [ -77.578993318771523, 24.163995768598333 ], [ -77.578968333928529, 24.163977966007348 ], [ -77.578890607198559, 24.163918307925741 ], [ -77.578859368284569, 24.163898875952551 ], [ -77.578837944363329, 24.163890451249941 ], [ -77.578816079369346, 24.163885558217814 ], [ -77.57879383887952, 24.163883183826762 ], [ -77.578771299250718, 24.163883282998793 ], [ -77.578748480245935, 24.163886863026363 ], [ -77.578725452831875, 24.163894088649592 ], [ -77.578677515135055, 24.163915280311553 ], [ -77.57860036781841, 24.163956310460531 ], [ -77.578508553708247, 24.164011599223173 ], [ -77.578469862370596, 24.16403517099107 ], [ -77.578412986436703, 24.164076698600081 ], [ -77.578386519373495, 24.164103352059488 ], [ -77.578373976197199, 24.164122868420527 ], [ -77.578365483524479, 24.164143245360442 ], [ -77.578359657051564, 24.164164808260569 ], [ -77.5783564383879, 24.164186970285776 ], [ -77.578356803103915, 24.164210162545952 ], [ -77.578361104237487, 24.164233709689206 ], [ -77.578369175600315, 24.164256922430916 ], [ -77.578380271590703, 24.164280216308885 ], [ -77.578394428141252, 24.164302897121296 ], [ -77.578411698252623, 24.164324270666764 ], [ -77.578452588665982, 24.164364985957761 ], [ -77.578475821794214, 24.164384019534388 ], [ -77.578501287235923, 24.164401164749545 ], [ -77.578528943668545, 24.164416629782437 ], [ -77.578569143277505, 24.164433638120041 ], [ -77.578612177071221, 24.164447167254377 ], [ -77.578735023482935, 24.164475528682082 ], [ -77.578780008417453, 24.164487818577477 ], [ -77.578823440164783, 24.164502822984996 ], [ -77.578884561536697, 24.164530659037233 ], [ -77.578971366640914, 24.164577736809253 ], [ -77.579058037896175, 24.164622176275824 ], [ -77.579087959879971, 24.164634516972249 ], [ -77.57911903619889, 24.164645016849196 ], [ -77.579168078823542, 24.164655870791808 ], [ -77.579219152538997, 24.164661209655947 ], [ -77.57928931455595, 24.164662405450052 ], [ -77.579362038568092, 24.164661589949617 ], [ -77.579428044080217, 24.164663189805715 ], [ -77.579495279385966, 24.164669006495384 ], [ -77.579561261541926, 24.164679929282212 ], [ -77.579623373755595, 24.16469719985616 ], [ -77.579656482962037, 24.164710385550986 ], [ -77.579687968912751, 24.164725311250958 ], [ -77.579718093915787, 24.164742093338425 ], [ -77.579746939717879, 24.16476006629928 ], [ -77.579774238621056, 24.164779585018771 ], [ -77.579799646570549, 24.164801078145658 ], [ -77.57982357050318, 24.16482383017053 ], [ -77.579846408372674, 24.164847131321469 ], [ -77.579888503426872, 24.164896067002964 ], [ -77.579990834114156, 24.165041916646928 ], [ -77.580019553253791, 24.165080299139778 ], [ -77.580031961682792, 24.165098909698404 ], [ -77.580042299495105, 24.165118345586954 ], [ -77.580050165143746, 24.165137983092993 ], [ -77.580054731280327, 24.16515810251801 ], [ -77.580055765241198, 24.165177930983607 ], [ -77.580053015498123, 24.165196684957095 ], [ -77.580045248664206, 24.165214582451235 ], [ -77.580031967971024, 24.165230772726975 ], [ -77.580001980410174, 24.165250354483341 ], [ -77.579962443757907, 24.165265224387756 ], [ -77.579916371861955, 24.165276497090439 ], [ -77.579866372531541, 24.165285054475905 ], [ -77.579831553831141, 24.165289361444433 ], [ -77.579767827344853, 24.165291921037603 ], [ -77.579702173074025, 24.16528793616984 ], [ -77.579637471017321, 24.165277257674088 ], [ -77.579576555359623, 24.165259202007004 ], [ -77.579544126177865, 24.165245273816168 ], [ -77.579512857619491, 24.16522963512945 ], [ -77.579421427089855, 24.165178507158934 ], [ -77.579274204892855, 24.165086354312805 ], [ -77.579243594799564, 24.165069520636049 ], [ -77.579179739854212, 24.165038936595973 ], [ -77.579129409943775, 24.165019520365654 ], [ -77.579042693772791, 24.164992665476799 ], [ -77.578989203589188, 24.164980556760721 ], [ -77.578850099467459, 24.164959429204082 ], [ -77.57880121314966, 24.164950451343749 ], [ -77.578753210774195, 24.164939157302783 ], [ -77.578565673085578, 24.164884999985546 ], [ -77.578507410152852, 24.164866944263022 ], [ -77.578451990388018, 24.164845856847776 ], [ -77.578401621850048, 24.164819965768924 ], [ -77.578373373427652, 24.164800569995212 ], [ -77.578347538778388, 24.164779226854581 ], [ -77.578312989572538, 24.164743050628744 ], [ -77.578281685979817, 24.164703932035462 ], [ -77.578242311922622, 24.164649851660716 ], [ -77.578175669504944, 24.16455301360471 ], [ -77.578145587621023, 24.164512819638784 ], [ -77.5781237980855, 24.164487847263448 ], [ -77.578100617059604, 24.164463918233615 ], [ -77.578076019390508, 24.164441568568119 ], [ -77.578049965552296, 24.164420374534675 ], [ -77.578022402544448, 24.164400903297071 ], [ -77.577993196517923, 24.164382828655253 ], [ -77.577946201153836, 24.164359350385979 ], [ -77.577896535996729, 24.16433898249613 ], [ -77.57779745092256, 24.164301539042928 ], [ -77.577650331133512, 24.164241072166096 ], [ -77.577596062110601, 24.164215666168566 ], [ -77.577543597803029, 24.164186533438212 ], [ -77.577493068466623, 24.164155806575991 ], [ -77.577446963332989, 24.164123097909059 ], [ -77.577386111455667, 24.164076119960939 ], [ -77.577366480571769, 24.164064200486134 ], [ -77.577347156911671, 24.164054720966277 ], [ -77.577328282409241, 24.164048414945992 ], [ -77.577310155305113, 24.164044926718368 ], [ -77.577262790733428, 24.164040624625528 ], [ -77.577249623228013, 24.164037143774095 ], [ -77.577238301760445, 24.164030874635074 ], [ -77.577229197335086, 24.164020579608241 ], [ -77.577221081056493, 24.163996837360269 ], [ -77.577219620395837, 24.163965558859697 ], [ -77.577228800279727, 24.163896369605634 ], [ -77.577239311466855, 24.163846065622543 ], [ -77.577253958497565, 24.163793649500217 ], [ -77.577280392323104, 24.163719167967219 ], [ -77.577297567213037, 24.163675947758172 ], [ -77.577317066942882, 24.163633734829148 ], [ -77.577359789919527, 24.163558710624013 ], [ -77.577389223219797, 24.163516546832547 ], [ -77.577410982212598, 24.163490692366384 ], [ -77.577457121482226, 24.163441510264452 ], [ -77.577481098415461, 24.163417980186857 ], [ -77.577547511762745, 24.163360261852844 ], [ -77.577578359011255, 24.163330745351271 ], [ -77.577598892702056, 24.163306861182981 ], [ -77.57761723360521, 24.163281934469836 ], [ -77.577633473348939, 24.163256497136341 ], [ -77.577647134029434, 24.163229882841385 ], [ -77.577658177917527, 24.163202582529056 ], [ -77.577666559199159, 24.163175086324653 ], [ -77.57767151340795, 24.16314665658064 ], [ -77.57767283033813, 24.163117751457541 ], [ -77.577670826196737, 24.16308883895136 ], [ -77.577666522368204, 24.163059174857501 ], [ -77.577660080549322, 24.163029203403454 ], [ -77.577651651657021, 24.162999366358257 ], [ -77.577631207797765, 24.162938171051668 ], [ -77.577619278170758, 24.162907658626821 ], [ -77.577553544848215, 24.162750209874428 ], [ -77.577494106919104, 24.162580190542947 ], [ -77.577455332038184, 24.162481152717024 ], [ -77.577421642520093, 24.162400992140409 ], [ -77.57740072794364, 24.162354232395536 ], [ -77.577362813648747, 24.162281435968328 ], [ -77.577337781195041, 24.162241476516684 ], [ -77.577319357646871, 24.162217605258508 ], [ -77.577299753712438, 24.16219554452374 ], [ -77.577278654981328, 24.162175971314774 ], [ -77.577255745246646, 24.162159569191225 ], [ -77.57723109637358, 24.162146102105204 ], [ -77.577204726328418, 24.16213621099649 ], [ -77.577176603670139, 24.162129380328054 ], [ -77.577146757144803, 24.162124361007812 ], [ -77.577023513677716, 24.162110634919912 ], [ -77.576962374339516, 24.162100121720702 ], [ -77.576902962461546, 24.162084445766244 ], [ -77.576848748235875, 24.162061776034474 ], [ -77.576821130430758, 24.162044972284779 ], [ -77.576796027010104, 24.162025939179212 ], [ -77.576763030991415, 24.161992902120563 ], [ -77.57673420764722, 24.161956721007378 ], [ -77.576700440874006, 24.161906671160889 ], [ -77.576671978652527, 24.161856203290423 ], [ -77.576626873343812, 24.161755845319686 ], [ -77.576614327472541, 24.161735487669638 ], [ -77.576606006378071, 24.161728144719067 ], [ -77.576595025372043, 24.161725547352066 ], [ -77.576578092128926, 24.161731340406629 ], [ -77.57657134937439, 24.161728566002328 ], [ -77.576567609687871, 24.161721036998259 ], [ -77.576565143812431, 24.161694992836949 ], [ -77.576568740666815, 24.161657325672522 ], [ -77.576578763170417, 24.161613190072089 ], [ -77.576596160842556, 24.161567295555685 ], [ -77.576622533582679, 24.161524187725782 ], [ -77.576641510493033, 24.1615030071417 ], [ -77.576662864345678, 24.161483433006939 ], [ -77.576685987879415, 24.161464980927537 ], [ -77.576711115554531, 24.161448407412276 ], [ -77.576752890808493, 24.161428357890049 ], [ -77.576797776029963, 24.161412803156789 ], [ -77.576870532381477, 24.161391313557719 ], [ -77.576912636418839, 24.161376644828575 ], [ -77.576953093844295, 24.161358688603613 ], [ -77.576981673745081, 24.161342456855973 ], [ -77.5770086258985, 24.161324407189483 ], [ -77.577033926948502, 24.161304206837777 ], [ -77.57708061419045, 24.161260066197588 ], [ -77.577102074942587, 24.161236320977515 ], [ -77.577122021135139, 24.161211806948959 ], [ -77.577145793252541, 24.161177158305335 ], [ -77.577185848232716, 24.161106751222761 ], [ -77.57721046296983, 24.161057617380074 ], [ -77.577218931388003, 24.161033113152666 ], [ -77.577224024835672, 24.161008899066726 ], [ -77.577224807268252, 24.160984410402836 ], [ -77.577221236465036, 24.160960137294882 ], [ -77.577214216131082, 24.160935565839736 ], [ -77.577203784893982, 24.160911309114923 ], [ -77.577189967906619, 24.160887980198332 ], [ -77.577173284395158, 24.160865103709277 ], [ -77.577153963430021, 24.16084321158316 ], [ -77.577132306845115, 24.160821876797051 ], [ -77.577108458371001, 24.160801649318227 ], [ -77.577056253676545, 24.160762554925952 ], [ -77.576999290606082, 24.160725460403434 ], [ -77.576937181985684, 24.160691574697687 ], [ -77.576886777515057, 24.160669229289784 ], [ -77.576834122764708, 24.160648705902499 ], [ -77.576743126121329, 24.16061726839439 ], [ -77.576632006317325, 24.160582854821733 ], [ -77.57657965699417, 24.1605638755935 ], [ -77.576546797519413, 24.160549756737627 ], [ -77.576485904319526, 24.160519529791259 ], [ -77.576458352091436, 24.160502768459146 ], [ -77.576432787835088, 24.160485419453622 ], [ -77.57638752621952, 24.160448828920252 ], [ -77.576368319340403, 24.160429780003913 ], [ -77.576352138885497, 24.160409641802229 ], [ -77.576338734224848, 24.160389124110623 ], [ -77.576304376360184, 24.16032878898049 ], [ -77.576290215317997, 24.16030901631628 ], [ -77.576263997088162, 24.160280374470663 ], [ -77.57621369322888, 24.160230989504232 ], [ -77.57612497471311, 24.160148598948503 ], [ -77.576103753811154, 24.160126205907194 ], [ -77.576083748329779, 24.16010304732978 ], [ -77.576065216983764, 24.160078642094216 ], [ -77.576031823011405, 24.160028498074151 ], [ -77.576003929423507, 24.159977145902019 ], [ -77.57598189464791, 24.15992702561136 ], [ -77.575959823041373, 24.159857042407591 ], [ -77.575930175942034, 24.159780402952627 ], [ -77.575925510990785, 24.159760797407934 ], [ -77.575924812101476, 24.159728240886277 ], [ -77.575932273508272, 24.159693965591547 ], [ -77.575941661801252, 24.159671289698089 ], [ -77.575953842058183, 24.159648343322427 ], [ -77.575985036954776, 24.159602630877686 ], [ -77.576003648250804, 24.159579979556916 ], [ -77.576035416272532, 24.159547633634375 ], [ -77.576131168596973, 24.159454472676121 ], [ -77.57616492189544, 24.159425671630249 ], [ -77.576206922626582, 24.159396926312915 ], [ -77.576251664117606, 24.159370389898321 ], [ -77.576365804057616, 24.159309003517773 ], [ -77.576406353111196, 24.159285784139392 ], [ -77.576520870343643, 24.159208927958431 ], [ -77.57658098380584, 24.159173852561963 ], [ -77.576612449095279, 24.159157722990887 ], [ -77.576667219378152, 24.159133861811622 ], [ -77.576778232282663, 24.159089440106474 ], [ -77.576809757759236, 24.159074838323004 ], [ -77.576869537048154, 24.1590443175985 ], [ -77.576923520406808, 24.159010302764134 ], [ -77.576971573087974, 24.158973749511404 ], [ -77.576992938618744, 24.158954543824848 ], [ -77.577011882291444, 24.158934020162008 ], [ -77.577063371926869, 24.158867251024937 ], [ -77.577101281730194, 24.158821038322746 ], [ -77.57714171310451, 24.158774139568344 ], [ -77.577185168208061, 24.158727884211324 ], [ -77.577232768138344, 24.158683732845184 ], [ -77.577276762231065, 24.158650622793996 ], [ -77.577322440664915, 24.158618555312756 ], [ -77.577366098787749, 24.158584146939031 ], [ -77.577390126924954, 24.158561031522812 ], [ -77.577412726740903, 24.158536475179275 ], [ -77.577434183001429, 24.158511031982865 ], [ -77.577454323230128, 24.15848404540295 ], [ -77.577473003696468, 24.158455915421971 ], [ -77.577500354701911, 24.158405038827652 ], [ -77.577524276837934, 24.158351060699502 ], [ -77.577560540927621, 24.158263792896097 ], [ -77.577603288158727, 24.158154472616324 ], [ -77.577626053264666, 24.158102964778756 ], [ -77.577656263607665, 24.158046657103675 ], [ -77.577686739851998, 24.157994658257518 ], [ -77.577712008562614, 24.157942872497049 ], [ -77.577721444466377, 24.157916503806927 ], [ -77.577728502529553, 24.157890087572159 ], [ -77.577743377732332, 24.157812187146646 ], [ -77.577750027062081, 24.157785967604489 ], [ -77.577773677906876, 24.157719475726356 ], [ -77.577792007131919, 24.157679568943905 ], [ -77.577821779995404, 24.157629131369283 ], [ -77.577854997897958, 24.157580978122191 ], [ -77.577872403654922, 24.157557825640446 ], [ -77.577925073676653, 24.157494005684296 ], [ -77.577939498823483, 24.157472159700198 ], [ -77.577975424248351, 24.157403461174432 ], [ -77.577985306614806, 24.157376914509985 ], [ -77.577993176755001, 24.157333822478439 ], [ -77.577994495481818, 24.15728412244847 ], [ -77.57798938766112, 24.157230445476447 ], [ -77.577981795100314, 24.157189129569105 ], [ -77.577966610877098, 24.157125459424169 ], [ -77.577947701340349, 24.157062960523245 ], [ -77.577919300204329, 24.15698605464565 ], [ -77.577862918343826, 24.156852212669634 ], [ -77.577858702550202, 24.156839558115568 ], [ -77.577858795076679, 24.156834464821937 ] ], [ [ -77.581208502277917, 24.163366348257011 ], [ -77.581200361745317, 24.16336368207179 ], [ -77.58119371331388, 24.163358539859008 ], [ -77.58115731088364, 24.163322540265806 ], [ -77.581148135491304, 24.163311077241847 ], [ -77.58114041986137, 24.163296873450452 ], [ -77.581135309345697, 24.163281709077843 ], [ -77.58113256409419, 24.163266692232696 ], [ -77.581127945855329, 24.163206648603133 ], [ -77.58112398518324, 24.163178059862229 ], [ -77.581115899447354, 24.163153052802326 ], [ -77.581098535911252, 24.163124334551323 ], [ -77.581090680144058, 24.163099118480737 ], [ -77.581086809303542, 24.163070433821581 ], [ -77.58108155775237, 24.163010865472952 ], [ -77.581075994485815, 24.162983610192352 ], [ -77.581071320551374, 24.162971618489991 ], [ -77.581053709978562, 24.162943000190584 ], [ -77.581045582021886, 24.162918513536731 ], [ -77.581041767775147, 24.162890333716621 ], [ -77.581040585592277, 24.162844511784765 ], [ -77.58104423185398, 24.162809144785843 ], [ -77.581047962557363, 24.162790800266944 ], [ -77.581059151074214, 24.16275760604093 ], [ -77.581066486716836, 24.162744574231322 ], [ -77.581074697318527, 24.162734930691304 ], [ -77.581082475830584, 24.162729255706246 ], [ -77.581089073058024, 24.162726258389483 ], [ -77.581093836823527, 24.162725737941084 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 1948, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 94 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.582155286163271, 24.165733137429143 ], [ -77.581928290874558, 24.165732127687935 ], [ -77.581848507002618, 24.165729189452222 ], [ -77.581812349812409, 24.165724394841593 ], [ -77.581796245714301, 24.16572025426483 ], [ -77.581782143062668, 24.165714353205093 ], [ -77.581770760509698, 24.165706064674492 ], [ -77.581762619078262, 24.165694800205682 ], [ -77.581757179779231, 24.165681161378181 ], [ -77.581751566207046, 24.165649236632003 ], [ -77.581749933069858, 24.165613808940432 ], [ -77.581750798147468, 24.165558143858863 ], [ -77.58175400153975, 24.165502686929678 ], [ -77.581758259554221, 24.165467655060993 ], [ -77.581766320137248, 24.165436412163203 ], [ -77.58177286705903, 24.16542326998179 ], [ -77.581779784985059, 24.16541430116958 ], [ -77.581804318873765, 24.16539108535995 ], [ -77.581823380225785, 24.16537708751795 ], [ -77.581838467430998, 24.165370712717142 ], [ -77.581856254073585, 24.165365412403535 ], [ -77.581913771404643, 24.16535254805725 ], [ -77.581944006900457, 24.165343543997565 ], [ -77.581953620670589, 24.165338413338858 ], [ -77.581958088890829, 24.165334176037433 ], [ -77.581959757062322, 24.165330371481669 ], [ -77.581958592847243, 24.165327397179095 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 1979, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 82 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.586892894970575, 24.181130554325065 ], [ -77.586890050904827, 24.18112939473863 ], [ -77.586885407513094, 24.181131131243593 ], [ -77.58687958193849, 24.181135583547174 ], [ -77.586872650537728, 24.181143490831396 ], [ -77.586848992506447, 24.181178988786897 ], [ -77.586839369753093, 24.181191333619218 ], [ -77.586828280949248, 24.181202025534532 ], [ -77.586813949227221, 24.181210829339019 ], [ -77.586798588035862, 24.181216122438794 ], [ -77.586783541254832, 24.181218104790251 ], [ -77.586768664255445, 24.181218028577433 ], [ -77.586754099869694, 24.181216393690711 ], [ -77.58674044008751, 24.18121310916619 ], [ -77.586728315526116, 24.181207919322425 ], [ -77.58671844304115, 24.181200401300959 ], [ -77.586711503555591, 24.18119050920998 ], [ -77.586706710145194, 24.181178615917837 ], [ -77.586703429497803, 24.181165327848525 ], [ -77.586695107505008, 24.181091621037488 ], [ -77.586689692460482, 24.181064022971459 ], [ -77.586685261969507, 24.181051744505755 ], [ -77.586668888376806, 24.181021941174428 ], [ -77.586661195204712, 24.180996478693459 ], [ -77.586657243515774, 24.180967801333534 ], [ -77.586652015320823, 24.180908189707754 ], [ -77.586646734125253, 24.180880722721078 ], [ -77.586642282973031, 24.180868564703399 ], [ -77.58662519521971, 24.180839380047697 ], [ -77.586620069432698, 24.18082469470464 ], [ -77.586616440238956, 24.180806767438757 ], [ -77.586614081262994, 24.180786727512576 ], [ -77.586612190309324, 24.180744889833623 ], [ -77.586613651867879, 24.180682478711343 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 1999, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 234 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.590508547513863, 24.193796367326449 ], [ -77.590508757720087, 24.193794307322076 ], [ -77.590504799742916, 24.193788261705169 ], [ -77.590494339759744, 24.193783021569391 ], [ -77.590478136846983, 24.193778826183038 ], [ -77.59045681623202, 24.193776636715711 ], [ -77.590431016617089, 24.193776618688645 ], [ -77.590335382870236, 24.193781556461889 ], [ -77.59030089385152, 24.19378207105218 ], [ -77.590266413815996, 24.193780087257174 ], [ -77.590232746755746, 24.193773876937932 ], [ -77.590201116176289, 24.193762622321174 ], [ -77.590172820143181, 24.193746137399074 ], [ -77.590147971844104, 24.193725829099584 ], [ -77.590126564092586, 24.193703272330687 ], [ -77.590100159013119, 24.193665354858545 ], [ -77.59002092041851, 24.193543323845844 ], [ -77.589982475219287, 24.193491099371286 ], [ -77.589962321515898, 24.193466060557547 ], [ -77.589899323563316, 24.193397346167654 ], [ -77.589881202747392, 24.193373529081857 ], [ -77.589865369042229, 24.19334924164783 ], [ -77.589852427013923, 24.193323825875705 ], [ -77.589808616177507, 24.19321415623223 ], [ -77.58978237189649, 24.193159336534322 ], [ -77.589770822256867, 24.193130634867845 ], [ -77.58976123453786, 24.193101224400287 ], [ -77.589752978122092, 24.193057558545604 ], [ -77.589750981167228, 24.193012642246664 ], [ -77.589755126892257, 24.192968621554304 ], [ -77.589765770131734, 24.19292777526783 ], [ -77.589783768776741, 24.192892651777502 ], [ -77.589801406299046, 24.192872445769243 ], [ -77.589822441249723, 24.192856035299087 ], [ -77.589859839013329, 24.192840060756819 ], [ -77.589901397773332, 24.192833369393764 ], [ -77.58993003786118, 24.19283316781706 ], [ -77.590036940074967, 24.192839850166564 ], [ -77.59017442633089, 24.192839147925799 ], [ -77.590203175114922, 24.192842226477136 ], [ -77.590230796513268, 24.192848316387444 ], [ -77.590256655417065, 24.192857340630898 ], [ -77.590316595504405, 24.192881876441966 ], [ -77.590350892283624, 24.19288856206661 ], [ -77.590384111982814, 24.1928818387488 ], [ -77.590411728889606, 24.192860862486551 ], [ -77.590424909869782, 24.192839528135469 ], [ -77.590434271213326, 24.192814214688994 ], [ -77.590444869537052, 24.192771082996543 ], [ -77.590459610890875, 24.192692830202347 ], [ -77.590465846995585, 24.192671605625243 ], [ -77.590469464510804, 24.19266781991589 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 2004, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 227 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.59055739250914, 24.196007696725786 ], [ -77.590417374801163, 24.19600648483307 ], [ -77.589857042557867, 24.196008035132412 ], [ -77.58982158066371, 24.196006483194296 ], [ -77.589788439117953, 24.196000915390837 ], [ -77.58975823326648, 24.1959902771573 ], [ -77.589731831780298, 24.195974375114677 ], [ -77.589708733399405, 24.19595478414281 ], [ -77.58968957323269, 24.195931187952617 ], [ -77.589674370144834, 24.195904699284004 ], [ -77.589664472507039, 24.195874450392754 ], [ -77.589659780606297, 24.195841612196048 ], [ -77.589659797674315, 24.195807650595789 ], [ -77.589664406930012, 24.195773945458257 ], [ -77.589673862596712, 24.195741875831786 ], [ -77.589688793495029, 24.195712905983704 ], [ -77.589710231789297, 24.195688671436869 ], [ -77.589742013285715, 24.195669001758773 ], [ -77.589780695640187, 24.195655210448823 ], [ -77.58982417320162, 24.195645636586327 ], [ -77.589870742764234, 24.195638925704841 ], [ -77.590015381406459, 24.195625177819871 ], [ -77.590061033789198, 24.19561946496599 ], [ -77.590103079436091, 24.195611446321333 ], [ -77.590139745072676, 24.195599833789071 ], [ -77.590167361979482, 24.195585383674196 ], [ -77.590189872862211, 24.195568529438368 ], [ -77.590206551882048, 24.195548810577751 ], [ -77.590243592116153, 24.195478415900364 ], [ -77.590277585264872, 24.195427124696387 ], [ -77.590301546926739, 24.195398402235917 ], [ -77.590330946989354, 24.195370055054688 ], [ -77.590459096156238, 24.195259293269423 ], [ -77.59050974407026, 24.195217793014333 ], [ -77.590538393141301, 24.195196436933635 ], [ -77.590541557005551, 24.195195419236764 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 2135, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 63 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.642831413514699, 24.239616556932852 ], [ -77.642835075048339, 24.239615810713033 ], [ -77.642841900447863, 24.239616845257377 ], [ -77.64285072370059, 24.23961990547706 ], [ -77.642860194638587, 24.239625408302295 ], [ -77.642868442969544, 24.239632934345146 ], [ -77.64287593851229, 24.239642441830295 ], [ -77.64290208397864, 24.23968526031711 ], [ -77.642909106109215, 24.239692950179609 ], [ -77.642926683444387, 24.239703165376557 ], [ -77.642956932414933, 24.239715310409995 ], [ -77.642966047620135, 24.239720250498475 ], [ -77.642973846793424, 24.23972635291225 ], [ -77.64298482330787, 24.239742730314937 ], [ -77.642999843139435, 24.239780728272926 ], [ -77.643004362563644, 24.239789039019239 ], [ -77.643021244602778, 24.239812101214635 ], [ -77.643022729517924, 24.239824012789811 ], [ -77.643020826886129, 24.239829659770514 ], [ -77.643017009944501, 24.239834545792899 ], [ -77.643009482062453, 24.239839102530869 ], [ -77.642999482914988, 24.23984223482735 ], [ -77.642974562750695, 24.239845599752396 ], [ -77.642915459893203, 24.239846357433926 ], [ -77.642854488539939, 24.239843027730785 ], [ -77.642823197523626, 24.239837257064266 ], [ -77.642807747399075, 24.239832126945604 ], [ -77.642793722002551, 24.239825429859209 ], [ -77.642759724362293, 24.239801226638509 ], [ -77.642747208135461, 24.239795338836583 ], [ -77.642740753739673, 24.239794988259529 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 2136, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 86 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.643374328324384, 24.240007238924179 ], [ -77.643374482833735, 24.239983034095452 ], [ -77.643368957296417, 24.239951779148367 ], [ -77.643363299706763, 24.23993509132816 ], [ -77.643349246462463, 24.239908930444056 ], [ -77.643326150776502, 24.23987259205127 ], [ -77.643297596028575, 24.239836728734971 ], [ -77.643290773323969, 24.239825035864783 ], [ -77.643273118733717, 24.239787513007037 ], [ -77.643266058873863, 24.239776027368563 ], [ -77.643222883146379, 24.239725682875427 ], [ -77.643198986163185, 24.239702640323173 ], [ -77.643155214852683, 24.239652813482508 ], [ -77.64312590462157, 24.239607798113877 ], [ -77.643116377987951, 24.239598454449521 ], [ -77.643103117057748, 24.239590507378583 ], [ -77.64308748008358, 24.239584624481616 ], [ -77.643070177632936, 24.239580188963831 ], [ -77.642995564463732, 24.239567142888923 ], [ -77.642978251233259, 24.239562716380849 ], [ -77.642962729243479, 24.239556632798955 ], [ -77.642951970121288, 24.239549731737892 ], [ -77.642921098618274, 24.23952061949511 ], [ -77.642902949056264, 24.239497860320419 ], [ -77.642894872303515, 24.23948295565943 ], [ -77.642880384274605, 24.239444961708063 ], [ -77.642877278798679, 24.239438571770446 ], [ -77.642874489529277, 24.239437075246691 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 2137, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 56 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.646476715854163, 24.241762234511654 ], [ -77.646475857063379, 24.241755286058996 ], [ -77.646472607856992, 24.241749369678942 ], [ -77.646445439209558, 24.241721995256999 ], [ -77.646419317997683, 24.241689784843526 ], [ -77.646392278707694, 24.241669420296098 ], [ -77.646375226886946, 24.241651197701128 ], [ -77.64636093109749, 24.241641654325491 ], [ -77.646305420602829, 24.241624177929996 ], [ -77.646297534292984, 24.241620079134979 ], [ -77.646271178620836, 24.241598926598432 ], [ -77.646262224214055, 24.241594759817033 ], [ -77.646240979057595, 24.24158932506251 ], [ -77.646181231209766, 24.241581504257919 ], [ -77.646159614150775, 24.241576393868129 ], [ -77.646150497148938, 24.241572367971845 ], [ -77.646130767450359, 24.241556142338855 ], [ -77.646122278370925, 24.241550705125423 ], [ -77.646110349642257, 24.241545944491833 ], [ -77.646096283821549, 24.241542377292987 ], [ -77.646065586591675, 24.241538094196866 ], [ -77.646017734234348, 24.241536333946211 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 2152, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 103 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.652575878677908, 24.247364572940121 ], [ -77.652562630324553, 24.247359966504149 ], [ -77.65253172199057, 24.247343963576423 ], [ -77.652512317482149, 24.247336786912225 ], [ -77.652465796428515, 24.247325781928517 ], [ -77.65239885936343, 24.247315372405598 ], [ -77.652363849321887, 24.247306852469723 ], [ -77.652349151087151, 24.247300154138607 ], [ -77.652331186578138, 24.247286394628535 ], [ -77.652306846725494, 24.24726365404333 ], [ -77.652299712305506, 24.247255249592463 ], [ -77.652292653344034, 24.247243761351836 ], [ -77.652270249360811, 24.247192740806277 ], [ -77.652253597290411, 24.24716340097326 ], [ -77.652248261297601, 24.247148456256827 ], [ -77.652241861699522, 24.247114856439151 ], [ -77.652235995700721, 24.24706121318393 ], [ -77.652229933869194, 24.247027320116501 ], [ -77.652224918574973, 24.247012097719715 ], [ -77.65220973525004, 24.246981481735176 ], [ -77.652201252458795, 24.246951165522656 ], [ -77.652197376228344, 24.246916847328773 ], [ -77.652196253334239, 24.246876897201204 ], [ -77.652201424036974, 24.246706048938041 ] ], [ [ -77.652186248796696, 24.246679361962677 ], [ -77.652160133873309, 24.246678975361107 ], [ -77.652155773450914, 24.246677819651691 ], [ -77.652154024431056, 24.246676052915149 ], [ -77.652152973402153, 24.246667143877595 ], [ -77.652154393637957, 24.246623341582712 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 2170, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 671 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.659707977417995, 24.25731009195772 ], [ -77.659701641600549, 24.257309582535655 ], [ -77.659693298946536, 24.257301465399571 ], [ -77.659682647622191, 24.25728713530761 ], [ -77.659661253345362, 24.257250043482216 ], [ -77.659605512881967, 24.257140821183732 ], [ -77.659519390497394, 24.256983409376893 ], [ -77.659489035525638, 24.256920185466399 ], [ -77.659444141320989, 24.256818916250737 ], [ -77.659368356748701, 24.25663142847133 ], [ -77.659346186327454, 24.256582822849413 ], [ -77.65932077837796, 24.256540288512777 ], [ -77.659303349264817, 24.256518898488018 ], [ -77.659284638255741, 24.256500305371684 ], [ -77.659264817827321, 24.256485102126845 ], [ -77.659244575190712, 24.256472907096942 ], [ -77.659224558031255, 24.256463497512609 ], [ -77.659204503142519, 24.256457838166146 ], [ -77.659184154504715, 24.256456888935681 ], [ -77.659164154413205, 24.256460682581601 ], [ -77.659136003907179, 24.256474396872665 ], [ -77.659091348654414, 24.256507748515421 ], [ -77.65902775781376, 24.256561654782793 ], [ -77.65901433698339, 24.256570690892421 ], [ -77.65900239118676, 24.256576639343489 ], [ -77.658991903355826, 24.256578221665837 ], [ -77.658982863609069, 24.256574165941032 ], [ -77.658973270500169, 24.256557408228719 ], [ -77.658968114170463, 24.256530812593873 ], [ -77.658959583768507, 24.256420313662442 ], [ -77.658953238069373, 24.256369725139621 ], [ -77.658943682689667, 24.256318384746343 ], [ -77.658929779464032, 24.25626860945933 ], [ -77.658918637659539, 24.256239237321562 ], [ -77.658873919524737, 24.256134624363728 ], [ -77.658856000829743, 24.25609959365157 ], [ -77.658795761603386, 24.256004203463284 ], [ -77.658781141522169, 24.255977972991776 ], [ -77.658761030937896, 24.255935347542522 ], [ -77.65873056726997, 24.255859694603775 ], [ -77.658714580851182, 24.255811770924179 ], [ -77.658691550742262, 24.25573008588217 ], [ -77.658681859716964, 24.255685520107647 ], [ -77.658674367767489, 24.255640620979094 ], [ -77.658665176205488, 24.25556438964114 ], [ -77.658663593373944, 24.255521904104729 ], [ -77.658665441208484, 24.255480697854782 ], [ -77.658670501418527, 24.255441997776558 ], [ -77.65868620486799, 24.255364845746342 ], [ -77.658688924068358, 24.255340748677998 ], [ -77.658688751591839, 24.255316942355599 ], [ -77.658685558081018, 24.255293886247156 ], [ -77.658680510447383, 24.255270957081912 ], [ -77.658668098425125, 24.255224259247573 ], [ -77.65866021930178, 24.255201700265193 ], [ -77.658649550909431, 24.255179358318092 ], [ -77.658635443766229, 24.255157872239455 ], [ -77.658617780192799, 24.255137894785914 ], [ -77.658596887175904, 24.255119059038645 ], [ -77.658559891857578, 24.25509388901148 ], [ -77.658431605248467, 24.255025202953437 ], [ -77.658326330782018, 24.254956986155523 ], [ -77.658220397850442, 24.254883005070088 ], [ -77.658196923075465, 24.254863908018223 ], [ -77.658183398938846, 24.254849232844713 ], [ -77.658143272093398, 24.254791288088111 ], [ -77.658129049965851, 24.254776927409516 ], [ -77.658104675977256, 24.254758945026751 ], [ -77.657995586365772, 24.254696615198483 ], [ -77.657956098222527, 24.254678396107714 ], [ -77.657915857291044, 24.254661824882053 ], [ -77.657816192803494, 24.254624764232645 ], [ -77.657784940414757, 24.254610120154286 ], [ -77.657760047199972, 24.254591294157116 ], [ -77.657748461627733, 24.254575853987181 ], [ -77.65774092835575, 24.254558832286868 ], [ -77.657736825749836, 24.254540987468715 ], [ -77.657732908196905, 24.254481705929553 ], [ -77.657730044367796, 24.25445928850608 ], [ -77.657724861088582, 24.254435778504334 ], [ -77.657708348257032, 24.254386822320946 ], [ -77.657675698089719, 24.254307463205265 ], [ -77.657631228788219, 24.254190225060452 ], [ -77.657620605311635, 24.254160057171291 ], [ -77.657606625729159, 24.254106629014391 ], [ -77.657596727193095, 24.254051005851636 ], [ -77.657585885425931, 24.253962548805223 ], [ -77.657578221898234, 24.253913011751148 ], [ -77.657566722564297, 24.253864129897806 ], [ -77.657545459441508, 24.253801105916558 ], [ -77.65751407589876, 24.253722670296462 ], [ -77.657493218814466, 24.253675788431718 ], [ -77.657453730671207, 24.253600409341537 ], [ -77.657427015672965, 24.253557040237997 ], [ -77.657366169185522, 24.253477000811728 ], [ -77.657271440042152, 24.253339869344227 ], [ -77.657236807293017, 24.25328621397189 ], [ -77.657222445926578, 24.253258086068978 ], [ -77.657210380653979, 24.253229331602714 ], [ -77.657200649204526, 24.253200464922905 ], [ -77.657191366912684, 24.253148274735576 ], [ -77.657192458365756, 24.253096589868154 ], [ -77.657204458061344, 24.253049019787252 ], [ -77.657228929067983, 24.253009775951849 ], [ -77.657260710564429, 24.252985822586627 ], [ -77.657300240928521, 24.25297002676243 ], [ -77.65734859993519, 24.252960385952271 ], [ -77.657405279138061, 24.252955386588674 ], [ -77.657488727238047, 24.252952492133968 ], [ -77.65755613412199, 24.252947410866977 ], [ -77.657624460880839, 24.252938044430437 ], [ -77.657668950843615, 24.252929493747992 ], [ -77.657732167985102, 24.252915008366418 ], [ -77.657788539964116, 24.25289880465596 ], [ -77.657848617493698, 24.252876425447905 ], [ -77.657900423336145, 24.252852614569026 ], [ -77.657904027376603, 24.252849768439265 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 2188, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 400 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.660602949172414, 24.260216727160561 ], [ -77.660594916437617, 24.260217222641959 ], [ -77.660585994370194, 24.260212755084307 ], [ -77.660576389583227, 24.260203062408301 ], [ -77.660566887204155, 24.260188723634563 ], [ -77.660554264976071, 24.260158815148611 ], [ -77.660544298168006, 24.260121301564944 ], [ -77.660533099769637, 24.260064296129762 ], [ -77.660520621272042, 24.260016419079108 ], [ -77.660501635378537, 24.259967029344061 ], [ -77.660484950968751, 24.259935059418769 ], [ -77.660465939024064, 24.259903831486696 ], [ -77.660424364992707, 24.259843822730989 ], [ -77.660361967114781, 24.259765450624361 ], [ -77.660286007370985, 24.259661683306007 ], [ -77.660171396713778, 24.259512126263328 ], [ -77.660115864659545, 24.259444013427238 ], [ -77.660058418295407, 24.259384633438302 ], [ -77.660000008937345, 24.25931779570098 ], [ -77.659912433078631, 24.259227048326515 ], [ -77.659889132576808, 24.25920452199491 ], [ -77.659839771948526, 24.25916046029856 ], [ -77.659803638114553, 24.259133699772008 ], [ -77.659728152681211, 24.259082217171322 ], [ -77.65967382886106, 24.259041068585553 ], [ -77.659569045773026, 24.258956099821891 ], [ -77.659518379892717, 24.258913360712178 ], [ -77.659470161921519, 24.258870200625861 ], [ -77.659403732404556, 24.258805729508108 ], [ -77.659330578997697, 24.258725603296316 ], [ -77.659286178866481, 24.258682965664335 ], [ -77.659275557186547, 24.258669691411249 ], [ -77.65926731065224, 24.258654166561072 ], [ -77.659260824815902, 24.25862190392472 ], [ -77.659263835070405, 24.258584630672033 ], [ -77.659276679182341, 24.258546048654711 ], [ -77.659289184629429, 24.25852367371651 ], [ -77.659304677873124, 24.258501544472871 ], [ -77.659322885825631, 24.25848020637472 ], [ -77.659364464348556, 24.258437507235769 ], [ -77.6594103646663, 24.258394308495081 ], [ -77.659485116176057, 24.258329531650496 ], [ -77.659543294667088, 24.258287828360569 ], [ -77.659614143895226, 24.258241523933545 ], [ -77.659674741549395, 24.258207538023012 ], [ -77.659850406204853, 24.258115744815278 ], [ -77.659913149934212, 24.258080714648894 ], [ -77.659964390736334, 24.25804573361286 ], [ -77.659988196091362, 24.258024877009024 ], [ -77.660006621436153, 24.258005280021134 ], [ -77.660019613770118, 24.257987950836601 ], [ -77.660028192681068, 24.257968087668402 ], [ -77.660024841965068, 24.257956169602629 ] ], [ [ -77.660023307642462, 24.25794854636445 ], [ -77.66001632503783, 24.257948323596061 ], [ -77.660010194934358, 24.257946410415336 ], [ -77.65999574373636, 24.257937871535606 ], [ -77.659948212078092, 24.257895514556118 ], [ -77.659942378418592, 24.257888734882798 ], [ -77.659937718857236, 24.257880195180242 ], [ -77.659924332162859, 24.257841476176313 ], [ -77.659919730992002, 24.257832886511626 ], [ -77.659913566752451, 24.257825654747329 ], [ -77.659905489101448, 24.257820156804371 ], [ -77.659895936416717, 24.257815939776318 ], [ -77.659864060597172, 24.257806085574664 ], [ -77.659845060330596, 24.257797561427505 ], [ -77.65982102770181, 24.257774388651889 ], [ -77.659801859450269, 24.25775818556064 ], [ -77.659796464168693, 24.257751920211859 ], [ -77.659791744420176, 24.257743084022181 ], [ -77.659786465021256, 24.257721795755749 ], [ -77.659784283911733, 24.257684876047268 ], [ -77.65979081466368, 24.257498066044366 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 2200, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 110 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.660639949880661, 24.262066999148431 ], [ -77.660635752053835, 24.262067857426871 ], [ -77.660627867540583, 24.262066732978283 ], [ -77.660617408455721, 24.262063362089247 ], [ -77.660605669271575, 24.262057320532001 ], [ -77.660591573806443, 24.26204623001113 ], [ -77.66057787629498, 24.262031591701369 ], [ -77.66052480921789, 24.261963500689504 ], [ -77.660515486501879, 24.261946772351571 ], [ -77.660494669841782, 24.261898271133383 ], [ -77.660479201750917, 24.261867571102428 ], [ -77.660473691484967, 24.261850149900358 ], [ -77.660467558686548, 24.261811054558621 ], [ -77.660465356017454, 24.261768630894636 ], [ -77.660465784513818, 24.261702473340467 ], [ -77.660469217874876, 24.261636475451997 ], [ -77.660473854978349, 24.261594311344901 ], [ -77.660482038630633, 24.261555497652015 ], [ -77.660488266650461, 24.261538148476944 ], [ -77.660504178509072, 24.26150706835438 ], [ -77.66051114584242, 24.26149048245815 ], [ -77.660533813930329, 24.261419326547429 ], [ -77.660540759704091, 24.261402793873213 ], [ -77.660557027295596, 24.26137228945802 ], [ -77.660563595776949, 24.261355422635255 ], [ -77.660574172541061, 24.26131214872122 ], [ -77.660588711773954, 24.261234941286631 ], [ -77.660599403522468, 24.261191533838243 ], [ -77.660605310843792, 24.261176216497454 ], [ -77.660611434659074, 24.261166660664202 ], [ -77.660615977439477, 24.261163592773109 ], [ -77.660619513207962, 24.261164374901284 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 2202, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 96 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.660635223845702, 24.262837316197281 ], [ -77.660642615182596, 24.262679541265751 ], [ -77.660644489966572, 24.262611110729015 ], [ -77.660641816580281, 24.262553664986022 ], [ -77.660638951852874, 24.262536183274261 ], [ -77.660634445903398, 24.262520097902478 ], [ -77.660627713030337, 24.262505918270019 ], [ -77.660617990564035, 24.262494304466891 ], [ -77.660604934449665, 24.262485866625887 ], [ -77.66058919057599, 24.262479741553896 ], [ -77.660571699479107, 24.262475122566407 ], [ -77.660516230306953, 24.262464046823389 ], [ -77.660499061705238, 24.262459427835342 ], [ -77.660483843346029, 24.262453369098647 ], [ -77.660471564274374, 24.262445159747497 ], [ -77.66046327012937, 24.262434642539141 ], [ -77.660458156020454, 24.262422204845908 ], [ -77.660455731467479, 24.262408636973081 ], [ -77.660455738654022, 24.262394662070697 ], [ -77.660458138952464, 24.262380984452889 ], [ -77.660463117415773, 24.262368339554953 ], [ -77.660471093557163, 24.262357545528388 ], [ -77.660482327888133, 24.262349269015445 ], [ -77.660496074806943, 24.262342919539059 ], [ -77.660543248935753, 24.262328078977731 ], [ -77.660558109765489, 24.262322095580078 ], [ -77.660570981725172, 24.262314181868724 ], [ -77.660581572862412, 24.262302674514224 ], [ -77.660590375453879, 24.262286494112271 ], [ -77.66059785033535, 24.262266819160054 ], [ -77.660615920845601, 24.262202232651941 ], [ -77.660627391433465, 24.262169355049497 ], [ -77.660633363433504, 24.262159946705737 ], [ -77.660638251166915, 24.262156447240617 ], [ -77.660641947733879, 24.262157261302587 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 2479, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 118 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.681630876836806, 24.340205098579837 ], [ -77.681614006476224, 24.340204454441398 ], [ -77.681575139068826, 24.340197685711711 ], [ -77.681503150776919, 24.340177360695801 ], [ -77.681473347370712, 24.34017063125113 ], [ -77.681442864838175, 24.340166145227339 ], [ -77.681413574370055, 24.340163957461943 ], [ -77.681387365123285, 24.340164019665583 ], [ -77.681339079778482, 24.340168977127099 ], [ -77.681316716219456, 24.340173816728992 ], [ -77.681279986802423, 24.340184559122289 ], [ -77.681257812787962, 24.340188617086646 ], [ -77.681234632660377, 24.34019055849275 ], [ -77.681211250411863, 24.340190534757134 ], [ -77.681188486204263, 24.340188520507414 ], [ -77.68116724284441, 24.340184298849422 ], [ -77.68114857585276, 24.340177451545799 ], [ -77.681133777905131, 24.340167333643052 ], [ -77.681124880092227, 24.340155320985684 ], [ -77.681119479420744, 24.34014111155826 ], [ -77.681117078223949, 24.340125594216765 ], [ -77.681117398922495, 24.340109566967445 ], [ -77.681120373244426, 24.340093781982837 ], [ -77.681126131445424, 24.340078988980249 ], [ -77.681134621423155, 24.34006573224196 ], [ -77.681155553067626, 24.340040624072383 ], [ -77.681167422507471, 24.340028674425081 ], [ -77.681195072651875, 24.340008141490859 ], [ -77.681225437505105, 24.339989623624724 ], [ -77.68124573853224, 24.339982006130885 ], [ -77.681268144312043, 24.339976440539303 ], [ -77.681364476948175, 24.339961169536881 ], [ -77.681435804978349, 24.339943763145545 ], [ -77.681466104254582, 24.33993883595857 ], [ -77.681530115506746, 24.339933897312868 ], [ -77.681586709369711, 24.339933173785692 ], [ -77.681626679009511, 24.339934352385992 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 2487, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 224 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.682446045854888, 24.342343073355451 ], [ -77.682402156865493, 24.342342651847147 ], [ -77.682391133638646, 24.342340585250611 ], [ -77.68238591352852, 24.342337398190335 ], [ -77.682382498133819, 24.342328347724454 ], [ -77.682379893917798, 24.34230657602324 ], [ -77.682376862103737, 24.342301197959813 ], [ -77.682367596879857, 24.342297295569473 ], [ -77.682343914594057, 24.342293965278586 ], [ -77.682337894983334, 24.342291226730172 ], [ -77.682335937554299, 24.342288987438849 ], [ -77.682332895858764, 24.342275381451785 ], [ -77.682334458768551, 24.342239062526325 ] ], [ [ -77.682308372749361, 24.342204732442656 ], [ -77.682296154763634, 24.342199896188109 ], [ -77.682253927657101, 24.342172458299746 ], [ -77.682187644565531, 24.342132509496256 ], [ -77.682150870232746, 24.342108353600228 ], [ -77.682115522424624, 24.342080553934572 ], [ -77.682082938732663, 24.342050719581312 ], [ -77.682054953516598, 24.342018741684321 ], [ -77.682032552228335, 24.341986509239298 ], [ -77.682017369801727, 24.341953757884639 ], [ -77.681983860844994, 24.341850169883912 ], [ -77.68197091791842, 24.34181712057547 ], [ -77.681939662834708, 24.341755807455922 ], [ -77.681922079211347, 24.34172665234631 ], [ -77.681882077231748, 24.341672850994488 ], [ -77.681826792214238, 24.341586740956366 ], [ -77.681784472581199, 24.341533906963956 ], [ -77.681740217078698, 24.34148273769641 ], [ -77.68172121321885, 24.341454163630456 ], [ -77.68168845615206, 24.341392996021114 ], [ -77.681675568022627, 24.341359661769157 ], [ -77.68166522122722, 24.341324666851726 ], [ -77.681641486839069, 24.341220771413436 ], [ -77.681637869323438, 24.341186905116128 ], [ -77.681638298718127, 24.341153557714563 ], [ -77.681642926838492, 24.341122226994422 ], [ -77.68165225943595, 24.3410946652848 ], [ -77.681667200215784, 24.341073012048504 ], [ -77.681688231573219, 24.3410592749768 ], [ -77.681713499385509, 24.341053008010313 ], [ -77.681741523229107, 24.341053044841136 ], [ -77.681772892398868, 24.34105654458633 ], [ -77.681808849264741, 24.341064315068007 ], [ -77.681849246503063, 24.341078188003845 ], [ -77.681890579785929, 24.341098226413514 ], [ -77.681930478459265, 24.341123895019905 ], [ -77.681968224769193, 24.341152279277235 ], [ -77.682034485402824, 24.341210099495747 ], [ -77.682064022907696, 24.34123275204977 ], [ -77.682092138379488, 24.341248515612492 ], [ -77.68211331256903, 24.341255575658124 ], [ -77.682123554995613, 24.341253390323104 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 2567, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 56 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.703401677105177, 24.397022162218505 ], [ -77.703405421283733, 24.397021134680095 ], [ -77.703412285310819, 24.397022480455146 ], [ -77.703421097783774, 24.397026183995319 ], [ -77.703430490568351, 24.397032484185679 ], [ -77.703438560134572, 24.397040717546545 ], [ -77.703445781691144, 24.397050815357122 ], [ -77.703469215143642, 24.397092696351233 ], [ -77.703474978734491, 24.397098698749911 ], [ -77.703480601289883, 24.397101443474842 ], [ -77.703486897581698, 24.397102457918635 ], [ -77.703499708455965, 24.397099698467947 ], [ -77.703505549301951, 24.397096008019496 ], [ -77.703523043992121, 24.397080996704283 ], [ -77.703551754148563, 24.397062183676294 ], [ -77.703578610182319, 24.397040258592245 ], [ -77.703597758670924, 24.397031970418702 ], [ -77.703635550794928, 24.39701935449375 ], [ -77.703641710542797, 24.397015043104759 ], [ -77.703645019038035, 24.397010388113532 ], [ -77.703646333273227, 24.397005247170416 ], [ -77.703645681994686, 24.397000059595406 ], [ -77.703642991540406, 24.396995265526471 ], [ -77.703637428273865, 24.396990703797954 ], [ -77.703629796187215, 24.396986904538938 ], [ -77.703590997051762, 24.39697310563594 ], [ -77.703581932152233, 24.396968366378786 ], [ -77.703555698651002, 24.396945667355109 ], [ -77.703520011279693, 24.396919872633234 ], [ -77.703487998017906, 24.39689260368775 ], [ -77.703474550238099, 24.396885579470823 ], [ -77.703466822031288, 24.396883419687946 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 2578, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 137 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.698070847834131, 24.399210996064543 ], [ -77.698099902943696, 24.39921079890577 ], [ -77.69815845243896, 24.399214293769841 ], [ -77.698213540725448, 24.399222856677156 ], [ -77.698251547546818, 24.399231769724761 ], [ -77.698274987287505, 24.39923557464278 ], [ -77.698299134900694, 24.39923775238773 ], [ -77.698347457076451, 24.399237538867258 ], [ -77.698370555457316, 24.399235130422131 ], [ -77.698407318112032, 24.399228968598187 ], [ -77.698432417939372, 24.399226376901513 ], [ -77.698457901347354, 24.399225724886914 ], [ -77.698482760426188, 24.399227046913992 ], [ -77.698505866891935, 24.399230527052037 ], [ -77.698525882254827, 24.399236514623592 ], [ -77.698541169784278, 24.399245552019295 ], [ -77.698550244565311, 24.399258013103633 ], [ -77.698553151513593, 24.399272467043755 ], [ -77.698550103529797, 24.399287144319583 ], [ -77.698544029121848, 24.39929738511557 ], [ -77.698525283976807, 24.399317068253627 ], [ -77.698513061499071, 24.399326211176561 ], [ -77.698495443739702, 24.399335432635041 ], [ -77.698453388211377, 24.399350024004615 ], [ -77.698374787420633, 24.399370826274883 ], [ -77.698347615179912, 24.399376933280244 ], [ -77.698306138166643, 24.399383299618219 ], [ -77.69826350052999, 24.399387160161496 ], [ -77.698222515793461, 24.399389100659192 ], [ -77.698185966937814, 24.399389672500551 ], [ -77.698131132874551, 24.399388245760342 ], [ -77.698132406685588, 24.399385212301045 ], [ -77.698127413849278, 24.399380472316302 ], [ -77.698112238609184, 24.399372750411107 ], [ -77.698032123258898, 24.39934205994436 ], [ -77.698003960176422, 24.399328294022009 ], [ -77.697980533012085, 24.399311898771447 ], [ -77.69796592281233, 24.399294643710711 ], [ -77.697958258386322, 24.399276421670276 ], [ -77.697957621480825, 24.399259045528073 ], [ -77.697963880941685, 24.399244251262662 ], [ -77.697975431479634, 24.399232210673102 ], [ -77.697993862214304, 24.399222665245031 ], [ -77.698016829441144, 24.399216448608701 ], [ -77.698042865313056, 24.399212750859384 ], [ -77.698070847834131, 24.399210996064543 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 2585, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 150 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.703968180774481, 24.405650425763508 ], [ -77.703965482235859, 24.405650802059192 ], [ -77.703962210571575, 24.405647971625367 ], [ -77.70395629965698, 24.40563631858139 ], [ -77.703926681303756, 24.40553396971513 ], [ -77.703915217004109, 24.405504854664859 ], [ -77.703883944852464, 24.405448519956298 ], [ -77.703855417053944, 24.405405114440875 ], [ -77.703844601337963, 24.40538510912344 ], [ -77.703808505233212, 24.405313773023153 ], [ -77.703777376811942, 24.405234840497112 ], [ -77.703767970552619, 24.405216493334422 ], [ -77.703739087021276, 24.405175470711743 ], [ -77.703697778891254, 24.405122943051065 ], [ -77.703669999389447, 24.405080660603812 ], [ -77.703660637147507, 24.405059119758345 ], [ -77.703653388641527, 24.405035721121219 ], [ -77.703636201175186, 24.404961589550513 ], [ -77.703618383091523, 24.404903779656699 ], [ -77.703613227660099, 24.404881183497224 ], [ -77.703608467487427, 24.404833019191539 ], [ -77.703610220998854, 24.404784040907639 ], [ -77.703613756767808, 24.404760553052078 ], [ -77.703620284824979, 24.404738456695821 ], [ -77.703632271045805, 24.404718654967304 ], [ -77.703645722418855, 24.404705548979749 ], [ -77.703661574988715, 24.404694672996971 ], [ -77.703678907982109, 24.404685841321921 ], [ -77.703697479752293, 24.404679798381238 ], [ -77.703723445555582, 24.404676887756697 ], [ -77.7037485076537, 24.404678963151422 ], [ -77.703769997151909, 24.404684635515132 ], [ -77.703782659804148, 24.404690122999188 ], [ -77.703799116939763, 24.404699442236126 ] ], [ [ -77.7038047601567, 24.404731184229746 ], [ -77.703801744512361, 24.404869038734812 ], [ -77.703803558210893, 24.404874642373795 ], [ -77.70380903164596, 24.404878560830728 ], [ -77.703817206315037, 24.404880300821905 ], [ -77.703831319746484, 24.404880581412847 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 2588, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 701 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.699784429154377, 24.405965780682539 ], [ -77.69978223187519, 24.405970325726049 ], [ -77.699782049517196, 24.40598559530418 ], [ -77.699781008369811, 24.406040704346363 ], [ -77.699779362656201, 24.406048573909423 ], [ -77.699774810892634, 24.406053678490572 ], [ -77.699766811395023, 24.406055439734626 ], [ -77.699750911214508, 24.406055523174889 ], [ -77.699741720550861, 24.406054521891701 ], [ -77.699734597808956, 24.406051686558708 ], [ -77.699732061864921, 24.406047638069495 ], [ -77.699730996462975, 24.406042336339993 ], [ -77.699732140018313, 24.406010550499484 ], [ -77.699724168368476, 24.406005978461945 ], [ -77.699700118671686, 24.405996717406513 ], [ -77.699671939419588, 24.405989346027919 ], [ -77.699636066097014, 24.405982826231032 ], [ -77.699549664336359, 24.405972793759901 ], [ -77.699420183866209, 24.405962499514406 ], [ -77.699385927511202, 24.405958973751495 ], [ -77.699353889096614, 24.405953925611357 ], [ -77.699324426151904, 24.405946641760895 ], [ -77.699298505264366, 24.405936282887861 ], [ -77.699277373295672, 24.405921764267067 ], [ -77.699263337119334, 24.405904575552821 ], [ -77.699252850186696, 24.405884303632462 ], [ -77.699244648568168, 24.405862047954404 ], [ -77.699223887603608, 24.405791944097199 ], [ -77.69921220501331, 24.4057582668765 ], [ -77.699205837754633, 24.405734418444727 ], [ -77.69918614129368, 24.405634013331884 ], [ -77.699143778541526, 24.405498451005418 ], [ -77.699134350722645, 24.405473587329968 ], [ -77.699099471835098, 24.405401296619996 ], [ -77.699088795357937, 24.405381189864162 ], [ -77.699044864147254, 24.405309537995674 ], [ -77.6990370416178, 24.405294419674497 ], [ -77.699028469893335, 24.405269477426394 ], [ -77.699022434112962, 24.405238093052517 ], [ -77.699018563272404, 24.405202080158947 ], [ -77.699016455824719, 24.405163340702433 ], [ -77.699015970734465, 24.40508526539676 ], [ -77.699020224257339, 24.404973335914281 ], [ -77.698997301047939, 24.404953460598186 ], [ -77.698990125305428, 24.40494262635724 ], [ -77.698984782126118, 24.404929735539845 ], [ -77.698981615564747, 24.404915697816161 ], [ -77.698980853793373, 24.404901561925069 ], [ -77.698982685458247, 24.404888433051131 ], [ -77.698987285730809, 24.404877427014217 ], [ -77.698994456083398, 24.404869265334508 ], [ -77.699028115058809, 24.404840189397376 ], [ -77.699037454842809, 24.40483356564879 ], [ -77.699060103167767, 24.404824198978922 ], [ -77.69909701763774, 24.404812828904191 ], [ -77.699108144170822, 24.404807889518942 ], [ -77.699137705031902, 24.40478915372049 ], [ -77.699148819886929, 24.404784236421655 ], [ -77.699197269623426, 24.404769459164466 ], [ -77.699207952388804, 24.404765044965746 ], [ -77.699234357468271, 24.404750368326521 ], [ -77.699243482554905, 24.404748320746641 ], [ -77.699252782813019, 24.404748490083055 ], [ -77.699261544980303, 24.404750934417319 ], [ -77.699269312712616, 24.404755673382478 ], [ -77.699309796189169, 24.404788663708509 ], [ -77.699317782212049, 24.404797925670625 ], [ -77.699352171517788, 24.404845388103126 ], [ -77.699359164003923, 24.404857738198359 ], [ -77.699366269677796, 24.404880277916536 ], [ -77.699366994618288, 24.404898414889381 ], [ -77.699368661891441, 24.404907558226284 ], [ -77.699382605541274, 24.404946225772967 ], [ -77.699390877228424, 24.404974180140695 ], [ -77.699398385347564, 24.405007066517513 ], [ -77.699424610763955, 24.405145868022458 ], [ -77.699432347953518, 24.405171370657492 ], [ -77.699453332598537, 24.405224308139722 ], [ -77.699476376182218, 24.405296825549996 ], [ -77.699479197790524, 24.405317921337577 ], [ -77.699478817803168, 24.405339691191948 ], [ -77.699475447324232, 24.405361332609296 ], [ -77.69946132311297, 24.405416839494219 ], [ -77.699457309440319, 24.405442045941989 ], [ -77.699452648082286, 24.405495384153006 ], [ -77.699452021058221, 24.405522557165934 ], [ -77.69945499268519, 24.40557561229943 ], [ -77.699459292022127, 24.405600466956237 ], [ -77.699466202761627, 24.405623375479994 ], [ -77.69947329945235, 24.405638925689324 ], [ -77.699492567416883, 24.405673335909519 ], [ -77.69950505040606, 24.405691914512289 ], [ -77.699520137611273, 24.405708281121168 ], [ -77.699536748359236, 24.405720254831738 ], [ -77.69955565340436, 24.405730246420767 ], [ -77.699616906828638, 24.405756287210608 ], [ -77.699649412367179, 24.405772303688462 ], [ -77.699694881493599, 24.405791597246683 ], [ -77.699719124328197, 24.405803371346778 ], [ -77.699782687321033, 24.405842807579695 ], [ -77.69980762634998, 24.405859794245721 ], [ -77.699829476970947, 24.405877711024271 ], [ -77.699847076763987, 24.405896235606196 ], [ -77.699881820005913, 24.405937555762172 ], [ -77.699908662564951, 24.405978933167635 ], [ -77.69993293863719, 24.406028693854289 ], [ -77.699942255963265, 24.406044436253556 ], [ -77.699950786365264, 24.406055820124081 ], [ -77.699990397577665, 24.406099663886103 ], [ -77.700025481281074, 24.406126563543189 ], [ -77.700042855597019, 24.406137433676399 ], [ -77.700054493271509, 24.406141129586906 ], [ -77.700066662748668, 24.406142541526155 ], [ -77.700078557341385, 24.406141747208075 ], [ -77.700089355091066, 24.40613866319244 ], [ -77.700098166665668, 24.406133042430646 ], [ -77.700104294972562, 24.406124677957834 ], [ -77.700107896318528, 24.406114318281393 ], [ -77.700109301283646, 24.406102808437691 ], [ -77.700108699412382, 24.406090891208333 ], [ -77.700106150891926, 24.406079260292298 ], [ -77.700095288463501, 24.406052109486339 ], [ -77.700092680654251, 24.406040220065531 ], [ -77.700092000629553, 24.406027825911703 ], [ -77.700093321153048, 24.406015525831496 ], [ -77.700096841650648, 24.406003937446801 ], [ -77.700102909770393, 24.405993725008056 ], [ -77.700111699785452, 24.405985416970953 ], [ -77.700158497520192, 24.405958864133773 ], [ -77.700192507736844, 24.405929644472064 ], [ -77.700200618625516, 24.405921985956578 ], [ -77.700207643451066, 24.40591257601119 ], [ -77.70021399184516, 24.405897093733131 ], [ -77.70021724644144, 24.40587893399854 ], [ -77.700217676734454, 24.405859520201314 ], [ -77.70021555671039, 24.405840266737464 ], [ -77.700211175626777, 24.405822540557711 ], [ -77.700204885623137, 24.405807606357705 ], [ -77.700197218502183, 24.405796539047646 ], [ -77.700185592505761, 24.405788065752716 ], [ -77.700181276100835, 24.405787929139436 ], [ -77.700181333593036, 24.405746790540157 ], [ -77.700178229015407, 24.405727140307892 ], [ -77.70017535799974, 24.405718901786987 ], [ -77.700171380259647, 24.405712531678116 ], [ -77.700166931802386, 24.405708714684526 ], [ -77.700151323574303, 24.405699727652031 ], [ -77.700142450914257, 24.405692433152314 ], [ -77.700136923580303, 24.405680961718264 ], [ -77.700134678690418, 24.405667155584702 ], [ -77.700134649046049, 24.405652585396062 ], [ -77.700136702594733, 24.405638561659519 ], [ -77.700141590328201, 24.405626569126216 ], [ -77.700145606695841, 24.405621952900383 ], [ -77.700157319828833, 24.405616233132204 ], [ -77.700172139336104, 24.405613442781764 ], [ -77.700204035816881, 24.40561009534288 ], [ -77.700218185180901, 24.405606760174535 ], [ -77.70022843585663, 24.405600393332183 ], [ -77.70024615243068, 24.405578656244611 ], [ -77.700260254183974, 24.405573100083391 ], [ -77.700291613472245, 24.40557016248394 ], [ -77.700334476586036, 24.405571199764953 ], [ -77.700333520778543, 24.405576859817927 ], [ -77.700335830347157, 24.405589743206804 ], [ -77.700341513987937, 24.405607990513793 ], [ -77.700398715111959, 24.405745106187936 ], [ -77.700411583478413, 24.405768786100687 ], [ -77.700441587208942, 24.405809410143469 ], [ -77.700453636311849, 24.405827983817904 ], [ -77.700462527836535, 24.405850839127631 ], [ -77.700467590741439, 24.40587596532054 ], [ -77.700469512237845, 24.40590231448251 ], [ -77.700468642668682, 24.405928967950814 ], [ -77.700465029644562, 24.405955063508511 ], [ -77.700458431518825, 24.405979720124421 ], [ -77.700448315590407, 24.406001970873472 ], [ -77.700438980297946, 24.406015658354374 ], [ -77.700417279695642, 24.406040880225408 ], [ -77.700405251253983, 24.406052629760946 ], [ -77.700351390964528, 24.406094160102494 ], [ -77.700305109761032, 24.40614334975086 ], [ -77.700292728281511, 24.406154598635691 ], [ -77.700267219720672, 24.406176174470104 ], [ -77.700240197498616, 24.406195600489294 ], [ -77.700211358883081, 24.406212121642554 ], [ -77.700196254609907, 24.406219132252115 ], [ -77.700176749490126, 24.406225288008788 ], [ -77.700156170883588, 24.406229286591788 ], [ -77.700135366799955, 24.406231583650069 ], [ -77.700070217382248, 24.406232828707953 ], [ -77.700058389264896, 24.406235696758536 ], [ -77.700047831365367, 24.40624143531365 ], [ -77.700036171233009, 24.406254877356432 ], [ -77.700027298572905, 24.406275132038441 ], [ -77.700019867708903, 24.406303046028011 ], [ -77.699996033607775, 24.406441933638654 ], [ -77.699989714858049, 24.406471297974761 ], [ -77.699982774474208, 24.406493956838649 ], [ -77.699975275338176, 24.406507922399442 ], [ -77.699969993244338, 24.406511797449607 ], [ -77.699965436090864, 24.406510446049445 ], [ -77.69996527259751, 24.406503934459781 ], [ -77.699963112149206, 24.406498165649182 ], [ -77.699954190081854, 24.406484289253537 ], [ -77.699934746047518, 24.406459593470295 ], [ -77.699928942032457, 24.40644792495852 ], [ -77.699924857392887, 24.406435355784293 ], [ -77.699921198554705, 24.406410609273049 ], [ -77.699918235910914, 24.40633764094429 ], [ -77.699914765718972, 24.406315473694445 ], [ -77.699907460619073, 24.406296635864692 ], [ -77.699886908063675, 24.406270660629492 ], [ -77.699882635676204, 24.406261408591842 ], [ -77.699877741654518, 24.406239737061288 ], [ -77.699875516527584, 24.406202788614657 ], [ -77.699875704275456, 24.406124863653222 ], [ -77.699872546697264, 24.406088723398064 ], [ -77.699865737467377, 24.406068714916678 ], [ -77.699848633544349, 24.406046782397702 ], [ -77.69983714409193, 24.406025762809772 ], [ -77.69982965843063, 24.406000120462032 ], [ -77.699823568751327, 24.405970609586785 ], [ -77.699821263674309, 24.405965988465297 ], [ -77.699784429154377, 24.405965780682539 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 2589, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 210 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.704139804807866, 24.407909641449145 ], [ -77.704137665919617, 24.407909864766847 ], [ -77.704129441843165, 24.407903245269452 ], [ -77.70411684207302, 24.407888254053379 ], [ -77.704101738698128, 24.407864941015653 ], [ -77.704085714550104, 24.407834281243659 ], [ -77.704069632011553, 24.407791575964481 ], [ -77.704056384556097, 24.407741201631431 ], [ -77.70404600542129, 24.407685739123835 ], [ -77.704038200858093, 24.407628052363929 ], [ -77.704021216411007, 24.407425491207231 ], [ -77.704014988391179, 24.407381930127041 ], [ -77.704005982780416, 24.407340703699443 ], [ -77.703984336077028, 24.407270343800498 ], [ -77.703972633723836, 24.4072356779708 ], [ -77.703959270385639, 24.40720236352437 ], [ -77.703912075595582, 24.407108562757486 ], [ -77.703867917111154, 24.407011197739692 ], [ -77.703820568709133, 24.406918205050573 ], [ -77.703774102452755, 24.406831462094239 ], [ -77.703762391116413, 24.406802662287443 ], [ -77.703753342386548, 24.406774626520715 ], [ -77.703741414556191, 24.406727641729248 ], [ -77.703741163926239, 24.406709828962065 ], [ -77.703746281628426, 24.406697826714005 ], [ -77.703756385878705, 24.406694071103011 ], [ -77.703769594706671, 24.406698336351504 ], [ -77.703785396970844, 24.406708416211128 ], [ -77.703802358960033, 24.406723847671401 ], [ -77.703820183331914, 24.406743020832771 ], [ -77.703873695075046, 24.406818335057064 ], [ -77.703911935458351, 24.406877515921586 ], [ -77.7040146506246, 24.407025592711889 ], [ -77.704039232124018, 24.407063655081892 ], [ -77.704095854733026, 24.407159891989455 ], [ -77.70410912913799, 24.407178129253079 ], [ -77.704117854474333, 24.407187427033485 ], [ -77.704120777591854, 24.407187474483393 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 2592, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 801 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.745876000102868, 24.408723151465225 ], [ -77.745870235543862, 24.408723149841112 ], [ -77.745856785967433, 24.408726269786683 ], [ -77.745784679996234, 24.408750047303226 ], [ -77.745565360811156, 24.408830855814664 ], [ -77.745496786117357, 24.408856792894035 ], [ -77.745407172879524, 24.408893002706922 ], [ -77.745285870671779, 24.408945451087096 ], [ -77.745232580812498, 24.408966239506501 ], [ -77.745180014097016, 24.408984968140985 ], [ -77.74509051853849, 24.409014640280194 ], [ -77.744853335455716, 24.409087086799772 ], [ -77.744783230032624, 24.40911229824102 ], [ -77.744681736575203, 24.409153485643078 ], [ -77.744616342815789, 24.409183194553744 ], [ -77.744568416797051, 24.409206351923974 ], [ -77.744522260459476, 24.409231198503896 ], [ -77.744435676340757, 24.409287129058601 ], [ -77.744345123465166, 24.409338759254457 ], [ -77.744250453610661, 24.409386458841968 ], [ -77.744153843395139, 24.409432050374146 ], [ -77.744060819254173, 24.409481321342149 ], [ -77.744002167350985, 24.40951746471638 ], [ -77.743889706362253, 24.409594631734588 ], [ -77.74383131497045, 24.409630767714141 ], [ -77.743771121558197, 24.409665439430402 ], [ -77.743740037154396, 24.40968196176571 ], [ -77.743610130882885, 24.409741707356428 ], [ -77.74357836106455, 24.409757574449475 ], [ -77.743341783446283, 24.409882210858271 ], [ -77.743184642051915, 24.409975845143272 ], [ -77.743009710421688, 24.410074623860258 ], [ -77.742948091383099, 24.410106884762673 ], [ -77.742931603704363, 24.410116936537698 ], [ -77.74292721633249, 24.410122812343023 ], [ -77.742927271129744, 24.410127112650279 ], [ -77.7429230786923, 24.410134193391794 ], [ -77.74291223692515, 24.410140639352985 ], [ -77.742888397434129, 24.410145666057275 ], [ -77.742852549264413, 24.410148387594212 ], [ -77.742841237678348, 24.41015174636502 ], [ -77.742833590320345, 24.410158143244413 ], [ -77.74282192569639, 24.410180140490493 ], [ -77.742813830079044, 24.410186364767224 ], [ -77.742794969949614, 24.410190350136517 ], [ -77.742772713290151, 24.41019118287587 ], [ -77.7427184254026, 24.410189649915722 ], [ -77.742704030798507, 24.410188067874628 ], [ -77.742691660997011, 24.410184707468741 ], [ -77.742686796619765, 24.410180979773966 ], [ -77.742681203708813, 24.410168216283736 ], [ -77.742679545418781, 24.410151875611447 ], [ -77.742680822823104, 24.410125781739129 ], [ -77.742685020650441, 24.410124307675265 ], [ -77.74269350164505, 24.410118100573776 ], [ -77.742703481927862, 24.410107432833126 ], [ -77.742713798180617, 24.410093083203133 ], [ -77.742723064302723, 24.410075319173629 ], [ -77.742729918448333, 24.410055055285074 ], [ -77.742732352882754, 24.410020651985096 ], [ -77.742722141732926, 24.409984820419194 ], [ -77.742695280309306, 24.409949458384659 ], [ -77.74265411590973, 24.409918031819057 ], [ -77.742602921820009, 24.409890383666184 ], [ -77.742546581281999, 24.409865980581262 ], [ -77.742490156302352, 24.409844163244298 ], [ -77.742456598836654, 24.409831740015271 ], [ -77.742393515544123, 24.409811067078781 ], [ -77.742299650580094, 24.409784806260493 ], [ -77.742166253455323, 24.409743356480579 ], [ -77.742021486354034, 24.409701553303265 ], [ -77.741837152956023, 24.40964618491094 ], [ -77.741688185332478, 24.409603461430219 ], [ -77.741502311323771, 24.40955593616275 ], [ -77.741432016356157, 24.409536713529256 ], [ -77.741378266559451, 24.409525734892178 ], [ -77.741187149982707, 24.409500629058055 ], [ -77.741137335705304, 24.409491275004623 ], [ -77.74110035116675, 24.409482824044211 ], [ -77.74098995091326, 24.409454237527271 ], [ -77.740894087197717, 24.409423628858487 ], [ -77.740835738026746, 24.40940236524467 ], [ -77.740781177051346, 24.409377324009551 ], [ -77.740750893046467, 24.409359748024116 ], [ -77.740679719526497, 24.409311826742847 ], [ -77.74064042002945, 24.409280076900298 ], [ -77.740609040978256, 24.409248372040921 ], [ -77.740550655874699, 24.409181106144644 ], [ -77.740459544246988, 24.409084150100139 ], [ -77.7404112732752, 24.409038542899907 ], [ -77.740359574332302, 24.408996575884618 ], [ -77.740304144685993, 24.408959116162269 ], [ -77.740246413555923, 24.408924966968971 ], [ -77.740187196612396, 24.408894400709013 ], [ -77.740126692383086, 24.408868279582016 ], [ -77.740095453469081, 24.408857853052748 ], [ -77.740063658497931, 24.408849302250982 ], [ -77.739932520636074, 24.408819092631227 ], [ -77.739834060789391, 24.408792437318908 ], [ -77.739783561097369, 24.408781621403904 ], [ -77.739732657163486, 24.40877341253114 ], [ -77.739698949679081, 24.40876947701658 ], [ -77.739653935998518, 24.408767871234954 ], [ -77.739608556703615, 24.408770990361376 ], [ -77.739559901252875, 24.408779374291463 ], [ -77.739441350584812, 24.408811514457376 ], [ -77.739398461419853, 24.408821445267989 ], [ -77.739353991220071, 24.408829735121966 ], [ -77.739278216529243, 24.408837817197416 ], [ -77.739204132467734, 24.408839078590074 ], [ -77.739136934891249, 24.408834561462658 ], [ -77.739101513421275, 24.408829757208636 ], [ -77.739061389270745, 24.40882255696248 ], [ -77.739049129993631, 24.408819467661985 ] ], [ [ -77.739009479223739, 24.408800961813562 ], [ -77.739009385798965, 24.408800809795224 ], [ -77.739009025656117, 24.408800802425507 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 2594, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 76 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.706707424350171, 24.411033023882908 ], [ -77.706693264206834, 24.411013112705735 ], [ -77.706663120339144, 24.410985409986001 ], [ -77.706619371486482, 24.410937486867748 ], [ -77.706612798513561, 24.410928586916533 ], [ -77.706607937729572, 24.410917610854533 ], [ -77.706604763083334, 24.410905172188876 ], [ -77.706601656709068, 24.410877478443613 ], [ -77.706600961413059, 24.410847690584593 ], [ -77.706608088646547, 24.410613566684873 ], [ -77.706608347361311, 24.410567755534032 ], [ -77.706606794174206, 24.410538713629624 ], [ -77.706602009747016, 24.410512476685 ], [ -77.706597256760816, 24.410500463346285 ], [ -77.706575946925668, 24.410462987709852 ], [ -77.706570921749943, 24.41044910847797 ], [ -77.70656518870183, 24.410421090699266 ], [ -77.706563495377551, 24.41039876301766 ], [ -77.706564197860587, 24.410389007390396 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 2602, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 606 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.734306738200047, 24.412011412496192 ], [ -77.734306635217962, 24.412018591507657 ], [ -77.734299922107795, 24.412035898817969 ], [ -77.734276732997074, 24.412077304491028 ], [ -77.73426004409572, 24.412103211455367 ], [ -77.734218598523483, 24.412163234838964 ], [ -77.734169552305602, 24.41223073554881 ], [ -77.734130036314582, 24.412284207498281 ], [ -77.734088463181507, 24.412336661831532 ], [ -77.734030314334845, 24.412399279802496 ], [ -77.733974422954518, 24.412452749226457 ], [ -77.733948679035137, 24.412474932576735 ], [ -77.733924436200539, 24.412493135534621 ], [ -77.733899896921926, 24.412508518843861 ], [ -77.733874716246206, 24.41252179907341 ], [ -77.733848919326178, 24.412532294830108 ], [ -77.733822500771964, 24.412540051922488 ], [ -77.733781821462657, 24.412545179145255 ], [ -77.733741486208089, 24.412542978725799 ], [ -77.733664027176076, 24.412525076799067 ], [ -77.733636871105034, 24.412519946303522 ], [ -77.733458771116815, 24.412495735956945 ], [ -77.733429611802677, 24.412492872956602 ], [ -77.733400082382659, 24.412492558844555 ], [ -77.733370437079969, 24.412495065196865 ], [ -77.73334093281278, 24.412500279129461 ], [ -77.733311526461932, 24.412507287753826 ], [ -77.7331620243408, 24.412553822948567 ], [ -77.733107672672844, 24.412567136711335 ], [ -77.733006545728045, 24.412586734345158 ], [ -77.73296826671718, 24.412595657083475 ], [ -77.732952328807372, 24.412601461607434 ], [ -77.732941022611215, 24.412609070637746 ], [ -77.73293487723636, 24.412618849001756 ], [ -77.732933952869942, 24.412629822461913 ], [ -77.732937764421692, 24.412641004510892 ], [ -77.732944848536022, 24.412652506396508 ], [ -77.732984032150412, 24.41269886730403 ], [ -77.732994273842948, 24.412714360199974 ], [ -77.732995665333334, 24.412728545114348 ], [ -77.732988951324899, 24.412737545552513 ], [ -77.732962559720178, 24.412750388946797 ], [ -77.732921467185818, 24.412760886320466 ], [ -77.732813024361334, 24.412780767769526 ], [ -77.732753061816126, 24.412793168622425 ], [ -77.732693612208919, 24.412809442695011 ], [ -77.732637798982026, 24.412831579356709 ], [ -77.732607775488603, 24.412847966308007 ], [ -77.73255165683446, 24.412885490316267 ], [ -77.732524989446944, 24.412906161113206 ], [ -77.732393915365535, 24.413013415255868 ], [ -77.732287331155362, 24.413097994454873 ], [ -77.732184491123306, 24.413186178503992 ], [ -77.732132287327246, 24.413228971937823 ], [ -77.732077935659277, 24.413269280288105 ], [ -77.731992769082098, 24.413324936661517 ], [ -77.731879245386452, 24.413395558216347 ], [ -77.731792672047533, 24.41344208653971 ], [ -77.731734450437344, 24.413468924918934 ], [ -77.731704939881951, 24.413480322025926 ], [ -77.731616685795203, 24.413510321123955 ], [ -77.73148694211865, 24.413564490279498 ], [ -77.731446299640282, 24.413582909030428 ], [ -77.731407244484984, 24.413603559263361 ], [ -77.731379555712991, 24.413621151017903 ], [ -77.731353238668433, 24.41363998530084 ], [ -77.731304100822356, 24.41368166774712 ], [ -77.731211354260864, 24.413768074710159 ], [ -77.731119480861807, 24.413847334005979 ], [ -77.73106120265777, 24.413907380281984 ], [ -77.731040862104734, 24.413926506544922 ], [ -77.731017995489225, 24.413944454080386 ], [ -77.730983042939812, 24.413965439630346 ], [ -77.730943987784514, 24.413984033372728 ], [ -77.730870073504633, 24.414014317829672 ], [ -77.730698679439996, 24.414073770165587 ], [ -77.730532675267057, 24.414143256750176 ], [ -77.730387333243954, 24.414209405083479 ], [ -77.730340097131418, 24.414231710823366 ], [ -77.730280528048297, 24.414263867596915 ], [ -77.730224283630051, 24.41429735113951 ], [ -77.730158019403106, 24.414339044002542 ], [ -77.730122205369341, 24.414364669932866 ], [ -77.730101357268239, 24.414383192451446 ], [ -77.730043591103893, 24.414444737025647 ], [ -77.729972024121807, 24.414528522636278 ], [ -77.729920975559182, 24.414594634776225 ], [ -77.729879478782948, 24.414658474516258 ], [ -77.72984096980332, 24.4147222921384 ], [ -77.729803971790062, 24.414779807969666 ], [ -77.729767784057131, 24.414825507981984 ], [ -77.729747924102838, 24.414844698726615 ], [ -77.72972971884532, 24.414858962746081 ], [ -77.7297140261756, 24.414868349121129 ], [ -77.729700559531182, 24.414872434136804 ], [ -77.729691740769667, 24.414869952375511 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 2606, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 125 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.729696140716371, 24.415047591536482 ], [ -77.72967911584702, 24.415080867099284 ], [ -77.729670093168309, 24.41510456489257 ], [ -77.729662055043164, 24.415134036005551 ], [ -77.729655332949861, 24.41516776307618 ], [ -77.729650004143622, 24.415203985802577 ], [ -77.72964337457681, 24.415276439403968 ], [ -77.72963552958943, 24.415490887947414 ], [ -77.729630451413158, 24.415548853317642 ], [ -77.729626510503977, 24.415576315367719 ], [ -77.729621170019627, 24.415602167627238 ], [ -77.72961395564954, 24.415625770437025 ], [ -77.729579799905835, 24.415707631376392 ], [ -77.72957315057613, 24.415719918242626 ], [ -77.729565708033959, 24.415727500091659 ], [ -77.729558771243333, 24.415729111510547 ], [ -77.729552008725918, 24.415726305024133 ], [ -77.729544566183762, 24.41571595513329 ], [ -77.729538553759568, 24.415699947278775 ], [ -77.7295205344533, 24.415636638116347 ], [ -77.729511428231248, 24.415615613581231 ], [ -77.729502715471313, 24.415601280936944 ], [ -77.729472399127104, 24.415561787221691 ], [ -77.729448485075935, 24.41554074958642 ], [ -77.729436241936909, 24.41553166836805 ], [ -77.729423362790698, 24.415524450508578 ], [ -77.729402720403783, 24.415520758962696 ], [ -77.729379823245509, 24.415524440692863 ], [ -77.729357557602896, 24.415535426988086 ], [ -77.729339729637744, 24.415551001333952 ], [ -77.729296133498679, 24.41560587307643 ], [ -77.729283584034135, 24.415619062184366 ], [ -77.729279749864759, 24.415621852146081 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 2607, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 45 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.70770412671709, 24.415815460636836 ], [ -77.707704736674032, 24.415808234608456 ], [ -77.707702870873192, 24.415791277092339 ], [ -77.707697281555497, 24.415770947864988 ], [ -77.707692551027208, 24.415761567282914 ], [ -77.707687023693282, 24.415754347800622 ], [ -77.707669755378575, 24.415739355063003 ], [ -77.707663658512701, 24.415730161795821 ], [ -77.707663636953157, 24.415719489621516 ], [ -77.70766949756208, 24.415710327436081 ], [ -77.707682992952599, 24.415704467432466 ], [ -77.707719048633138, 24.415698478187856 ], [ -77.707736086979139, 24.415694110178084 ], [ -77.707748692139191, 24.415686462070767 ], [ -77.707768174801103, 24.415667740156334 ], [ -77.707783071563455, 24.415662137814358 ], [ -77.70781076572537, 24.415658907612947 ], [ -77.70787038691077, 24.415656631175672 ], [ -77.707887913940283, 24.415653145764566 ], [ -77.707896215271816, 24.415649317619746 ], [ -77.7079033326238, 24.415644229786153 ], [ -77.707929222968616, 24.415621785239324 ], [ -77.707943404671965, 24.415616233609988 ], [ -77.707951147250995, 24.415616173083901 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 2610, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 34 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.707559016459726, 24.416464717202111 ], [ -77.707524858021543, 24.416464587954177 ], [ -77.707508744940299, 24.416462363881781 ], [ -77.707502183645431, 24.416460242056235 ], [ -77.707497348014272, 24.416457249087841 ], [ -77.707494444659304, 24.416453081508077 ], [ -77.707491098434858, 24.416436536337699 ], [ -77.70749427757265, 24.416290486895463 ], [ -77.707496695837378, 24.416258701181274 ], [ -77.707502272578665, 24.416247652782811 ], [ -77.707507334585301, 24.416243490921964 ], [ -77.707513523977624, 24.416240807961302 ], [ -77.70752757542526, 24.416238455462803 ], [ -77.707544753907996, 24.416238858729646 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 2611, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 148 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.708326775092132, 24.416842309148006 ], [ -77.70831914210757, 24.416849105672114 ], [ -77.708259370005209, 24.416883944725893 ], [ -77.708233229928737, 24.41690174787783 ], [ -77.708207640519532, 24.416923414306311 ], [ -77.708158249348614, 24.416970524542606 ], [ -77.708132680600698, 24.416990619636994 ], [ -77.708104106089806, 24.417005895243914 ], [ -77.708075371678788, 24.417015662633688 ], [ -77.708045391304523, 24.417023160153899 ], [ -77.707951231693059, 24.417042112534904 ], [ -77.707924779901248, 24.417043755019936 ], [ -77.707898258939068, 24.417042029101946 ], [ -77.707872746784986, 24.417036888974327 ], [ -77.707849366333093, 24.41702803853136 ], [ -77.70783531578374, 24.417019913627882 ], [ -77.707809470354704, 24.417000466371118 ], [ -77.707797519168167, 24.416989458118213 ], [ -77.70778129379751, 24.41697084764116 ], [ -77.707749691964096, 24.416931836957591 ], [ -77.707730750088032, 24.416914734811389 ], [ -77.707709060265486, 24.416901675896341 ], [ -77.707684346713705, 24.416891164961562 ], [ -77.707657592189634, 24.416882378310195 ], [ -77.707573641931361, 24.416859216622193 ], [ -77.707547180258047, 24.416850297457195 ], [ -77.707467593117144, 24.416816656723192 ], [ -77.707446751304232, 24.416806455792806 ], [ -77.707402308952183, 24.416778387892862 ], [ -77.707387703243953, 24.416767324816426 ], [ -77.707376931545369, 24.416755483847208 ], [ -77.707371556026729, 24.416742333302761 ], [ -77.707371933319152, 24.416728907918074 ], [ -77.707378325730716, 24.416716567981826 ], [ -77.707393770465387, 24.416704364645831 ], [ -77.707417040424474, 24.416692283186656 ], [ -77.707476136095465, 24.416666401703345 ], [ -77.707506574610562, 24.416651548129536 ], [ -77.707534254399405, 24.416634866383642 ], [ -77.707557027590184, 24.416616243584755 ], [ -77.707574948081785, 24.416594245824303 ], [ -77.707585607490955, 24.416573650066887 ], [ -77.707589543908554, 24.416557693035482 ], [ -77.707586542638467, 24.416549191837884 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 2613, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 66 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.709126588308649, 24.417942349814741 ], [ -77.709115115026336, 24.417942580476421 ], [ -77.709089175274201, 24.417939729869047 ], [ -77.709073912897509, 24.417936298506593 ], [ -77.709058847251853, 24.417931023451221 ], [ -77.709044962890871, 24.417923633138386 ], [ -77.709032457443755, 24.417914863736112 ], [ -77.709001663195835, 24.41788936940112 ], [ -77.70899448026681, 24.417880858473513 ], [ -77.708988760693416, 24.417870975817582 ], [ -77.708975674036353, 24.417837661723929 ], [ -77.708964781065191, 24.417817223218826 ], [ -77.70894120927214, 24.417793008980507 ], [ -77.708920163541677, 24.417766718739962 ], [ -77.708905264982718, 24.417751008067203 ], [ -77.708899102539817, 24.417742632094669 ], [ -77.708894982865957, 24.417733061072994 ], [ -77.708892888893018, 24.417722666358664 ], [ -77.708892649042838, 24.417711972267799 ], [ -77.708894248044047, 24.417701497390986 ], [ -77.708897826033834, 24.417691784040056 ], [ -77.708903692032649, 24.417683438328361 ], [ -77.708912024805201, 24.417676946946266 ], [ -77.708922231463461, 24.417671839563148 ], [ -77.708956980993577, 24.417659127544301 ], [ -77.708967776946679, 24.417653922004533 ], [ -77.709025764994891, 24.417611711645396 ], [ -77.70908249450342, 24.417552393486694 ], [ -77.709086769585838, 24.417544815837118 ], [ -77.709088583284384, 24.417539013176377 ], [ -77.709088140413002, 24.417535984247206 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 2614, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 148 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.726672009924286, 24.417690130934471 ], [ -77.726683828160873, 24.417718092291413 ], [ -77.726687733137354, 24.41773701921116 ], [ -77.72668929620599, 24.417759782388575 ], [ -77.726687945139801, 24.417784991279746 ], [ -77.726668024998332, 24.417889216441626 ], [ -77.72666137477033, 24.417919396898007 ], [ -77.726645286841887, 24.417975635247593 ], [ -77.726641579494697, 24.417996571049397 ], [ -77.726640140393656, 24.418017788227488 ], [ -77.72664348841468, 24.418068361314845 ], [ -77.726643544110232, 24.418089062345629 ], [ -77.726641271372586, 24.418110114279468 ], [ -77.72663648604707, 24.418130752320266 ], [ -77.726631277615027, 24.418145589360755 ], [ -77.726606938660765, 24.418207613062563 ], [ -77.726596044791279, 24.418230700886408 ], [ -77.726582688639638, 24.41825189430422 ], [ -77.726560470607708, 24.418276156714267 ], [ -77.726535221660043, 24.418298111647541 ], [ -77.726426686309068, 24.418363690955566 ], [ -77.726407247664639, 24.418375882679644 ], [ -77.726389364003978, 24.418389551641731 ], [ -77.726373854590605, 24.418405651584852 ], [ -77.726360156180831, 24.418423470063395 ], [ -77.726328801384128, 24.418470480766377 ], [ -77.726318551606781, 24.418491559629356 ], [ -77.726309865796267, 24.418514125542057 ], [ -77.726286214053175, 24.418584076737531 ], [ -77.726276624537491, 24.418606366981052 ], [ -77.726248554879817, 24.418663031181758 ], [ -77.726221064635482, 24.418728268393018 ], [ -77.726210939723927, 24.418763753933998 ], [ -77.726204118815971, 24.418798634993074 ], [ -77.726197882711261, 24.418856249575697 ], [ -77.726197862048707, 24.418880933121795 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 2627, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 31 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.714989577757265, 24.425541617647294 ], [ -77.714987350834733, 24.425547643226942 ], [ -77.714979073757718, 24.425552369142611 ], [ -77.714966355409899, 24.425555461680943 ], [ -77.71494522074623, 24.425557110598479 ], [ -77.714743442963723, 24.425552652959279 ], [ -77.714706147608069, 24.425549439369345 ], [ -77.714696513176634, 24.425547325875701 ], [ -77.714693874824178, 24.425545137956124 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 2628, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 37 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.715610841828592, 24.425616677734492 ], [ -77.715533429509435, 24.425615833641697 ], [ -77.715505299664642, 24.425612705934515 ], [ -77.715494099469666, 24.425608771762882 ], [ -77.71548976150514, 24.42560570948875 ], [ -77.715484318612866, 24.425597843598748 ], [ -77.715475807973874, 24.425580051488652 ], [ -77.715472608174792, 24.425576533634992 ], [ -77.715462369177217, 24.42557140039829 ], [ -77.715434636387755, 24.425567431872999 ], [ -77.715332102681202, 24.425565167883224 ], [ -77.715315185607793, 24.425562847457272 ], [ -77.715299580074671, 24.425557829546158 ], [ -77.715293446377913, 24.425554269978132 ], [ -77.715286308364668, 24.425545631154765 ], [ -77.715285320218285, 24.425536583377223 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 2691, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 8238 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.71502651109256, 24.487043320300973 ], [ -77.715020102511701, 24.487043651390533 ], [ -77.715011693382337, 24.487037762820265 ], [ -77.715003144115798, 24.487026647867101 ], [ -77.714994515797471, 24.4870106515218 ], [ -77.714913818338886, 24.486810975398349 ], [ -77.714901242823231, 24.486776884899495 ], [ -77.714890834044027, 24.48674197769056 ], [ -77.714882964802115, 24.486707246238478 ], [ -77.714868524383931, 24.486610249263386 ], [ -77.714860275154692, 24.486566954259199 ], [ -77.714847354685972, 24.48652530163714 ], [ -77.714774697149167, 24.486363262587151 ], [ -77.714764471626253, 24.48633624842828 ], [ -77.714756293363905, 24.486308747838631 ], [ -77.714750618706262, 24.486281202279319 ], [ -77.714748462749569, 24.486243461403234 ], [ -77.714752888748976, 24.486205787552617 ], [ -77.714764069181001, 24.486169671887701 ], [ -77.714776812681606, 24.486144403097189 ], [ -77.714792650878366, 24.486120109605785 ], [ -77.714811283734036, 24.486097250861622 ], [ -77.714832338447664, 24.486075283212962 ], [ -77.714856022530114, 24.48605484514556 ], [ -77.714896750348487, 24.486028082717599 ], [ -77.714973461982169, 24.485988982224544 ], [ -77.715085419016035, 24.485943414291235 ], [ -77.715140566591302, 24.485919168994865 ], [ -77.715202552142529, 24.485885535250095 ], [ -77.715260630022314, 24.485848025614661 ], [ -77.715288459829807, 24.485827966841612 ], [ -77.715421435644686, 24.485722406432913 ], [ -77.715662672824337, 24.485535785792901 ], [ -77.71576281970718, 24.485445986237625 ], [ -77.715868623281324, 24.485362251035589 ], [ -77.715893914449836, 24.485340049445792 ], [ -77.715918180640614, 24.485317145595875 ], [ -77.71596342159495, 24.485268017902879 ], [ -77.71599087590667, 24.485232593597551 ], [ -77.71604311294044, 24.485159509833867 ], [ -77.716124846156546, 24.485055304327766 ], [ -77.716144131189111, 24.485028414152605 ], [ -77.716180480618732, 24.484973596339639 ], [ -77.716229224104367, 24.484888739989152 ], [ -77.7162836898584, 24.484774968328015 ], [ -77.716319834472159, 24.484693646032753 ], [ -77.716378994821781, 24.484583571893953 ], [ -77.716403127163588, 24.484529386657492 ], [ -77.716447611736442, 24.484412892285064 ], [ -77.716472105201007, 24.484355368984669 ], [ -77.716551785766711, 24.48419991565304 ], [ -77.716580389921972, 24.484135582186948 ], [ -77.716593293322731, 24.484103067988993 ], [ -77.716612122011071, 24.484043979783273 ], [ -77.716626542666333, 24.483984040494637 ], [ -77.71663752277405, 24.483925742790952 ], [ -77.71664888107253, 24.483843897540567 ], [ -77.716649685962977, 24.483817514797128 ], [ -77.716646673911839, 24.483791891540463 ], [ -77.716639402947919, 24.483767631113789 ], [ -77.716620980298089, 24.483734811061563 ], [ -77.716596803040545, 24.483704598129663 ], [ -77.716579090059767, 24.483685094123242 ], [ -77.716560061047119, 24.483666834407099 ], [ -77.716539545322647, 24.483650638155233 ], [ -77.716517807889403, 24.483636399088386 ], [ -77.716494591829203, 24.483625073727364 ], [ -77.71645227129784, 24.483614842231937 ], [ -77.716408263730401, 24.483615281250167 ], [ -77.716366721140062, 24.483626507689983 ], [ -77.716344352191186, 24.483638573740691 ], [ -77.716324167046764, 24.4836538208321 ], [ -77.716306411845139, 24.483672312731009 ], [ -77.716290926686312, 24.483693187750781 ], [ -77.716277003697698, 24.483715582570195 ], [ -77.716247959367948, 24.483765043607168 ], [ -77.716164667574802, 24.483898230228871 ], [ -77.716115951038631, 24.483981624675099 ], [ -77.716090066083694, 24.484019176561361 ], [ -77.716060753157677, 24.484050049169142 ], [ -77.716027141793035, 24.484071634564721 ], [ -77.715991400522796, 24.484084540999369 ], [ -77.715967538573878, 24.484088484790846 ], [ -77.71594386796616, 24.484087744921187 ], [ -77.715920927688757, 24.484082099020632 ], [ -77.715899274697136, 24.484071592870404 ], [ -77.715879029365595, 24.484057062808461 ], [ -77.715860427052689, 24.484038490030063 ], [ -77.715843251264445, 24.484016710055233 ], [ -77.715827288201837, 24.483992546141184 ], [ -77.715805029745695, 24.483948414713833 ], [ -77.715748876057319, 24.483801907191555 ], [ -77.715727800682473, 24.483757549239439 ], [ -77.715713046752242, 24.483733032916764 ], [ -77.715657411391703, 24.483652401585495 ], [ -77.7156470241721, 24.483634300467088 ], [ -77.715639246558368, 24.483615216664617 ], [ -77.715634517826715, 24.483595741258267 ], [ -77.715633767733451, 24.483575553772511 ], [ -77.715637281044522, 24.483555379364123 ], [ -77.715644805333355, 24.483535933379891 ], [ -77.715655529421241, 24.483516867548381 ], [ -77.715669049066236, 24.483498779491121 ], [ -77.715684769583689, 24.483481368353914 ], [ -77.715702363986821, 24.483465254649634 ], [ -77.715721400186055, 24.483450209467698 ], [ -77.715741990470661, 24.483437060158668 ], [ -77.715764256113303, 24.483426632438487 ], [ -77.715787553920194, 24.483418655702021 ], [ -77.715859616772292, 24.483400772833107 ], [ -77.715895947337344, 24.483388442694082 ], [ -77.71593013182715, 24.483370473161671 ], [ -77.715959933436693, 24.483345969844311 ], [ -77.715986134598595, 24.483317424601687 ], [ -77.716002108440989, 24.48329753629119 ], [ -77.716023117340526, 24.483266221209124 ], [ -77.716052650353831, 24.483216611183519 ], [ -77.716065215089685, 24.483198889341594 ], [ -77.716079573761192, 24.483183093624731 ], [ -77.7160957973352, 24.483169981077193 ], [ -77.716113110565701, 24.483159181353422 ], [ -77.716167944628992, 24.483129478429298 ], [ -77.716186891894907, 24.4831158802563 ], [ -77.71620511691539, 24.48309934874128 ], [ -77.716222708623604, 24.483080587786805 ], [ -77.716239748766256, 24.483060305383578 ], [ -77.716255791778906, 24.483038064145486 ], [ -77.716270519657996, 24.483014361955 ], [ -77.716283388024436, 24.482988640429657 ], [ -77.716294346572539, 24.482961446504344 ], [ -77.716303333318663, 24.482933322209149 ], [ -77.716311015711, 24.482893334537376 ], [ -77.716313528298841, 24.482851574418486 ], [ -77.716310913303047, 24.482809297597935 ], [ -77.716305800092442, 24.48277791944346 ], [ -77.716293397951617, 24.482724779068661 ], [ -77.716275828701299, 24.482672447223162 ], [ -77.716251641562295, 24.482623256364029 ], [ -77.716233570153705, 24.482596171093331 ], [ -77.716192578230675, 24.482544605234516 ], [ -77.71613407634608, 24.48247794255099 ], [ -77.716107761098172, 24.482441851159912 ], [ -77.716079649219665, 24.482386432958393 ], [ -77.716058878373673, 24.482325247756052 ], [ -77.716043215348392, 24.482260708944565 ], [ -77.716030807817674, 24.482194987925762 ], [ -77.716014686651576, 24.48209522334049 ], [ -77.716010526553504, 24.482060179937044 ], [ -77.715999304798942, 24.481898085265836 ], [ -77.715983118954199, 24.481769839437952 ], [ -77.715975360205064, 24.481691543409756 ], [ -77.715974899369357, 24.481647126667443 ], [ -77.715979270571509, 24.481605599137108 ], [ -77.715985315335061, 24.481580391563895 ], [ -77.715995327957231, 24.481556646586135 ], [ -77.716009509660594, 24.481534815493415 ], [ -77.716026991774342, 24.48151422544133 ], [ -77.716047058341147, 24.481494265718691 ], [ -77.716069501850214, 24.481475425222378 ], [ -77.716119198448382, 24.481438861815782 ], [ -77.716214842974978, 24.481376133429922 ], [ -77.716258974509913, 24.481350297112197 ], [ -77.716315595322314, 24.481324697879689 ], [ -77.716435755771329, 24.4812786148333 ], [ -77.716492381075312, 24.481251927421894 ], [ -77.716522208735967, 24.48123398211095 ], [ -77.716550117595219, 24.481214475268963 ], [ -77.716576165145213, 24.481192967050859 ], [ -77.716600287605544, 24.481169934907523 ], [ -77.716632784160936, 24.481131638196111 ], [ -77.716680458651382, 24.481062509017541 ], [ -77.71669765599917, 24.481033283868431 ], [ -77.716729084457711, 24.480973015305693 ], [ -77.716743025412597, 24.480941546762157 ], [ -77.716755376349425, 24.480909209966121 ], [ -77.716771830790492, 24.480848469613807 ], [ -77.716782326706237, 24.480784009347854 ], [ -77.716788077720736, 24.480717610620228 ], [ -77.716790496883789, 24.48055137819097 ], [ -77.716793278067925, 24.480488706591782 ], [ -77.716798561060088, 24.480426200108376 ], [ -77.716806901917494, 24.480364916663337 ], [ -77.71681901390248, 24.480305977133213 ], [ -77.716850089323088, 24.480201564852475 ], [ -77.716898758248561, 24.480067774227578 ], [ -77.71693723758375, 24.479971023125575 ], [ -77.71695574737015, 24.47991568967991 ], [ -77.716995831096497, 24.479773684690237 ], [ -77.717029481088701, 24.479626629444237 ], [ -77.717078159895664, 24.479464334604888 ], [ -77.717104243378259, 24.47939698680435 ], [ -77.717121254774767, 24.479357673318486 ], [ -77.717140801217042, 24.479319295934051 ], [ -77.7171573733374, 24.479291801168781 ], [ -77.717269451643816, 24.479129547593601 ], [ -77.717406124026098, 24.478940985259602 ], [ -77.717443575688606, 24.478886746903903 ], [ -77.717479009735001, 24.478831861827281 ], [ -77.717511678766925, 24.478776209846028 ], [ -77.717538937245934, 24.478718034000213 ], [ -77.7175540001966, 24.478671419395809 ], [ -77.717564451196623, 24.478622972597424 ], [ -77.717584291388022, 24.478498764689551 ], [ -77.717593635663576, 24.478452145916084 ], [ -77.717626846379588, 24.478310306877344 ], [ -77.717641232000574, 24.478257004371482 ], [ -77.717658149972308, 24.478205485789037 ], [ -77.717671050678163, 24.478172683090275 ], [ -77.717761140921326, 24.477962609734821 ], [ -77.717794156702951, 24.477881093359191 ], [ -77.717843688909426, 24.47775108237731 ], [ -77.717877006525001, 24.477655510893459 ], [ -77.717890780393233, 24.477607674434495 ], [ -77.717909781558163, 24.4775298303901 ], [ -77.717923367678495, 24.477484324799544 ], [ -77.71794153430848, 24.477440602331786 ], [ -77.717956520004066, 24.477413255137833 ], [ -77.717973400246578, 24.477386695266667 ], [ -77.718011973904865, 24.477336491813144 ], [ -77.718033620608253, 24.477312746852199 ], [ -77.718057158265353, 24.477290642769194 ], [ -77.718107906790692, 24.47724871236953 ], [ -77.718134591246198, 24.477228738889092 ], [ -77.718162132694502, 24.477209131681395 ], [ -77.718247754717481, 24.477153121699811 ], [ -77.718302694781983, 24.477113122380285 ], [ -77.718329159150215, 24.477092021434128 ], [ -77.718354927324128, 24.477070546032319 ], [ -77.718404318495104, 24.477025549628909 ], [ -77.718466345368853, 24.476962673513619 ], [ -77.718498411631231, 24.476933060696005 ], [ -77.718536999662575, 24.476903507555029 ], [ -77.71865149084384, 24.476824074511807 ], [ -77.718673957709115, 24.476806809615983 ], [ -77.718704115051494, 24.476781314927436 ], [ -77.718727599707975, 24.476754679705202 ], [ -77.718741507425193, 24.476725392236887 ], [ -77.718745806762172, 24.476695560251102 ], [ -77.718743929283207, 24.476676607844919 ], [ -77.718739490707392, 24.476658171331312 ], [ -77.718718131464883, 24.476605478043499 ], [ -77.718711460575619, 24.476585139000811 ], [ -77.71870616949856, 24.476553981677288 ], [ -77.718705494863784, 24.476519571176571 ], [ -77.718709596571372, 24.476483511597639 ], [ -77.718723578848767, 24.476428054798365 ], [ -77.718744529357821, 24.476371252228716 ], [ -77.718763599692991, 24.476327900558246 ], [ -77.718785744961338, 24.476285099108445 ], [ -77.718820694815818, 24.47623076967368 ], [ -77.718911691459141, 24.476105999357497 ], [ -77.718939839270263, 24.476071286226897 ], [ -77.718962713970669, 24.476047040663541 ], [ -77.718987018788994, 24.476023810539679 ], [ -77.719012689046551, 24.476002074962619 ], [ -77.719066517895001, 24.475960593807134 ], [ -77.719122729075593, 24.475921310316235 ], [ -77.719210505258616, 24.475866078106222 ], [ -77.71929692139237, 24.475808887745604 ], [ -77.719327486569895, 24.475791801762579 ], [ -77.719359548340648, 24.475775909458015 ], [ -77.71941409943463, 24.47575405283483 ], [ -77.719529445812071, 24.475716568794883 ], [ -77.719585815994478, 24.475696769218022 ], [ -77.719638284793575, 24.475673424566871 ], [ -77.719668422373047, 24.475656161148422 ], [ -77.719696542336365, 24.47563733858258 ], [ -77.719735289369524, 24.475605712545072 ], [ -77.719795419001386, 24.475549970837363 ], [ -77.719887401994939, 24.475460711942162 ], [ -77.71995439116229, 24.475398092586552 ], [ -77.719992243473399, 24.475353937705314 ], [ -77.720008231688823, 24.475330694372083 ], [ -77.720052381190101, 24.475257209960034 ], [ -77.720068764664219, 24.475232289725554 ], [ -77.720140001964594, 24.475129539491427 ], [ -77.720239838030352, 24.475001086455293 ], [ -77.720283002978036, 24.474951160850082 ], [ -77.720350968614113, 24.474878304129721 ], [ -77.720472368738243, 24.474763879969821 ], [ -77.720542967336428, 24.474693107194703 ], [ -77.720587591148174, 24.474643718628496 ], [ -77.72062917955256, 24.474591761152503 ], [ -77.720657731605542, 24.474550410347863 ], [ -77.720790711013706, 24.474344154038725 ], [ -77.720822316440334, 24.474290359293615 ], [ -77.720842852826024, 24.474249137570698 ], [ -77.720873234747273, 24.474182459046549 ], [ -77.720886872071603, 24.474156941751261 ], [ -77.72090282974429, 24.474132412929453 ], [ -77.720927855011496, 24.474101971216783 ], [ -77.720983557745626, 24.474042194800841 ], [ -77.721064576801126, 24.473942010863816 ], [ -77.721109379377609, 24.473894300539371 ], [ -77.721157606331957, 24.473849066713502 ], [ -77.721233571465618, 24.473783858844264 ], [ -77.721283056959678, 24.473739086924308 ], [ -77.721328864750959, 24.473690158294328 ], [ -77.721414936829902, 24.473587379002826 ], [ -77.721459843610972, 24.473538252453704 ], [ -77.721506662905284, 24.473491451969924 ], [ -77.721603167119596, 24.473403640410964 ], [ -77.721727165171529, 24.473287592780753 ], [ -77.721756786219728, 24.473257125517971 ], [ -77.721773544291338, 24.473235544808304 ], [ -77.721802515857576, 24.4731901807463 ], [ -77.721863515058601, 24.473083626154946 ], [ -77.721889620999121, 24.473045965534194 ], [ -77.721907183961193, 24.47302649912103 ], [ -77.722025214504683, 24.472915980627057 ], [ -77.722061323185869, 24.472891688669794 ], [ -77.722103270018053, 24.472876219520192 ], [ -77.722148587329229, 24.472868799723916 ], [ -77.722193602806428, 24.472868094945465 ], [ -77.722269996436495, 24.472874339020944 ], [ -77.722309362408865, 24.472871648271692 ], [ -77.722348534345159, 24.472861929360128 ], [ -77.722373614409562, 24.472851185166746 ], [ -77.722422532168352, 24.472822890184755 ], [ -77.722470559696688, 24.472787927595558 ], [ -77.722517235260554, 24.472747673429978 ], [ -77.722584894571128, 24.472680327758621 ], [ -77.722652107419009, 24.472609947082528 ], [ -77.722694911243977, 24.472561258391163 ], [ -77.722714378634493, 24.472535013093804 ], [ -77.722732210192888, 24.472507694267986 ], [ -77.722755354387886, 24.472463553907453 ], [ -77.722775031984142, 24.47241717409393 ], [ -77.722833202390404, 24.472268685154326 ], [ -77.722857308681057, 24.472215393171695 ], [ -77.722888306846571, 24.472164334067664 ], [ -77.722905872503631, 24.47213948353555 ], [ -77.722943851477211, 24.472090103778839 ], [ -77.722984700568119, 24.472041013438023 ], [ -77.723073902377521, 24.471946525863288 ], [ -77.723140868188679, 24.471873280672057 ], [ -77.723233444070317, 24.471777317993066 ], [ -77.723331475420622, 24.471686158735679 ], [ -77.723406800055542, 24.471619795271518 ], [ -77.723522524623675, 24.471499129729533 ], [ -77.723676483286965, 24.471348669246961 ], [ -77.723713572030107, 24.471316233507196 ], [ -77.723749072551783, 24.471290674749948 ], [ -77.723822342739652, 24.47124377204581 ], [ -77.723874066835393, 24.471207802528784 ], [ -77.723922089872204, 24.471171406204171 ], [ -77.723944210886046, 24.47115301385324 ], [ -77.72404363013348, 24.471053189005055 ], [ -77.724133008910982, 24.470968195719262 ], [ -77.72415523323113, 24.470945227932081 ], [ -77.7241768772396, 24.470921550445645 ], [ -77.724239101742683, 24.470845375937561 ], [ -77.724282149011088, 24.470795281889274 ], [ -77.724328111312616, 24.470747442005536 ], [ -77.724377998353589, 24.470703005866092 ], [ -77.724534357315306, 24.470575602229438 ], [ -77.724583852690856, 24.470530668914176 ], [ -77.724607362500151, 24.470506985626344 ], [ -77.724697780628446, 24.470410479003302 ], [ -77.724760672579791, 24.470335483201133 ], [ -77.724837230601565, 24.470234586615152 ], [ -77.724918455371252, 24.470113026897572 ], [ -77.724934927778605, 24.470090090841794 ], [ -77.724953154595724, 24.470067895551569 ], [ -77.724972867226327, 24.470045933281028 ], [ -77.725016151649967, 24.470003720839571 ], [ -77.725086590348056, 24.469942912267051 ], [ -77.72510909584085, 24.469921243503027 ], [ -77.725173414316842, 24.469854906090198 ], [ -77.725213021037746, 24.469810643790552 ], [ -77.725231298160509, 24.469788692104352 ], [ -77.725263597086538, 24.469744863942271 ], [ -77.72531619344646, 24.469654903492977 ], [ -77.725336237555382, 24.469632816053128 ], [ -77.725351744273823, 24.46962246813446 ], [ -77.725368246325559, 24.469615486395902 ], [ -77.725421085230622, 24.469604840040994 ], [ -77.725441192221581, 24.46959946249078 ], [ -77.725462592786641, 24.469591780042339 ], [ -77.725485172839612, 24.469582531014652 ], [ -77.725545946563528, 24.469553948309922 ], [ -77.725583271563579, 24.469533307240003 ], [ -77.72565459240721, 24.469483627208266 ], [ -77.725704003341136, 24.469452464038877 ], [ -77.72575558370643, 24.469426206646553 ], [ -77.72578213521129, 24.469415787577002 ], [ -77.725835196898515, 24.469400345799766 ], [ -77.7258612938558, 24.469395957574335 ], [ -77.725886702703633, 24.46939398054263 ], [ -77.725958420602666, 24.469393862803784 ], [ -77.725994936220644, 24.469388082152481 ], [ -77.726030707135223, 24.469375131693869 ], [ -77.726053102135282, 24.469362064312691 ], [ -77.726074562887433, 24.469346252141875 ], [ -77.726095385835677, 24.4693285348879 ], [ -77.726125172173909, 24.469298104278042 ], [ -77.726233850356948, 24.46917729751333 ], [ -77.726285934677136, 24.469107275454924 ], [ -77.726332011064699, 24.469037295056911 ], [ -77.72639520844325, 24.468954227573207 ], [ -77.726424588742901, 24.468917464297032 ], [ -77.726445776407218, 24.468893985931967 ], [ -77.726468120203265, 24.468870886944885 ], [ -77.726491932744835, 24.468848786285342 ], [ -77.726526387627572, 24.468821728302718 ], [ -77.72659915655548, 24.468770034972746 ], [ -77.726625769145741, 24.468749441197158 ], [ -77.72665171788104, 24.468728348660616 ], [ -77.726701593243931, 24.468683711487792 ], [ -77.726748478115283, 24.468635983635451 ], [ -77.726836065652094, 24.468534095529655 ], [ -77.726994684775079, 24.468362257638407 ], [ -77.727081709966527, 24.46826304217085 ], [ -77.727127697420883, 24.468217562665309 ], [ -77.727198455919165, 24.468154965053497 ], [ -77.72724056534642, 24.468111514072064 ], [ -77.727278130196666, 24.468068391766764 ], [ -77.727293918986078, 24.468045810194184 ], [ -77.727365123947067, 24.467925761815934 ], [ -77.727390963986252, 24.467873045249441 ], [ -77.727404484529572, 24.467834991419831 ], [ -77.727414960682452, 24.467795368524968 ], [ -77.727437467971868, 24.46768191173885 ], [ -77.727449623974309, 24.467638913568067 ], [ -77.727498825600719, 24.467505499605888 ], [ -77.727510055440078, 24.467479586853074 ], [ -77.727523548135679, 24.467454311856933 ], [ -77.727539365671177, 24.467430202815674 ], [ -77.727584377555146, 24.467370671795624 ], [ -77.727614890630392, 24.467336228531785 ], [ -77.727692591309165, 24.467267803945088 ], [ -77.727729141063151, 24.467231546298756 ], [ -77.727753931870041, 24.467198621364091 ], [ -77.72777513570405, 24.467163215684433 ], [ -77.727806714181241, 24.467099591402867 ], [ -77.727849122747429, 24.466985671201822 ], [ -77.727879898130794, 24.466911262065537 ], [ -77.727900234192177, 24.466865959501199 ], [ -77.72793037266996, 24.466806773261762 ], [ -77.727993446979326, 24.466686620678448 ], [ -77.728045072260386, 24.466598732419996 ], [ -77.728118904793575, 24.466486057864227 ], [ -77.728144060316495, 24.466441259637076 ], [ -77.728190992798517, 24.466349339371448 ], [ -77.728216272288918, 24.466305847702046 ], [ -77.728254006920778, 24.466253130457353 ], [ -77.728274174997168, 24.466228795514269 ], [ -77.728294941351606, 24.466205343630332 ], [ -77.728357388636908, 24.46614023891447 ], [ -77.728427051190579, 24.466051978242639 ], [ -77.72844679256724, 24.466030957207735 ], [ -77.728480599764652, 24.46600187574602 ], [ -77.728569144905535, 24.465936429963453 ], [ -77.728596733066254, 24.465918948531549 ], [ -77.728654509112076, 24.465885378124852 ], [ -77.728745257820407, 24.465838180686891 ], [ -77.72888235510581, 24.465770876290488 ], [ -77.72892579583629, 24.465748289399986 ], [ -77.729005294044001, 24.465700839255248 ], [ -77.72903159581719, 24.46568729807046 ], [ -77.729108956034551, 24.465651219035575 ], [ -77.72921062735837, 24.465596163021601 ], [ -77.729264063643086, 24.465571496800994 ], [ -77.729357966336337, 24.465537356395373 ], [ -77.729396446569879, 24.465521058056478 ], [ -77.729433264920118, 24.465501106427329 ], [ -77.729459079806432, 24.465483091005357 ], [ -77.729483264250504, 24.465462997097941 ], [ -77.729516427355833, 24.465428418398886 ], [ -77.729547141653725, 24.465390586233269 ], [ -77.729566941420913, 24.465364682857064 ], [ -77.729642195088871, 24.465256958933171 ], [ -77.729719770901866, 24.465161306009811 ], [ -77.729752677089067, 24.465115930044274 ], [ -77.729766317108314, 24.465093742053739 ], [ -77.729787281092129, 24.465052560655597 ], [ -77.729793495637239, 24.465033704615657 ], [ -77.729794456834597, 24.465006565682618 ], [ -77.72978470921548, 24.464983250937955 ], [ -77.729764694750926, 24.464966250157616 ], [ -77.729737874649828, 24.464954837262336 ], [ -77.729660356328992, 24.464933658235889 ], [ -77.729623219076828, 24.4649181758436 ], [ -77.729598950191104, 24.464904644386561 ], [ -77.729575333482259, 24.464889151361149 ], [ -77.729530445565871, 24.464852405704253 ], [ -77.729498251742697, 24.464822297806226 ], [ -77.729469749097078, 24.46478878189042 ], [ -77.729449846023613, 24.464754642090295 ], [ -77.729434917820228, 24.464717584047541 ], [ -77.729424154206512, 24.464679123704197 ], [ -77.729418735568686, 24.464650148226294 ], [ -77.729416464627676, 24.464620425398753 ], [ -77.729417539911026, 24.464590449906552 ], [ -77.729421630838857, 24.464560701717325 ], [ -77.729430209749822, 24.464520257676533 ], [ -77.729442155546451, 24.464479991873276 ], [ -77.729457857199293, 24.464441219927661 ], [ -77.729472074835314, 24.464413831479597 ], [ -77.729487755826923, 24.464387224711942 ], [ -77.729537438052034, 24.464311306267806 ], [ -77.729551473330019, 24.464284594817446 ], [ -77.729563539500958, 24.464257151551823 ], [ -77.729573591648943, 24.464229486693135 ], [ -77.729580920105036, 24.464200883149282 ], [ -77.729585377545462, 24.46417183397152 ], [ -77.72958811740709, 24.464103301368898 ], [ -77.729584690334306, 24.464026031969563 ], [ -77.729573273645329, 24.46388331812626 ], [ -77.72957458069412, 24.463861804493845 ], [ -77.729580359556323, 24.463848985111248 ], [ -77.729590475484713, 24.463838005478301 ], [ -77.729604290675468, 24.463828796911358 ], [ -77.729621506887895, 24.463822056881032 ], [ -77.729641340791034, 24.463817617765837 ], [ -77.729712027424142, 24.46381031436216 ], [ -77.729748097477724, 24.463804698623321 ], [ -77.729785592259361, 24.463795310167168 ], [ -77.729822490559684, 24.463781296165731 ], [ -77.729848959419513, 24.463767313234019 ], [ -77.729874236214997, 24.46375099422437 ], [ -77.729905962015877, 24.463725379147661 ], [ -77.730027338783799, 24.46361205933346 ], [ -77.730053999883111, 24.463582171909472 ], [ -77.730075496567864, 24.463549307345701 ], [ -77.730091981551652, 24.463514903920053 ], [ -77.730104170791776, 24.463480812834746 ], [ -77.730110511999314, 24.463456461002544 ], [ -77.730113817799563, 24.463425140166574 ], [ -77.730110830002928, 24.463396836524872 ], [ -77.730101357268282, 24.463373747976739 ], [ -77.730090076224926, 24.463361114973303 ], [ -77.730076283492025, 24.463352401879629 ], [ -77.730060903436097, 24.463347600520027 ], [ -77.730044249569019, 24.463347577625264 ], [ -77.730027165408941, 24.463352491823422 ], [ -77.730005002174252, 24.463366350515265 ], [ -77.729983198265685, 24.463386017115816 ], [ -77.72991952478003, 24.463448671882208 ], [ -77.72989497292501, 24.463469378545465 ], [ -77.72986837560606, 24.463484887281279 ], [ -77.729835531402657, 24.463493060703986 ], [ -77.729801980225091, 24.463491066408562 ], [ -77.729780509591507, 24.463484184903262 ], [ -77.729759628252722, 24.463473900257537 ], [ -77.729739118816468, 24.463461224745256 ], [ -77.729719652324263, 24.463446011185315 ], [ -77.729701948326621, 24.463427991380986 ], [ -77.729685878364506, 24.463407970735911 ], [ -77.729671322063666, 24.463386747295147 ], [ -77.729659122942095, 24.463363882786755 ], [ -77.729647075635839, 24.463325736015449 ], [ -77.729642330734478, 24.463285033194108 ], [ -77.729647379266396, 24.463136747714405 ], [ -77.729645199953467, 24.462992712322183 ], [ -77.729649325017292, 24.462959613750282 ], [ -77.729658820209849, 24.462929603520475 ], [ -77.729674183197844, 24.462904729906224 ], [ -77.729689626135894, 24.462890618502581 ], [ -77.729707557407252, 24.462880172726681 ], [ -77.729727233206916, 24.462873247851377 ], [ -77.729748407396514, 24.462870639473465 ], [ -77.729770814972952, 24.462872139904043 ], [ -77.729794304121, 24.462876676355638 ], [ -77.729843920769085, 24.462892473803084 ], [ -77.72989466210791, 24.462914126605554 ], [ -77.730021949790427, 24.462975432446786 ], [ -77.730050422791649, 24.462984292747567 ], [ -77.730068516658108, 24.46298488228949 ], [ -77.730085183101579, 24.462980746501394 ], [ -77.730107936529393, 24.462963879549054 ], [ -77.730124968587205, 24.462938916815244 ], [ -77.730137404863996, 24.462911071778908 ], [ -77.730142686957876, 24.462894892480385 ], [ -77.73014510881589, 24.462879016536629 ], [ -77.730143349914542, 24.462863163485714 ], [ -77.730137357253255, 24.462848077410591 ], [ -77.730127986028222, 24.462833705162634 ], [ -77.730115272172, 24.462820984613916 ], [ -77.730093311058269, 24.462808031026885 ], [ -77.730067749496868, 24.462799326071732 ], [ -77.730041310281436, 24.46279436442687 ], [ -77.729983103044262, 24.462789900745321 ], [ -77.729949784530376, 24.462785119806018 ], [ -77.729915335935871, 24.462776261126571 ], [ -77.729893062208362, 24.462767937205335 ], [ -77.729851331870194, 24.462747960609803 ], [ -77.729796638842416, 24.462718490812307 ], [ -77.729782242441701, 24.46270949230583 ], [ -77.729770717056596, 24.462699343330787 ], [ -77.729763053528899, 24.462687388111885 ], [ -77.729760409787033, 24.462673385434542 ], [ -77.729763014003012, 24.46265815379056 ], [ -77.729775814097508, 24.462634389707517 ], [ -77.729843278473652, 24.462543888600823 ], [ -77.729860047325076, 24.462519419659852 ], [ -77.729884589298607, 24.462479221083953 ], [ -77.729941137347453, 24.46237750706765 ], [ -77.729965777237368, 24.462318453635284 ], [ -77.729986579524422, 24.46225523819767 ], [ -77.730024401292809, 24.462126154679158 ], [ -77.730045113748332, 24.462064985794534 ], [ -77.730070666326583, 24.462002036793031 ], [ -77.730103776431335, 24.461929695076339 ], [ -77.730120920778518, 24.46188767533943 ], [ -77.730128982259856, 24.461858323086574 ], [ -77.73013411074183, 24.461828174406403 ], [ -77.730136768856781, 24.461797670028144 ], [ -77.730141617962659, 24.461646224912077 ], [ -77.730147455215402, 24.461590297951574 ], [ -77.73015754239772, 24.461534983410143 ], [ -77.730172951199791, 24.461482277251136 ], [ -77.730195083891743, 24.46143438313273 ], [ -77.73021274117697, 24.461407886940453 ], [ -77.730232634368946, 24.461383409601968 ], [ -77.730254155308202, 24.461360325590803 ], [ -77.73027755911626, 24.461339329120882 ], [ -77.730303108999607, 24.461321133213243 ], [ -77.730330341427432, 24.46130529713755 ], [ -77.73035887102256, 24.461291501998183 ], [ -77.730388654665802, 24.461280471445885 ], [ -77.730419367167059, 24.461272015778654 ], [ -77.730450729150263, 24.461266078577022 ], [ -77.73049893544335, 24.461263553569459 ], [ -77.730547274687098, 24.461268809640753 ], [ -77.730578892690176, 24.46127649750315 ], [ -77.730620322092776, 24.461290515054127 ], [ -77.730660068052529, 24.461309048669474 ], [ -77.730696387837739, 24.461332878417252 ], [ -77.730720660316734, 24.461354722008018 ], [ -77.730742728330014, 24.461379236147806 ], [ -77.730762962881784, 24.461405655483929 ], [ -77.730792362944399, 24.461454628954233 ], [ -77.7308431572838, 24.461559810686989 ], [ -77.730879037792903, 24.461630495993557 ], [ -77.730900199406037, 24.461668451123273 ], [ -77.730923390313393, 24.461702434765307 ], [ -77.730949204301425, 24.461730894964834 ], [ -77.730975949842374, 24.461754682113344 ], [ -77.731025601524777, 24.461793243106843 ], [ -77.731046614017572, 24.461803884398446 ], [ -77.731059167973683, 24.461804648929469 ], [ -77.731069698923747, 24.461799918648985 ], [ -77.731077234890648, 24.46178968619725 ], [ -77.731081688737831, 24.461774912347462 ], [ -77.731083514114488, 24.461756555419626 ], [ -77.731081315038679, 24.46163559096626 ], [ -77.731082390322058, 24.461584920059174 ], [ -77.731085640426755, 24.461531765831346 ], [ -77.731091413000811, 24.461477861766255 ], [ -77.731115120439441, 24.461321815978852 ], [ -77.731126141869666, 24.461264412955092 ], [ -77.731139702837211, 24.461212050927919 ], [ -77.731157065475003, 24.461167492041508 ], [ -77.731179757817372, 24.461133993142141 ], [ -77.731196325446192, 24.461120607644041 ], [ -77.731214336667648, 24.461112005600533 ], [ -77.731233096185733, 24.461107495251273 ], [ -77.731252440507077, 24.46110581245593 ], [ -77.731313350774897, 24.461107107668703 ], [ -77.731334994783353, 24.461105533625457 ], [ -77.731357137356781, 24.461101125486547 ], [ -77.731379599730474, 24.461093512840407 ], [ -77.731402227394156, 24.461083392354109 ], [ -77.731424460697468, 24.461070539163618 ], [ -77.731456027496506, 24.461045716696418 ], [ -77.731506896396127, 24.460996326047493 ], [ -77.731526648552574, 24.46097472524724 ], [ -77.731545143965974, 24.460951289556313 ], [ -77.731562176922068, 24.460926522668245 ], [ -77.731582036876389, 24.460890631154925 ], [ -77.731599059950995, 24.46085272566965 ], [ -77.731624546053936, 24.460785918215603 ], [ -77.731657487275399, 24.460670451779524 ], [ -77.731675918010097, 24.460612600365874 ], [ -77.731687279003467, 24.460566689628614 ], [ -77.731709786292924, 24.460446101804894 ], [ -77.73172098469125, 24.460404051318509 ], [ -77.731735674841104, 24.460363628020513 ], [ -77.731749165740041, 24.46033514461671 ], [ -77.731764291572787, 24.460307617086116 ], [ -77.731780822370652, 24.460281531954962 ], [ -77.731807593064445, 24.460244247731076 ], [ -77.731837727948943, 24.460211359401065 ], [ -77.731860273865991, 24.460193156788922 ], [ -77.731884249002576, 24.460177628840846 ], [ -77.731909161082044, 24.460164490183814 ], [ -77.731934908594695, 24.46015448982341 ], [ -77.731961447523133, 24.460147704623399 ], [ -77.732007078346314, 24.460145472326918 ], [ -77.7320520282465, 24.460154691793097 ], [ -77.732092475790481, 24.460175695819682 ], [ -77.732128218857355, 24.460211742897901 ], [ -77.732158027653398, 24.460256894130289 ], [ -77.732185704747309, 24.460305735581457 ], [ -77.732214928740163, 24.460353171405057 ], [ -77.732249470759456, 24.460394059154059 ], [ -77.732284100813615, 24.460419847440718 ], [ -77.732322175906972, 24.460438664104728 ], [ -77.732348467798715, 24.460448132126892 ], [ -77.732420165934784, 24.460468463964276 ], [ -77.732487761465009, 24.460484982915354 ], [ -77.732518962649735, 24.460487085193328 ], [ -77.732539055267694, 24.460482970583087 ], [ -77.732558422945218, 24.460473984999926 ], [ -77.732576921053507, 24.460460908518119 ], [ -77.732605288053591, 24.46043027052535 ], [ -77.732631987780479, 24.460392010842032 ], [ -77.732730680290857, 24.460244047396944 ], [ -77.732747234444858, 24.460214704573318 ], [ -77.732777373821008, 24.460152590327215 ], [ -77.732798738453411, 24.4600966373551 ], [ -77.73284487862135, 24.459943594058217 ], [ -77.732920143967434, 24.459638547013835 ], [ -77.732929462191862, 24.459608485295664 ], [ -77.732940970508963, 24.459579362283851 ], [ -77.732954726410924, 24.45955164815361 ], [ -77.732970281638387, 24.459524627422724 ], [ -77.7329877978881, 24.459498834864288 ], [ -77.733007435958541, 24.459474808522646 ], [ -77.733050625160729, 24.459429304583129 ], [ -77.733097068060914, 24.459386500659335 ], [ -77.733121251606718, 24.459366310108752 ], [ -77.733171648890774, 24.459328424607179 ], [ -77.733198574993096, 24.459312194151263 ], [ -77.733254805038328, 24.459284309063683 ], [ -77.733283784689405, 24.459272991324024 ], [ -77.733313473111195, 24.45926358862928 ], [ -77.733359324021635, 24.459254394446365 ], [ -77.733405496528931, 24.459250502209468 ], [ -77.733466195692642, 24.459250242181795 ], [ -77.733512986240854, 24.459248213475917 ], [ -77.733560007656124, 24.459242610616798 ], [ -77.733636156944442, 24.459226028540151 ], [ -77.733679148517282, 24.459212652651662 ], [ -77.73370568834406, 24.459201844330902 ], [ -77.733742073706281, 24.45918408067633 ], [ -77.733772573306823, 24.459163556472756 ], [ -77.733795085986173, 24.459139450750513 ], [ -77.733810431007825, 24.459114453733115 ], [ -77.733821105688378, 24.459091264640808 ], [ -77.733833261690791, 24.459069109932262 ], [ -77.733845461710672, 24.459054379101335 ], [ -77.733862011373134, 24.459040513393408 ], [ -77.73389947112048, 24.459021106960066 ], [ -77.733946593147053, 24.459004966411381 ], [ -77.734056428360205, 24.45897513595078 ], [ -77.734113243208668, 24.458957823633895 ], [ -77.734167620029453, 24.458936345956495 ], [ -77.734198335225656, 24.458920723000489 ], [ -77.734257366217932, 24.458886350200753 ], [ -77.734373251584501, 24.458812677114903 ], [ -77.7344961231491, 24.458745249579835 ], [ -77.73464496590681, 24.458657330430572 ], [ -77.734916640703247, 24.45848532860499 ], [ -77.734942882289346, 24.458472561825765 ], [ -77.734969962901872, 24.458461556375358 ], [ -77.73505572865534, 24.458429309476031 ], [ -77.73511549985939, 24.458408214393277 ], [ -77.735162165541766, 24.458394712491781 ], [ -77.735240440244056, 24.458375991193687 ], [ -77.735349038477068, 24.458358620737602 ], [ -77.735395020541532, 24.458350063479088 ], [ -77.735481486980859, 24.458330589070108 ], [ -77.73553591770056, 24.458321858456678 ], [ -77.735562372187374, 24.458320543590471 ], [ -77.735587993935908, 24.458321676926673 ], [ -77.735659900481153, 24.458332935877202 ], [ -77.7356842250624, 24.458334908176376 ], [ -77.735708687085932, 24.458334882009851 ], [ -77.735732875123233, 24.458333025824484 ], [ -77.735826108571629, 24.458321850279663 ], [ -77.735848285281051, 24.458321304871841 ], [ -77.735913189458643, 24.458323735084793 ], [ -77.735936072243902, 24.458321326949822 ], [ -77.735984402504457, 24.458309422012935 ], [ -77.736009347821593, 24.458300810782703 ], [ -77.7360342392398, 24.458290367896982 ], [ -77.736108038535335, 24.45825410684834 ], [ -77.736131766635282, 24.458241410368167 ], [ -77.736205061077641, 24.458198108059147 ], [ -77.736232525270836, 24.458185489255239 ], [ -77.736250390965154, 24.458181812041321 ], [ -77.736267661974836, 24.458181979670609 ], [ -77.736284234095152, 24.458185024799516 ], [ -77.736299451556107, 24.458190758538169 ], [ -77.736312606485114, 24.458199118740939 ], [ -77.736363516707215, 24.458247475274224 ], [ -77.73646064255577, 24.458315540884065 ], [ -77.736494217089458, 24.458344761494725 ], [ -77.736527645197825, 24.458383541040963 ], [ -77.736591558533675, 24.45846833267143 ], [ -77.736635223842981, 24.458515429840876 ], [ -77.736658933078303, 24.458537116103845 ], [ -77.736683916124647, 24.458557688653897 ], [ -77.736710658970679, 24.458576360862899 ], [ -77.736749787787844, 24.458597126383971 ], [ -77.736792086759593, 24.458613907244764 ], [ -77.736836113191657, 24.458627568574443 ], [ -77.736869914999204, 24.458636016242167 ], [ -77.736904570206207, 24.458642139185951 ], [ -77.736940022218903, 24.458645963572497 ], [ -77.737038726407377, 24.458649627689677 ], [ -77.737205544453943, 24.458650640003214 ], [ -77.737269270041907, 24.458653761166882 ], [ -77.737332391961985, 24.458661401762289 ], [ -77.737392999497573, 24.458674255198627 ], [ -77.737427785858614, 24.458684684151631 ], [ -77.737461654141455, 24.458696342925176 ], [ -77.737629684913699, 24.458761851344558 ], [ -77.737717668607544, 24.458791851937328 ], [ -77.737808656267745, 24.458817486824493 ], [ -77.737871022704638, 24.458830978050557 ], [ -77.737934458136763, 24.458841101988593 ], [ -77.73799715156045, 24.458848483361905 ], [ -77.73803413070911, 24.458851544828651 ], [ -77.738070949059363, 24.45885259639018 ], [ -77.73810768296795, 24.458851422173773 ], [ -77.738181316075142, 24.458843884620045 ], [ -77.738391835363672, 24.458810100543168 ], [ -77.738459678828875, 24.458797226678239 ], [ -77.738524864179141, 24.458781575085375 ], [ -77.738664585443544, 24.45873860740145 ], [ -77.738724675549477, 24.458725214289494 ], [ -77.738786794949704, 24.458716160711866 ], [ -77.738849114674224, 24.458710537386565 ], [ -77.738923752996243, 24.458705634455089 ], [ -77.739064621409227, 24.458692422869181 ], [ -77.739237278505129, 24.458680132012702 ], [ -77.739297162896932, 24.45867857511081 ], [ -77.739357353614224, 24.458680082950647 ], [ -77.739416709796615, 24.458684684151613 ], [ -77.739474043871311, 24.45869256760216 ], [ -77.73954724848214, 24.458707189721263 ], [ -77.739653057446191, 24.458731663491324 ], [ -77.739689104143594, 24.458737913991676 ], [ -77.739726068919197, 24.458742474305495 ], [ -77.73989880237194, 24.458756963951434 ], [ -77.73996880987869, 24.458764409927952 ], [ -77.740038301752421, 24.458774096401889 ], [ -77.740105472379469, 24.458787001341793 ], [ -77.740168291567286, 24.458804339030848 ], [ -77.740203386948806, 24.458817326555302 ], [ -77.740252579592109, 24.458839240904499 ], [ -77.740296492836421, 24.4588650842954 ], [ -77.740321993312364, 24.458885195609476 ], [ -77.740344769198131, 24.458906941500832 ], [ -77.740365151073632, 24.458929591763479 ], [ -77.740382895495429, 24.458953550340084 ], [ -77.740398158770404, 24.458978150805574 ], [ -77.740411070255973, 24.459002734094575 ], [ -77.740420740619996, 24.459027880773 ], [ -77.740426905757815, 24.459063132559454 ], [ -77.740425193568868, 24.459098951000737 ], [ -77.740415629206055, 24.459133652456874 ], [ -77.740403456135624, 24.459158032108874 ], [ -77.740387672736091, 24.459181465680395 ], [ -77.740368606892517, 24.459203422486503 ], [ -77.740346637693918, 24.459224354714333 ], [ -77.740321987922513, 24.459243707148385 ], [ -77.740295233398427, 24.459261998208984 ], [ -77.740266834059, 24.459279696436873 ], [ -77.740221433204553, 24.459304144747133 ], [ -77.739985575136828, 24.459419184780796 ], [ -77.739883433994066, 24.459470421586765 ], [ -77.739839484817097, 24.459487641433633 ], [ -77.73979795031164, 24.459496989326091 ], [ -77.739754675769433, 24.459500799785943 ], [ -77.739711047291038, 24.459499517639784 ], [ -77.739503946990496, 24.459471301427044 ], [ -77.739467982039784, 24.459467437816112 ], [ -77.739419658067391, 24.459464774582006 ], [ -77.73937126761966, 24.459465455722334 ], [ -77.73932400006602, 24.459469795232067 ], [ -77.739289577522683, 24.45947550438142 ], [ -77.739233913416086, 24.45948787202369 ], [ -77.739181755434061, 24.459504548918513 ], [ -77.739135997948438, 24.459527211339093 ], [ -77.739101912273284, 24.459553727551722 ], [ -77.739026715199159, 24.459634572201558 ], [ -77.73899315773339, 24.459663660039773 ], [ -77.738948409954176, 24.459691119024775 ], [ -77.738897846481748, 24.459715125700562 ], [ -77.738778711010454, 24.459765630550383 ], [ -77.738722469287168, 24.45978451272758 ], [ -77.738605366703354, 24.459818146905217 ], [ -77.738549221099746, 24.459836714262703 ], [ -77.738498060247693, 24.459859146034109 ], [ -77.738469482143586, 24.459875979059131 ], [ -77.738443636714536, 24.459894484263412 ], [ -77.738420580554447, 24.459915027154839 ], [ -77.738400462783659, 24.459937082773823 ], [ -77.738383558286642, 24.459961142552668 ], [ -77.738369781723449, 24.459986621840365 ], [ -77.738359059432227, 24.460012940892494 ], [ -77.738350530826921, 24.460050269340154 ], [ -77.738348697365439, 24.460088991940591 ], [ -77.738353391062759, 24.46012773251838 ], [ -77.738365606354009, 24.460170248363156 ], [ -77.738396228125424, 24.460261736492232 ], [ -77.738425669510534, 24.460363950190235 ], [ -77.738442052984681, 24.460415602815683 ], [ -77.738478726706191, 24.46051739691454 ], [ -77.738529759997462, 24.460653338393772 ], [ -77.738579248186454, 24.460775953065045 ], [ -77.738599229413339, 24.46081882193166 ], [ -77.738615718888695, 24.460849356801443 ], [ -77.738639210731677, 24.460888988423299 ], [ -77.738665197196241, 24.460926293716135 ], [ -77.7386952368593, 24.460959867080163 ], [ -77.738734831902093, 24.460991895009606 ], [ -77.738778726281822, 24.461019711033607 ], [ -77.7388685452338, 24.461071397732933 ], [ -77.738923302940236, 24.461108026746356 ], [ -77.738948660584128, 24.461127103331279 ], [ -77.738972566550459, 24.46114626985856 ], [ -77.738994489934967, 24.461166025933327 ], [ -77.739013802815265, 24.46118689650875 ], [ -77.739030320138383, 24.461208360719397 ], [ -77.739043298997615, 24.461230970501678 ], [ -77.739054405767774, 24.461267982144797 ], [ -77.739055730782852, 24.461306820481951 ], [ -77.739051783585481, 24.461332700979909 ], [ -77.739045131560815, 24.461359102336782 ], [ -77.739036379274978, 24.461385573191148 ], [ -77.738995959578787, 24.461497410097767 ], [ -77.73898479441813, 24.461542706416584 ], [ -77.738977959137131, 24.461588718190576 ], [ -77.738975565126879, 24.461633279381022 ], [ -77.738977966323617, 24.461674084128685 ], [ -77.738982760632325, 24.461698081431944 ], [ -77.738991565020399, 24.461719853003441 ], [ -77.739004981359187, 24.461738609782504 ], [ -77.739040401032526, 24.461762885084877 ], [ -77.739085854887563, 24.461776233719043 ], [ -77.739135800319048, 24.461779652441013 ], [ -77.739185065725877, 24.461773230378704 ], [ -77.739228521727739, 24.461756151485421 ], [ -77.739248549667025, 24.461741610670646 ], [ -77.739265861999158, 24.461724160545959 ], [ -77.739282294880653, 24.461703644115445 ], [ -77.739314781554611, 24.461656457375454 ], [ -77.739428350166079, 24.461455835853666 ], [ -77.739521012285934, 24.461311711864536 ], [ -77.739556316076587, 24.461251745397337 ], [ -77.739572457005664, 24.461220193426158 ], [ -77.739601756456921, 24.461154617599792 ], [ -77.739620401888985, 24.461102235902541 ], [ -77.739636399985898, 24.461047544222847 ], [ -77.739674380756085, 24.460899114649028 ], [ -77.739688401661041, 24.460836476603362 ], [ -77.739720213700181, 24.460674384856983 ], [ -77.739730573072038, 24.460613032922836 ], [ -77.739751560412017, 24.460460354942732 ], [ -77.73976375504202, 24.460406066105151 ], [ -77.739782832563719, 24.460355209905465 ], [ -77.739810606675675, 24.460310228787961 ], [ -77.739847939760551, 24.460272962561785 ], [ -77.739891735325614, 24.460240580389616 ], [ -77.739993164104348, 24.460171677686777 ], [ -77.740101416485956, 24.460095123808397 ], [ -77.740156574841009, 24.460061033432744 ], [ -77.740264968258174, 24.460005897294195 ], [ -77.740287776483228, 24.459992650683891 ], [ -77.740316903457995, 24.459973602546427 ], [ -77.74033733563914, 24.459954450559181 ], [ -77.740345816633749, 24.459934368035032 ], [ -77.740341876622907, 24.459916162929744 ], [ -77.740326528007969, 24.459902739688406 ], [ -77.740303826682421, 24.459893761423096 ], [ -77.740249059094509, 24.459880741301905 ], [ -77.740220477397116, 24.459870042609285 ], [ -77.740194969734588, 24.459853656043848 ], [ -77.740181496801966, 24.459839149352561 ], [ -77.740171112277295, 24.459822589432122 ], [ -77.740163925754999, 24.459804825047371 ], [ -77.740160942449947, 24.459775781397273 ], [ -77.740167918766446, 24.459746378772891 ], [ -77.740177988880788, 24.459727956133914 ], [ -77.740191331557696, 24.459710159845717 ], [ -77.740207079024657, 24.459692574520112 ], [ -77.740302084849091, 24.459609463258239 ], [ -77.740323221309382, 24.459592698066338 ], [ -77.740346707762498, 24.459576573944787 ], [ -77.740398820828759, 24.459544794234699 ], [ -77.740486324822257, 24.459499247800359 ], [ -77.740627196828484, 24.459434707098524 ], [ -77.740676103807544, 24.459415581195557 ], [ -77.740732858468874, 24.459401433422308 ], [ -77.740793634887723, 24.459393451074899 ], [ -77.740856642721752, 24.459390887598179 ], [ -77.74092024254557, 24.459393349680614 ], [ -77.740982873087177, 24.459400770270936 ], [ -77.741123111781121, 24.459427086174681 ], [ -77.741321998785025, 24.459459645178228 ], [ -77.741387355713499, 24.459472420034373 ], [ -77.741450059916971, 24.459487704396118 ], [ -77.741508600429128, 24.459506676561414 ], [ -77.741543361637341, 24.459521149765521 ], [ -77.741576406165038, 24.459536829885717 ], [ -77.741608104118171, 24.459553866559883 ], [ -77.741667789083948, 24.459590408521315 ], [ -77.741721498456499, 24.459631887710994 ], [ -77.741746244347624, 24.459654327695805 ], [ -77.74179345979897, 24.459700273108734 ], [ -77.741837172719002, 24.45974808938794 ], [ -77.741877099240114, 24.45979757701414 ], [ -77.741914202356298, 24.459847296845705 ], [ -77.741994291655487, 24.459967573701995 ], [ -77.742010960793877, 24.459990016897841 ], [ -77.742111356510023, 24.46010096294232 ], [ -77.742192556126852, 24.460199506157341 ], [ -77.742257972344163, 24.460287061175695 ], [ -77.742294645167348, 24.460327785408165 ], [ -77.742319560840073, 24.460349452552293 ], [ -77.74234632524562, 24.460369462235835 ], [ -77.742374606007388, 24.4603882968965 ], [ -77.742414715784875, 24.460410762094973 ], [ -77.742622514974684, 24.460507826686428 ], [ -77.742681209098734, 24.460534399930719 ], [ -77.742766820341942, 24.460570438729466 ], [ -77.742794514503828, 24.460584534039349 ], [ -77.742821251959938, 24.460600639225049 ], [ -77.742847021930487, 24.460618163097301 ], [ -77.742895593837943, 24.460657793974253 ], [ -77.742918252942644, 24.460679744799165 ], [ -77.742939699321724, 24.460702734900952 ], [ -77.742959738040781, 24.46072725816224 ], [ -77.742978218182756, 24.460752837052826 ], [ -77.742994818150919, 24.460780062759625 ], [ -77.743009324146144, 24.460808495366198 ], [ -77.743026251101043, 24.460854561375722 ], [ -77.74303784026651, 24.460903274218431 ], [ -77.743045051941635, 24.460952940463915 ], [ -77.743048544591431, 24.461001932099343 ], [ -77.743048735932604, 24.461033484125203 ], [ -77.743046117343596, 24.461064900407447 ], [ -77.743040678044522, 24.461095827706316 ], [ -77.743030466894695, 24.461137554976322 ], [ -77.743016941859736, 24.461178871754942 ], [ -77.742999533407854, 24.461218561328753 ], [ -77.742983840738162, 24.461246597259624 ], [ -77.742966398150273, 24.461273859655481 ], [ -77.74286997837757, 24.461405055304695 ], [ -77.74276312467282, 24.461564826347416 ], [ -77.742710695399609, 24.461635177219524 ], [ -77.742693665138432, 24.461656805707669 ], [ -77.742674849026514, 24.461677821748985 ], [ -77.742631204378426, 24.461717064711785 ], [ -77.742531855199587, 24.461793775416691 ], [ -77.7424577944943, 24.461857368036437 ], [ -77.742405067878678, 24.461897698457243 ], [ -77.742319891420109, 24.461953479734294 ], [ -77.742260666391729, 24.461988920403556 ], [ -77.742167680878367, 24.462038394066454 ], [ -77.74200749868676, 24.462116425943705 ], [ -77.741874605516898, 24.462174013374373 ], [ -77.741778676224342, 24.462221270240626 ], [ -77.741615782018926, 24.462296654366241 ], [ -77.741451664308101, 24.462370271447583 ], [ -77.741339743206822, 24.462415723628627 ], [ -77.741286583603269, 24.462440606333896 ], [ -77.741227956852882, 24.46247518340029 ], [ -77.741077459398355, 24.462572358422278 ], [ -77.74103954869679, 24.46259865812754 ], [ -77.740994989563717, 24.462636440436114 ], [ -77.740918439626824, 24.4627176167184 ], [ -77.74087342684453, 24.462756752241887 ], [ -77.740723481853919, 24.462876157133056 ], [ -77.740696749787702, 24.46289588840639 ], [ -77.740558156807353, 24.462991513614202 ], [ -77.740531227111759, 24.463011896554356 ], [ -77.740504975644228, 24.463032706316099 ], [ -77.740454460680823, 24.463076488571868 ], [ -77.74040683020786, 24.463122862014117 ], [ -77.740362593570012, 24.463172077665039 ], [ -77.740243741966296, 24.463327627287068 ], [ -77.740174046174985, 24.463408956028104 ], [ -77.740147032037797, 24.463442949830199 ], [ -77.740131907103319, 24.463466995856606 ], [ -77.74011887344686, 24.463491815393599 ], [ -77.740084448208563, 24.463563137397497 ], [ -77.740065215278321, 24.46359898481278 ], [ -77.740017380887778, 24.463677019811463 ], [ -77.739988067961718, 24.463731283526762 ], [ -77.739962910642191, 24.463787458107383 ], [ -77.739952379692127, 24.463816297233308 ], [ -77.739923779130081, 24.463906816231972 ], [ -77.739876927496468, 24.46404742619475 ], [ -77.739856795352622, 24.464101277647089 ], [ -77.739817209293008, 24.464191991045169 ], [ -77.739794065098025, 24.464250535829368 ], [ -77.739782756206907, 24.464289557221203 ], [ -77.739775411581149, 24.464327680805965 ], [ -77.739771944982479, 24.464363316228741 ], [ -77.739772208188839, 24.464387498629232 ], [ -77.739779688460217, 24.464420237871675 ], [ -77.739796949588381, 24.464446288621467 ], [ -77.739827798633598, 24.464464345892601 ], [ -77.739867267013892, 24.464471511890977 ], [ -77.739910964662585, 24.464468438295871 ], [ -77.739937958138555, 24.4644618945389 ], [ -77.739994872700009, 24.464442941108608 ], [ -77.740152103027569, 24.464379075059508 ], [ -77.740220846604643, 24.464352756102087 ], [ -77.740402180527937, 24.464291394512536 ], [ -77.740578497360346, 24.464223049220102 ], [ -77.740615279777927, 24.464211111316743 ], [ -77.740691829714905, 24.464190013114028 ], [ -77.740759531246283, 24.464176580516177 ], [ -77.740830737105611, 24.464166667146863 ], [ -77.741126517294347, 24.464138937672722 ], [ -77.74119762433898, 24.464129572953823 ], [ -77.741265149800583, 24.464116864800946 ], [ -77.741327562949891, 24.464099336509481 ], [ -77.74136226127608, 24.464085959503269 ], [ -77.741395129734002, 24.464071107426928 ], [ -77.74142657436218, 24.464054648635827 ], [ -77.741517729109049, 24.464002797174615 ], [ -77.741576715185545, 24.463966460092177 ], [ -77.741691237807856, 24.463890272382066 ], [ -77.741721910783184, 24.463873384292178 ], [ -77.741754434288069, 24.463858020331251 ], [ -77.741816277007189, 24.463836336619735 ], [ -77.741883382057239, 24.463819786219254 ], [ -77.741953747093447, 24.463806533468723 ], [ -77.742025624892577, 24.463795017442258 ], [ -77.742067259111039, 24.463788906196367 ], [ -77.742136717747144, 24.463781514482935 ], [ -77.742208489545092, 24.463777011588217 ], [ -77.74228165283337, 24.463774786715028 ], [ -77.742428875030384, 24.463775554504782 ], [ -77.742571982943332, 24.463781959293982 ], [ -77.7427200917775, 24.463794197321874 ], [ -77.742858271532796, 24.463802909567338 ], [ -77.742918089449262, 24.463809259571374 ], [ -77.74322825795393, 24.463849268024006 ], [ -77.743525846451377, 24.463900268357488 ], [ -77.743689410800016, 24.46393180657461 ], [ -77.743791940913269, 24.463949406843941 ], [ -77.743865653970531, 24.463958327583544 ], [ -77.743941602036216, 24.463963485422358 ], [ -77.744018664911209, 24.463965223780821 ], [ -77.744095803244619, 24.463963655496986 ], [ -77.744292613343617, 24.463955672621012 ], [ -77.744689551918228, 24.463947352866079 ], [ -77.744881567708518, 24.46394170279137 ], [ -77.744947423202007, 24.463941896578344 ], [ -77.745010415764668, 24.463945643125705 ], [ -77.745068490051125, 24.463953296482739 ], [ -77.745119139761826, 24.463965451909687 ], [ -77.745159266607246, 24.463982979402104 ], [ -77.745177689257076, 24.463997015458158 ], [ -77.745190658234847, 24.464012685209152 ], [ -77.74519876373364, 24.464039148146821 ], [ -77.745193136686709, 24.464066405849827 ], [ -77.745182074832314, 24.464083517136494 ], [ -77.745166294127728, 24.46410000208914 ], [ -77.745146634497715, 24.464116195950776 ], [ -77.745123375318371, 24.464131408612147 ], [ -77.745068462203378, 24.464160129915538 ], [ -77.745021037444573, 24.464179427625282 ], [ -77.744969775981218, 24.464197339390306 ], [ -77.744897096884827, 24.464219714783912 ], [ -77.744819464477985, 24.464239028020149 ], [ -77.744744875563271, 24.464252438534409 ], [ -77.744666345739475, 24.464262423851448 ], [ -77.744305099027784, 24.464298109170155 ], [ -77.744080720531031, 24.464317802608115 ], [ -77.744009113124761, 24.464327073281748 ], [ -77.743941130420708, 24.464339638322173 ], [ -77.74386444843141, 24.46435941270234 ], [ -77.74382769835313, 24.464370579534847 ], [ -77.74365300028488, 24.46443428123796 ], [ -77.743483894229286, 24.464488731871732 ], [ -77.743432864531258, 24.464510012363192 ], [ -77.74338891086272, 24.46453646865503 ], [ -77.743359305085903, 24.464563939660273 ], [ -77.743335360491997, 24.464594942960154 ], [ -77.743315602047346, 24.464627587299926 ], [ -77.743288872676089, 24.464677175216544 ], [ -77.743273917523169, 24.464702044392379 ], [ -77.743239103314338, 24.464750669074821 ], [ -77.743197726014031, 24.464803313359067 ], [ -77.743155843860578, 24.464861059004889 ], [ -77.743079371178752, 24.464982362141907 ], [ -77.743063105383868, 24.465012789706467 ], [ -77.743054105163068, 24.465040480558184 ], [ -77.743052958014445, 24.465059539376561 ], [ -77.743055983540302, 24.46507625723423 ], [ -77.743061851335767, 24.46509043871173 ], [ -77.743069736747287, 24.465101172937818 ], [ -77.743078652526535, 24.465107816415987 ], [ -77.743089948841202, 24.465110378958752 ], [ -77.743087122741343, 24.465131615191599 ], [ -77.743075434761181, 24.465189079412344 ], [ -77.743073407263594, 24.465204314020834 ], [ -77.743073940862857, 24.465218621403249 ], [ -77.743077763194393, 24.465230987663876 ], [ -77.743088217787658, 24.465242771750823 ], [ -77.743103195398405, 24.465248757824536 ], [ -77.743120285846686, 24.465248810154669 ], [ -77.743133270095797, 24.465245112705517 ], [ -77.743188476061576, 24.465222681893355 ], [ -77.74320306470176, 24.465217713802783 ], [ -77.743223792428651, 24.465213432544797 ], [ -77.743245264858928, 24.465211626337961 ], [ -77.743296513745861, 24.465214294356468 ], [ -77.743317292676707, 24.465213890433368 ], [ -77.743338250372275, 24.465210897804514 ], [ -77.743358261243529, 24.465204998400758 ], [ -77.743414431999938, 24.465176893850106 ], [ -77.743436477555321, 24.465170326417841 ], [ -77.743460618880292, 24.465166208689972 ], [ -77.743485943286458, 24.465164120390234 ], [ -77.743511611747365, 24.465163763891162 ], [ -77.743536803202929, 24.465164949495946 ], [ -77.743593853409948, 24.465172693538946 ], [ -77.743615968135643, 24.465173800648444 ], [ -77.743637893316759, 24.465172092560003 ], [ -77.74365853660197, 24.465167220951123 ], [ -77.743686253221739, 24.465154243893295 ], [ -77.743712069904717, 24.465138453270889 ], [ -77.7437420493807, 24.465114115659436 ], [ -77.743757337808518, 24.465104214628798 ], [ -77.743774218051044, 24.465098381450368 ], [ -77.743791825030584, 24.465096743679645 ], [ -77.743808902902444, 24.465099115708082 ], [ -77.743842584335724, 24.465109486075335 ], [ -77.743860397927804, 24.465111963581499 ], [ -77.743879086478969, 24.465109401038745 ], [ -77.743896811137844, 24.465101526166425 ], [ -77.743911406964585, 24.465088727351521 ], [ -77.743920788071094, 24.465073819792682 ], [ -77.743926822953185, 24.465057816568741 ], [ -77.743930068566286, 24.465042914729786 ], [ -77.74393102347544, 24.465031196854579 ], [ -77.743930009277463, 24.465024390658154 ] ], [ [ -77.743930009277463, 24.465024390658154 ], [ -77.743962610037471, 24.46502567765399 ], [ -77.743975038229422, 24.465023888615278 ], [ -77.743978837204764, 24.465019232862719 ], [ -77.743980644615093, 24.465004268059445 ], [ -77.743980175694517, 24.464988781587572 ], [ -77.743978907273345, 24.46498458781139 ], [ -77.74397612339429, 24.46498174807946 ], [ -77.743963800305238, 24.464979425108432 ], [ -77.743931169900847, 24.464979305730107 ] ], [ [ -77.743930009277463, 24.465024390658154 ], [ -77.743864574195555, 24.465023748795542 ], [ -77.743841915989165, 24.465020981836133 ], [ -77.74383556310346, 24.465017487159948 ], [ -77.743833705387445, 24.465015001475287 ], [ -77.743831623092618, 24.465008728391975 ], [ -77.743831091289977, 24.464997855973468 ], [ -77.743834489616717, 24.464984533028208 ], [ -77.74383941058781, 24.46498021414995 ], [ -77.743847057945842, 24.464978063705068 ], [ -77.743870745621592, 24.464977196985814 ], [ -77.743931169900847, 24.464979305730107 ] ], [ [ -77.743931169900847, 24.464979305730107 ], [ -77.743930009277463, 24.465024390658154 ] ], [ [ -77.743931169900847, 24.464979305730107 ], [ -77.743931272308771, 24.464961551066963 ], [ -77.743933149787708, 24.464950247737665 ], [ -77.743937703347896, 24.464941067870175 ], [ -77.743946132240211, 24.464936363872638 ], [ -77.743967749299202, 24.464934939509057 ], [ -77.744050975515336, 24.464937176626599 ], [ -77.744066573861886, 24.464935522500546 ], [ -77.744074461070113, 24.464932022915974 ], [ -77.744079098173643, 24.464925091612198 ], [ -77.744081925171798, 24.464910754760663 ], [ -77.744082671671805, 24.464837651019867 ], [ -77.744082594416696, 24.464831891418662 ], [ -77.744087964545471, 24.464822081126194 ], [ -77.744094451280148, 24.464816755702024 ], [ -77.744114017485344, 24.464808818669152 ], [ -77.744125905789829, 24.464806277379477 ], [ -77.744150484594314, 24.464803812949835 ], [ -77.744195319510141, 24.464804352605952 ], [ -77.744486786887208, 24.464810676394393 ], [ -77.744521420534696, 24.464812907790627 ], [ -77.744545472028094, 24.464818138366265 ], [ -77.744564601652101, 24.464826886517876 ], [ -77.744570798230896, 24.46483246296339 ], [ -77.744574041149093, 24.464837610954607 ], [ -77.744575626675569, 24.464842386092318 ], [ -77.744575252976418, 24.464848081097831 ], [ -77.744575051753785, 24.464855322299197 ], [ -77.744577058590153, 24.464857668166999 ], [ -77.744609992625058, 24.464858610929493 ], [ -77.744620249588976, 24.464858389343537 ], [ -77.744640829093825, 24.464852112164163 ], [ -77.744679716264187, 24.46483166901497 ], [ -77.744695004691991, 24.464825966649663 ], [ -77.744726740374361, 24.464818982192142 ], [ -77.744769700506197, 24.464813687838959 ], [ -77.744795987008004, 24.46480814409902 ], [ -77.744807485443687, 24.46480380313794 ], [ -77.74483778112662, 24.464786516152085 ], [ -77.744849602057442, 24.464782482630696 ], [ -77.744876797654342, 24.464777807245344 ], [ -77.744952222900579, 24.464773211990629 ], [ -77.744980881853039, 24.464769932352333 ], [ -77.74500569691449, 24.464762984686399 ], [ -77.745035989902476, 24.464745696059641 ], [ -77.745060508519842, 24.464738464663942 ], [ -77.745089072250948, 24.464735094264334 ], [ -77.745135844832859, 24.464733785188692 ], [ -77.745317347639372, 24.464738529259211 ] ], [ [ -77.745317347639372, 24.464738529259211 ], [ -77.745317245231419, 24.464732958533176 ], [ -77.745320853763914, 24.46472174267312 ], [ -77.745329495556959, 24.464709164588175 ], [ -77.745355741634626, 24.464685736951093 ], [ -77.745378948711661, 24.464657512088237 ], [ -77.745407914888006, 24.464638069725602 ], [ -77.745426570201488, 24.464618035372716 ], [ -77.745432039144944, 24.464613933980036 ], [ -77.745439179853136, 24.464610601189491 ], [ -77.745455901093848, 24.464607105684163 ], [ -77.745473870992768, 24.464606915986561 ], [ -77.745490867117965, 24.464609928253644 ], [ -77.745498230608334, 24.464612918443777 ], [ -77.74550432567753, 24.464617209534115 ], [ -77.745509003205242, 24.464623299480614 ], [ -77.745512244326775, 24.464630730392436 ], [ -77.745515837587917, 24.46464824307429 ], [ -77.745519508104167, 24.464707018226957 ], [ -77.745523237909254, 24.46472433956551 ], [ -77.745531368560876, 24.464737879218518 ], [ -77.745548642265462, 24.464757165392477 ], [ -77.745553533592158, 24.464764503900668 ], [ -77.745560346415317, 24.464782647798188 ], [ -77.745562576033819, 24.4647981269365 ], [ -77.745562055909303, 24.464805254485803 ], [ -77.745560131717951, 24.464855417965449 ], [ -77.7455624978804, 24.464885794865754 ], [ -77.745565632102412, 24.464898417904397 ], [ -77.745570536005573, 24.464907662370123 ], [ -77.745576175628941, 24.464912063016872 ], [ -77.745582576125315, 24.464913363096393 ], [ -77.74558925420115, 24.464912769475188 ], [ -77.745595770580238, 24.464910604311257 ], [ -77.745621467787259, 24.464893664845629 ], [ -77.745643001302909, 24.46488744899251 ], [ -77.745682471479853, 24.464884099038386 ], [ -77.745796083210479, 24.464883128475609 ], [ -77.745821627703933, 24.464880323900779 ], [ -77.745833008460252, 24.464877611721526 ], [ -77.745842993234618, 24.464873578203083 ], [ -77.745850212096215, 24.464868882379648 ], [ -77.745869021021647, 24.464852103987536 ], [ -77.745896830167936, 24.46483264039578 ], [ -77.745920874474805, 24.464806504689179 ], [ -77.745955255695677, 24.464779301111975 ], [ -77.745978897557308, 24.464755246341838 ], [ -77.745983259776352, 24.464752864494994 ], [ -77.745985777753546, 24.464752935639318 ] ], [ [ -77.745317347639372, 24.464738529259211 ], [ -77.745316308288608, 24.464769904551858 ], [ -77.745317548861976, 24.464776343632181 ], [ -77.745320444132119, 24.464780827684972 ], [ -77.745328763429995, 24.464784039457122 ], [ -77.745343015201982, 24.464785078704143 ], [ -77.745353543457114, 24.464784353438858 ], [ -77.745361777414999, 24.464781185002796 ], [ -77.745365656340411, 24.464773797435921 ], [ -77.745366948117805, 24.464764191554139 ], [ -77.745366482790487, 24.464751093440935 ], [ -77.745363342280214, 24.464743324842189 ], [ -77.745358591090692, 24.464740491646136 ], [ -77.745351586926418, 24.464739061556678 ], [ -77.745317347639372, 24.464738529259211 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 2696, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 644 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.717023371646007, 24.497146214740294 ], [ -77.717015848255954, 24.497145565680071 ], [ -77.717001420414221, 24.497139523901939 ], [ -77.716977289869021, 24.497122082772279 ], [ -77.716968702873231, 24.49711693937159 ], [ -77.716959576888271, 24.497113665480789 ], [ -77.716950472462869, 24.497112448296438 ], [ -77.716942251081349, 24.497113278826568 ], [ -77.716935415800407, 24.497115974779543 ], [ -77.716912793526589, 24.497132581292792 ], [ -77.716906299605384, 24.497134270146042 ], [ -77.716899551460955, 24.497134197392974 ], [ -77.716893149167944, 24.497132353224011 ], [ -77.716887704479021, 24.497128602759929 ], [ -77.716883376395984, 24.497122193945572 ], [ -77.716880513465171, 24.49711391889058 ], [ -77.716877655924222, 24.497082995537436 ], [ -77.71687907975398, 24.497060725715553 ], [ -77.716883212004305, 24.497039558631748 ], [ -77.716891398351436, 24.497021695683252 ], [ -77.716915290843076, 24.496997459061955 ], [ -77.716920270204696, 24.496989112880449 ], [ -77.716923966772114, 24.496979569949019 ], [ -77.716928699995321, 24.496958027641071 ], [ -77.716932638209528, 24.49690993448456 ], [ -77.716935041202902, 24.496783415707899 ] ], [ [ -77.716935041202902, 24.496783415707899 ], [ -77.716969276896705, 24.496784366405784 ], [ -77.716976348434613, 24.496783240772952 ], [ -77.716981242456256, 24.496780616748694 ], [ -77.716984781818525, 24.496772993181359 ], [ -77.716985923577241, 24.496759930280131 ], [ -77.716985129466522, 24.49675028024496 ], [ -77.716981636816683, 24.496742732698891 ], [ -77.716973573538681, 24.496739211110022 ], [ -77.716963091995964, 24.49673803070748 ], [ -77.716948798901484, 24.496738451695954 ], [ -77.716940321500147, 24.496741299703274 ], [ -77.716937196261256, 24.496745652642055 ], [ -77.716935624209526, 24.496752030412363 ], [ -77.716935041202902, 24.496783415707899 ] ], [ [ -77.716935041202902, 24.496783415707899 ], [ -77.716931748877414, 24.496780025730118 ], [ -77.716930174130681, 24.496764920831708 ], [ -77.716933022688465, 24.496740072705855 ], [ -77.716947172950853, 24.496673290839855 ], [ -77.716951107571759, 24.496647837779982 ], [ -77.716952384976096, 24.496620858528182 ], [ -77.716950236205946, 24.496593317679583 ], [ -77.716944519327456, 24.496566296725899 ], [ -77.716935879331089, 24.496539830818087 ], [ -77.716924427607836, 24.49651506030597 ], [ -77.716910382448376, 24.496493121452847 ], [ -77.716894950290083, 24.496473927609916 ], [ -77.716857578577645, 24.49643298536748 ], [ -77.716841619108266, 24.49640883855281 ], [ -77.716834623028859, 24.496380117251757 ], [ -77.716836579559569, 24.496348762918899 ], [ -77.716845934614938, 24.496316946715528 ], [ -77.71685800168413, 24.496282819555198 ], [ -77.71686854521063, 24.496244411365861 ], [ -77.716890934820768, 24.496132999348006 ], [ -77.716902647953759, 24.496090086104406 ], [ -77.716930382539829, 24.496007377358552 ], [ -77.716944919077775, 24.495952328902277 ], [ -77.716949639724547, 24.495914789570509 ], [ -77.716949490604264, 24.495877356497253 ], [ -77.716944385478499, 24.495841435712261 ], [ -77.716937467552498, 24.495816243253497 ], [ -77.716928785335284, 24.495791975336438 ], [ -77.716897300282852, 24.495722554206278 ], [ -77.716879633116179, 24.495675463600936 ], [ -77.716845327353781, 24.495571633846659 ], [ -77.716825234735836, 24.495520839267968 ], [ -77.716787150659385, 24.495440275984787 ], [ -77.716777301530584, 24.495412504353354 ], [ -77.716769617341654, 24.495384217714577 ], [ -77.716733226589469, 24.495210179907549 ], [ -77.716723532869239, 24.495153937605441 ], [ -77.716720868466126, 24.495126326951048 ], [ -77.71672018574651, 24.495099306499633 ], [ -77.716721701204392, 24.495073357737976 ], [ -77.716726550310312, 24.495047821790319 ], [ -77.716739787884322, 24.495010781659392 ], [ -77.716756421988435, 24.494972748297837 ], [ -77.716785037821808, 24.494897268480269 ], [ -77.716809498048676, 24.494828483661987 ], [ -77.716827484117317, 24.4947681530411 ], [ -77.716833736391663, 24.494736632360656 ], [ -77.716837670114302, 24.494704279491309 ], [ -77.71684120588327, 24.494610947666196 ], [ -77.716841025321898, 24.494548078704213 ], [ -77.716838837924158, 24.49448482468334 ], [ -77.71683420171901, 24.494423143439803 ], [ -77.716820933602236, 24.494290424109547 ], [ -77.716813711147353, 24.494242131287631 ], [ -77.716802157914458, 24.494195077731622 ], [ -77.716791896459, 24.494165123997554 ], [ -77.716746626758564, 24.494044655013447 ], [ -77.716678488645982, 24.493877212351105 ], [ -77.716669410271678, 24.493849737116857 ], [ -77.716663127454595, 24.493820692329773 ], [ -77.716660949040048, 24.493789740372645 ], [ -77.716662730399264, 24.493757777194205 ], [ -77.716677601110462, 24.493653451285159 ], [ -77.716694860442033, 24.493516090341206 ], [ -77.71670408793662, 24.493458892471043 ], [ -77.716713695418576, 24.493414249355553 ], [ -77.716722683961308, 24.493387750085329 ], [ -77.716727669609853, 24.493382184716424 ] ], [ [ -77.716709471539872, 24.493350181373692 ], [ -77.716702599428203, 24.493350198543375 ], [ -77.71669193552745, 24.493343056261086 ], [ -77.716679658252474, 24.493328639264181 ], [ -77.71666660483308, 24.493307866392836 ], [ -77.716621892088128, 24.493225094506343 ], [ -77.716580257869623, 24.493157067391795 ], [ -77.716570648591045, 24.493134868812593 ], [ -77.716564354994176, 24.493113650384384 ], [ -77.716558761184885, 24.493068124270927 ], [ -77.7165536066518, 24.493040533595547 ], [ -77.716517106305162, 24.492915681033804 ], [ -77.716510376127047, 24.492882635291835 ], [ -77.716502591326758, 24.492810191971291 ], [ -77.716496511528959, 24.492695047569011 ], [ -77.716490688649301, 24.492619706173468 ], [ -77.716485741627039, 24.492583988828049 ], [ -77.716478580257558, 24.492550446788268 ], [ -77.716468381684166, 24.492519925330871 ], [ -77.716461290383307, 24.49250476923697 ], [ -77.716437311653465, 24.492462824287898 ], [ -77.716414807957207, 24.492429478411257 ], [ -77.716405555309819, 24.492412495235456 ], [ -77.716399188051099, 24.49239415585544 ], [ -77.716395793317645, 24.492374847756974 ], [ -77.716395196836274, 24.492355108842577 ], [ -77.71639640147707, 24.492340304246028 ], [ -77.716414305799006, 24.492207759293944 ], [ -77.716432390682314, 24.492115201407781 ], [ -77.716434879015623, 24.492089846340875 ], [ -77.716434746065005, 24.49206216389269 ], [ -77.71642830334774, 24.492011309037704 ], [ -77.716401676384422, 24.491883380893547 ], [ -77.716386003477666, 24.491831115804288 ], [ -77.716374346041789, 24.491803325395164 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 2704, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 38 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.718249157885538, 24.513051449775819 ], [ -77.718258860589387, 24.513051339429442 ], [ -77.718269439150177, 24.513047304186056 ], [ -77.718274865872786, 24.513042697616783 ], [ -77.718279351161002, 24.513036511114947 ], [ -77.718285376161617, 24.513021088587134 ], [ -77.71828770549314, 24.51300483154559 ], [ -77.718290155198929, 24.512918678181059 ], [ -77.718291773064735, 24.512904098324782 ], [ -77.71829496028738, 24.512890994597768 ], [ -77.718301079611081, 24.512880659228351 ], [ -77.718305521780167, 24.51287717977636 ], [ -77.718327159500419, 24.512866883638456 ], [ -77.718331715755539, 24.512863489190369 ], [ -77.718337899757984, 24.512853860007766 ], [ -77.71834121454134, 24.512841665984563 ], [ -77.718342696761582, 24.512814463802783 ], [ -77.718340038646659, 24.512800992259443 ], [ -77.718336607082279, 24.512794560541003 ], [ -77.718331605262762, 24.512788955979431 ], [ -77.71832516973204, 24.512784530852187 ], [ -77.718298454733841, 24.51277452813504 ], [ -77.71829497735537, 24.512772980893288 ], [ -77.718294188636207, 24.512771288167464 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 2707, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 157 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.720003210107635, 24.517203284463346 ], [ -77.72000292623882, 24.517179993282376 ], [ -77.719995020165953, 24.517125535213708 ], [ -77.719977319761611, 24.517042921224 ], [ -77.719955063102105, 24.516918108030552 ], [ -77.719946848907185, 24.516883066975939 ], [ -77.719937103982971, 24.516854132128149 ], [ -77.719893266197104, 24.5167594763391 ], [ -77.719883465577325, 24.516730989355999 ], [ -77.719860572910648, 24.516640269706091 ], [ -77.719851649944914, 24.516611466391542 ], [ -77.719840328477432, 24.516585061099736 ], [ -77.719823226351025, 24.516557296591831 ], [ -77.719804712971325, 24.516531577024033 ], [ -77.719743063390027, 24.516462871064828 ], [ -77.719735189656561, 24.516450926676029 ], [ -77.719732061722752, 24.516441499647687 ], [ -77.719731417630683, 24.516432005598048 ], [ -77.719733898777477, 24.516419749805319 ], [ -77.719742830726346, 24.51639344745627 ], [ -77.719745381043467, 24.516377633841522 ], [ -77.719745557113271, 24.516360416876584 ], [ -77.719743146933354, 24.516342653935663 ], [ -77.719729028112027, 24.516296679349377 ], [ -77.719714124163161, 24.516256951572082 ], [ -77.719671628460318, 24.516166228310531 ], [ -77.71964361090491, 24.516110830693279 ], [ -77.719598928702695, 24.516014197227829 ], [ -77.71956307334645, 24.515925511391078 ], [ -77.719553309557611, 24.515903736939489 ], [ -77.719538560118693, 24.515876303303632 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 2711, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 355 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.724097813816385, 24.522811547740183 ], [ -77.724098319568029, 24.522797193780583 ], [ -77.724088323115538, 24.522764629919429 ], [ -77.724000336726732, 24.522565080871903 ], [ -77.723982774662915, 24.52252240957975 ], [ -77.723965951014279, 24.522478321916608 ], [ -77.723942435815076, 24.522404156467914 ], [ -77.723923656534055, 24.522328787111903 ], [ -77.723909160420291, 24.522256176055507 ], [ -77.723898376145343, 24.522190407290584 ], [ -77.723884035440122, 24.52209591734578 ], [ -77.723877630452151, 24.522042461769686 ], [ -77.723872121982822, 24.521955568417951 ], [ -77.723874196192824, 24.521903879762355 ], [ -77.723881690837231, 24.521852714151152 ], [ -77.723898402196468, 24.521785782170703 ], [ -77.723940332858987, 24.521633066460637 ], [ -77.724015158030596, 24.521373517326197 ], [ -77.724031855915101, 24.521321669058846 ], [ -77.724106764629994, 24.521115358691105 ], [ -77.724112288370677, 24.521090791625067 ], [ -77.724112687222686, 24.521054166181862 ], [ -77.724102574887524, 24.521019751512007 ], [ -77.724081969331522, 24.520989473165798 ], [ -77.724053940996356, 24.520961819149036 ], [ -77.724032525159984, 24.520944011090176 ], [ -77.724009112368734, 24.520927267965504 ], [ -77.723983797844028, 24.520911378095686 ], [ -77.723956143208, 24.520897195555627 ], [ -77.723903924140487, 24.52087920277863 ], [ -77.723845830989404, 24.520867266982709 ], [ -77.723784600023023, 24.520860177753654 ], [ -77.723628892339832, 24.520847925662206 ], [ -77.72356902321944, 24.520840323987109 ], [ -77.723510551877581, 24.520829823360426 ], [ -77.723435226344435, 24.520811321397844 ], [ -77.723398348705373, 24.520800859181705 ], [ -77.723280893981936, 24.520763860149184 ], [ -77.723066576616404, 24.520705460174092 ], [ -77.722873931107088, 24.520648879476749 ], [ -77.722806665258645, 24.520634139509852 ], [ -77.722767132199607, 24.520629658265364 ], [ -77.722739745261507, 24.520630488640098 ], [ -77.722729463144773, 24.520633265001063 ], [ -77.722726104337482, 24.520637032743739 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 2712, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 82 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.724315656169978, 24.52391655625793 ], [ -77.724315286065334, 24.523897331456869 ], [ -77.724309971632124, 24.523872698735609 ], [ -77.72430512971269, 24.523859396737205 ], [ -77.724284167525553, 24.523819958215999 ], [ -77.724278761464163, 24.523805475246366 ], [ -77.724275449375753, 24.523791236640992 ], [ -77.724272175914834, 24.523747405231177 ], [ -77.724272040269227, 24.523638648413101 ], [ -77.72426768523674, 24.523595764993257 ], [ -77.724259786350444, 24.523571511430223 ], [ -77.724241833519486, 24.523543262185591 ], [ -77.72423701765122, 24.523531414908973 ], [ -77.724231443604921, 24.523504201148143 ], [ -77.724229210393162, 24.523474089308625 ], [ -77.724228746862437, 24.523442440976158 ], [ -77.724231376231231, 24.523326591535035 ], [ -77.724230289269784, 24.523265580722168 ], [ -77.724225076346158, 24.523213497858965 ], [ -77.724222338281209, 24.52320261085665 ], [ -77.724219248974947, 24.523196411778645 ], [ -77.724216105769329, 24.52319556262772 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 2757, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 84 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.730009447876029, 24.629552583927307 ], [ -77.730011771878381, 24.629553512229624 ], [ -77.73001755074057, 24.629558121867117 ], [ -77.730025485559494, 24.629569032294505 ], [ -77.730032594826653, 24.629584756504258 ], [ -77.730038472503537, 24.629604330104954 ], [ -77.730042920062502, 24.629626609056093 ], [ -77.730047081957238, 24.629674323054889 ], [ -77.730046603155174, 24.629697186669681 ], [ -77.730044274721948, 24.629717651965386 ], [ -77.73004013079354, 24.629735144882829 ], [ -77.7300344264915, 24.629751145077972 ], [ -77.730026778235171, 24.629765383077721 ], [ -77.730019812698458, 24.629774486381599 ], [ -77.729980868934234, 24.629816557714992 ], [ -77.729955383729632, 24.629839193476283 ], [ -77.729920271280136, 24.629879567923005 ], [ -77.729915009847488, 24.629887657019438 ], [ -77.729910837173037, 24.62989820240432 ], [ -77.729909046830656, 24.62990914709858 ], [ -77.729909584023204, 24.629919813336276 ], [ -77.72991253858217, 24.629929489055176 ], [ -77.729918150357747, 24.629937387883999 ], [ -77.729926504689885, 24.62994281490905 ], [ -77.729936898197721, 24.629945899967744 ], [ -77.729948462210359, 24.629946807193797 ], [ -77.729960398125584, 24.629945567617611 ], [ -77.729971939680354, 24.629942079165865 ], [ -77.729989404726069, 24.629931565631423 ], [ -77.730023020582365, 24.629904461531623 ], [ -77.730052794344147, 24.629864019316258 ], [ -77.730060567466282, 24.629856673311366 ], [ -77.730067868074556, 24.629852796978906 ], [ -77.730076311339928, 24.629851402250448 ], [ -77.730085719395916, 24.629852743900837 ], [ -77.730095600864047, 24.629856696992384 ], [ -77.730140361219711, 24.629884499283193 ], [ -77.730179961652382, 24.629913387626367 ], [ -77.730188486664403, 24.629917906609617 ], [ -77.730194837753487, 24.629920003600663 ], [ -77.730198120197372, 24.629919478536294 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 2778, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 52 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.756462792979448, 24.694106068291749 ], [ -77.756463268189265, 24.69406455729241 ], [ -77.756460247154948, 24.694038180447656 ], [ -77.7564571398824, 24.694026247286466 ], [ -77.75645263662787, 24.694016290061874 ], [ -77.75644683710442, 24.694009022103618 ], [ -77.756434346928714, 24.69399788143685 ], [ -77.756429116038788, 24.693991456577166 ], [ -77.756425361979225, 24.693983691572235 ], [ -77.756421234220525, 24.693965233156206 ], [ -77.756415662869088, 24.693903951293475 ], [ -77.756409940600747, 24.693886874636096 ], [ -77.756404941476191, 24.693880188597255 ], [ -77.756398085533917, 24.693875171619379 ], [ -77.756389771625976, 24.693871418883898 ], [ -77.756351701024215, 24.69386057937044 ], [ -77.756343176910505, 24.693857008639771 ], [ -77.75633602811746, 24.693852245488952 ], [ -77.756330648107223, 24.693845889995927 ], [ -77.756323810131306, 24.693829778856447 ], [ -77.756313996036809, 24.693794211100908 ], [ -77.756309966194451, 24.693786685220761 ], [ -77.756290548211282, 24.693764328759023 ], [ -77.756284536685399, 24.693754955073462 ], [ -77.756280492469983, 24.69374520186912 ], [ -77.756276178760004, 24.693725031913736 ], [ -77.756275771822686, 24.693701599736023 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 2781, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 44 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.756841135529953, 24.695861439966073 ], [ -77.756835973810752, 24.695860669512662 ], [ -77.756831952951586, 24.695858139435519 ], [ -77.756806769580862, 24.695828466524123 ], [ -77.756775064441257, 24.695805205313711 ], [ -77.756755190113878, 24.695778353835554 ], [ -77.756727067455614, 24.695758893447589 ], [ -77.756710231230542, 24.695738225147672 ], [ -77.756705150359309, 24.695733813015341 ], [ -77.75669028503799, 24.695727215220298 ], [ -77.756645180627558, 24.695717599284379 ], [ -77.756630107795402, 24.695711181042586 ], [ -77.756624945177492, 24.695706839914713 ], [ -77.756608113443974, 24.695686167525405 ], [ -77.756585713952404, 24.69567022638412 ], [ -77.756580752557099, 24.695664310891516 ], [ -77.756576646357942, 24.695655561707589 ], [ -77.756573919072707, 24.695645079009225 ], [ -77.756571552910231, 24.695621941820168 ], [ -77.756572573398131, 24.695585796742051 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 2789, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 99 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.770854579079284, 24.71456887929244 ], [ -77.770830342532065, 24.714528931287795 ], [ -77.770821910944818, 24.71450981982705 ], [ -77.770807932260681, 24.714463425968489 ], [ -77.770786449050618, 24.714373293569654 ], [ -77.770779866196222, 24.71435629560964 ], [ -77.770755880279836, 24.714309336999115 ], [ -77.770742764876687, 24.714275971853059 ], [ -77.770722223101103, 24.714230180956154 ], [ -77.77071823458121, 24.714214191594152 ], [ -77.770716768530676, 24.71419760407748 ], [ -77.77071770816849, 24.714181125091013 ], [ -77.770721128953042, 24.71416549069756 ], [ -77.770727303074025, 24.71415151121915 ], [ -77.770736709333363, 24.714140118567382 ], [ -77.770749602852632, 24.714132103480029 ], [ -77.770765128435684, 24.71412696001649 ], [ -77.770782206307544, 24.714124102264702 ], [ -77.770817213654183, 24.714123714648487 ], [ -77.770861074796244, 24.714131256436573 ], [ -77.770874268352813, 24.714131262148808 ], [ -77.770886590543554, 24.714128337482219 ], [ -77.77089725085105, 24.714122449795383 ], [ -77.77091587741846, 24.714107442924963 ], [ -77.770925594494898, 24.714101747005191 ], [ -77.770936350922099, 24.714099445788229 ], [ -77.770947256469668, 24.714100917914308 ], [ -77.770957384076169, 24.714106182967928 ], [ -77.770967240391471, 24.714114242938894 ], [ -77.770977554847533, 24.714126275363832 ], [ -77.770986979073214, 24.714143108516335 ], [ -77.77099448090415, 24.714166847762005 ], [ -77.770999219517279, 24.714194381560148 ], [ -77.771001786004035, 24.71422347071227 ], [ -77.771002631318723, 24.714277624320328 ], [ -77.771000849959293, 24.714316601329212 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 2791, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 37 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.771988183796267, 24.715315065877903 ], [ -77.771991810295518, 24.715315301705022 ], [ -77.771998006874327, 24.715312643906969 ], [ -77.772005320957419, 24.715303569692722 ], [ -77.772010338048247, 24.715289693977525 ], [ -77.77201297011203, 24.715274317587689 ], [ -77.772020532130767, 24.714990109862569 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 2793, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 32 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.773325196741112, 24.716102936887886 ], [ -77.773327643750591, 24.716064746267357 ], [ -77.773327569190386, 24.716043333045288 ], [ -77.773325592896811, 24.716033424910105 ], [ -77.773320877639861, 24.716025943622906 ], [ -77.773312342746365, 24.716021818632871 ], [ -77.773295304400335, 24.71601923837196 ], [ -77.773217485143945, 24.716017267679316 ], [ -77.773199462244406, 24.716018304027006 ], [ -77.773189366977206, 24.716020774941001 ], [ -77.773185416186564, 24.716023044297636 ], [ -77.773180353281646, 24.716030302811038 ], [ -77.77317679685143, 24.716052004906981 ], [ -77.773176979211684, 24.716105347413912 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 2795, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 516 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.771924504920705, 24.716621891864676 ], [ -77.771860200818182, 24.71662983089756 ], [ -77.771814567300083, 24.716633465440768 ], [ -77.771760175207945, 24.716635591167069 ], [ -77.771651553618739, 24.716634230865434 ], [ -77.771452030607577, 24.716624213430908 ], [ -77.771404645374687, 24.716619238986105 ], [ -77.771359740390224, 24.716612117597975 ], [ -77.7713180675442, 24.71660289659529 ], [ -77.771262923562176, 24.716587006276249 ], [ -77.771218337479667, 24.716568640972078 ], [ -77.771167845872526, 24.7165400199465 ], [ -77.771125813700337, 24.716509514727488 ], [ -77.771108198635957, 24.716494313932394 ], [ -77.771086551932541, 24.716472828158565 ], [ -77.771073384427126, 24.716451938074925 ], [ -77.771071094621476, 24.716437830738236 ], [ -77.77107414979173, 24.716424461897383 ], [ -77.77108543532664, 24.716409120736529 ], [ -77.771131179337559, 24.716374613726067 ], [ -77.771141674355007, 24.716363953247242 ], [ -77.771149425917628, 24.716351143371874 ], [ -77.771153367725077, 24.716330466248927 ], [ -77.771149324407986, 24.716307720512098 ], [ -77.771136802791219, 24.716285370540874 ], [ -77.771112650686533, 24.716263036069932 ], [ -77.77108080540971, 24.716242882817426 ], [ -77.77105662366057, 24.716230208388982 ], [ -77.771021058460107, 24.716215382113148 ], [ -77.770944289334253, 24.716190919447804 ], [ -77.770915563906414, 24.716182929789159 ], [ -77.770886636357659, 24.716176590123979 ], [ -77.770857031479153, 24.716172946591183 ], [ -77.770827044816642, 24.716172064472698 ], [ -77.77079696203441, 24.71617362633647 ], [ -77.77075168784242, 24.71617846452363 ], [ -77.770707563493971, 24.716185871543807 ], [ -77.770665869986701, 24.716195166019329 ], [ -77.770624848419232, 24.716202169108286 ], [ -77.770596877576253, 24.716203306640992 ], [ -77.770568668679687, 24.716201140106275 ], [ -77.770540519071929, 24.716195753554199 ], [ -77.770512365870928, 24.71618798014131 ], [ -77.770484509113984, 24.716177789674454 ], [ -77.770457265008019, 24.716165041797563 ], [ -77.770430581450839, 24.716150474192592 ], [ -77.770404375797355, 24.716133991384559 ], [ -77.770353231114996, 24.716097101515622 ], [ -77.770303545296628, 24.716055971587842 ], [ -77.770255199764648, 24.716011659977312 ], [ -77.77020824033319, 24.715964791753617 ], [ -77.770095411035172, 24.715840467452022 ], [ -77.770052702431599, 24.715787846199618 ], [ -77.769993661557876, 24.715703750072393 ], [ -77.769892869684682, 24.715565562065969 ], [ -77.769746437106832, 24.715379595593522 ], [ -77.769708857883572, 24.71532531679679 ], [ -77.769692010878757, 24.715297319745687 ], [ -77.769676841926852, 24.715268958740317 ], [ -77.769663872050785, 24.71523953934167 ], [ -77.769653100352159, 24.715209563405509 ], [ -77.769644539407551, 24.715179541764716 ], [ -77.769637068119309, 24.71512804390294 ], [ -77.769638361693339, 24.715076958114075 ], [ -77.769648513554372, 24.715029243317112 ], [ -77.769658811840756, 24.715003476405215 ], [ -77.769671526595317, 24.714979462317466 ], [ -77.769686678479218, 24.714957955065408 ], [ -77.769704305221723, 24.714939739670168 ], [ -77.769723989106225, 24.714924613758054 ], [ -77.769756756952816, 24.714909150824006 ], [ -77.769790933357854, 24.714901817170542 ], [ -77.769813153186391, 24.714901451589448 ], [ -77.769834629209853, 24.714905791232297 ], [ -77.769865018317617, 24.714921157875263 ], [ -77.769894524381414, 24.714943765140589 ], [ -77.769942062327971, 24.714986097445934 ], [ -77.769975285620433, 24.71501052933894 ], [ -77.770015743944214, 24.715030552226487 ], [ -77.770063370823934, 24.71504313619792 ], [ -77.770115806385377, 24.715047968716814 ], [ -77.770169869694101, 24.715045332129858 ], [ -77.770210116913788, 24.715038892851261 ], [ -77.77026190928153, 24.715026254205451 ], [ -77.770309560415726, 24.715009650476386 ], [ -77.770350484965164, 24.714989755701964 ], [ -77.770386691562706, 24.714965261786652 ], [ -77.770412459736605, 24.714943133534192 ], [ -77.770423704847303, 24.714931818477648 ], [ -77.770429582524258, 24.714923911973102 ], [ -77.770430020902083, 24.714920611951872 ], [ -77.770431302798016, 24.714920877161315 ], [ -77.770433191056739, 24.7149152367687 ], [ -77.770442989879854, 24.714821826705975 ], [ -77.77045143584013, 24.714781331228082 ], [ -77.770457768962928, 24.714766503963624 ], [ -77.770465941835369, 24.714757135122774 ], [ -77.77047643505621, 24.71475197210038 ], [ -77.770488474277627, 24.714749995675458 ], [ -77.770500982419648, 24.714750783144495 ], [ -77.770512990200032, 24.714754195782412 ], [ -77.770523560675983, 24.714760349465159 ], [ -77.770532119824011, 24.714769343748056 ], [ -77.770553615610467, 24.714803106168354 ], [ -77.770562592475102, 24.714813281243181 ], [ -77.770573736974498, 24.714821573736774 ], [ -77.770626249791079, 24.714848150187571 ], [ -77.770655285137693, 24.714868265312536 ], [ -77.770668379879581, 24.714874886574449 ], [ -77.77072429461613, 24.714897378788013 ], [ -77.770753459320147, 24.71491416450657 ], [ -77.77076629444889, 24.714918374400341 ], [ -77.770779974892378, 24.714920459354424 ], [ -77.770793762235357, 24.714920429161388 ], [ -77.770806868655384, 24.714918091238275 ], [ -77.770818397633718, 24.714913017985776 ], [ -77.770827932352134, 24.714904315035579 ], [ -77.770836615467672, 24.714891363837019 ], [ -77.770862546236657, 24.714842641172442 ], [ -77.770883431168713, 24.71480828714127 ], [ -77.770889399575481, 24.714792003266812 ], [ -77.770889991564871, 24.714784814864252 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 2799, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 48 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.78043652193827, 24.724203135089287 ], [ -77.780319778681019, 24.724202496181739 ], [ -77.780278985285648, 24.724200803863752 ], [ -77.780252365508829, 24.724196068800516 ], [ -77.780245180783183, 24.724193020343268 ], [ -77.780239359700161, 24.724188786284177 ], [ -77.780232491181494, 24.724177041236857 ], [ -77.780225031571362, 24.724139136239149 ], [ -77.780220641504584, 24.724125123610271 ], [ -77.780212491090012, 24.724114378118617 ], [ -77.780195892918499, 24.724102105948432 ], [ -77.780187577213908, 24.724091611773176 ], [ -77.780185066422703, 24.724085026088279 ], [ -77.780182477478021, 24.724070254602129 ], [ -77.780183426997297, 24.724047001930998 ], [ -77.780185218237975, 24.724039752044728 ], [ -77.780189018111642, 24.724033027642324 ], [ -77.780195300030414, 24.724027368895378 ], [ -77.780204753002153, 24.724022996931843 ], [ -77.780228456847539, 24.724018709828972 ], [ -77.780268879238236, 24.724019090891126 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 2800, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 57 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.780904207333052, 24.72516050437747 ], [ -77.780875091138526, 24.725160778536491 ], [ -77.78085911100797, 24.72515954235422 ], [ -77.780849929327431, 24.725155362181482 ], [ -77.780847002616213, 24.725149539477286 ], [ -77.780845677601178, 24.725129789933064 ], [ -77.78084963557022, 24.724996790494195 ] ], [ [ -77.780843625848888, 24.724978761792705 ], [ -77.780838704877937, 24.724978268133391 ], [ -77.780828225131827, 24.724980098338552 ], [ -77.780816305386324, 24.724985279703763 ], [ -77.780806655683563, 24.724994436440362 ], [ -77.780793855589067, 24.725014121544994 ], [ -77.780786361842999, 24.725019397560484 ], [ -77.780771733676886, 24.725020690045522 ], [ -77.780762660692503, 24.725017797457472 ], [ -77.780759091685908, 24.725015045214853 ], [ -77.780756280857389, 24.725010939289977 ], [ -77.780753106211165, 24.725000219169651 ], [ -77.780750171415121, 24.724961511514927 ], [ -77.780746011317063, 24.724944531320258 ], [ -77.780739518294169, 24.724937003242825 ], [ -77.780720641096778, 24.724928173703347 ], [ -77.780712308324198, 24.724922826695163 ], [ -77.780706947178615, 24.724913894343249 ], [ -77.780704411234538, 24.724902523075645 ], [ -77.780703547953578, 24.724888291854516 ], [ -77.780705850335337, 24.724826729018393 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 2809, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 354 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.809686614414233, 24.747610045949752 ], [ -77.809604753637586, 24.747607111464625 ], [ -77.809543020512976, 24.747606524078165 ], [ -77.809511819328208, 24.747608424926124 ], [ -77.809485636132578, 24.747613456870447 ], [ -77.809474473666882, 24.747617808425211 ], [ -77.809445596423785, 24.747636513419344 ], [ -77.8094259008612, 24.74764401564838 ], [ -77.809383352157724, 24.747656017908653 ], [ -77.809366639900176, 24.747664782201124 ], [ -77.809345583389913, 24.747679382827364 ], [ -77.8093363154711, 24.747683686246834 ], [ -77.80929525527614, 24.747697104756352 ], [ -77.809285929865155, 24.747701353515602 ], [ -77.809277856705705, 24.747706793363133 ], [ -77.80927136458115, 24.747713810994473 ], [ -77.809266173217125, 24.747722066215076 ], [ -77.809249596605198, 24.74775907315718 ], [ -77.809244363020341, 24.747767288399842 ], [ -77.809225958336796, 24.74778449145898 ], [ -77.809191734321104, 24.747809718855265 ], [ -77.809181135997378, 24.747814916401481 ], [ -77.809166544662233, 24.747819555931283 ], [ -77.809151652391435, 24.747822344380822 ], [ -77.809126178864886, 24.747824115511193 ], [ -77.809114829549586, 24.747823417175084 ], [ -77.809112381640503, 24.747832592625603 ], [ -77.809108626682587, 24.747839830519393 ], [ -77.80910273463266, 24.747847292761367 ], [ -77.809094450369088, 24.747853817633715 ], [ -77.8090841242349, 24.747858986624657 ], [ -77.809072467695771, 24.747862640650773 ], [ -77.809048485372642, 24.747865120722075 ], [ -77.809037898727027, 24.747863840711645 ], [ -77.809021295165607, 24.747856890801209 ], [ -77.809014973720963, 24.747851418327745 ], [ -77.808998609111413, 24.747832372356061 ], [ -77.8089790941102, 24.747816034065604 ], [ -77.808973644031383, 24.747809651958558 ], [ -77.808969632155325, 24.74780195312854 ], [ -77.808964947441098, 24.747783628328364 ], [ -77.808960109114963, 24.747731667527844 ], [ -77.80895682038269, 24.747712101048521 ], [ -77.808950201595707, 24.747695720319957 ], [ -77.808929298697365, 24.747673313170118 ], [ -77.808926613633005, 24.747667210064218 ], [ -77.808925864438024, 24.747660801843431 ], [ -77.808927086146824, 24.747654622866239 ], [ -77.808930479981967, 24.74764926215045 ], [ -77.808936188775576, 24.747645221422008 ], [ -77.808976443181777, 24.747633814705267 ], [ -77.808999669123466, 24.747624968013291 ], [ -77.809009052026582, 24.747619092517258 ], [ -77.80901624483711, 24.747612402838016 ], [ -77.809027262674007, 24.747595994358601 ], [ -77.809033156520613, 24.747595978042323 ], [ -77.809043912947814, 24.747591416822416 ], [ -77.809068635482745, 24.74756947058917 ], [ -77.809084732394339, 24.747559689784609 ], [ -77.809093994923259, 24.747556757745777 ], [ -77.809130875257225, 24.747550856956224 ], [ -77.809147614464251, 24.747546373237064 ], [ -77.809159932163411, 24.747538650732064 ], [ -77.809173866830108, 24.747524201015043 ], [ -77.809186458515427, 24.747516740385404 ], [ -77.80920343757262, 24.747512483461605 ], [ -77.809239990919863, 24.747506442349788 ], [ -77.809255259584745, 24.747500558689943 ], [ -77.809260616238788, 24.747496420058884 ], [ -77.809278588832683, 24.747476575349452 ], [ -77.809301574924149, 24.747461705480291 ], [ -77.809310800622129, 24.747451156168928 ], [ -77.809316181530676, 24.747435689935365 ], [ -77.80931780837966, 24.747425369050227 ], [ -77.809319953556525, 24.74738761635286 ], [ -77.809319901454103, 24.747338105287451 ] ], [ [ -77.809249580435335, 24.747284954019985 ], [ -77.809228786233305, 24.747284684800487 ], [ -77.809223558936679, 24.74728343904836 ], [ -77.809222442330736, 24.747278549858585 ], [ -77.809223140321734, 24.747258422026828 ] ], [ [ -77.809206543048489, 24.747238926448293 ], [ -77.809204917996226, 24.74723850956579 ], [ -77.809197755728462, 24.747242325141944 ], [ -77.809178184133359, 24.747259564169664 ], [ -77.809169501916131, 24.747265782325758 ], [ -77.809157966649579, 24.747271499570054 ], [ -77.80914521236916, 24.747275405700833 ], [ -77.8091321320003, 24.747277384056503 ], [ -77.809119698418471, 24.747277374266698 ], [ -77.80910890785529, 24.747275336356402 ], [ -77.809099976804717, 24.747271473463904 ], [ -77.809092541449104, 24.747265935699307 ], [ -77.809086886554425, 24.747258536240409 ], [ -77.809082549488195, 24.747249832289718 ], [ -77.809071413971949, 24.747221636837114 ], [ -77.80906649659407, 24.74721322331472 ], [ -77.809060011656058, 24.747206163232669 ], [ -77.809051272844954, 24.747200755180085 ], [ -77.809040770640991, 24.747196881679638 ], [ -77.809016225972471, 24.747192224178676 ], [ -77.808889929131752, 24.747185332153695 ], [ -77.808865184138867, 24.747180965083217 ], [ -77.808854575933694, 24.747177255561517 ], [ -77.808845751782698, 24.747172001697201 ], [ -77.808839229115407, 24.74716505256395 ], [ -77.808830542406611, 24.747147379508203 ], [ -77.808820521699616, 24.747118266237287 ], [ -77.808815519880099, 24.747109287346145 ], [ -77.808809148129782, 24.747101772031723 ], [ -77.808763325067133, 24.74705821305815 ], [ -77.808749550300604, 24.747049641255977 ], [ -77.808740842930547, 24.74704855540185 ], [ -77.808738506412482, 24.747046536251677 ], [ -77.80873685441064, 24.74704061912152 ], [ -77.808735288647142, 24.747019099464108 ], [ -77.808738454310188, 24.746896627920918 ], [ -77.808740842930519, 24.746868110955351 ], [ -77.808907825368806, 24.746874727250898 ], [ -77.809004464330471, 24.746875218374186 ], [ -77.809052071447269, 24.74687116538329 ], [ -77.809073510639806, 24.746867098523389 ], [ -77.809092890893751, 24.746861062275073 ], [ -77.809109554642276, 24.746852430904536 ], [ -77.809122450856506, 24.746841506264417 ], [ -77.809154805478059, 24.746802655296175 ], [ -77.809203454640624, 24.746756427669951 ], [ -77.809244620836836, 24.746726922713766 ], [ -77.809259061255005, 24.746718035982052 ], [ -77.809274903045036, 24.746710918764393 ], [ -77.809324459506016, 24.746694846284008 ], [ -77.809338574734085, 24.746689079248178 ], [ -77.809349713843602, 24.746681988950929 ], [ -77.809356934501849, 24.746673094873643 ], [ -77.809360418168481, 24.74666331399855 ], [ -77.809362151917028, 24.74663184289161 ], [ -77.809365796382139, 24.746620024908012 ], [ -77.809394179551873, 24.74657010643789 ], [ -77.809403637913448, 24.746556667411181 ], [ -77.809417661513365, 24.746543846775769 ], [ -77.809436445285982, 24.746532942504018 ], [ -77.809458605825725, 24.746523722087392 ], [ -77.809527335029784, 24.746501094454391 ], [ -77.809545534897453, 24.74649402046288 ], [ -77.809575129894213, 24.746479889610889 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 2810, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 81 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.813002162929749, 24.75165024256988 ], [ -77.813000732161356, 24.7516497097273 ], [ -77.812995998938121, 24.75164616512814 ], [ -77.812989028011515, 24.751637743747416 ], [ -77.812965763442293, 24.751596313939686 ], [ -77.812946823362822, 24.751569977023667 ], [ -77.812905232263503, 24.751524581643668 ], [ -77.812879714719543, 24.751502853920577 ], [ -77.81285658849086, 24.751478809352456 ], [ -77.812831448239336, 24.751456754489841 ], [ -77.812795880343941, 24.751414263279493 ], [ -77.812789725087626, 24.751404982856538 ], [ -77.812784008209164, 24.751391567194673 ], [ -77.81277771101901, 24.751360284916672 ], [ -77.812771620441396, 24.751255340835577 ], [ -77.81276573647628, 24.751223700391069 ], [ -77.812760263939552, 24.751210073419784 ], [ -77.812754294634487, 24.751200631454967 ], [ -77.812704857649464, 24.751137100897932 ], [ -77.812697496854028, 24.751124846894211 ], [ -77.812690849320958, 24.751108740721392 ], [ -77.812685890620585, 24.751091088621177 ], [ -77.812679679668676, 24.751055474412219 ], [ -77.812675056938232, 24.7510170342889 ], [ -77.812673004287817, 24.751011889903069 ], [ -77.812672637993927, 24.751011881939196 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 2811, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 44 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.814977981594694, 24.752102821254322 ], [ -77.814974651539117, 24.752209757576672 ], [ -77.814975271376696, 24.752235530650175 ], [ -77.814977235992217, 24.752251471072785 ], [ -77.814981739246747, 24.752265265165619 ], [ -77.81498552654395, 24.752270825549409 ], [ -77.814989769287067, 24.75227463118161 ], [ -77.815009580732351, 24.752286548969003 ], [ -77.815016038720913, 24.75229420020581 ], [ -77.815017997048244, 24.752303642087508 ], [ -77.81501571622573, 24.752312776418055 ], [ -77.81501278053139, 24.75231650781269 ], [ -77.815007666422488, 24.752319715474073 ], [ -77.815001089856281, 24.752321900142764 ], [ -77.814976130166116, 24.752324688491232 ], [ -77.814937773001787, 24.752324531860769 ], [ -77.814829157700331, 24.752320898364733 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 2821, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 156 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.861968953821702, 24.807496691366488 ], [ -77.861940145747312, 24.807467770822601 ], [ -77.861904932686485, 24.807426113389404 ], [ -77.861875592811032, 24.807385387969351 ], [ -77.861859917209301, 24.807359823677629 ], [ -77.861823283013663, 24.807299013568933 ], [ -77.861811935494998, 24.807276794122586 ], [ -77.861776797892659, 24.807204563974555 ], [ -77.861745672166393, 24.807132314214272 ], [ -77.861733414654381, 24.807109863157784 ], [ -77.861713820601366, 24.807082989238651 ], [ -77.861692782057389, 24.807057123993076 ], [ -77.861615977897273, 24.806977260528637 ], [ -77.861602619050657, 24.806959601694597 ], [ -77.861590795424874, 24.806935548297147 ], [ -77.861582439296114, 24.806908490054138 ], [ -77.861572111365305, 24.806848837627992 ], [ -77.861560876136011, 24.806755669540216 ], [ -77.861555412582476, 24.806726103007232 ], [ -77.86154775264805, 24.80669844130303 ], [ -77.861525328003623, 24.806644619076664 ], [ -77.861504873364623, 24.806603546027983 ], [ -77.861475984443359, 24.806562678453346 ], [ -77.861422915569634, 24.80649564705605 ], [ -77.861400240295268, 24.806461053348205 ], [ -77.86138650685119, 24.806434285294028 ], [ -77.861362709580987, 24.806377327630656 ], [ -77.861348058058695, 24.806336557017435 ], [ -77.861341510238574, 24.806310381753171 ], [ -77.861337628618259, 24.80628684847354 ], [ -77.861335866123667, 24.806267651641733 ], [ -77.861336886609848, 24.806248722267828 ], [ -77.861336927036021, 24.806247132184531 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 2823, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 33 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.875229074662073, 24.821353468638513 ], [ -77.875216554842467, 24.821352002670963 ], [ -77.875207299500062, 24.821347422147479 ], [ -77.875199114949538, 24.821338002640314 ], [ -77.875188997224456, 24.821317322608504 ], [ -77.875185777662509, 24.821313812612178 ], [ -77.875176003992181, 24.821309385369371 ], [ -77.875163555138997, 24.821307276110144 ], [ -77.875142694461474, 24.821306009086999 ], [ -77.875003841867994, 24.821303825632661 ], [ -77.874975165847502, 24.821302067780707 ], [ -77.874961181773486, 24.821297638091472 ], [ -77.87495104428551, 24.821289596488793 ], [ -77.874946826695236, 24.821279175751492 ], [ -77.874946748543053, 24.821269598885479 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 2824, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 70 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.874598963982933, 24.821340288010266 ], [ -77.874618952396332, 24.821340435585029 ], [ -77.874631632116532, 24.821342209743026 ], [ -77.874641787570823, 24.821346442120856 ], [ -77.874646714830135, 24.821354118452039 ], [ -77.874648625546769, 24.82137923468683 ], [ -77.874646665422802, 24.82141083441709 ], [ -77.874642487358415, 24.82142376798862 ], [ -77.874639883142436, 24.821426861348442 ], [ -77.874632771180316, 24.82143031508382 ], [ -77.874623975775378, 24.821431509541352 ], [ -77.874610572911337, 24.821430098206214 ], [ -77.874603489695289, 24.821426562122564 ], [ -77.874599211019614, 24.821419653836212 ], [ -77.874597302099644, 24.821410593079566 ], [ -77.874596636448004, 24.821395096110408 ], [ -77.874598963982933, 24.821340288010266 ] ], [ [ -77.874598963982933, 24.821340288010266 ], [ -77.874562281278301, 24.821339921927134 ], [ -77.874554557563471, 24.821337845281594 ], [ -77.874551474545413, 24.821334657341239 ], [ -77.874549645575499, 24.821318625506034 ], [ -77.874552273148524, 24.821231198444966 ] ], [ [ -77.874798463982557, 24.821274737808221 ], [ -77.874796979620996, 24.821284015552607 ], [ -77.874792559909793, 24.821292998862145 ], [ -77.874784333138422, 24.821297422028941 ], [ -77.874757404341182, 24.821298840703548 ], [ -77.874634671117164, 24.821295644608966 ], [ -77.874618354118326, 24.821296343346965 ], [ -77.874609051165265, 24.821298507233504 ], [ -77.874605285427563, 24.821301320122878 ], [ -77.874600789359548, 24.821310443667944 ], [ -77.874598991830709, 24.821321972436184 ], [ -77.874598963982933, 24.821340288010266 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 2826, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 53 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.87665898688023, 24.82210517443319 ], [ -77.87665754867794, 24.82211345568389 ], [ -77.876654332709222, 24.822120002742658 ], [ -77.876649067683346, 24.822126818042875 ], [ -77.876640265990176, 24.822133654541211 ], [ -77.876628939132758, 24.822138945183504 ], [ -77.876615992612898, 24.822142463309625 ], [ -77.876602476561132, 24.822144091513074 ], [ -77.876589502193511, 24.822143744184746 ], [ -77.876578180725943, 24.822141344684091 ], [ -77.876569113131495, 24.822136999818692 ], [ -77.876550097593537, 24.822120641957337 ], [ -77.876533985410603, 24.822110986064754 ], [ -77.876480661415371, 24.822094286578764 ], [ -77.87647181750134, 24.822089380768013 ], [ -77.876448210673999, 24.822065640130774 ], [ -77.876420799481423, 24.822045488551247 ], [ -77.8763972169086, 24.82202179927118 ], [ -77.876378292100483, 24.822013132360798 ], [ -77.876334941201506, 24.822000575531291 ], [ -77.876325785572149, 24.821995978725273 ], [ -77.876319074258674, 24.821990768794119 ], [ -77.876284557392168, 24.821953631518078 ], [ -77.876271887553386, 24.82193709752212 ], [ -77.876265939807922, 24.821920749418243 ], [ -77.876265358597365, 24.821906983454863 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 2836, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 306 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.891119683642245, 24.84455736493047 ], [ -77.891105272868714, 24.844553037155141 ], [ -77.891080506316285, 24.844561402502617 ], [ -77.891059700436017, 24.844573846995349 ], [ -77.891036734107473, 24.844591057011026 ], [ -77.891012659257839, 24.844612960812029 ], [ -77.890980698098389, 24.84464952882016 ], [ -77.890949959545935, 24.844692512254525 ], [ -77.890920620568792, 24.844739170486992 ], [ -77.89088067248808, 24.844810671991141 ], [ -77.890832893793061, 24.844908599793285 ], [ -77.890817507448915, 24.844935169597711 ], [ -77.890802122901349, 24.84495672770392 ], [ -77.890787534261136, 24.844973142871289 ], [ -77.890773219607084, 24.844984063761839 ], [ -77.890757941060713, 24.844990093605965 ], [ -77.890742586157586, 24.844991369353686 ], [ -77.890728027161771, 24.844987754055833 ], [ -77.890714540754388, 24.844978270317949 ], [ -77.89069728142286, 24.844952968934287 ], [ -77.890682823936643, 24.844917604213745 ], [ -77.890647592909559, 24.844797908788582 ], [ -77.890618438985328, 24.844679061846161 ], [ -77.89060230524278, 24.844620165343873 ], [ -77.89058230874457, 24.84456541072829 ], [ -77.890553754894938, 24.84451016372125 ], [ -77.890537562761921, 24.844485383955554 ], [ -77.890519871340743, 24.844463230687559 ], [ -77.890501048042296, 24.844442687391883 ], [ -77.890419298656482, 24.844356708107071 ], [ -77.890339667498083, 24.844257460093218 ], [ -77.890295535064823, 24.844210686738794 ], [ -77.89027178450705, 24.844188848080897 ], [ -77.890229043564133, 24.84415641289808 ], [ -77.890185313576097, 24.844126609922821 ], [ -77.890145093305875, 24.844096566462163 ], [ -77.890124258679535, 24.844077359186105 ], [ -77.890106281594029, 24.844057711709649 ], [ -77.890091986702927, 24.844037108023269 ], [ -77.890080269976679, 24.844007386537339 ], [ -77.890077055804568, 24.843976584114372 ], [ -77.890082186083163, 24.84394656262721 ], [ -77.890091287813647, 24.843925560298707 ], [ -77.890104072636774, 24.843905476676113 ], [ -77.89013225817709, 24.84387500600663 ], [ -77.890164721494855, 24.843845793970399 ], [ -77.890195802305357, 24.843814515440894 ], [ -77.890211736621865, 24.843793416083258 ], [ -77.890239199018438, 24.843746383325474 ], [ -77.890311015732109, 24.84361065455759 ], [ -77.890340359200877, 24.843564370068918 ], [ -77.890365670132354, 24.843529676663064 ], [ -77.890407667270182, 24.843477738026497 ], [ -77.890454298816593, 24.843429157928426 ], [ -77.89048767122938, 24.843400268600107 ], [ -77.890522238401516, 24.84337406448407 ], [ -77.890557123577267, 24.843351285770222 ], [ -77.890591756326415, 24.843331701762935 ], [ -77.890641054970899, 24.843309246669833 ], [ -77.890683715065421, 24.843294056505421 ], [ -77.890706621206832, 24.843287648332542 ], [ -77.890727947211701, 24.843284300365784 ], [ -77.890737598711098, 24.843286241322474 ], [ -77.890737794280938, 24.843286245440158 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 2837, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 640 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.89075173190497, 24.843196309216601 ], [ -77.890706713733294, 24.843196269267956 ], [ -77.890644996778349, 24.843200561222631 ], [ -77.890610731440177, 24.843205109145458 ], [ -77.890521968008628, 24.843220100415465 ], [ -77.890456610181786, 24.84322568362365 ], [ -77.890340330454791, 24.843232111364195 ], [ -77.890313233672586, 24.843235594653244 ], [ -77.8902879973013, 24.843240846080125 ], [ -77.890265357959507, 24.84324856751962 ], [ -77.890246238217003, 24.843259632850263 ], [ -77.890231973868595, 24.843273795885025 ], [ -77.890220548196496, 24.843290658812482 ], [ -77.890176516374495, 24.843377972480489 ], [ -77.890168319247536, 24.843397929835081 ], [ -77.890147539418422, 24.843461470209096 ], [ -77.890116990410519, 24.843534086807786 ], [ -77.890096105478506, 24.843597636894124 ], [ -77.890087986504952, 24.843617686328983 ], [ -77.890072361208922, 24.843648735841747 ], [ -77.890039494547608, 24.843726290706741 ], [ -77.890029470247356, 24.843742913908908 ], [ -77.890000990957887, 24.843775190239647 ], [ -77.889987926758721, 24.843792715841818 ], [ -77.889980863305638, 24.843807065492328 ], [ -77.889976227998787, 24.843821592035638 ], [ -77.889967711969859, 24.84386164436421 ], [ -77.889951473124469, 24.843898628336937 ], [ -77.889948869806801, 24.844002663380099 ], [ -77.889949027011966, 24.844007399580263 ], [ -77.889945662821248, 24.844017079851088 ], [ -77.889937259081762, 24.844026721807612 ], [ -77.889931030163581, 24.844030106437465 ], [ -77.889917529383183, 24.844032489210271 ], [ -77.889911608587141, 24.84403125013581 ], [ -77.88990715653658, 24.844028246195354 ], [ -77.889902373905983, 24.844018103717978 ], [ -77.889900536851258, 24.844005058381217 ], [ -77.889900411985423, 24.843938687162048 ], [ -77.88989755713942, 24.843919047815337 ], [ -77.889892264265796, 24.843908907774551 ], [ -77.889888010742922, 24.843905273695913 ], [ -77.88986675750165, 24.843894428522034 ], [ -77.88986235845168, 24.843890927317513 ], [ -77.88985905624466, 24.843886438112943 ], [ -77.889855118030482, 24.843875151108936 ], [ -77.889852980040104, 24.843840092588781 ], [ -77.889855957955263, 24.843764189354527 ], [ -77.889855931904123, 24.843764121694324 ], [ -77.88983101173983, 24.843762524752162 ], [ -77.889818040965451, 24.843757413558741 ], [ -77.889813508964863, 24.843753048257 ], [ -77.889809075778928, 24.843742011501917 ], [ -77.889807324962419, 24.843699401091097 ], [ -77.889803232238009, 24.843684044677325 ], [ -77.889796434686232, 24.843677369144654 ], [ -77.88977138067294, 24.843667754877085 ], [ -77.889767456831777, 24.843664889508918 ], [ -77.889762641861893, 24.843656629259435 ], [ -77.889760483210225, 24.843646065301925 ], [ -77.889759667539963, 24.843628120674744 ], [ -77.889763045205427, 24.843525712423798 ], [ -77.889766159664504, 24.843372320803599 ], [ -77.889768274298703, 24.843342967621656 ], [ -77.889772137952718, 24.843315325506737 ], [ -77.889779170863093, 24.843290675931375 ], [ -77.889784563449709, 24.843280123355232 ], [ -77.889805093547253, 24.843253555641006 ], [ -77.889810239097201, 24.843242981866851 ], [ -77.889814050648965, 24.843231126619674 ], [ -77.889818960840287, 24.843204797744391 ], [ -77.889822639441391, 24.843161686624278 ], [ -77.889824501648974, 24.843116793491202 ], [ -77.889825746713953, 24.843056583794379 ], [ -77.889824817855924, 24.843012896285142 ], [ -77.88982160098891, 24.842986061947215 ], [ -77.889818439817446, 24.842974006139304 ], [ -77.889813659881824, 24.842963363865479 ], [ -77.889806545224772, 24.842954035673333 ], [ -77.889766560313134, 24.842913168678269 ], [ -77.889756419231901, 24.842903692118114 ], [ -77.889731902411185, 24.842885007192493 ], [ -77.88972975992921, 24.842880056554851 ], [ -77.889729401501441, 24.842871795437777 ], [ -77.889726688589221, 24.842865454903713 ], [ -77.889717570689101, 24.842859370338406 ], [ -77.889706566326865, 24.842857827186958 ], [ -77.889692628066953, 24.842858453251566 ], [ -77.889686933646345, 24.842860152103992 ], [ -77.889683049331069, 24.842863766648861 ], [ -77.889681050579554, 24.842869347427552 ], [ -77.889679699513366, 24.842882987156301 ], [ -77.88967787593333, 24.842977785348648 ], [ -77.889677223756422, 24.842992748114572 ], [ -77.889668563997091, 24.84299329592054 ], [ -77.889665971459195, 24.842996293364642 ], [ -77.889640890496466, 24.843003997700436 ], [ -77.889618784753964, 24.843008701331318 ], [ -77.889580733915153, 24.843014047329614 ], [ -77.889534765325436, 24.843017974086603 ], [ -77.889403195373959, 24.843024685523098 ], [ -77.889362523251165, 24.843028789990591 ], [ -77.889303067355769, 24.843040805848993 ], [ -77.8892487516204, 24.843061840119972 ], [ -77.889217395027146, 24.843081526068328 ], [ -77.889190422212394, 24.843104829812095 ], [ -77.889168036195528, 24.843130639434808 ], [ -77.889143092674999, 24.843176888217553 ], [ -77.889126048040808, 24.843227274866514 ], [ -77.889112655956566, 24.843279809508807 ], [ -77.889101765680351, 24.843332137071787 ], [ -77.889087777114781, 24.843411280930148 ], [ -77.88908499682897, 24.843439765109199 ], [ -77.889085576242266, 24.843468442480432 ], [ -77.889089829765211, 24.843496838606512 ], [ -77.889097521140656, 24.843524475789803 ], [ -77.889107785291102, 24.84355207465331 ], [ -77.889120581792312, 24.843579134674329 ], [ -77.889135883694891, 24.843605165928043 ], [ -77.889153134941594, 24.843630840125961 ], [ -77.889221852467557, 24.843719116284628 ], [ -77.889253304282278, 24.843757310030586 ], [ -77.88935491721567, 24.843867917187197 ], [ -77.88938525871265, 24.843908220576687 ], [ -77.889411302669416, 24.843957087430354 ], [ -77.889431704307839, 24.844010704322891 ], [ -77.889448315954041, 24.844067312088807 ], [ -77.88948465729888, 24.844219088792578 ], [ -77.889495437082317, 24.844273568846098 ], [ -77.889504307945714, 24.844328271419403 ], [ -77.889509205560671, 24.844364378935875 ], [ -77.889513226419893, 24.84441981512926 ], [ -77.889513024298907, 24.844475951535379 ], [ -77.889508756403018, 24.844531787115649 ], [ -77.889500352663532, 24.844586315942124 ], [ -77.889484103038328, 24.844656739871301 ], [ -77.889438024854158, 24.844832698029578 ], [ -77.889427510972084, 24.844888057386722 ], [ -77.889419967818625, 24.844944998157722 ], [ -77.889414918388411, 24.845002494851371 ], [ -77.889406579327655, 24.845162740872269 ], [ -77.889398746916697, 24.845228134857926 ], [ -77.889386298961782, 24.845290909660608 ], [ -77.889367971533346, 24.845348720034714 ], [ -77.88935458034743, 24.845378565919738 ], [ -77.889339620703012, 24.84540672276222 ], [ -77.889323374671093, 24.84543272754598 ], [ -77.889306280629555, 24.845457156598393 ], [ -77.889288964913277, 24.84547898750095 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 2860, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 62 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.903912861996332, 24.863184384966839 ], [ -77.903895021455284, 24.863183861696527 ], [ -77.903880436408329, 24.863180298278721 ], [ -77.903873879605072, 24.863176927213754 ], [ -77.903868035165814, 24.863171635065321 ], [ -77.903863872372824, 24.863165057575753 ], [ -77.90386017760207, 24.863150166529358 ], [ -77.903859885649609, 24.863088137599494 ], [ -77.903856774783748, 24.863067479213843 ], [ -77.903851115397487, 24.863056815032049 ], [ -77.90384687714598, 24.863053177440609 ], [ -77.903826126961235, 24.863041919082217 ], [ -77.903821867150143, 24.863038300236642 ], [ -77.903816033490685, 24.863027345892572 ], [ -77.903813432867949, 24.863013587756718 ], [ -77.903812464484048, 24.862990409206621 ], [ -77.903816378443736, 24.862866923325129 ] ], [ [ -77.903816276035798, 24.862866586706765 ], [ -77.903779918521309, 24.862865865381838 ], [ -77.903770983877521, 24.862862078629444 ], [ -77.903768373373282, 24.862856866343126 ], [ -77.903767172325743, 24.862839217107915 ], [ -77.903770678450158, 24.862716558363235 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 2861, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 263 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.906042001271842, 24.874755062632531 ], [ -77.906042000374313, 24.874690680157791 ], [ -77.906036910519887, 24.874598268896737 ], [ -77.906019948530684, 24.874424652961284 ], [ -77.90601577585619, 24.874355840899749 ], [ -77.906012701821268, 24.874229271886811 ], [ -77.906012821297239, 24.873953396253494 ], [ -77.906007417930809, 24.873847790664982 ], [ -77.906001654339946, 24.873797642241069 ], [ -77.905970202525225, 24.873579362335725 ], [ -77.905960987607031, 24.873536932536524 ], [ -77.9059484785667, 24.873497358434975 ], [ -77.905931246184608, 24.873461878813465 ], [ -77.905911630572049, 24.873435011147375 ], [ -77.905889214012447, 24.873410570506508 ], [ -77.905865214621301, 24.873387259433034 ], [ -77.905838645150126, 24.873366176530155 ], [ -77.905808415044206, 24.873348510865672 ], [ -77.905775277990017, 24.873333365139953 ], [ -77.905670690734709, 24.873292169147671 ], [ -77.905599549554154, 24.873266096057854 ], [ -77.905564875482455, 24.87325228282732 ], [ -77.905531700699029, 24.873236926007849 ], [ -77.905499357755545, 24.873221091603444 ], [ -77.905468465591241, 24.873203998855033 ], [ -77.905440556731989, 24.873184320960938 ], [ -77.905416647172402, 24.873160933235795 ], [ -77.905395814342668, 24.87313487723307 ], [ -77.905376446665116, 24.873107550657082 ], [ -77.905333175716208, 24.873045655491989 ], [ -77.905309938994748, 24.873009876639596 ], [ -77.905288347088572, 24.872970302369268 ], [ -77.905268355980226, 24.872928935108032 ], [ -77.905249968364672, 24.872887748760817 ], [ -77.905234377204607, 24.872846729472958 ], [ -77.905211558199767, 24.872773058370758 ], [ -77.905204387847164, 24.872736725245357 ], [ -77.905201982158829, 24.872711060349125 ], [ -77.905203087086065, 24.872700179401026 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 2865, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 56 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.906241572790961, 24.876180240787839 ], [ -77.906238647878197, 24.876180808822109 ], [ -77.906233925434734, 24.876179386701768 ], [ -77.906228352286732, 24.876175732382166 ], [ -77.906222912987701, 24.87616956714384 ], [ -77.906213521999689, 24.876151097505854 ], [ -77.906197620022539, 24.876108510485622 ], [ -77.906193071852272, 24.876100978540578 ], [ -77.906170049828162, 24.876077062452296 ], [ -77.906166236479763, 24.876069338987495 ], [ -77.906161826650035, 24.876051104045789 ], [ -77.906157329683722, 24.875999857936595 ], [ -77.906151308276378, 24.875971990854026 ], [ -77.906147369163889, 24.875964376588669 ], [ -77.906124569921928, 24.875940268140987 ], [ -77.906120320890651, 24.875932921998938 ], [ -77.906107593559724, 24.875888811723467 ], [ -77.906100327087373, 24.875873052636106 ], [ -77.906076886448346, 24.875849449452524 ], [ -77.906072362532583, 24.875840426909871 ], [ -77.906069186089738, 24.875828783419941 ], [ -77.906066006951917, 24.875801040174434 ], [ -77.906066832502631, 24.875742922941079 ] ], [ [ -77.90603016866369, 24.875724722175459 ], [ -77.906018435767763, 24.875724291870444 ], [ -77.906017998288192, 24.875718107866447 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 2868, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 31 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.907664238300327, 24.877129110877071 ], [ -77.907664467371944, 24.877133026768266 ], [ -77.907662124565647, 24.877140461669892 ], [ -77.907655260538576, 24.877147907165615 ], [ -77.907649807764784, 24.877150752198887 ], [ -77.90763658725875, 24.877154284245329 ], [ -77.907591690359155, 24.877156218150752 ], [ -77.907576272573948, 24.877159941713153 ], [ -77.907569708584163, 24.877165599180607 ], [ -77.907558889274853, 24.877189945358197 ], [ -77.907556087429512, 24.877193055253162 ], [ -77.907547280346478, 24.877197280831027 ], [ -77.907536004693029, 24.877199164208083 ], [ -77.907516858001046, 24.877199868335275 ], [ -77.907394128369816, 24.87719663783033 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 3025, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 38 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.033949091027438, 25.175909656069315 ], [ -78.033943525066462, 25.175909724354934 ], [ -78.033934507777644, 25.175905080608974 ], [ -78.033926183089903, 25.175893507827507 ], [ -78.033920662942478, 25.175877105125306 ], [ -78.033913211417214, 25.175838474704115 ], [ -78.033907175636799, 25.175827647420146 ], [ -78.033878033390664, 25.175808978116976 ], [ -78.033858665713154, 25.175781602591634 ], [ -78.033834055467636, 25.175766326666981 ], [ -78.033826616518724, 25.175757423704358 ], [ -78.033822547150521, 25.175744894029286 ], [ -78.033817844470008, 25.1757088325895 ], [ -78.033814271870128, 25.175695872028896 ], [ -78.033807285672154, 25.175686577203727 ], [ -78.033790976758183, 25.175674686525443 ], [ -78.033780904847234, 25.175663999059871 ], [ -78.033774656166088, 25.175648907667451 ], [ -78.033772776890515, 25.175635472318664 ], [ -78.033773264676569, 25.175629190406276 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 3033, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 922 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.043023378852837, 25.175053727454102 ], [ -78.043010533843102, 25.175055330658747 ], [ -78.04298453480213, 25.175050754358132 ], [ -78.042948209626999, 25.175039915622396 ], [ -78.042918152895879, 25.175028459828855 ], [ -78.042848983517331, 25.174997964697869 ], [ -78.042770577661003, 25.174960349418946 ], [ -78.042602461548867, 25.174873924800199 ], [ -78.04247953159377, 25.174813829553162 ], [ -78.042415214914399, 25.174789205769361 ], [ -78.042352440642318, 25.174770166397522 ], [ -78.042288077250532, 25.174752513980923 ], [ -78.042248961908101, 25.174742096346659 ], [ -78.042181969147478, 25.174726672327804 ], [ -78.042002192004645, 25.174691004886427 ], [ -78.041925491150721, 25.174677969422603 ], [ -78.041688715004739, 25.174644457201275 ], [ -78.041401520913482, 25.174593000667834 ], [ -78.041330907942239, 25.174583119593052 ], [ -78.041257905452341, 25.174575807564754 ], [ -78.041183279706772, 25.174570623129853 ], [ -78.041107699051977, 25.174567284181311 ], [ -78.041031773444175, 25.174565658201992 ], [ -78.040956088584849, 25.174565750069807 ], [ -78.040881239158736, 25.174567708561941 ], [ -78.040807862071418, 25.174571823102561 ], [ -78.040537268846577, 25.174591003152635 ], [ -78.040462594591943, 25.174597143662261 ], [ -78.040389820274171, 25.174605134535501 ], [ -78.040320090346853, 25.174616022089253 ], [ -78.040227242275705, 25.17463602325148 ], [ -78.040176119152861, 25.174649118881003 ], [ -78.040127362192536, 25.174664436408111 ], [ -78.040092524627511, 25.174677803572912 ], [ -78.040026289146624, 25.174707511810823 ], [ -78.039978683826462, 25.174731537251542 ], [ -78.039933728536411, 25.174758053683966 ], [ -78.039879252002621, 25.17479906325082 ], [ -78.039853390403906, 25.174820609873141 ], [ -78.039803712670377, 25.174865883539344 ], [ -78.039756694848421, 25.174913670132735 ], [ -78.039689682324834, 25.174989067370049 ], [ -78.039597141477557, 25.175085863985693 ], [ -78.039552908432938, 25.175136335785208 ], [ -78.039490424316725, 25.175215821388171 ], [ -78.039410495816014, 25.175324666256422 ], [ -78.039392184557258, 25.175353504443358 ], [ -78.0393753195861, 25.17538340194201 ], [ -78.039355694092094, 25.175426190920291 ], [ -78.03933893512216, 25.175471508262707 ], [ -78.039314082331501, 25.1755541431437 ], [ -78.039301230134754, 25.17561535994184 ], [ -78.039292352983068, 25.175679470113103 ], [ -78.039286594782112, 25.175745338730295 ], [ -78.039283313236382, 25.175811936556208 ], [ -78.039282044815209, 25.17587827500487 ], [ -78.039284342705685, 25.176006054401924 ], [ -78.039289805360937, 25.17609915521842 ], [ -78.039291057612445, 25.176164108194492 ], [ -78.039289320270711, 25.176194316865139 ], [ -78.039284599623869, 25.176223710110762 ], [ -78.039276407886788, 25.176251844045662 ], [ -78.039264805246574, 25.176278282101496 ], [ -78.039250385489638, 25.17630374782976 ], [ -78.039233054292851, 25.176327730681002 ], [ -78.039205365520843, 25.176356719844573 ], [ -78.039141839358919, 25.176411260069607 ], [ -78.039094198106142, 25.176455080355012 ], [ -78.039025768041043, 25.176526549149063 ], [ -78.038981389469356, 25.176576482161686 ], [ -78.038960035616753, 25.176602607151331 ], [ -78.038939478569787, 25.176629354874915 ], [ -78.03890139988323, 25.17668649731268 ], [ -78.038883521612448, 25.176715997752375 ], [ -78.038858731703868, 25.176762596676927 ], [ -78.03882063235605, 25.176842949476139 ], [ -78.038802079450463, 25.176887407791135 ], [ -78.038755048153746, 25.177011210690562 ], [ -78.03871015035584, 25.177144186233132 ], [ -78.038693219807698, 25.177208969554147 ], [ -78.03868727116388, 25.17724054457149 ], [ -78.038688035630202, 25.177295896559638 ], [ -78.038704857482202, 25.177351485097176 ], [ -78.038738207437135, 25.177401962462341 ], [ -78.038765749783749, 25.177427790540715 ], [ -78.038797977742888, 25.17745028462193 ], [ -78.038852788449915, 25.177476586651785 ], [ -78.03891099568709, 25.177495271145947 ], [ -78.038967108053001, 25.177507989250145 ], [ -78.03906353680884, 25.17752512990964 ], [ -78.039077406796849, 25.177529922367292 ], [ -78.039083142539937, 25.177534641657534 ], [ -78.039081435740883, 25.177539306478621 ], [ -78.039080911124785, 25.17757951352176 ], [ -78.03907967144967, 25.177585973377809 ], [ -78.039077619697579, 25.17758912119583 ], [ -78.039071889344399, 25.177591152806635 ], [ -78.039064457582001, 25.177591577989659 ], [ -78.038999668388797, 25.17758992278381 ], [ -78.038944878342974, 25.177588581384065 ], [ -78.038934508191375, 25.177589589466283 ], [ -78.038932434879669, 25.177591269061246 ], [ -78.038931084711805, 25.177595503819326 ], [ -78.038930815217199, 25.177617296277017 ], [ -78.038929221605869, 25.177637896105065 ], [ -78.038917491404888, 25.177685728763873 ], [ -78.038873697636504, 25.177805450565831 ], [ -78.03885833554682, 25.177852136874282 ], [ -78.038818817759136, 25.177987732504551 ], [ -78.038805422081637, 25.178022338872768 ], [ -78.038788805943838, 25.178052757641233 ], [ -78.038767228410691, 25.178078483960888 ], [ -78.038739908846281, 25.17809852845518 ], [ -78.038708515422044, 25.178114721926164 ], [ -78.038641952056082, 25.17814354481963 ], [ -78.038610546953763, 25.178159735032796 ], [ -78.03858194279853, 25.17817883078283 ], [ -78.038555391293656, 25.178199619936898 ], [ -78.03846030821407, 25.17829411331256 ], [ -78.038435123945106, 25.178316483663245 ], [ -78.038407065067176, 25.178335892380051 ], [ -78.0383772212368, 25.178353624761211 ], [ -78.038346515023775, 25.178370805949957 ], [ -78.038314037332995, 25.178386073418544 ], [ -78.038246549600601, 25.178414504399221 ], [ -78.038102026841088, 25.178462136764175 ], [ -78.037992533886069, 25.178496197499179 ], [ -78.037824261467037, 25.178560385825609 ], [ -78.037789591886948, 25.178570691757553 ], [ -78.037747953176918, 25.178575819927861 ], [ -78.037701210239419, 25.178575346783436 ], [ -78.037652456872323, 25.178569682870492 ], [ -78.037603654996161, 25.178559952516309 ], [ -78.037510398191586, 25.178538113075227 ], [ -78.037471194814273, 25.178527154331015 ], [ -78.037470736532597, 25.178526990290234 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 3035, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 4724 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.08329899306905, 25.16443340166467 ], [ -78.083299261074799, 25.164406328077924 ], [ -78.083302304566999, 25.164351697111307 ], [ -78.083308422992374, 25.164295460330393 ], [ -78.083318303562166, 25.164239334912541 ], [ -78.08334009219945, 25.164152916516144 ], [ -78.083355713003897, 25.164101264485907 ], [ -78.083385771531624, 25.164016944499707 ], [ -78.083405589265112, 25.163966937232974 ], [ -78.083434320981141, 25.163902224929242 ], [ -78.083493005223715, 25.163748265268151 ], [ -78.083514375245997, 25.163698507501358 ], [ -78.083546712799617, 25.163636186272221 ], [ -78.083564331457296, 25.163606394843434 ], [ -78.083603013811697, 25.163550766703104 ], [ -78.083656119516377, 25.16348703392017 ], [ -78.083691617343135, 25.163453243807346 ], [ -78.083731642678941, 25.163425375230162 ], [ -78.083774665692843, 25.163402057366557 ], [ -78.083804242723588, 25.163388360487637 ], [ -78.083835002835514, 25.163377015802162 ], [ -78.083884280818779, 25.163366127244775 ], [ -78.083936313934984, 25.163362124528852 ], [ -78.08397208484962, 25.163362764410586 ], [ -78.084027772312368, 25.163366487432278 ], [ -78.084085290541708, 25.163373074879512 ], [ -78.084143090842034, 25.163382722700277 ], [ -78.084199659552141, 25.163395855313286 ], [ -78.084444133361771, 25.163468155396135 ], [ -78.084499190207197, 25.163487336379845 ], [ -78.08458541050814, 25.163524621029332 ], [ -78.084633330238674, 25.163550173167064 ], [ -78.084662974643066, 25.163569427313515 ], [ -78.084690870925911, 25.163589921377813 ], [ -78.084717164614261, 25.163612013920051 ], [ -78.084741923980118, 25.16363514961748 ], [ -78.084787361665491, 25.163685322884923 ], [ -78.084829648060889, 25.163737810105872 ], [ -78.084890546650598, 25.163818556880599 ], [ -78.084988046198319, 25.163955623497586 ], [ -78.085006123895084, 25.163984340788556 ], [ -78.085040126026911, 25.16404334049037 ], [ -78.085101461197894, 25.164167193833361 ], [ -78.085160700599289, 25.164292727641854 ], [ -78.08519192424194, 25.164368716035757 ], [ -78.085267310860559, 25.164583521618745 ], [ -78.085284166848581, 25.164627954321247 ], [ -78.085365154463005, 25.164808217634761 ], [ -78.085386259482277, 25.16484893947478 ], [ -78.085422126516676, 25.164906049220619 ], [ -78.085461487997463, 25.164959942499177 ], [ -78.085502314630489, 25.165011977113938 ], [ -78.085558860882685, 25.165094084908489 ], [ -78.085576192977783, 25.16512520694106 ], [ -78.085592383314165, 25.165158598194964 ], [ -78.085607306127656, 25.165193211457154 ], [ -78.085620208630075, 25.165229329668676 ], [ -78.085630930921283, 25.165265928383015 ], [ -78.085639339152365, 25.165302005107389 ], [ -78.085644385887619, 25.165337872866878 ], [ -78.085644393972458, 25.165385515219516 ], [ -78.08563721912833, 25.165430620022626 ], [ -78.085624102826827, 25.165470865207347 ], [ -78.085611562345463, 25.165496730774631 ], [ -78.085585739374309, 25.165537940214687 ], [ -78.085565431160646, 25.165561909735825 ], [ -78.085558270689532, 25.165566369313471 ], [ -78.085485468523942, 25.165565265191965 ], [ -78.085455701050407, 25.165561945510003 ], [ -78.085441456464935, 25.165557198925647 ], [ -78.085435813248324, 25.165553525566811 ], [ -78.085419192618915, 25.165530439016301 ], [ -78.085415064860186, 25.165526542067891 ], [ -78.085402984316246, 25.165520945844975 ], [ -78.085388172893843, 25.165518179848814 ], [ -78.085372296967861, 25.165517352976984 ], [ -78.085356702214511, 25.165518319693447 ], [ -78.085342817853473, 25.165521648320095 ], [ -78.085332769298688, 25.165528270612068 ], [ -78.085315492000845, 25.165550896163818 ], [ -78.085290155916567, 25.165565582281388 ], [ -78.085281970467719, 25.165574246951635 ], [ -78.085279154249292, 25.165580530199055 ], [ -78.085275648124721, 25.165598427045403 ], [ -78.085274193752269, 25.165620009441852 ], [ -78.085274147039883, 25.165662178238154 ], [ -78.085272791482154, 25.165757590319945 ], [ -78.085269688701132, 25.165772787819982 ], [ -78.085264693169819, 25.16578015241133 ], [ -78.085260683988736, 25.165782477729383 ], [ -78.085250340786544, 25.165784930695896 ], [ -78.085199629990441, 25.165785916110341 ], [ -78.085183170159468, 25.165788701613579 ], [ -78.085176063587298, 25.165793863656521 ], [ -78.08516733465764, 25.165815007785465 ], [ -78.085160182271352, 25.1658228569509 ], [ -78.085155112179905, 25.165825373334339 ], [ -78.085143270587807, 25.165828148267032 ], [ -78.085123567838707, 25.165828505195115 ], [ -78.085101963356124, 25.165828736913721 ], [ -78.085088813816995, 25.16583150940717 ], [ -78.085083123887955, 25.165834086769063 ], [ -78.085074600672556, 25.165842670928527 ], [ -78.0850682495835, 25.165856958617507 ], [ -78.085062341363894, 25.165864548418035 ], [ -78.085053164174937, 25.16586897708877 ], [ -78.085032566703774, 25.165875713188566 ], [ -78.085028610523281, 25.165878524707257 ], [ -78.085023574567799, 25.165886860884065 ], [ -78.085021059284983, 25.165897578476432 ], [ -78.085019505199554, 25.165915752525439 ], [ -78.085016719523836, 25.166063714859423 ], [ -78.085015455594259, 25.166069250892065 ], [ -78.085012022233258, 25.166073764925262 ], [ -78.084992780319851, 25.166091445428968 ], [ -78.084985657577946, 25.166099305146219 ], [ -78.084978268036451, 25.166110821944169 ], [ -78.084972589785522, 25.166123973776529 ], [ -78.084966156051451, 25.166151699454051 ], [ -78.084963150288516, 25.166205079963508 ], [ -78.084956773148321, 25.166439468540283 ], [ -78.084956791114621, 25.166479902018192 ], [ -78.084958819510518, 25.166505042949783 ], [ -78.084964717848692, 25.166526572337926 ], [ -78.084970256860743, 25.16653486700524 ], [ -78.084977625741004, 25.166540508712028 ], [ -78.084986722081581, 25.166544286110742 ], [ -78.084997951022615, 25.166546026836148 ], [ -78.085010912813857, 25.166545598362383 ], [ -78.085024538460075, 25.166543089311201 ], [ -78.085037792203778, 25.166538602938829 ], [ -78.085049731712232, 25.166532298601663 ], [ -78.085058660966155, 25.16652559505982 ], [ -78.085078226273041, 25.166507490210467 ], [ -78.085083231685829, 25.166504343732406 ], [ -78.085085594255006, 25.166504510406305 ], [ -78.085100854835034, 25.166504936441065 ], [ -78.085104773286332, 25.166503251001984 ], [ -78.085106229455377, 25.166468896659541 ], [ -78.085107655980082, 25.166389629754018 ], [ -78.085110242229774, 25.166374159148045 ], [ -78.085113422265877, 25.166371209423225 ], [ -78.085121048962634, 25.166369510973656 ], [ -78.085163131440439, 25.166370687448794 ], [ -78.085175292832758, 25.166371311866808 ], [ -78.085188460338188, 25.166376638933123 ], [ -78.085194517678147, 25.166382025351382 ], [ -78.085202965435087, 25.166397252856228 ], [ -78.085205398072887, 25.166406106906646 ], [ -78.085207095888762, 25.166423644266487 ], [ -78.08520611223355, 25.166483808692576 ], [ -78.085203332846064, 25.16651651336592 ], [ -78.085197081469971, 25.166537051652409 ], [ -78.085189002920629, 25.166545883740543 ], [ -78.08516422379185, 25.16656073397294 ], [ -78.085160396070421, 25.166565848826725 ], [ -78.085155523608307, 25.166578704662324 ], [ -78.08515296430808, 25.166593743516682 ], [ -78.085151260203972, 25.166618314481852 ], [ -78.085149588439236, 25.166730166337562 ], [ -78.08516649652951, 25.166731368826614 ], [ -78.085179850884529, 25.166734854337225 ], [ -78.08518576629065, 25.166738013004942 ], [ -78.085190921722074, 25.166742870930115 ], [ -78.085194495220279, 25.166748833778847 ], [ -78.085197357252753, 25.166762114816034 ], [ -78.085196687109573, 25.166826636976509 ], [ -78.085199682991018, 25.166852568925609 ], [ -78.085204883338207, 25.166861832715721 ], [ -78.085208650872531, 25.166864466968725 ], [ -78.085213135262407, 25.166866174354858 ], [ -78.085223118240179, 25.166867235373388 ], [ -78.085232714044054, 25.166865230414238 ], [ -78.085236681004332, 25.166862861212635 ], [ -78.085242552393055, 25.166853926704228 ], [ -78.08524558510544, 25.166841795317328 ], [ -78.085247807537442, 25.166813575467582 ], [ -78.085248691479705, 25.166732095686019 ], [ -78.085250185378001, 25.166645066022102 ], [ -78.085254912313047, 25.166584799232073 ], [ -78.085259119123521, 25.166555124788683 ], [ -78.085264925833499, 25.166527772389784 ], [ -78.085272614514025, 25.166504259988901 ], [ -78.085282433998387, 25.166486076271127 ], [ -78.085293442852162, 25.166473151316993 ], [ -78.085317445836594, 25.166449049448854 ], [ -78.085328034278845, 25.166435593573162 ], [ -78.08533727794314, 25.166418061093331 ], [ -78.08534427402256, 25.166398351278822 ], [ -78.085349752847463, 25.166377166598846 ], [ -78.085367479302974, 25.166288793531432 ], [ -78.085373241097201, 25.166268433260072 ], [ -78.085380523739204, 25.166250003154424 ], [ -78.085411517413135, 25.166197708080382 ], [ -78.085418526069006, 25.166188276752397 ], [ -78.085425931780193, 25.166182313876281 ], [ -78.0854338495311, 25.166180978855429 ], [ -78.08544122919119, 25.166184479016671 ], [ -78.085447790486015, 25.166194683551087 ], [ -78.08545227577423, 25.166210075314503 ], [ -78.085455214163503, 25.166229232288654 ], [ -78.085457980076285, 25.166274837615425 ], [ -78.085457429409004, 25.166379298400926 ], [ -78.085447003561796, 25.166731621682558 ], [ -78.085448111184547, 25.166744372618343 ], [ -78.085447122139414, 25.166780139949548 ], [ -78.085443340232075, 25.166834071425868 ], [ -78.085435878825336, 25.166901388782595 ], [ -78.085423778518461, 25.166977325142472 ], [ -78.085413858422783, 25.167026205114436 ], [ -78.085394576085221, 25.167110942548376 ], [ -78.085371882844498, 25.16719560105858 ], [ -78.085344850740967, 25.1672752064772 ], [ -78.085326474803509, 25.16731843327657 ], [ -78.085307196957515, 25.167358426609624 ], [ -78.085287185187937, 25.167394101074422 ], [ -78.085266632632511, 25.167424485908214 ], [ -78.085223272750383, 25.167479170784798 ], [ -78.085199666821367, 25.167504181424448 ], [ -78.085174945184733, 25.167528144867823 ], [ -78.085097421474046, 25.167593852029864 ], [ -78.085071494298305, 25.167614567376653 ], [ -78.084986514570758, 25.167676062154591 ], [ -78.084952474709681, 25.167707631510659 ], [ -78.084929416752956, 25.16774250340762 ], [ -78.084917042459921, 25.167777250900205 ], [ -78.084914382548376, 25.16780732749832 ], [ -78.084917590432255, 25.167821323077696 ], [ -78.084925686049573, 25.167832144568468 ], [ -78.084946864730725, 25.167840861924933 ], [ -78.084975455411296, 25.167840639153468 ], [ -78.084997014978086, 25.167835747937648 ], [ -78.085032194801272, 25.167823155657775 ], [ -78.085068355584738, 25.167803918443578 ], [ -78.08510322908235, 25.167777493997669 ], [ -78.085185364743737, 25.167702476053066 ], [ -78.085257530902069, 25.167631118350087 ], [ -78.085304702335961, 25.167580264568564 ], [ -78.085327201540593, 25.167553545754988 ], [ -78.085348210440102, 25.16752498296842 ], [ -78.085386648452797, 25.167464441806761 ], [ -78.08541487801061, 25.167410096773214 ], [ -78.085466686548031, 25.167297714627324 ], [ -78.085514959316413, 25.167201050857734 ], [ -78.085560016116148, 25.167106070003211 ], [ -78.085598661639665, 25.167029108480094 ], [ -78.085622212771469, 25.166987098699309 ], [ -78.085647417701708, 25.166954437243351 ], [ -78.085663763446632, 25.166941064353569 ], [ -78.085680549366018, 25.166932555071163 ], [ -78.085705735431645, 25.166930603773739 ], [ -78.085727936395585, 25.166941873328863 ], [ -78.085744714230117, 25.166968297142855 ], [ -78.085754402560468, 25.167006126278039 ], [ -78.085757831429916, 25.16705167602754 ], [ -78.085755412266849, 25.167101843011164 ], [ -78.08574715315612, 25.167153932811633 ], [ -78.085729936045396, 25.167219665379466 ], [ -78.085707944388915, 25.167286341036164 ], [ -78.085670342707715, 25.167388333386285 ], [ -78.085634956272088, 25.167472047768005 ], [ -78.085612340286502, 25.167521668218043 ], [ -78.085562557450075, 25.167616696718 ], [ -78.085517213189476, 25.167692048059948 ], [ -78.085487732278466, 25.1677350665746 ], [ -78.085443798372893, 25.167787478879408 ], [ -78.085371542382987, 25.16785912918326 ], [ -78.085321199896143, 25.167904232258369 ], [ -78.085243351893624, 25.167968380632114 ], [ -78.085137149467499, 25.168047135926599 ], [ -78.085049480183955, 25.168121798363895 ], [ -78.085016980035306, 25.168145799085366 ], [ -78.084991022316828, 25.168160845063735 ], [ -78.084964065671798, 25.168173711300643 ], [ -78.084893739263137, 25.168202838179525 ], [ -78.084850941726373, 25.16822291031459 ], [ -78.084796020526539, 25.168255022634355 ], [ -78.084743376555949, 25.168291918010219 ], [ -78.084640801526902, 25.168373160970425 ], [ -78.084564438439529, 25.168436824531355 ], [ -78.084511692061, 25.168477571989669 ], [ -78.084484588990577, 25.168497252199046 ], [ -78.084401460690799, 25.168552809788466 ], [ -78.084318786040271, 25.168605215237566 ], [ -78.084291150268854, 25.168621484768369 ], [ -78.08423548526396, 25.168650648126572 ], [ -78.084193290496756, 25.168668801439512 ], [ -78.08415223748824, 25.168684521354294 ], [ -78.084056111464662, 25.168718762061573 ], [ -78.084034196164978, 25.16872968428822 ], [ -78.084012873753395, 25.168743641549451 ], [ -78.08399221519683, 25.168760006999054 ], [ -78.083962714522855, 25.168789356507606 ], [ -78.083873892700822, 25.168892156562944 ], [ -78.083834204233241, 25.168942331732612 ], [ -78.08378263824099, 25.169013361018507 ], [ -78.083755079724696, 25.16904792196588 ], [ -78.083616467879722, 25.169191891796181 ], [ -78.08354115222798, 25.169258875324061 ], [ -78.083437748952278, 25.1693457266961 ], [ -78.083358115997314, 25.169408785672292 ], [ -78.083249243778099, 25.169490457164827 ], [ -78.083169597348387, 25.169553728265178 ], [ -78.083059941798297, 25.16963469720918 ], [ -78.082787003970566, 25.169815409226459 ], [ -78.082745937487346, 25.169845856872538 ], [ -78.082720449587811, 25.169868210074117 ], [ -78.082696539129856, 25.169891806380498 ], [ -78.082667130982401, 25.169925947560202 ], [ -78.082612173849952, 25.169997807992694 ], [ -78.082569757198883, 25.170050131518764 ], [ -78.082524802807114, 25.170099708642635 ], [ -78.082364075338148, 25.170261863640572 ], [ -78.082262325860839, 25.170368655997258 ], [ -78.082242251209195, 25.17038549440505 ], [ -78.082221969046728, 25.170400066930867 ], [ -78.082201191912517, 25.17041148332147 ], [ -78.082179632345671, 25.170418855762883 ], [ -78.082157827538794, 25.170422336290059 ], [ -78.082136290429872, 25.170422414339725 ], [ -78.082070077406883, 25.170415271982442 ], [ -78.082046835295557, 25.170413954081283 ], [ -78.082022434357498, 25.170415287429776 ], [ -78.081996906033737, 25.170419454143662 ], [ -78.081942552569188, 25.170433586823087 ], [ -78.0819039106389, 25.170445779641991 ], [ -78.081864387461366, 25.170460126954879 ], [ -78.081825765294013, 25.170477455599265 ], [ -78.081744030281271, 25.170525731722801 ], [ -78.081661781432146, 25.170570868771264 ], [ -78.081609183275603, 25.170596646263967 ], [ -78.081561817805635, 25.170617952976322 ], [ -78.081540657090812, 25.170625853052641 ], [ -78.081521455601589, 25.170630945784438 ], [ -78.081504573562484, 25.170632885640426 ], [ -78.081490299332586, 25.170630670172013 ], [ -78.081479506074473, 25.170624004254275 ], [ -78.081473223257376, 25.170612896016646 ], [ -78.081471563170737, 25.170598328394373 ], [ -78.081474100013097, 25.170581267249581 ], [ -78.081479755806143, 25.170561554042905 ], [ -78.081488307767614, 25.170540005041762 ], [ -78.08151271319727, 25.1704934443894 ], [ -78.081544589016815, 25.170444154420679 ], [ -78.081582133205771, 25.170394288002601 ], [ -78.081666154430934, 25.170299793381261 ], [ -78.081740369646468, 25.170211593077667 ], [ -78.081769003446155, 25.170175421056523 ], [ -78.08177955326083, 25.170160146868493 ], [ -78.081786656239771, 25.170146867014406 ], [ -78.081789783275326, 25.170136345733159 ], [ -78.081787882440153, 25.170128645627912 ], [ -78.081780860309578, 25.170124618743394 ], [ -78.081769870320414, 25.170124344755859 ], [ -78.081755893432899, 25.17012757081644 ], [ -78.08173926741361, 25.170133299350105 ], [ -78.081628455731746, 25.170181132514621 ], [ -78.081575277263539, 25.170199238444663 ], [ -78.081520775576948, 25.170213388222976 ], [ -78.081440946789201, 25.170225281873044 ], [ -78.081414445589999, 25.170230633161509 ], [ -78.08138767489622, 25.170237870652766 ], [ -78.081277766021202, 25.170273861352268 ], [ -78.081165227777362, 25.170305823536562 ], [ -78.081110048761047, 25.17032600020476 ], [ -78.080977082827616, 25.170377645533286 ], [ -78.080929337370279, 25.170392909124907 ], [ -78.080906935183719, 25.170397657960081 ], [ -78.080885614568771, 25.170399558794958 ], [ -78.080865900141532, 25.170398542523124 ], [ -78.080848373112019, 25.1703949294734 ], [ -78.080802757560207, 25.170380480525662 ], [ -78.080785693163051, 25.170377620329749 ], [ -78.080766684811692, 25.170377766672896 ], [ -78.080746333478913, 25.17038129191722 ], [ -78.080725200611823, 25.170388206631564 ], [ -78.080703377838631, 25.170397712432315 ], [ -78.080658164732071, 25.170423589962745 ], [ -78.080611440659197, 25.170456259432651 ], [ -78.080587695491317, 25.170474623861182 ], [ -78.080539728150072, 25.170514007209515 ], [ -78.080466855017619, 25.170578016810538 ], [ -78.080364338379042, 25.170663630646075 ], [ -78.080183918940762, 25.170818349875102 ], [ -78.08012988078481, 25.17086027053038 ], [ -78.080073151276324, 25.170899413914896 ], [ -78.080014624238913, 25.170936451581028 ], [ -78.079805579984111, 25.171054460488957 ], [ -78.079775333708454, 25.171069059764303 ], [ -78.0797133876831, 25.171094745281238 ], [ -78.079681803816058, 25.171105397374813 ], [ -78.079618090804516, 25.171122425925816 ], [ -78.079570012072168, 25.171130317026268 ], [ -78.079522720264052, 25.171134021111563 ], [ -78.079462078592471, 25.171135758519394 ], [ -78.079431647263917, 25.171138287801472 ], [ -78.079401184494316, 25.171142880509191 ], [ -78.079340863521281, 25.171157678961901 ], [ -78.079311228998392, 25.171167243239513 ], [ -78.079254165316598, 25.171190695391363 ], [ -78.079227069432676, 25.171204119034826 ], [ -78.079177328817067, 25.171234885034778 ], [ -78.079134007562502, 25.171269108765575 ], [ -78.079115471724947, 25.171287312908404 ], [ -78.079099887751383, 25.171306856891349 ], [ -78.079087446084728, 25.171327157784624 ], [ -78.079078632713433, 25.171348598516133 ], [ -78.079073159278408, 25.171370613229644 ], [ -78.07906952918637, 25.171393605991227 ], [ -78.07906338920138, 25.171462990755114 ], [ -78.079055007919777, 25.171498968897783 ], [ -78.079039334114697, 25.171534386052986 ], [ -78.07901607313876, 25.171567334900644 ], [ -78.078946712419068, 25.171644158599722 ], [ -78.078899996430991, 25.171687211492365 ], [ -78.078848331624059, 25.171728299328045 ], [ -78.078648706204973, 25.171864084697162 ], [ -78.078510937878065, 25.17196417891175 ], [ -78.078435533293103, 25.172023812962724 ], [ -78.078387640512034, 25.172059056795142 ], [ -78.078364641844118, 25.172074666516941 ], [ -78.078321299928305, 25.1720998233681 ], [ -78.078301347447521, 25.172108582695724 ], [ -78.078282912221255, 25.172114364794719 ], [ -78.078258776286219, 25.172115717636771 ], [ -78.078241742431814, 25.172108051802795 ], [ -78.078236166588823, 25.172097994104313 ], [ -78.078235468597853, 25.172085046167844 ], [ -78.07823919211468, 25.172070238071594 ], [ -78.078246241194734, 25.172053527538484 ], [ -78.078256020254926, 25.172035669850935 ], [ -78.078307411973995, 25.171955244777116 ], [ -78.078331431128092, 25.171912779783518 ], [ -78.078340345110632, 25.17189134890728 ], [ -78.078346646792383, 25.171858039984777 ], [ -78.078343717386232, 25.171825877394504 ], [ -78.078336695255643, 25.171806516421579 ], [ -78.07832674910884, 25.171788614795343 ], [ -78.078308153084151, 25.171764283896501 ], [ -78.078284412407797, 25.171746035109418 ], [ -78.078265254037731, 25.171739009902939 ], [ -78.078244119374034, 25.17173627006413 ], [ -78.078221626457633, 25.171737514780247 ], [ -78.078197921713937, 25.171741739985546 ], [ -78.078147383394324, 25.171757095276352 ], [ -78.078065093222776, 25.171788967640872 ], [ -78.077980266208797, 25.171825102597928 ], [ -78.077922791098572, 25.171846478201203 ], [ -78.077879005415014, 25.171858661122695 ], [ -78.077781961313164, 25.17187806111173 ], [ -78.077755270569469, 25.171885815577987 ], [ -78.077728583418988, 25.171896148903535 ], [ -78.077701890878615, 25.171908314746897 ], [ -78.07764827942249, 25.171937574066817 ], [ -78.077621698273219, 25.17195427079465 ], [ -78.07759573875812, 25.171972824428167 ], [ -78.077518207860933, 25.172032887742439 ], [ -78.077441860044871, 25.172098613614942 ], [ -78.077400987597798, 25.172129120040232 ], [ -78.077303784494134, 25.172198018208277 ], [ -78.077246588760019, 25.172233192884924 ], [ -78.07718841116727, 25.172264437485111 ], [ -78.077158059788772, 25.172276717112425 ], [ -78.077126967300146, 25.172286617886243 ], [ -78.077095367263382, 25.172294183709429 ], [ -78.077041540211567, 25.172299549541147 ], [ -78.076988018586931, 25.172295721101506 ], [ -78.076937955476154, 25.172282434163066 ], [ -78.076910546978525, 25.172269726082664 ], [ -78.076884728498939, 25.172254394433608 ], [ -78.076860059862909, 25.172237367666696 ], [ -78.076813915203402, 25.172198572678003 ], [ -78.076784517835748, 25.172171527235157 ], [ -78.076757535139521, 25.17214285089662 ], [ -78.076735386277889, 25.172111028217966 ], [ -78.076718511425312, 25.172069953519401 ], [ -78.07670964235848, 25.17202496743219 ], [ -78.076707332789866, 25.17199373090061 ], [ -78.076706382372336, 25.171938042358928 ], [ -78.076707701099139, 25.171879636720433 ], [ -78.076712285202078, 25.171785740811291 ], [ -78.076712714596766, 25.171738476569299 ], [ -78.076710065464965, 25.171691212308975 ], [ -78.076703802410819, 25.171644968356851 ], [ -78.076696657211045, 25.171611528472589 ], [ -78.076678504954089, 25.171545709654314 ], [ -78.076660411087644, 25.171488325781663 ], [ -78.076639366255478, 25.171432800424242 ], [ -78.076612591968441, 25.171382160424177 ], [ -78.076576803985802, 25.171339851329062 ], [ -78.076537167620543, 25.171312574800488 ], [ -78.076490848687868, 25.171292348701826 ], [ -78.076440221435078, 25.171277595794017 ], [ -78.076387396903129, 25.171267041276888 ], [ -78.076289978203803, 25.171251867226001 ], [ -78.076227597393867, 25.17123997936719 ], [ -78.076166562260184, 25.171224685800151 ], [ -78.0761310455688, 25.171213528023468 ], [ -78.07602594447718, 25.171176952232539 ], [ -78.075964063130513, 25.171159544012358 ], [ -78.07589932064964, 25.171145171578452 ], [ -78.075794033606783, 25.171126559282033 ], [ -78.075721511715599, 25.171119391762616 ], [ -78.075648154391175, 25.17111811858479 ], [ -78.075576223591426, 25.171123065766775 ], [ -78.075508130394553, 25.171135134938787 ], [ -78.075446593102669, 25.171155861879175 ], [ -78.075401464437732, 25.171180648186265 ], [ -78.075359849982149, 25.171209612557465 ], [ -78.075306500834088, 25.171250907059093 ], [ -78.075229693978983, 25.171316896768843 ], [ -78.075168383062532, 25.171374988854694 ], [ -78.075134714205689, 25.171412734508635 ], [ -78.07510398733136, 25.17145834277477 ], [ -78.07502550421998, 25.171608163426697 ], [ -78.074995805916643, 25.171654761864797 ], [ -78.074967461374513, 25.171689856210225 ], [ -78.074907545541663, 25.171757010723457 ], [ -78.074886430640916, 25.171783734306974 ], [ -78.074846423271453, 25.171839021293334 ], [ -78.074753882424133, 25.171984116281468 ], [ -78.074687920929449, 25.172106761562148 ], [ -78.074645600398085, 25.172180280053663 ], [ -78.074618609617048, 25.172221770160796 ], [ -78.074599176362511, 25.17224707738751 ], [ -78.074578793588714, 25.172270962663269 ], [ -78.074557179224669, 25.172292743064833 ], [ -78.074534052996, 25.172311723474319 ], [ -78.074509520005563, 25.172328212834774 ], [ -78.074483647627076, 25.172341555865611 ], [ -78.074456455623391, 25.172351852567274 ], [ -78.074408464925995, 25.17236064439702 ], [ -78.074359415114856, 25.17235960619044 ], [ -78.07431290034944, 25.172349356643601 ], [ -78.074287336991404, 25.172339006283366 ], [ -78.074263625959489, 25.172326552679298 ], [ -78.074195912749985, 25.172278185399318 ], [ -78.07416340990639, 25.172260687905855 ], [ -78.074132505165664, 25.172255066788772 ], [ -78.074102262483294, 25.172260159452531 ], [ -78.07408379042613, 25.172269687058481 ], [ -78.074066601163153, 25.172283213021775 ], [ -78.074050529404403, 25.17229982758883 ], [ -78.074035987476591, 25.172319754334584 ], [ -78.07402321972144, 25.172342391634231 ], [ -78.074009786314704, 25.172377389034178 ], [ -78.074000220155199, 25.1724165205496 ], [ -78.073993821455474, 25.172458245534415 ], [ -78.073983865427195, 25.172550232807279 ], [ -78.073974653203962, 25.172612199889461 ], [ -78.073961492885019, 25.17267387995031 ], [ -78.073942777384389, 25.1727328299196 ], [ -78.073914379841639, 25.172795272514804 ], [ -78.073891289545557, 25.172841863995142 ], [ -78.073866338838542, 25.172887350589487 ], [ -78.073829101873372, 25.17294467608054 ], [ -78.073808880796378, 25.172972140046976 ], [ -78.073787293381727, 25.172998125973095 ], [ -78.073740686089863, 25.173047170196316 ], [ -78.073690198075923, 25.173092366473227 ], [ -78.073663670825624, 25.173113703643374 ], [ -78.073581460604075, 25.17317308998043 ], [ -78.073478362755509, 25.173252541904596 ], [ -78.073431377272897, 25.17329148696259 ], [ -78.073410119540014, 25.173311006234275 ], [ -78.073382392140445, 25.17334132211467 ], [ -78.073343690921362, 25.173387704445997 ], [ -78.073327696417749, 25.173403356273482 ], [ -78.073309821740239, 25.173416466669387 ], [ -78.07327930776664, 25.173429736411322 ], [ -78.073246688142049, 25.173435993238048 ], [ -78.073225006404357, 25.173436908672898 ], [ -78.073161755126876, 25.173434368869625 ], [ -78.073140847736951, 25.173435429830946 ], [ -78.073120484726104, 25.173438656616902 ], [ -78.07308364751124, 25.173450413368826 ], [ -78.073040967653782, 25.173470134238244 ], [ -78.073029583304177, 25.173472612253061 ], [ -78.073020176146528, 25.173471753728307 ], [ -78.073013121676581, 25.173466506645685 ], [ -78.073008473793323, 25.173450313370143 ], [ -78.073010998957585, 25.173427330752428 ], [ -78.073023134298765, 25.173390877575276 ], [ -78.073031521868586, 25.173370987589429 ], [ -78.073060650639988, 25.173311198914757 ], [ -78.073076015424618, 25.173272686378255 ], [ -78.073080176421016, 25.173254326436162 ], [ -78.073081044193557, 25.173237144526251 ], [ -78.073077444644213, 25.173220931708265 ], [ -78.073068891784402, 25.173206555452293 ], [ -78.073044244707944, 25.173188528829819 ], [ -78.073010927092369, 25.173176916766494 ], [ -78.072974237201208, 25.173170478627672 ], [ -78.07291026906816, 25.173163767320947 ], [ -78.072881545436928, 25.173156148706759 ], [ -78.072858218883923, 25.173142913081005 ], [ -78.07284733848924, 25.173130592890978 ], [ -78.072840091779824, 25.173116138576447 ], [ -78.072834769261789, 25.173099220058869 ], [ -78.072819218525908, 25.173033915046723 ], [ -78.072808657033093, 25.172963802728567 ], [ -78.072802287079412, 25.172901458592804 ], [ -78.072792885311671, 25.172850010266622 ], [ -78.072763427756868, 25.172760230519671 ], [ -78.07275868555044, 25.172739585152197 ], [ -78.072756608645534, 25.1727197601003 ], [ -78.072758244477654, 25.172700378944292 ], [ -78.072763919135326, 25.172682134362365 ], [ -78.072773404446394, 25.172665702772932 ], [ -78.072785924266498, 25.172650250849291 ], [ -78.072817965376075, 25.172616966524224 ], [ -78.072853706646256, 25.172576754592214 ], [ -78.072871332490493, 25.17255379782598 ], [ -78.072887609963402, 25.172528037007087 ], [ -78.072902497742632, 25.172499998960134 ], [ -78.072915956302225, 25.172470212948873 ], [ -78.07293328121078, 25.172416612419109 ], [ -78.072944983564, 25.172358268798206 ], [ -78.072951532282389, 25.172297131664866 ], [ -78.072953014502602, 25.172235017268651 ], [ -78.072949114915986, 25.172173723976417 ], [ -78.072939090615719, 25.172115152597584 ], [ -78.072921721689681, 25.172061432399783 ], [ -78.072895254626459, 25.172015055255024 ], [ -78.072873858553052, 25.171991317083322 ], [ -78.072848763217266, 25.171970934186934 ], [ -78.072794737637764, 25.171944076498264 ], [ -78.072732319996902, 25.171928136678758 ], [ -78.072665567086389, 25.17192160660419 ], [ -78.072598167388946, 25.171923860260481 ], [ -78.072533707877426, 25.171935106589871 ], [ -78.072500088427944, 25.171945400886877 ], [ -78.072468066183021, 25.171957748838928 ], [ -78.07243747944591, 25.17197213174622 ], [ -78.072408356962697, 25.171987791885574 ], [ -78.072381060754452, 25.172005012995946 ], [ -78.072356045368736, 25.172024163368626 ], [ -78.072333041310998, 25.172044448695313 ], [ -78.072301991043119, 25.172075681961832 ], [ -78.072277518239886, 25.17210956074204 ], [ -78.072261507566552, 25.172152248430763 ], [ -78.07225721721278, 25.172197647477798 ], [ -78.072264037222396, 25.172242440819094 ], [ -78.072273133562987, 25.172267772431699 ], [ -78.072285019172469, 25.172292350383504 ], [ -78.072329782223107, 25.172361046021209 ], [ -78.072355970808587, 25.172407925470914 ], [ -78.072365727410883, 25.172432087136478 ], [ -78.072372494419909, 25.172456400828938 ], [ -78.072375137263478, 25.172493967287348 ], [ -78.072368113336282, 25.17253093048566 ], [ -78.072351945457797, 25.172565561980175 ], [ -78.072305939138801, 25.172635898103096 ], [ -78.072278756118337, 25.172671836875502 ], [ -78.072237027576747, 25.172717056868645 ], [ -78.072133457214392, 25.17281298049889 ], [ -78.072101882330458, 25.172846758262079 ], [ -78.072078112908045, 25.172880020573349 ], [ -78.072057903509105, 25.172915145460131 ], [ -78.07202716944829, 25.172976281470497 ], [ -78.072005142757519, 25.173014530688739 ], [ -78.071977766599218, 25.173050293741536 ], [ -78.071955933046254, 25.173071649618091 ], [ -78.071931765670143, 25.173091520953719 ], [ -78.071905725306706, 25.17311044758091 ], [ -78.071877863159813, 25.173127876660445 ], [ -78.071818157532789, 25.173160153540156 ], [ -78.071786636547799, 25.173174850936199 ], [ -78.071753831870254, 25.173188615007732 ], [ -78.071691623536836, 25.173209713952431 ], [ -78.071565533308572, 25.173246958231275 ], [ -78.07150951885906, 25.173268877481167 ], [ -78.071464103631527, 25.173297131608802 ], [ -78.071445026109842, 25.173316732179373 ], [ -78.071430356621264, 25.173338598571888 ], [ -78.071419415141122, 25.173362062500978 ], [ -78.071410596379977, 25.173387628837165 ], [ -78.071403390993041, 25.173414731733072 ], [ -78.071397857370911, 25.173442823227482 ], [ -78.0713943108222, 25.173493200586616 ], [ -78.071398191544176, 25.173545995776522 ], [ -78.071409623504522, 25.173598778748559 ], [ -78.071443710077958, 25.173692310665292 ], [ -78.071462413900477, 25.173754486919659 ], [ -78.071478170350574, 25.173820772017347 ], [ -78.071506546333779, 25.173956398961053 ], [ -78.07152193716955, 25.174021087230088 ], [ -78.071546007527587, 25.174109170958648 ], [ -78.071560174857922, 25.174158745618971 ], [ -78.071574702412718, 25.174200563501515 ], [ -78.071595411274942, 25.174246485352523 ], [ -78.071597860980702, 25.17426159155238 ], [ -78.071593275081199, 25.174269958049752 ], [ -78.071573321702132, 25.174276418081242 ], [ -78.071542559793528, 25.174273712445121 ], [ -78.071506337026307, 25.174261920001054 ], [ -78.071483636599083, 25.174250431614709 ], [ -78.07143540874641, 25.174221576906955 ], [ -78.071410165188638, 25.174205013007313 ], [ -78.0713596187842, 25.174167282851759 ], [ -78.071334914215598, 25.174146455612284 ], [ -78.071299790087963, 25.174111926190982 ], [ -78.071195495683469, 25.174004824923781 ], [ -78.071130489996278, 25.173947341397398 ], [ -78.071100735997433, 25.173918278491431 ], [ -78.071081238064181, 25.1738951219812 ], [ -78.071064429686899, 25.173871240275641 ], [ -78.071050751938358, 25.173846109805904 ], [ -78.071040494076144, 25.173820202108065 ], [ -78.071034326243421, 25.173792921256471 ], [ -78.071032349949789, 25.173764795696986 ], [ -78.071034125020759, 25.173736343306857 ], [ -78.071038529460608, 25.173706827512142 ], [ -78.07104498475428, 25.173676637736939 ], [ -78.071070517569581, 25.173579078224773 ], [ -78.07108709867309, 25.173529388696288 ], [ -78.071107113137614, 25.173481364165159 ], [ -78.071168735769447, 25.173361188528396 ], [ -78.071188345093802, 25.17331502976154 ], [ -78.071214290235858, 25.173239555066903 ], [ -78.071225288309904, 25.173188764599537 ], [ -78.071228971402547, 25.173142187885762 ], [ -78.071225177817126, 25.173104042771616 ], [ -78.071213152968724, 25.173079280432493 ], [ -78.071202425287581, 25.17307315610638 ], [ -78.071189919840506, 25.173073081310431 ], [ -78.071167185277304, 25.173085287686337 ], [ -78.071109874558815, 25.173135112353716 ], [ -78.071014847174794, 25.173203501016022 ], [ -78.070907637737193, 25.173291627611217 ], [ -78.070870497790068, 25.173317094776518 ], [ -78.07084406935445, 25.173330553144794 ], [ -78.070816668941646, 25.173341283090796 ], [ -78.070788663064349, 25.173349398435018 ], [ -78.070760062502302, 25.173354069920268 ], [ -78.070731208615385, 25.173355304050833 ], [ -78.07070241581394, 25.173353461797895 ], [ -78.070673634690522, 25.173349609001463 ], [ -78.070645179655571, 25.173344018828544 ], [ -78.07059018030229, 25.173329230397155 ], [ -78.070526980228777, 25.173309174549633 ], [ -78.0704911221776, 25.173301073836708 ], [ -78.070466847902011, 25.173300097425951 ], [ -78.07044265806806, 25.173303187631809 ], [ -78.070419005426601, 25.173310343640885 ], [ -78.070395548617881, 25.173320570342888 ], [ -78.07036022147102, 25.173339866848522 ], [ -78.070326637055842, 25.17336485677404 ], [ -78.070296782445681, 25.173396644166527 ], [ -78.070214260508735, 25.17350780688686 ], [ -78.070172403508039, 25.173552669664417 ], [ -78.070088485589153, 25.173636392008635 ], [ -78.070070702539795, 25.173658161597341 ], [ -78.070029037778596, 25.173714821695707 ], [ -78.070000163230418, 25.173748680508574 ], [ -78.069978245235788, 25.173769680170945 ], [ -78.069954249437941, 25.173789719682762 ], [ -78.069928191108133, 25.173808225070257 ], [ -78.069900024432428, 25.173825525596953 ], [ -78.069859170849938, 25.17384584964767 ], [ -78.069815370793322, 25.173864021698947 ], [ -78.069735581531447, 25.173894217931704 ], [ -78.069617478224444, 25.173934661132414 ], [ -78.069560380406642, 25.173957133907408 ], [ -78.06943275675421, 25.17402102219059 ], [ -78.069371311988775, 25.174055359771295 ], [ -78.069312298064531, 25.174092045265706 ], [ -78.069225734607087, 25.174148843371192 ], [ -78.069056646517794, 25.174266466250558 ], [ -78.068943112042291, 25.174343456537933 ], [ -78.06889053903862, 25.174385680852595 ], [ -78.068770207909694, 25.17449947350709 ], [ -78.068745851887371, 25.174520965712013 ], [ -78.068695642351202, 25.174561454232208 ], [ -78.068595956304108, 25.174634753362295 ], [ -78.068548399492954, 25.174666883505022 ], [ -78.068524922921355, 25.17468090512553 ], [ -78.068501173261822, 25.174692486152022 ], [ -78.06843197962877, 25.17471819610822 ], [ -78.068409121098043, 25.17472819017744 ], [ -78.068386568892862, 25.174740687437524 ], [ -78.068354165762216, 25.174764504746676 ], [ -78.068277917659245, 25.174830094190504 ], [ -78.068212738597154, 25.17489298854543 ], [ -78.068189765082053, 25.174912772594617 ], [ -78.068053786199187, 25.175022623397918 ], [ -78.068030829752132, 25.175039721318569 ], [ -78.068005703873595, 25.175055780240214 ], [ -78.067950454788686, 25.175086150969811 ], [ -78.067920608263364, 25.175100064414959 ], [ -78.067857422562938, 25.175125663719097 ], [ -78.067812891277683, 25.175140233239429 ], [ -78.06772117328714, 25.175164211441661 ], [ -78.067653375636027, 25.175178394789114 ], [ -78.067619460640771, 25.175182985718653 ], [ -78.067562442773081, 25.175184501936762 ], [ -78.067506188473359, 25.175177900493868 ], [ -78.067453453772899, 25.175162682215525 ], [ -78.067410269960533, 25.17514141044288 ], [ -78.067285529900204, 25.175061424804735 ], [ -78.06718841842472, 25.174993129052268 ], [ -78.067149625577485, 25.174960933956584 ], [ -78.067126051987799, 25.174937217496247 ], [ -78.067083143059932, 25.174886529359632 ], [ -78.067045217086957, 25.174831877885961 ], [ -78.067027620887146, 25.174803966382036 ], [ -78.067011538348666, 25.174775063838982 ], [ -78.066989746118168, 25.174723065097286 ], [ -78.066973053623556, 25.174668115996326 ], [ -78.066959524995369, 25.174612357133192 ], [ -78.066947124651222, 25.174545691173748 ], [ -78.06693536390749, 25.174420419947975 ], [ -78.066927733617462, 25.174361730951897 ], [ -78.066916626847302, 25.174303819147404 ], [ -78.066899327989873, 25.174236051415221 ], [ -78.066886437165522, 25.174176588361739 ], [ -78.066858984650466, 25.174014040203836 ], [ -78.066851000424208, 25.173945242247434 ], [ -78.066846143233462, 25.173873966245552 ], [ -78.066842903908565, 25.173727780028056 ], [ -78.066845021237668, 25.173582300128913 ], [ -78.06685144598859, 25.173407337521915 ], [ -78.066851074086074, 25.173351990271978 ], [ -78.066846947225642, 25.173297426727117 ], [ -78.066831461168476, 25.173189547517431 ], [ -78.066823910828504, 25.173123631991224 ], [ -78.066818791329709, 25.173054417276386 ], [ -78.066815468461442, 25.172982770025559 ], [ -78.066807457285748, 25.172534100385338 ], [ -78.066804417386834, 25.172460234141592 ], [ -78.066791715208694, 25.172272103309279 ], [ -78.066789049008975, 25.172195894638023 ], [ -78.066787553314015, 25.172040049517097 ], [ -78.06678842018826, 25.17172470095193 ], [ -78.066786929883193, 25.171647374050927 ], [ -78.066783585455383, 25.171571754421201 ], [ -78.066777522725516, 25.171498682718255 ], [ -78.066772249662264, 25.171461719701895 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 3038, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 195 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.061506949747809, 25.181512862713653 ], [ -78.061498930487701, 25.181511657118268 ], [ -78.06148034614111, 25.181512157078441 ], [ -78.061419951506267, 25.181519348375087 ], [ -78.061359784145154, 25.181532900139096 ], [ -78.061238198968127, 25.181568545254709 ], [ -78.061196544088361, 25.181578787522735 ], [ -78.061155703082235, 25.181586872239663 ], [ -78.061047966333618, 25.181603901765214 ], [ -78.060938971943571, 25.181624926901353 ], [ -78.060829120560726, 25.181639334682039 ], [ -78.060758564183359, 25.181651247540849 ], [ -78.06072604427176, 25.181659659055725 ], [ -78.060667710372172, 25.181680362257122 ], [ -78.060623483615757, 25.181698182762318 ], [ -78.060582592304044, 25.181718199834126 ], [ -78.060561577116289, 25.181726963348272 ], [ -78.06053446146943, 25.181734661095007 ], [ -78.060505591412863, 25.181739536307216 ], [ -78.060475766447098, 25.181742016592764 ], [ -78.060445749241893, 25.181742415747213 ], [ -78.060352637964328, 25.181735903270166 ], [ -78.060324403016665, 25.181735841486571 ], [ -78.060296183340299, 25.181737488506737 ], [ -78.060250678281278, 25.181744698487723 ], [ -78.060178194119331, 25.181761610114762 ], [ -78.060151104523626, 25.181769059099096 ], [ -78.060125102787723, 25.181777927479082 ], [ -78.060076277555382, 25.181799752519524 ], [ -78.060006391321195, 25.181833753789963 ], [ -78.059908332123129, 25.181873528557581 ], [ -78.059844364888377, 25.181894765824755 ], [ -78.059766347104244, 25.181917057472209 ], [ -78.059731844610852, 25.181924288579022 ], [ -78.0596758148899, 25.181931728611151 ], [ -78.059650181462757, 25.181932491966869 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 3099, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 433 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.064678920779073, 25.178984854229231 ], [ -78.06466438513992, 25.17899916394931 ], [ -78.064629934748794, 25.179026215193989 ], [ -78.064578951763139, 25.179063378838478 ], [ -78.064514618914089, 25.179106905505027 ], [ -78.064439979693745, 25.179152915745981 ], [ -78.064399774694891, 25.179175496495379 ], [ -78.064316798210413, 25.179219293837136 ], [ -78.064208956358797, 25.179271510972381 ], [ -78.064161651075992, 25.179295819235907 ], [ -78.064130864014572, 25.179313887228993 ], [ -78.064074213557802, 25.179352313309185 ], [ -78.06404741950783, 25.17937284699439 ], [ -78.063996518268894, 25.179416709301801 ], [ -78.06394907015391, 25.179463834802849 ], [ -78.063926694916788, 25.179488799084133 ], [ -78.06388491786619, 25.179541286005517 ], [ -78.063846166341435, 25.179596633696899 ], [ -78.063791232565194, 25.179683053341098 ], [ -78.063753287727607, 25.179739162707143 ], [ -78.063571960092546, 25.179981786498228 ], [ -78.063529646747725, 25.180034020378844 ], [ -78.063440232935932, 25.180133202255561 ], [ -78.063374635258938, 25.180209540914433 ], [ -78.063327414417685, 25.180256881541144 ], [ -78.06317787905887, 25.18039120873156 ], [ -78.06300933534861, 25.180553937802248 ], [ -78.062986143542929, 25.180577876730858 ], [ -78.062941697597608, 25.180627841414658 ], [ -78.062886196086083, 25.180698352547005 ], [ -78.062857396996392, 25.180732616707125 ], [ -78.062715892576236, 25.180874789943712 ], [ -78.06266460685832, 25.180918288322989 ], [ -78.062608601391943, 25.180957325233567 ], [ -78.062563182571182, 25.180983185076371 ], [ -78.062484339235311, 25.181023563328012 ], [ -78.062388440485464, 25.181070497978254 ], [ -78.062327145738678, 25.181104534408863 ], [ -78.062207967148268, 25.181176085835819 ], [ -78.062166233216786, 25.181197784164585 ], [ -78.061968616430676, 25.181294415699259 ], [ -78.061882491351128, 25.181332937082484 ], [ -78.061707154580731, 25.181406698770218 ], [ -78.061667993424194, 25.181425021714769 ], [ -78.061599934363315, 25.181459068614615 ], [ -78.061506949747809, 25.181512862713653 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 3100, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 2600 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.059650181462757, 25.181932491966869 ], [ -78.059642425409123, 25.181942191155571 ], [ -78.059613734117278, 25.181966432225234 ], [ -78.059540221384296, 25.182023821733246 ], [ -78.059509107336154, 25.182046390569543 ], [ -78.059439621750542, 25.182094675931328 ], [ -78.059364027621086, 25.1821445318723 ], [ -78.059285314540929, 25.182192022141002 ], [ -78.05924571859984, 25.182213487788381 ], [ -78.059169342936073, 25.182251401616046 ], [ -78.059066106746997, 25.182295027948218 ], [ -78.058966426089796, 25.182338924973152 ], [ -78.058890734043956, 25.182374899905618 ], [ -78.058848705465081, 25.182396485022625 ], [ -78.058809188575708, 25.182420454480937 ], [ -78.05877283555283, 25.182447761041267 ], [ -78.058703003217559, 25.182505101546397 ], [ -78.058675380920889, 25.182524987602967 ], [ -78.05861798396414, 25.182562950922804 ], [ -78.058587926334724, 25.182580746097919 ], [ -78.058531539084328, 25.182607790856963 ], [ -78.058413018959016, 25.182655914222071 ], [ -78.058357042238711, 25.182682609402146 ], [ -78.058299019156181, 25.182718343604321 ], [ -78.058228449304096, 25.182771056756494 ], [ -78.058192175332891, 25.182795421227389 ], [ -78.058163113036869, 25.182811079976258 ], [ -78.058132176855082, 25.182824560058336 ], [ -78.058087778520473, 25.18283803363552 ], [ -78.058040268421749, 25.182846882427238 ], [ -78.057990780232728, 25.182851783608871 ], [ -78.05768252334299, 25.182860538099213 ], [ -78.057494340664007, 25.182869616949752 ], [ -78.057417678437659, 25.182870437200457 ], [ -78.05734176630456, 25.182869279582007 ], [ -78.057160185344586, 25.182861088455795 ], [ -78.057094876925149, 25.182860348685551 ], [ -78.056965689305812, 25.182863227286049 ], [ -78.056933952725132, 25.182862506213279 ], [ -78.056888692007831, 25.182856845751328 ], [ -78.056847572523992, 25.182844709453487 ], [ -78.056823354842322, 25.182832760129312 ], [ -78.056801378457195, 25.182818615067557 ], [ -78.056772108650293, 25.182794887942201 ], [ -78.056749618428839, 25.182767037606087 ], [ -78.056736753655642, 25.182733860099386 ], [ -78.056733270887264, 25.182697494250888 ], [ -78.056735426843929, 25.182672660696646 ], [ -78.056739865419786, 25.182646909332743 ], [ -78.056773076135812, 25.182511357907256 ], [ -78.05677844267133, 25.182484423686212 ], [ -78.056781096294742, 25.18244726352378 ], [ -78.056777869546181, 25.1824098643464 ], [ -78.056768268352414, 25.182373688628651 ], [ -78.056756813035918, 25.182348146126589 ], [ -78.056726774271155, 25.182298460172973 ], [ -78.056690630555678, 25.182249518850711 ], [ -78.056651129836027, 25.182200601896902 ], [ -78.056612850825118, 25.182148311226275 ], [ -78.056594947401507, 25.182120429037745 ], [ -78.056561148288949, 25.182062413611639 ], [ -78.056537883719685, 25.182016458936097 ], [ -78.056500950385129, 25.181938006137869 ], [ -78.056458953247301, 25.18184140356643 ], [ -78.056416054200895, 25.181730423228963 ], [ -78.056392904616004, 25.18167643412027 ], [ -78.056361274036533, 25.181615276459432 ], [ -78.0563274542627, 25.181556077147754 ], [ -78.056309992810242, 25.181526857532099 ], [ -78.056236824132014, 25.1814137323619 ], [ -78.056212031528489, 25.181368798499761 ], [ -78.0561889681819, 25.181322393191319 ], [ -78.056152864890606, 25.181243317230361 ], [ -78.056078564335152, 25.1810647772751 ], [ -78.056021759368136, 25.180937485259253 ], [ -78.055990052431866, 25.180876841010466 ], [ -78.055892126184432, 25.180697385950918 ], [ -78.055786136659023, 25.180480556059102 ], [ -78.055697600501219, 25.180292787987415 ], [ -78.055655872857983, 25.180196706027012 ], [ -78.05561240248305, 25.180087175312693 ], [ -78.055588428244775, 25.180034348811926 ], [ -78.055572265756155, 25.180004435382166 ], [ -78.055555098951089, 25.179975150358192 ], [ -78.055518486315023, 25.179918794775777 ], [ -78.055480268389573, 25.179863832571041 ], [ -78.055440230477359, 25.179810445034803 ], [ -78.055397955760114, 25.179758995559926 ], [ -78.055267714416956, 25.17960760860413 ], [ -78.055120126605658, 25.179427092392299 ], [ -78.055079771588126, 25.179373981070285 ], [ -78.055042184280026, 25.179318471499101 ], [ -78.054975379267276, 25.179199719417394 ], [ -78.054885698655823, 25.179057112545138 ], [ -78.054827768998109, 25.178975069435236 ], [ -78.054785626333185, 25.17892350579325 ], [ -78.054741422034681, 25.178873971280037 ], [ -78.054698607429927, 25.178822988862652 ], [ -78.054618664556159, 25.17871586002931 ], [ -78.054599475643371, 25.178688568891932 ], [ -78.05456313070529, 25.178631984272126 ], [ -78.054498172628783, 25.178511632422541 ], [ -78.054445493623874, 25.178425040412286 ], [ -78.054406453739972, 25.178370790503614 ], [ -78.054385890404802, 25.178344690281929 ], [ -78.054321621336086, 25.178268139084008 ], [ -78.054145552438726, 25.17806838448076 ], [ -78.054099532645012, 25.178020178820457 ], [ -78.054052078241838, 25.17797321698049 ], [ -78.053978584373482, 25.177904657019173 ], [ -78.053928081088188, 25.177860336466829 ], [ -78.053797124686085, 25.177753725461226 ], [ -78.05372060978344, 25.177688024587919 ], [ -78.053622320616626, 25.177597029762985 ], [ -78.053528423313267, 25.177502230983102 ], [ -78.053483652177817, 25.177452945474112 ], [ -78.053440903150062, 25.177401907993254 ], [ -78.053319862351984, 25.177242311972261 ], [ -78.053256346969874, 25.177165108078164 ], [ -78.05319145536869, 25.177089096766334 ], [ -78.053145624221187, 25.17704072974999 ], [ -78.05305080434799, 25.176946972769873 ], [ -78.053005399001947, 25.17689823741987 ], [ -78.052828650079931, 25.176698830963861 ], [ -78.052763355135184, 25.176623168127954 ], [ -78.052718538185673, 25.176573923725311 ], [ -78.052672331542396, 25.176525881695245 ], [ -78.052577395786557, 25.176432224315271 ], [ -78.052462756383235, 25.176310996342156 ], [ -78.052413766759244, 25.176265366315221 ], [ -78.052336278082819, 25.176200751592258 ], [ -78.052287396256602, 25.176155026405485 ], [ -78.052174021681253, 25.176032946153786 ], [ -78.052043186551685, 25.17588183586119 ], [ -78.051884952805949, 25.175710789437289 ], [ -78.051795795912312, 25.175611643797922 ], [ -78.051749739287686, 25.1755634721242 ], [ -78.051677163497544, 25.17549436041762 ], [ -78.051575552360831, 25.175406244357614 ], [ -78.051500850258421, 25.175338732515467 ], [ -78.051271400771896, 25.175141307193659 ], [ -78.051194149250733, 25.175076245545434 ], [ -78.051089076905257, 25.174991128291676 ], [ -78.051038184649443, 25.174947146508536 ], [ -78.050964023332824, 25.174879407588609 ], [ -78.050832875589535, 25.174750647359456 ], [ -78.050795976390944, 25.1747163782656 ], [ -78.05075571030666, 25.17468538957236 ], [ -78.050627850397319, 25.174598298107259 ], [ -78.05044554449691, 25.174470060333974 ], [ -78.050404518437873, 25.174439729287389 ], [ -78.050378649652643, 25.174417983415019 ], [ -78.050279897853457, 25.174327391018558 ], [ -78.050114191921196, 25.174162578065058 ], [ -78.050013749492621, 25.174073692764033 ], [ -78.049943096097209, 25.174002673743214 ], [ -78.049827586226442, 25.173882446588753 ], [ -78.049778288480269, 25.173837083127918 ], [ -78.049726136786447, 25.173794191967445 ], [ -78.049617954473391, 25.173711768898226 ], [ -78.049562211315092, 25.173671988215037 ], [ -78.04950421877524, 25.173634156270037 ], [ -78.049382880634909, 25.173563614222015 ], [ -78.049326177177534, 25.173524665186033 ], [ -78.049272651061329, 25.17348296495609 ], [ -78.049221067102749, 25.1734393395346 ], [ -78.049168212926375, 25.173397057169296 ], [ -78.049085739498423, 25.173336517297351 ], [ -78.049001789240222, 25.173277257867703 ], [ -78.048826063499263, 25.173165272182185 ], [ -78.048736731434161, 25.173110912616568 ], [ -78.048678844895576, 25.17307298375049 ], [ -78.048536222072869, 25.172976462769611 ], [ -78.048395562967315, 25.172878223841316 ], [ -78.048340162965431, 25.172837881915324 ], [ -78.048253489015266, 25.172780936858778 ], [ -78.048193552521212, 25.172744746087957 ], [ -78.048162417811724, 25.172727777925719 ], [ -78.048130141343592, 25.17271155365799 ], [ -78.048079226629895, 25.172689739998152 ], [ -78.047919896041208, 25.172629942046349 ], [ -78.047784919678207, 25.172570195284344 ], [ -78.047725246390499, 25.17254854094784 ], [ -78.047560768455241, 25.17249995424498 ], [ -78.047363404994073, 25.172450291918715 ], [ -78.04715018986137, 25.172403599476205 ], [ -78.04708155677703, 25.172386073545617 ], [ -78.046930632622761, 25.172341275379061 ], [ -78.046852752280898, 25.172321872211729 ], [ -78.046788600891517, 25.17231009827794 ], [ -78.046721565011751, 25.172301725141999 ], [ -78.046652602245715, 25.17229624548969 ], [ -78.046582565992892, 25.172293337371421 ], [ -78.046512241380867, 25.172292853633557 ], [ -78.04644238209616, 25.172294812975206 ], [ -78.046373747215171, 25.172299395883325 ], [ -78.045997129430646, 25.172337310355974 ], [ -78.045625487414426, 25.172360998053978 ], [ -78.045553915940786, 25.172368274443009 ], [ -78.045485252313725, 25.172378258135833 ], [ -78.045391075634285, 25.172396952354518 ], [ -78.04533887543144, 25.172408979937231 ], [ -78.045288659607024, 25.172422861980852 ], [ -78.045252382042634, 25.172434822081645 ], [ -78.045112760491264, 25.172487001473218 ], [ -78.044924052297844, 25.172561874198504 ], [ -78.044872973192454, 25.172582519596062 ], [ -78.044773993221199, 25.172627096537255 ], [ -78.044615939138509, 25.172708429291092 ], [ -78.04442168833981, 25.172801539130116 ], [ -78.04435969380539, 25.172835527463864 ], [ -78.044329958671156, 25.17285362568262 ], [ -78.044274046629596, 25.172893521265976 ], [ -78.044222592028447, 25.17293772980419 ], [ -78.044198531551842, 25.172961568603601 ], [ -78.044175633495257, 25.172986267552638 ], [ -78.044133721697378, 25.173039603606906 ], [ -78.044103279589038, 25.173088464075594 ], [ -78.04404758583803, 25.173190592221054 ], [ -78.044003722001023, 25.173263887297388 ], [ -78.043975848176089, 25.173305697356934 ], [ -78.043887708175333, 25.173418425993066 ], [ -78.043863883057384, 25.173456928727592 ], [ -78.043846405435175, 25.173504541891912 ], [ -78.043838546074767, 25.173555499705042 ], [ -78.04383980820775, 25.17360737293043 ], [ -78.043844660008602, 25.173638026943401 ], [ -78.043851583324511, 25.17366903785382 ], [ -78.043860472154208, 25.173699972334738 ], [ -78.04388318336126, 25.173761115268512 ], [ -78.043896327510467, 25.173791683065392 ], [ -78.043933586933534, 25.173866859049301 ], [ -78.043958849355946, 25.173910859921044 ], [ -78.043997237961307, 25.173965994725883 ], [ -78.044039246777231, 25.174018325491833 ], [ -78.044192686214288, 25.174190604347775 ], [ -78.044232642379839, 25.174239057046162 ], [ -78.044250975198139, 25.174263545984495 ], [ -78.044267934492396, 25.174287934919889 ], [ -78.044296374255993, 25.174337640399077 ], [ -78.044307136073058, 25.174363066696213 ], [ -78.044315490405211, 25.174388498679019 ], [ -78.044335096136294, 25.174462869434425 ], [ -78.044343869981688, 25.174487622549577 ], [ -78.044367617844543, 25.174536875924939 ], [ -78.044382095093667, 25.174561319275973 ], [ -78.044416168192384, 25.174607929593083 ], [ -78.044435455919853, 25.174629953473858 ], [ -78.044470989679226, 25.174663119365913 ], [ -78.04450699415581, 25.174694197493604 ], [ -78.044538065084865, 25.174726078846117 ], [ -78.044552281822547, 25.174746673471901 ], [ -78.044562567532537, 25.174767918484743 ], [ -78.044568995876702, 25.174801558311295 ], [ -78.044564099160098, 25.174835125772614 ], [ -78.044554681222678, 25.174856231749217 ], [ -78.044541070847814, 25.174876618228126 ], [ -78.044523562682912, 25.174895700671719 ], [ -78.04450254480021, 25.174913813218492 ], [ -78.044464914372981, 25.174938123164008 ], [ -78.044391375588845, 25.174974888065478 ], [ -78.044359179070767, 25.174988413728649 ], [ -78.044290999635592, 25.175013861840643 ], [ -78.044230463965278, 25.175032510940973 ], [ -78.044105080711148, 25.175067035223599 ], [ -78.043994234893304, 25.175100006692958 ], [ -78.043956642195297, 25.17510973569749 ], [ -78.043879610761365, 25.175126410040274 ], [ -78.043819396687852, 25.175134829322374 ], [ -78.043752515318332, 25.175138702387052 ], [ -78.043676066891024, 25.175137683715793 ], [ -78.04359365365022, 25.175132073300194 ], [ -78.043431347841278, 25.175114399798378 ], [ -78.043230024606359, 25.175088993169574 ], [ -78.043146176756039, 25.175076198392269 ], [ -78.043023378852837, 25.175053727454102 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 3128, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 312 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.999397539250211, 25.142718404607539 ], [ -77.999301158553308, 25.142583133822722 ], [ -77.999263048425689, 25.142527230992897 ], [ -77.999210078366644, 25.142439726228254 ], [ -77.99916076355251, 25.142349254018008 ], [ -77.999130060932728, 25.142287256924224 ], [ -77.999111746979025, 25.142243948067154 ], [ -77.99902256762752, 25.142011320764098 ], [ -77.998997924144291, 25.141958931539978 ], [ -77.998945242444464, 25.141872390018957 ], [ -77.998888803990141, 25.141789169578736 ], [ -77.998853048346888, 25.141732017296995 ], [ -77.998831598374522, 25.141691696785301 ], [ -77.998745427480884, 25.141516318424635 ], [ -77.998697858093308, 25.141425299865801 ], [ -77.998656864373643, 25.1413506723224 ], [ -77.998630983910317, 25.141306865447667 ], [ -77.998612415733405, 25.141279042231179 ], [ -77.998533562516059, 25.141171235542746 ], [ -77.99849721218807, 25.141114670924424 ], [ -77.998464048184431, 25.141055349487804 ], [ -77.99841460491119, 25.140951030475563 ], [ -77.998388719956282, 25.140899879321388 ], [ -77.998353800644523, 25.140842079304722 ], [ -77.998278305329734, 25.14073162033565 ], [ -77.998260616603474, 25.140702799172761 ], [ -77.998227653822454, 25.140643305947517 ], [ -77.998155140016067, 25.140485403738094 ], [ -77.998089619594182, 25.140366312141627 ], [ -77.998069491043623, 25.140324890895013 ], [ -77.99801812088559, 25.140207774453565 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 3131, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 542 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.993580928890765, 25.131449958144877 ], [ -77.9935806661626, 25.131449626242766 ], [ -77.993541414276294, 25.131395581534068 ], [ -77.993522876642103, 25.1313674966236 ], [ -77.993487073388096, 25.131310467148609 ], [ -77.993453240139559, 25.131251731389039 ], [ -77.993392958692425, 25.131127382696864 ], [ -77.993344490091232, 25.131037184312898 ], [ -77.993290701666993, 25.130951591468872 ], [ -77.993250770654313, 25.130898135354983 ], [ -77.993208183323318, 25.130846980803 ], [ -77.993185790119895, 25.130822233472465 ], [ -77.993090769024093, 25.13072868983506 ], [ -77.993046792897673, 25.130678738056435 ], [ -77.993026244833871, 25.130652635763489 ], [ -77.992997529287493, 25.130611294990043 ], [ -77.992914680363782, 25.130484660319517 ], [ -77.992856919589329, 25.130402507279509 ], [ -77.992815359931029, 25.130350462786932 ], [ -77.992772141982698, 25.130300096078432 ], [ -77.992730806004914, 25.130247856353797 ], [ -77.992673899528256, 25.130164963877974 ], [ -77.992532607110462, 25.129934700560774 ], [ -77.992495955846877, 25.129878406441922 ], [ -77.992457419917827, 25.129823743752517 ], [ -77.992396258121744, 25.129744777545156 ], [ -77.992338484770855, 25.129662636206916 ], [ -77.992208903689416, 25.129466611465261 ], [ -77.99213908213396, 25.129350523179198 ], [ -77.992100874089957, 25.12929557641483 ], [ -77.992019093263153, 25.12919057069735 ], [ -77.991960987535606, 25.129108475344097 ], [ -77.991900503967557, 25.129028680741925 ], [ -77.991824019607606, 25.128940914996249 ], [ -77.991789712048586, 25.128904415995766 ], [ -77.991663982943123, 25.128793568859763 ], [ -77.99159205394001, 25.128723926415642 ], [ -77.991570097317819, 25.128698802099283 ], [ -77.991528743373721, 25.128646578769008 ], [ -77.991470556797836, 25.128564552993595 ], [ -77.991430058049886, 25.128511590319334 ], [ -77.991366483378869, 25.12843447107473 ], [ -77.99122944897556, 25.128289033951141 ], [ -77.991159260009141, 25.128217883363966 ], [ -77.99109257087909, 25.12814369994339 ], [ -77.991051242986117, 25.128091451976886 ], [ -77.990993944844007, 25.128008650753891 ], [ -77.990954669601507, 25.12795462241526 ], [ -77.990934251793419, 25.127928161687979 ], [ -77.990890616128482, 25.127877905402883 ], [ -77.990843733053794, 25.127830457425887 ], [ -77.990818758092274, 25.127807938742897 ], [ -77.99078307970413, 25.127780294630242 ], [ -77.990708854607149, 25.127727482076857 ], [ -77.990656023786968, 25.127685163537596 ], [ -77.990630797297158, 25.127662849780048 ], [ -77.990606372104551, 25.12764008219564 ], [ -77.990560083714627, 25.127592077827245 ], [ -77.990517672453379, 25.127540698232366 ], [ -77.990498203266256, 25.12751337694063 ], [ -77.990480360265764, 25.127485685059291 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 3134, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 112 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.000141869389367, 25.101364805713203 ], [ -78.000126792046046, 25.101361707968291 ], [ -78.000011090834107, 25.101329328316076 ], [ -77.999980876897894, 25.101322496732255 ], [ -77.999949744883367, 25.101317821676997 ], [ -77.999917844809275, 25.101315548007292 ], [ -77.999778773925186, 25.10131653719597 ], [ -77.999688333339066, 25.101313766491465 ], [ -77.999586661116908, 25.101308207185731 ], [ -77.999480311367009, 25.101300077290368 ], [ -77.999233427377476, 25.10127472281647 ], [ -77.999157596092743, 25.101268093785585 ], [ -77.999057428548682, 25.101261625009474 ], [ -77.999043228878975, 25.101262265216597 ], [ -77.999042419071301, 25.101262248818614 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 3144, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 352 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.931328161674102, 24.899029914016197 ], [ -77.931319923225146, 24.89902684785201 ], [ -77.931310492711305, 24.899017306333743 ], [ -77.931283647457363, 24.898983097010539 ], [ -77.93107742930242, 24.898686217637238 ], [ -77.931043656240988, 24.898641654299031 ], [ -77.931021420242743, 24.898616642567447 ], [ -77.930960219819099, 24.898554501885933 ], [ -77.930884896082489, 24.898459516530682 ], [ -77.930821155223214, 24.898390300669689 ], [ -77.930799231838691, 24.898367461203318 ], [ -77.930675539213965, 24.898249829329202 ], [ -77.930641643083348, 24.898220784143149 ], [ -77.93061762572593, 24.898204080265479 ], [ -77.930542747553687, 24.898160650172958 ], [ -77.93051780313489, 24.898144820593028 ], [ -77.930493522571084, 24.898127282325444 ], [ -77.930446962889903, 24.898088662112709 ], [ -77.930355455105172, 24.898006383590314 ], [ -77.930248026478665, 24.897923336632939 ], [ -77.930213516798688, 24.89789822453227 ], [ -77.930189635086876, 24.897884166349236 ], [ -77.930089330998868, 24.897833762865133 ], [ -77.929995851412116, 24.897776703860451 ], [ -77.92992848764726, 24.897739593411465 ], [ -77.929862723781923, 24.897697778142021 ], [ -77.929744854036855, 24.897640775297521 ], [ -77.929710861786518, 24.897619711201045 ], [ -77.929686885751565, 24.897601270030155 ], [ -77.929663822404976, 24.89758129698092 ], [ -77.929641246843559, 24.897560567768455 ], [ -77.929582314665964, 24.897502118540928 ], [ -77.92955047567736, 24.8974748356523 ], [ -77.929505980324706, 24.897445794358109 ], [ -77.929458413632091, 24.897420793791753 ], [ -77.929383900175921, 24.897384209615151 ], [ -77.929357045040504, 24.897371733771255 ], [ -77.929330080310592, 24.897361207811738 ], [ -77.92919398285008, 24.897315687385699 ], [ -77.929166173703891, 24.897308164882116 ], [ -77.929057950068341, 24.897283466589659 ], [ -77.929018709860088, 24.89727210868168 ], [ -77.928909634621661, 24.897232590259019 ], [ -77.928882708519325, 24.897224956118688 ], [ -77.928798535478876, 24.897207154530339 ], [ -77.928768897362716, 24.897202234587088 ], [ -77.92863230914449, 24.897181506460999 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 3149, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 80 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.791668152838227, 24.735444648361099 ], [ -77.791658268383301, 24.735428355230866 ], [ -77.791633543153452, 24.73537329376143 ], [ -77.791625705352558, 24.735360268814947 ], [ -77.79160321692774, 24.735330139442151 ], [ -77.791599145762873, 24.735322563855362 ], [ -77.791597316792945, 24.73531702311087 ], [ -77.791597792900063, 24.735314268648544 ], [ -77.791593818753242, 24.735314781846672 ], [ -77.791588775611231, 24.735310787223391 ], [ -77.791581419307377, 24.735298232226057 ], [ -77.791573974968614, 24.735278503058623 ], [ -77.791548364898176, 24.735194721169421 ], [ -77.791536923056427, 24.735165520246436 ], [ -77.791482480658601, 24.735062860059774 ], [ -77.791473894561165, 24.735040913246753 ], [ -77.791453243191015, 24.734970644908806 ], [ -77.791444755009977, 24.734948612410296 ], [ -77.791433754240956, 24.734928757539127 ], [ -77.791411930569481, 24.734903831043152 ], [ -77.791386350143426, 24.734881916838052 ], [ -77.791368373956288, 24.734871192672934 ], [ -77.791309618746808, 24.7348432008354 ], [ -77.791295807513563, 24.734834764673831 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 3154, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 6282 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.733243184996283, 24.667373796235836 ], [ -77.733234510299553, 24.667378904808409 ], [ -77.733210647452339, 24.667395954075875 ], [ -77.733187894024468, 24.667414402547916 ], [ -77.733166772835546, 24.667434728599336 ], [ -77.733139257438424, 24.66746961243545 ], [ -77.733115806917922, 24.667507752640237 ], [ -77.733101962082756, 24.6675339057069 ], [ -77.733090018981059, 24.667561168989273 ], [ -77.733080260582099, 24.667589095949335 ], [ -77.73307093337452, 24.667633382331839 ], [ -77.73306784676322, 24.667678941370223 ], [ -77.733068689382975, 24.66770913527515 ], [ -77.733071767909422, 24.667755230619829 ], [ -77.733082061704266, 24.667858796917962 ], [ -77.733080485160926, 24.667902978713574 ], [ -77.733071869419049, 24.667946506607858 ], [ -77.733062149647665, 24.667974244091603 ], [ -77.733049893932247, 24.668001551359982 ], [ -77.73303537625894, 24.668027970448641 ], [ -77.732991126146359, 24.66809891656807 ], [ -77.732959318598745, 24.66814207459413 ], [ -77.732921152775631, 24.668180138674145 ], [ -77.732894283267143, 24.668199058871959 ], [ -77.732864778101671, 24.668215328427497 ], [ -77.732832917553438, 24.66822925918169 ], [ -77.732774579162268, 24.668245740163904 ], [ -77.7327111616965, 24.668254696987905 ], [ -77.732645120251718, 24.668257051296951 ], [ -77.732578739243806, 24.668253180238128 ], [ -77.732514270749135, 24.668242933605239 ], [ -77.732454078235222, 24.668225630573399 ], [ -77.732420634855501, 24.668211527572112 ], [ -77.732389097700818, 24.66819535760899 ], [ -77.732359233209209, 24.668176993334903 ], [ -77.732288890630898, 24.66812632666743 ], [ -77.732250481364275, 24.668092357310936 ], [ -77.732227695597089, 24.668067028860591 ], [ -77.732207311026627, 24.668039977119737 ], [ -77.732184182103055, 24.668000390529766 ], [ -77.732165016546475, 24.667957951647264 ], [ -77.732148602529577, 24.667913973955283 ], [ -77.732137796695014, 24.667880664957675 ], [ -77.73212402642001, 24.667822968688181 ], [ -77.732115063928433, 24.667764282174222 ], [ -77.732109891429076, 24.667706684627813 ], [ -77.732108609533142, 24.667673466188408 ], [ -77.732111358377921, 24.667624215664205 ], [ -77.732120304699777, 24.667577045152541 ], [ -77.73213585094409, 24.667533739989945 ], [ -77.732158766967004, 24.667496270007923 ], [ -77.732189114752273, 24.667466158501821 ], [ -77.732224057420169, 24.667441443812027 ], [ -77.7322934010719, 24.667398918207301 ], [ -77.732312870259065, 24.667384053467014 ], [ -77.732329767569581, 24.667366774806283 ], [ -77.732343656422188, 24.6673461728207 ], [ -77.732354534121981, 24.667322814049097 ], [ -77.732362950437832, 24.667297278908293 ], [ -77.732375573564198, 24.667246126160535 ], [ -77.732430629511342, 24.666971061310164 ], [ -77.732457322051701, 24.666814522536587 ], [ -77.73246397766961, 24.666761340975086 ], [ -77.732475325188304, 24.666571043601049 ], [ -77.73247765451984, 24.666508122927514 ], [ -77.732476620558955, 24.666445127934761 ], [ -77.732471881945784, 24.666384350924613 ], [ -77.732462807164822, 24.666328285024964 ], [ -77.732448459273115, 24.666279767866222 ], [ -77.732438094511352, 24.666257150954994 ], [ -77.732409290930079, 24.666206783923904 ], [ -77.732394642102761, 24.666174946346395 ], [ -77.732386685724265, 24.666139218860309 ], [ -77.732385936529326, 24.666101135381552 ], [ -77.732393922552191, 24.66604865720883 ], [ -77.732426891621444, 24.665904000885689 ], [ -77.732435489397034, 24.665858213437389 ], [ -77.732444412362767, 24.665782075685389 ], [ -77.732444843554092, 24.665751619265368 ], [ -77.732443022669031, 24.665721125285813 ], [ -77.732431202636491, 24.665607223830527 ], [ -77.73242096004563, 24.665447493854565 ], [ -77.732419529029372, 24.665412571084449 ], [ -77.732419979983632, 24.66536538912397 ], [ -77.732423566058259, 24.665318166327992 ], [ -77.732430387864554, 24.665271702723501 ], [ -77.732437441436161, 24.665237775856568 ], [ -77.732449403402455, 24.665186569201303 ], [ -77.73248211824847, 24.665069673682517 ], [ -77.732494578779807, 24.665007990663703 ], [ -77.732501869506649, 24.664943287096087 ], [ -77.732504337178739, 24.664877108338363 ], [ -77.732502006050581, 24.664810893625777 ], [ -77.73249872001324, 24.664773549361378 ], [ -77.732479812273169, 24.664600194927491 ], [ -77.73243730938384, 24.664336988408067 ], [ -77.732415635730931, 24.664214697579482 ], [ -77.732411034560045, 24.66418107084607 ], [ -77.732408286613577, 24.664124106774818 ], [ -77.732412223929487, 24.664067348400824 ], [ -77.73242309264613, 24.664012539474424 ], [ -77.73244433780259, 24.663950380809872 ], [ -77.732457413679853, 24.663920212935249 ], [ -77.732472054422402, 24.663891142245525 ], [ -77.732536722343042, 24.66377690359403 ], [ -77.732581496173395, 24.663687861931418 ], [ -77.732605942925574, 24.663625635346811 ], [ -77.732619872202349, 24.663569890671763 ], [ -77.732627504289042, 24.663511362981296 ], [ -77.732629414107322, 24.663451738067383 ], [ -77.732621817054934, 24.663304959444663 ], [ -77.732602038847332, 24.663100396477265 ], [ -77.732599053745659, 24.663043457220098 ], [ -77.732599317850358, 24.662960678219374 ], [ -77.732605142526623, 24.662918938067637 ], [ -77.732617065865412, 24.662881705896069 ], [ -77.732628365773365, 24.662860290881813 ], [ -77.732682280860132, 24.662783302275173 ], [ -77.732697810934738, 24.662752536535123 ], [ -77.732710735895054, 24.66271911431668 ], [ -77.732740406350558, 24.66262405687436 ], [ -77.732754152371029, 24.66258986723216 ], [ -77.732770945476986, 24.662557924236062 ], [ -77.73282069058412, 24.662489964521455 ], [ -77.732839399796561, 24.662456285075415 ], [ -77.732845357423528, 24.662434312405566 ], [ -77.732846887254468, 24.662411476825756 ], [ -77.732844297411489, 24.662388387349761 ], [ -77.732838589516163, 24.662364539458821 ], [ -77.732820007864518, 24.662315471339387 ], [ -77.732807993795902, 24.66229028539809 ], [ -77.732779336640036, 24.66224033556561 ], [ -77.732747688992561, 24.662190280400775 ], [ -77.732674951505686, 24.66208256547791 ], [ -77.732656113834153, 24.662047240109366 ], [ -77.732645477781205, 24.662009343964375 ], [ -77.732643452978579, 24.66197051142494 ], [ -77.732646457843174, 24.661945085399477 ], [ -77.732651878277622, 24.661919484664448 ], [ -77.732659520245747, 24.661894257824347 ], [ -77.732689997388377, 24.661821103959614 ], [ -77.732702473191083, 24.661781600299712 ], [ -77.732724621154361, 24.661673851552543 ], [ -77.732735060476301, 24.661634960945872 ], [ -77.732743934932984, 24.661610887590623 ], [ -77.732755962476332, 24.661587878787916 ], [ -77.732771767435452, 24.661566581110126 ], [ -77.732802518564228, 24.661538863427676 ], [ -77.732839311761651, 24.661514443092909 ], [ -77.732866062692509, 24.661499115581172 ], [ -77.732904153057177, 24.661480586229327 ], [ -77.7329832398365, 24.661445774192856 ], [ -77.733040084329332, 24.66141830466297 ], [ -77.73309576909719, 24.661393274469113 ], [ -77.733122448162803, 24.661380653240929 ], [ -77.733148164234407, 24.66136627271317 ], [ -77.733172461866261, 24.661349208743413 ], [ -77.73320528900166, 24.66131774546125 ], [ -77.733234849862754, 24.661281195305808 ], [ -77.733253298563724, 24.661255039295774 ], [ -77.733270053042077, 24.661226772120038 ], [ -77.733291978223221, 24.661174652737628 ], [ -77.733307980811688, 24.661116462721957 ], [ -77.733319286109534, 24.661053931161 ], [ -77.733326770872509, 24.660988511208732 ], [ -77.733331001039147, 24.660921460089636 ], [ -77.733332259578859, 24.660853928901314 ], [ -77.733330571644444, 24.660787036088344 ], [ -77.733325703673927, 24.660721949080713 ], [ -77.733305180762926, 24.660557099015609 ], [ -77.7332953630752, 24.660498708697556 ], [ -77.733282792949424, 24.660446407773481 ], [ -77.733265991758657, 24.660403011149988 ], [ -77.733243148499326, 24.660372006438248 ], [ -77.733216696707473, 24.660357494356134 ], [ -77.733187304729711, 24.660355338279885 ], [ -77.733167425910764, 24.660360333747679 ], [ -77.733147591109301, 24.660369387471324 ], [ -77.733115087367366, 24.660392346699094 ], [ -77.733081596376962, 24.66042047527824 ], [ -77.73304411327338, 24.660448208720322 ], [ -77.733018758324519, 24.660462564862303 ], [ -77.732991191723372, 24.660474959228139 ], [ -77.732961418859915, 24.660484532980973 ], [ -77.73292973168661, 24.660491350615871 ], [ -77.732896319747908, 24.660495863594466 ], [ -77.732833463729136, 24.660501023150125 ], [ -77.732766554511841, 24.660503824984637 ], [ -77.732698331957593, 24.66050472872324 ], [ -77.732540072160731, 24.660503647012643 ], [ -77.732488116299663, 24.660506430070296 ], [ -77.732440570268295, 24.660511808416754 ], [ -77.732399729262198, 24.660520039212972 ], [ -77.732341547177896, 24.660539896149746 ], [ -77.732325874271126, 24.660544065428404 ], [ -77.732310275026208, 24.660545282658575 ], [ -77.73229458684807, 24.660542248155181 ], [ -77.732279184334203, 24.660534765169132 ], [ -77.732264240859465, 24.660523633757236 ], [ -77.732250174140404, 24.660508881675401 ], [ -77.732224149048363, 24.660471888802096 ], [ -77.732212597612119, 24.660450204783395 ], [ -77.732192748437583, 24.66040298829115 ], [ -77.732185081316629, 24.660377671342086 ], [ -77.732179494693881, 24.660351569024197 ], [ -77.732176801544682, 24.660324109866458 ], [ -77.732177146497733, 24.660295838397843 ], [ -77.732184685159595, 24.660237685526212 ], [ -77.732210561131353, 24.660114292638518 ], [ -77.732217791671076, 24.660058179020215 ], [ -77.732220200952653, 24.659999705197091 ], [ -77.732217614702989, 24.659940709673947 ], [ -77.732213803151225, 24.659905746175937 ], [ -77.732206824139794, 24.659852305323469 ], [ -77.732183988965247, 24.659715354258264 ], [ -77.732164226028999, 24.659584081044894 ], [ -77.732158224384591, 24.65952503960737 ], [ -77.732155675864121, 24.659466720648936 ], [ -77.73215625797242, 24.659410885945668 ], [ -77.732162017071715, 24.659261552973298 ], [ -77.732165094699852, 24.659234505038146 ], [ -77.732170938240827, 24.659207731405388 ], [ -77.73217995912286, 24.659181709665866 ], [ -77.732198900998966, 24.65914471884831 ], [ -77.732220994165075, 24.659107658626287 ], [ -77.732280270397396, 24.659000559870229 ], [ -77.732303806257846, 24.658961575361364 ], [ -77.732325041532832, 24.658921505850483 ], [ -77.732340616523246, 24.658877752748065 ], [ -77.732350257242857, 24.658831442677176 ], [ -77.732354433510608, 24.658784233736416 ], [ -77.732353342057579, 24.658737729328397 ], [ -77.732342141862603, 24.658647339463446 ], [ -77.732330515866181, 24.658536699593313 ], [ -77.732321452763287, 24.658487407092046 ], [ -77.732246086805887, 24.658192955467147 ], [ -77.732230455221654, 24.658140265786361 ], [ -77.73219547751944, 24.658039065517311 ], [ -77.732177769928526, 24.65798218599739 ], [ -77.732120388243118, 24.657779610410632 ], [ -77.732113804490396, 24.657751550630568 ], [ -77.73210949706862, 24.657724124373306 ], [ -77.732108778416404, 24.657696556872146 ], [ -77.73211197282555, 24.657669346949863 ], [ -77.732118870988629, 24.657642990980317 ], [ -77.732132573889956, 24.657608209713192 ], [ -77.73215159751274, 24.657575090635927 ], [ -77.732176845562094, 24.657545256762454 ], [ -77.732208660296195, 24.657519983319574 ], [ -77.732245463375065, 24.657498008147787 ], [ -77.732316011667592, 24.657463012125717 ], [ -77.73244259596926, 24.65740773331461 ], [ -77.732499673125758, 24.657376066570141 ], [ -77.732525379315973, 24.657358806117376 ], [ -77.732548499256438, 24.657339905502404 ], [ -77.732568833521171, 24.657319870896444 ], [ -77.732585716458644, 24.657298116119186 ], [ -77.732601562740243, 24.657265489252808 ], [ -77.732609917072367, 24.65722998617689 ], [ -77.732611251968891, 24.657193100097476 ], [ -77.732608074627734, 24.657165295720908 ], [ -77.732593130254685, 24.657090685062219 ], [ -77.732536758275643, 24.656853385332457 ], [ -77.732505220222649, 24.656735563546363 ], [ -77.732494627288816, 24.656678541377058 ], [ -77.732489206854396, 24.656620617864171 ], [ -77.732488531321309, 24.65656357523202 ], [ -77.732493979603504, 24.656464389405251 ], [ -77.732500616356816, 24.656399659364741 ], [ -77.732506844376687, 24.65636731474217 ], [ -77.732515001079477, 24.656335477919882 ], [ -77.732531177042787, 24.656281713055538 ], [ -77.732551037895391, 24.656228767847043 ], [ -77.732576111671591, 24.656178875186686 ], [ -77.732594050129535, 24.656151299180127 ], [ -77.732613767251692, 24.656124835123343 ], [ -77.732679074772847, 24.656051183946051 ], [ -77.732781295865649, 24.655925339306293 ], [ -77.732799738278445, 24.655900023898198 ], [ -77.732832978638911, 24.655849566963067 ], [ -77.732859889469864, 24.655799474129253 ], [ -77.732873827729804, 24.65576172712418 ], [ -77.732882132654595, 24.655725439860603 ], [ -77.732884551817662, 24.655703155767426 ], [ -77.732883507077005, 24.655682019552348 ], [ -77.732878730734626, 24.655662719455584 ], [ -77.732865470702734, 24.655638404105268 ], [ -77.732828548147893, 24.655593564016712 ], [ -77.732821057995054, 24.655579762478695 ], [ -77.732816528689426, 24.655559173242569 ], [ -77.732818722375342, 24.655537976588274 ], [ -77.732827853750194, 24.655518529513973 ], [ -77.732846000617243, 24.655500997753517 ], [ -77.732869149303838, 24.655487215799258 ], [ -77.732919933761764, 24.655461099395893 ], [ -77.73296807807111, 24.655426906974991 ], [ -77.732986524975473, 24.655415410168342 ], [ -77.73300698500438, 24.655405265349998 ], [ -77.733029222799246, 24.655396497829244 ], [ -77.733053097324515, 24.655389870141644 ], [ -77.733078078574295, 24.655385275336542 ], [ -77.733156728772343, 24.655376271869351 ], [ -77.73318408876095, 24.655371500717248 ], [ -77.733211597869911, 24.655364594629457 ], [ -77.733238844670808, 24.655355429509775 ], [ -77.733292291735253, 24.655332544465992 ], [ -77.733397519489316, 24.655281452127205 ], [ -77.733431572825125, 24.655259869259162 ], [ -77.73345767157906, 24.65523436920525 ], [ -77.733471826332988, 24.655207295088303 ], [ -77.733477364446713, 24.655177645159842 ], [ -77.733474709925048, 24.655147413116612 ], [ -77.733467752473203, 24.655125413034561 ], [ -77.733457901547766, 24.655103560720779 ], [ -77.733420846042293, 24.655037117123118 ], [ -77.733399084354517, 24.654990809709322 ], [ -77.733388719592796, 24.654954966355024 ], [ -77.733384522663798, 24.654920221077777 ], [ -77.733385470386423, 24.654898937774231 ], [ -77.73339073361565, 24.654878961558868 ], [ -77.733400827984511, 24.6548610966083 ], [ -77.733415732831702, 24.65484614301733 ], [ -77.733434622605472, 24.65483376931947 ], [ -77.733456854112134, 24.654823766511342 ], [ -77.733500779932911, 24.6548140110785 ], [ -77.733550716381245, 24.654812285161182 ], [ -77.733603194163507, 24.654817873573592 ], [ -77.733635022372354, 24.654824413117957 ], [ -77.733733864003071, 24.654849633222842 ], [ -77.73378820219628, 24.654859758492233 ], [ -77.733845923444875, 24.654866354367531 ], [ -77.733905452103812, 24.65486937023115 ], [ -77.733965317630975, 24.654868583200187 ], [ -77.734065395343492, 24.654860645943184 ], [ -77.734125681282222, 24.654853381417702 ], [ -77.73418460806991, 24.654843318195923 ], [ -77.734240644977348, 24.654829389213052 ], [ -77.734276026023139, 24.654817501284917 ], [ -77.734326343357125, 24.654796901309645 ], [ -77.734372377523854, 24.654771764469228 ], [ -77.734399991735728, 24.654751638828145 ], [ -77.734425514669567, 24.654729416609218 ], [ -77.734449339787488, 24.65470576319635 ], [ -77.734481861495738, 24.654666752036942 ], [ -77.734531049647472, 24.654597181302929 ], [ -77.734549077038579, 24.654567985161407 ], [ -77.734572588644497, 24.65452055662282 ], [ -77.734592615685457, 24.654470019120499 ], [ -77.734604395293758, 24.654435249215609 ], [ -77.734620308949005, 24.654371544369603 ], [ -77.734631316006201, 24.654303884724165 ], [ -77.734638491748683, 24.654233587168413 ], [ -77.73464257459166, 24.65416173999499 ], [ -77.734644010099473, 24.654089277194036 ], [ -77.734642993206563, 24.654017043767254 ], [ -77.734632388594662, 24.653833946640777 ], [ -77.734629843667449, 24.653761724496238 ], [ -77.734627011279358, 24.653414336548352 ], [ -77.734625848859395, 24.653378925450284 ], [ -77.734622790994166, 24.653344106255567 ], [ -77.734617370559747, 24.653310185126742 ], [ -77.734600351078342, 24.653245097485865 ], [ -77.734589419479661, 24.65321340029374 ], [ -77.734576809828042, 24.653182782418344 ], [ -77.734547976602357, 24.653122784358391 ], [ -77.734513838824938, 24.653066256114123 ], [ -77.734494885270749, 24.653039172546215 ], [ -77.734452411127464, 24.652988858147246 ], [ -77.734428739621421, 24.652965639564261 ], [ -77.734389441022714, 24.652934577487517 ], [ -77.734347334290362, 24.652906297813661 ], [ -77.734289255512309, 24.652871053940796 ], [ -77.734200599878577, 24.652823565974074 ], [ -77.734142451031929, 24.652795324647617 ], [ -77.734113622297841, 24.65278277439635 ], [ -77.734084269845951, 24.652772470159082 ], [ -77.734025034936124, 24.652757654295566 ], [ -77.733936937156187, 24.652738972605295 ], [ -77.733907887436544, 24.6527338061973 ], [ -77.733878248422073, 24.652730826205232 ], [ -77.733848266251158, 24.652730173056284 ], [ -77.733818189757102, 24.652731596920965 ], [ -77.733695132241266, 24.652743033558568 ], [ -77.733646819048673, 24.652749089065054 ], [ -77.73359833517614, 24.652758324589527 ], [ -77.733515085603798, 24.652781403600581 ], [ -77.733467327570054, 24.6527991259725 ], [ -77.733427206114513, 24.652821134628859 ], [ -77.733408250763731, 24.652836991440147 ], [ -77.733393496833472, 24.652854157811685 ], [ -77.733379393283499, 24.652885624860268 ], [ -77.733378196727571, 24.652916937594725 ], [ -77.733389576585566, 24.652943372939987 ], [ -77.733407249142175, 24.652958187148517 ], [ -77.733429831890092, 24.652967461846405 ], [ -77.733454191505658, 24.652971704857183 ], [ -77.733507171446163, 24.652971193769115 ], [ -77.733530020095401, 24.65297401128495 ], [ -77.733550111815049, 24.652980905258481 ], [ -77.733564239619525, 24.652992270843445 ], [ -77.733569154302458, 24.653003874009734 ], [ -77.733568814739286, 24.653017144333823 ], [ -77.733563502102669, 24.653031109442011 ], [ -77.733554084165235, 24.653045807706565 ], [ -77.733540964270503, 24.653060468413372 ], [ -77.733524741594792, 24.653075145447154 ], [ -77.733505731446726, 24.653089056664303 ], [ -77.733484322796912, 24.653102223292215 ], [ -77.733460760885308, 24.653113837878376 ], [ -77.733435269392515, 24.65312383265918 ], [ -77.73339107228054, 24.65313468959296 ], [ -77.733345166572875, 24.653139517164469 ], [ -77.733301232667259, 24.653138741552617 ], [ -77.733263056962656, 24.653132424806291 ], [ -77.733234722301958, 24.653120269742761 ], [ -77.733223696380165, 24.653109601403905 ], [ -77.733216048123822, 24.653090696063408 ], [ -77.733208497783878, 24.653009171036043 ], [ -77.733198080021538, 24.652934118651149 ], [ -77.733191789119573, 24.652912673354784 ], [ -77.733181109049184, 24.652898755586556 ], [ -77.733171427905376, 24.652895460454467 ], [ -77.733160406475136, 24.652896961878664 ], [ -77.733148417559349, 24.652902223802791 ], [ -77.733127725765101, 24.652917924664596 ], [ -77.73310560385292, 24.652937244780162 ], [ -77.733080565110996, 24.652953955567384 ], [ -77.733063846565244, 24.652960325390946 ], [ -77.733046740845595, 24.652963594395427 ], [ -77.733030102249899, 24.6529640222072 ], [ -77.733014254171664, 24.652962524865995 ], [ -77.7329997580579, 24.652958987254522 ], [ -77.732987034320246, 24.652952303103437 ], [ -77.732977098054874, 24.652942001329475 ], [ -77.732969626766675, 24.652919782054145 ], [ -77.732971409922499, 24.652892266560283 ], [ -77.732977474448973, 24.652872486784712 ], [ -77.73298655461987, 24.652851393361413 ], [ -77.732998264159619, 24.652829610046549 ], [ -77.733017000321496, 24.65279902473446 ], [ -77.733039676494187, 24.65276831939876 ], [ -77.733067434436464, 24.652739492675099 ], [ -77.733100825713876, 24.652714114571733 ], [ -77.733138486683856, 24.652691147400077 ], [ -77.733209387115991, 24.652652732426358 ], [ -77.733468785535763, 24.652526501451284 ], [ -77.73362860660454, 24.652444181661195 ], [ -77.733881104166329, 24.652311215670711 ], [ -77.73397168488971, 24.65225784341326 ], [ -77.734028165564879, 24.652218488584214 ], [ -77.734055183295368, 24.652197517516502 ], [ -77.734106968476553, 24.652153686128212 ], [ -77.734155859285877, 24.652107087808528 ], [ -77.734179178652354, 24.652082847694597 ], [ -77.734245935156054, 24.652006371696277 ], [ -77.734291936085128, 24.6519572448031 ], [ -77.734387261709799, 24.65186362589926 ], [ -77.73445541060218, 24.651792083527706 ], [ -77.73452352356199, 24.651725481410487 ], [ -77.734564518179965, 24.651681311032661 ], [ -77.734582005683606, 24.651658011378629 ], [ -77.734597333637311, 24.651634265125701 ], [ -77.734610571211348, 24.651610656847247 ], [ -77.734621154263735, 24.651586615849133 ], [ -77.734628715383451, 24.651562598523324 ], [ -77.734632864701751, 24.651525691990933 ], [ -77.734628065003164, 24.651489570867149 ], [ -77.734616936673447, 24.651459600009368 ], [ -77.734587577933326, 24.651400074659335 ], [ -77.734574131051843, 24.651363232578106 ], [ -77.734564203769622, 24.65132512091343 ], [ -77.734559541513306, 24.651299993171378 ], [ -77.734557390048195, 24.651274579668225 ], [ -77.73455794880033, 24.651249420074564 ], [ -77.734568132102382, 24.65117543454361 ], [ -77.734569519999496, 24.651139309236196 ], [ -77.734566781934518, 24.651101422842491 ], [ -77.734559591818993, 24.651063089840797 ], [ -77.734551322826775, 24.651034730547618 ], [ -77.734518528030733, 24.650947665395581 ], [ -77.734502452678697, 24.650900088520824 ], [ -77.734487562204535, 24.650849871233603 ], [ -77.734478086774914, 24.650815551000115 ], [ -77.734465177085994, 24.650757448413792 ], [ -77.734454647932552, 24.650696490676527 ], [ -77.73442642017136, 24.650508071136539 ], [ -77.734389082594888, 24.65028182018861 ], [ -77.734376556486581, 24.650221422305638 ], [ -77.734360657204348, 24.650164170186816 ], [ -77.734302680834233, 24.650010254826444 ], [ -77.734284718121827, 24.649968552799479 ], [ -77.73425487788468, 24.649910426958183 ], [ -77.734238903143989, 24.649883162269152 ], [ -77.734204401548908, 24.649833796135638 ], [ -77.734185960034452, 24.649811772256403 ], [ -77.734166396524159, 24.64979237980916 ], [ -77.734126350527134, 24.649759659537935 ], [ -77.734106159094495, 24.64974676933593 ], [ -77.734085449333904, 24.649737286202569 ], [ -77.734064393721965, 24.649730731695513 ], [ -77.733999981821157, 24.649717364680299 ], [ -77.733977556278404, 24.649710783229175 ], [ -77.733954941191129, 24.649701653618475 ], [ -77.733861402315512, 24.649648760321856 ], [ -77.733833868053765, 24.649636730653434 ], [ -77.733804372769711, 24.649626102839783 ], [ -77.733773141042249, 24.649616839324011 ], [ -77.733722836284656, 24.649607156148949 ], [ -77.733669335321252, 24.649602500713208 ], [ -77.733614462630456, 24.649602732586885 ], [ -77.733559961842147, 24.649607988934729 ], [ -77.733488831441335, 24.649621871962111 ], [ -77.733399815583184, 24.649644304919462 ], [ -77.7333465625548, 24.649659253418346 ], [ -77.733295432245455, 24.649676612094041 ], [ -77.73324835333807, 24.649697705237244 ], [ -77.733210794776042, 24.64972036352281 ], [ -77.733142079944997, 24.649768908346932 ], [ -77.73306610313324, 24.649816315830005 ], [ -77.733042741545944, 24.649832045655856 ], [ -77.733020689702357, 24.649849638630105 ], [ -77.732993424036835, 24.649877133566704 ], [ -77.732861494759277, 24.650034096096885 ], [ -77.732778307170705, 24.650124798368765 ], [ -77.732739724529239, 24.650169744927581 ], [ -77.732721972022588, 24.650192210444597 ], [ -77.732673836696435, 24.650260713264363 ], [ -77.732638170884698, 24.650306945686225 ], [ -77.732545093743155, 24.650433745522598 ], [ -77.732494450320686, 24.650497562598837 ], [ -77.732461269249058, 24.650534141221975 ], [ -77.73243704887237, 24.650556511148732 ], [ -77.732411161222515, 24.650577693952826 ], [ -77.732369388663457, 24.650606495049288 ], [ -77.732251996822143, 24.650678515723158 ], [ -77.732208929790815, 24.650706413803267 ], [ -77.732181749465241, 24.650726705019327 ], [ -77.732129745095136, 24.650769140780707 ], [ -77.732104975847818, 24.650791300838012 ], [ -77.73208163761673, 24.650814977853116 ], [ -77.73205982562331, 24.650839730126481 ], [ -77.732030219846465, 24.650879900205446 ], [ -77.732003239845241, 24.650922092613328 ], [ -77.731970029129172, 24.650979713418963 ], [ -77.731955153028068, 24.651009481912922 ], [ -77.73193399321157, 24.651061863537219 ], [ -77.731916440130902, 24.651115923754134 ], [ -77.731891931395012, 24.651200570475254 ], [ -77.731860925144673, 24.651325122546304 ], [ -77.731835242310709, 24.651404010740134 ], [ -77.731817794332912, 24.651451816027294 ], [ -77.731778399614484, 24.651546151261261 ], [ -77.731726636891153, 24.651677829719439 ], [ -77.731674609164827, 24.65179628249054 ], [ -77.731653405330874, 24.65183757405315 ], [ -77.731581973994452, 24.651954006797041 ], [ -77.731513821508784, 24.652058792907948 ], [ -77.731486357315589, 24.652094489318124 ], [ -77.73145206143468, 24.652131051961039 ], [ -77.731369037339462, 24.652213861004878 ], [ -77.731276556679276, 24.652311407533862 ], [ -77.731252750425938, 24.652335216523753 ], [ -77.731178658279617, 24.652403285455396 ], [ -77.731155062232048, 24.652427245468814 ], [ -77.731064373710879, 24.652525805030098 ], [ -77.730995301350347, 24.652597141238996 ], [ -77.730948019423678, 24.652642643717623 ], [ -77.730898101839969, 24.652683539028562 ], [ -77.73082240440425, 24.652739769446928 ], [ -77.730771842728487, 24.652772102762913 ], [ -77.730721154390281, 24.652798332396955 ], [ -77.730695326927531, 24.652808122277651 ], [ -77.730668634387186, 24.652814465166323 ], [ -77.730640986039376, 24.652817722744455 ], [ -77.730597646818481, 24.652819159671182 ], [ -77.730553399400833, 24.652817472098793 ], [ -77.730494469019888, 24.652813043751827 ], [ -77.730443222827873, 24.652813626686907 ], [ -77.730391412493873, 24.652820263492121 ], [ -77.730342113849389, 24.652833951850738 ], [ -77.730314656842708, 24.652845914263331 ], [ -77.730288423341477, 24.652859761824025 ], [ -77.730238724048391, 24.65289045570708 ], [ -77.730166596517563, 24.652948446265675 ], [ -77.730130236308156, 24.652971541570249 ], [ -77.730106769617976, 24.652980675840396 ], [ -77.730082440545104, 24.652986140236777 ], [ -77.730057638958456, 24.652988356040005 ], [ -77.730031912106995, 24.652988602603259 ], [ -77.729947812728412, 24.652985672419749 ], [ -77.729898215843278, 24.652978974390741 ], [ -77.729848724959353, 24.652966207802759 ], [ -77.729802667436459, 24.652946430488225 ], [ -77.729762060890593, 24.65291917707583 ], [ -77.729686344590306, 24.652858231007723 ], [ -77.729661971499965, 24.652842348073285 ], [ -77.729585839279665, 24.652799743197939 ], [ -77.729560411567221, 24.652783896179223 ], [ -77.729535627048534, 24.652766236670715 ], [ -77.729478362144121, 24.65272191562039 ], [ -77.729446857328796, 24.652694532345564 ], [ -77.729418815518883, 24.652663829433504 ], [ -77.729391819347953, 24.652620984464733 ], [ -77.729370973941798, 24.652573622950694 ], [ -77.729354314684841, 24.652524230938489 ], [ -77.729319301948337, 24.652402002830751 ], [ -77.729312784670952, 24.652376411568362 ], [ -77.729308717099343, 24.652351242399515 ], [ -77.729307522339994, 24.652326932935633 ], [ -77.729310190336406, 24.65230290187273 ], [ -77.729316675274433, 24.652279579474424 ], [ -77.729325716817812, 24.652256235844273 ], [ -77.729358676005518, 24.65218215865227 ], [ -77.729374280640371, 24.65213558401997 ], [ -77.729385992875024, 24.652086026913601 ], [ -77.729394260070578, 24.652035949714698 ], [ -77.729397401479133, 24.652006557844821 ], [ -77.729398109351578, 24.651976924301426 ], [ -77.729396356738434, 24.651947388723929 ], [ -77.729388678837736, 24.651886644658951 ], [ -77.72937173122159, 24.65179362415439 ], [ -77.729366060157162, 24.651749684037473 ], [ -77.729362531574793, 24.651704331458912 ], [ -77.729358300509759, 24.651571361414636 ], [ -77.729353964341897, 24.651517563473519 ], [ -77.729346736497092, 24.651463983499916 ], [ -77.729335928865922, 24.651411745738574 ], [ -77.729284907252719, 24.651243375109146 ], [ -77.729269869454882, 24.651180071958848 ], [ -77.729247223824856, 24.651045818717655 ], [ -77.729230821486098, 24.650938795505812 ], [ -77.729222904633488, 24.650876142093953 ], [ -77.729200647974039, 24.650617252595111 ], [ -77.72919340126461, 24.650554012810478 ], [ -77.72918370844269, 24.650492911278551 ], [ -77.729153684050956, 24.650357067667041 ], [ -77.729140236271178, 24.650309791838019 ], [ -77.729110369982919, 24.65022544333463 ], [ -77.72908975724043, 24.650177030136884 ], [ -77.729074318793948, 24.650146472750826 ], [ -77.729049281848674, 24.650101903385163 ], [ -77.729020871729446, 24.650060263439226 ], [ -77.728999401095876, 24.650034945208837 ], [ -77.72897605567826, 24.650011014128619 ], [ -77.728933374024137, 24.649974823168002 ], [ -77.728888652296064, 24.649940434928226 ], [ -77.72884582691151, 24.649904458674737 ], [ -77.728822296440981, 24.649880792100877 ], [ -77.728800537448123, 24.649855873080561 ], [ -77.728771396998667, 24.649815198102761 ], [ -77.728719375560516, 24.649728968967441 ], [ -77.728691994012365, 24.649687457897233 ], [ -77.72865097334325, 24.649636918438432 ], [ -77.728582916977317, 24.649569010473495 ], [ -77.72855944938884, 24.649547706662595 ], [ -77.728535116722753, 24.649527913293898 ], [ -77.728461011999983, 24.649473484983524 ], [ -77.728363548384948, 24.649411266008435 ], [ -77.728316282627929, 24.649375668439045 ], [ -77.728293223772923, 24.649355884840457 ], [ -77.728248591876351, 24.649313122015258 ], [ -77.728204941838342, 24.649267352157562 ], [ -77.728183552951435, 24.649243603817073 ], [ -77.728163217788335, 24.64921839401017 ], [ -77.728144050435148, 24.649192154642968 ], [ -77.728117931019952, 24.649149784478777 ], [ -77.728078446469951, 24.649075249042433 ], [ -77.728050355252677, 24.649012375067553 ], [ -77.728034777567373, 24.648967576688019 ], [ -77.72802160646863, 24.6489207910261 ], [ -77.7280020016359, 24.648836655497242 ], [ -77.727992419306744, 24.648777263612903 ], [ -77.727986090675586, 24.648715739100414 ], [ -77.72798216234284, 24.648653069060277 ], [ -77.72797882959317, 24.648527907691097 ], [ -77.727977443492648, 24.648373707000488 ], [ -77.727973516058213, 24.648321365071624 ], [ -77.727964970384917, 24.648270593183717 ], [ -77.727930000767543, 24.648138223667562 ], [ -77.727918871539487, 24.648077549598401 ], [ -77.727911371505201, 24.648013016060151 ], [ -77.727906740689889, 24.647945640365307 ], [ -77.727904405070134, 24.647876262654727 ], [ -77.72790512551903, 24.647734224096595 ], [ -77.727911958105068, 24.647591640791614 ], [ -77.727917743255503, 24.64752151254817 ], [ -77.727925398698332, 24.647452955154989 ], [ -77.727935299929385, 24.647386663431579 ], [ -77.727947959886734, 24.64732345711899 ], [ -77.727965489611165, 24.647251430427549 ], [ -77.727977329406599, 24.647186142858281 ], [ -77.727984773745376, 24.647118668740497 ], [ -77.727988214292907, 24.64705008744842 ], [ -77.727987794779665, 24.646981410591234 ], [ -77.727981540708655, 24.646806584652307 ], [ -77.727973927486602, 24.646451433066023 ], [ -77.727961342089515, 24.64620342703817 ], [ -77.727961514566061, 24.646132243940301 ], [ -77.727964699093761, 24.646061237977925 ], [ -77.72797106814906, 24.645991238695405 ], [ -77.728007354696686, 24.645670884089576 ], [ -77.728016640581771, 24.645600782527929 ], [ -77.728027936896467, 24.645532402073613 ], [ -77.728042237177476, 24.645466783746205 ], [ -77.728097162868849, 24.645273445157812 ], [ -77.728109732994653, 24.645224192326285 ], [ -77.728130706859901, 24.645126419809198 ], [ -77.728142888913467, 24.645038199291541 ], [ -77.728149968536187, 24.644943156145313 ], [ -77.728152357156574, 24.644846800831054 ], [ -77.728150584780522, 24.644754523801733 ], [ -77.728145438332277, 24.644671419957238 ], [ -77.728134377376151, 24.644541818608641 ], [ -77.728133068530781, 24.644506037573755 ], [ -77.728134773533228, 24.644493172140628 ], [ -77.728161180409316, 24.644388258023508 ], [ -77.728183599663822, 24.644289804714731 ], [ -77.72819449532993, 24.644229833408183 ], [ -77.728203200903337, 24.644166383816113 ], [ -77.728209475635637, 24.644101561667792 ], [ -77.728222142779458, 24.643927369378883 ], [ -77.728237211119975, 24.643768861712903 ], [ -77.728243220849237, 24.643640400888565 ], [ -77.728243866737927, 24.643510694774985 ], [ -77.728242187786677, 24.643447143571947 ], [ -77.728233868488843, 24.643283985340712 ], [ -77.728233704097136, 24.643221272566237 ], [ -77.728235842087486, 24.643160626318569 ], [ -77.728240285154882, 24.643103493437319 ], [ -77.72824718152134, 24.643051537953294 ], [ -77.728256827630872, 24.64300671375678 ], [ -77.72828412383906, 24.642920297840533 ], [ -77.72829177568866, 24.642880728594893 ], [ -77.728296526878196, 24.642835627543366 ], [ -77.728298560664001, 24.642786568077693 ], [ -77.7282925536297, 24.642563892485274 ], [ -77.728291357073743, 24.642032289329421 ], [ -77.728285952808974, 24.641881621809567 ], [ -77.728270758704255, 24.641696885302402 ], [ -77.728254397688005, 24.64140735111123 ], [ -77.728248945812567, 24.641336375122986 ], [ -77.728205067602488, 24.640951330949655 ], [ -77.728198763225805, 24.640880573527937 ], [ -77.728195166371435, 24.640808899937337 ], [ -77.728193618574224, 24.64073738144339 ], [ -77.728194854656039, 24.640526802965194 ], [ -77.728182475871421, 24.640306458584007 ], [ -77.728176986266718, 24.640243823516677 ], [ -77.728169575165623, 24.640181946146896 ], [ -77.72813173902415, 24.639910471501178 ], [ -77.728124198565666, 24.639847918703847 ], [ -77.728113721514504, 24.639718540159574 ], [ -77.728100993285238, 24.639521576294701 ], [ -77.728086048013878, 24.639344056816491 ], [ -77.728080883599276, 24.639194099696713 ], [ -77.728079557685945, 24.63873212876662 ], [ -77.728074421119146, 24.638582225619583 ], [ -77.728059099453674, 24.638398838039365 ], [ -77.728039902456018, 24.63811288649396 ], [ -77.728032786900684, 24.638043372676147 ], [ -77.728023164147359, 24.63797601773193 ], [ -77.727995932617816, 24.637823457493713 ], [ -77.727987057262808, 24.637757555045109 ], [ -77.727980934345851, 24.637689296043138 ], [ -77.727974216744144, 24.6375481840989 ], [ -77.727969049634623, 24.637261294854543 ], [ -77.727964235563022, 24.637123040310708 ], [ -77.727959850886123, 24.637057255074204 ], [ -77.72794074821158, 24.636889606509783 ], [ -77.727938840189935, 24.636854578582405 ], [ -77.727940862297643, 24.63668290174877 ], [ -77.727948929168846, 24.636461696483952 ], [ -77.72795767157325, 24.636312939489351 ], [ -77.727963529487212, 24.636240509607948 ], [ -77.727980249829585, 24.636081865623105 ], [ -77.727983676004101, 24.636031261050743 ], [ -77.727988948216492, 24.635894986903502 ], [ -77.727993093043239, 24.635844971802086 ], [ -77.727999203383789, 24.635795137954084 ], [ -77.728030637232195, 24.635584216360069 ], [ -77.728046535616087, 24.63548668126192 ], [ -77.728056358693735, 24.635415286286083 ], [ -77.728063721285778, 24.635341517559063 ], [ -77.728069077041539, 24.635266105072567 ], [ -77.728074863090271, 24.635112721707614 ], [ -77.728074576527689, 24.634959272013575 ], [ -77.728071869005419, 24.634883730281011 ], [ -77.728058597295416, 24.634694885140132 ], [ -77.728055587939238, 24.634619411838315 ], [ -77.728054030260481, 24.634466309391179 ], [ -77.728057221076384, 24.634313836321439 ], [ -77.728060520588429, 24.634239269167875 ], [ -77.728065116369436, 24.634166753162265 ], [ -77.728079981690726, 24.634003544431373 ], [ -77.728087259841189, 24.633863190990809 ], [ -77.728092260762395, 24.633814159847265 ], [ -77.728099517353229, 24.633765554928885 ], [ -77.728128771888777, 24.633619815183884 ], [ -77.728141856749218, 24.633565174984128 ], [ -77.72815724219511, 24.633512064180799 ], [ -77.728168896937589, 24.633477964554075 ], [ -77.728232076349812, 24.633309613841913 ], [ -77.728251901269843, 24.633245855758037 ], [ -77.728302472827068, 24.633048068389865 ], [ -77.728322066880025, 24.63298621276957 ], [ -77.728353728900558, 24.632907023877937 ], [ -77.728374568018495, 24.632862863992518 ], [ -77.728418587264059, 24.632783165485133 ], [ -77.728430533959028, 24.632756004844133 ], [ -77.72847154923825, 24.632638753966312 ], [ -77.728523208655318, 24.632472637888451 ], [ -77.72856671047127, 24.632349304119202 ], [ -77.728584122516423, 24.632305088509909 ], [ -77.72862770158747, 24.632209151329942 ], [ -77.728674191200071, 24.632115557634997 ], [ -77.728788845874732, 24.631856718255204 ], [ -77.728841043382616, 24.631725339812672 ], [ -77.72886377345425, 24.631658347287612 ], [ -77.728878410603485, 24.631596041046933 ], [ -77.728887910287625, 24.631530790206593 ], [ -77.728893203161292, 24.631464120124406 ], [ -77.728895682511464, 24.631292457115325 ], [ -77.728899060176971, 24.631224108840666 ], [ -77.728905351977147, 24.631156061029198 ], [ -77.72891518763123, 24.631089598974405 ], [ -77.728948745097, 24.630929855867276 ], [ -77.72896440722397, 24.63087048078231 ], [ -77.728990809608476, 24.630785161303283 ], [ -77.729028844277622, 24.630670822951636 ], [ -77.729040025607944, 24.630626042491215 ], [ -77.729047944257161, 24.630579849329585 ], [ -77.729052979314346, 24.630533030649612 ], [ -77.729065124536987, 24.630374952659 ], [ -77.729086974259644, 24.630205675843737 ], [ -77.729110275659792, 24.629992893616816 ], [ -77.729132763186314, 24.629835799745528 ], [ -77.729143147710971, 24.629750648593404 ], [ -77.729152023964318, 24.62970141168951 ], [ -77.729165688238083, 24.629654078230601 ], [ -77.729179311189426, 24.629622739249211 ], [ -77.72919691547402, 24.62959010025266 ], [ -77.729218340293542, 24.629557139512144 ], [ -77.729243316153401, 24.629524827950281 ], [ -77.729299632436863, 24.629460462026746 ], [ -77.729329682879737, 24.629428970294729 ], [ -77.729360533721547, 24.629399146028927 ], [ -77.729449269305306, 24.629317789269574 ], [ -77.729521878333088, 24.629258656762431 ], [ -77.729553677795835, 24.62923591392272 ], [ -77.729566047597245, 24.629229079883242 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 3166, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 218 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.624051607812703, 24.238971442849355 ], [ -77.624038029848847, 24.23895837044067 ], [ -77.624016053463762, 24.238933954083564 ], [ -77.623995982405347, 24.238907540704304 ], [ -77.623960173761503, 24.238850968086485 ], [ -77.623934439723527, 24.238799890113278 ], [ -77.623886492145246, 24.238694411744223 ], [ -77.62385446630708, 24.238634105469281 ], [ -77.623819071786528, 24.238576692309433 ], [ -77.623799963722135, 24.238549080478325 ], [ -77.623661165925881, 24.238361016955668 ], [ -77.623576493422163, 24.23825894168888 ], [ -77.623536098878787, 24.23820641444463 ], [ -77.623499647939497, 24.238150844944602 ], [ -77.623475661124786, 24.238106444208498 ], [ -77.623431275366585, 24.238016006893499 ], [ -77.623406844784128, 24.237973812019984 ], [ -77.62338870061204, 24.237948079136284 ], [ -77.623350320091504, 24.237899907884831 ], [ -77.623330362220855, 24.237877448220996 ], [ -77.623287820703922, 24.237837825363762 ], [ -77.623265431093785, 24.237820799785474 ], [ -77.62319524212738, 24.237772195166922 ], [ -77.623172001812662, 24.237753827847204 ], [ -77.623149163044857, 24.237734593886589 ], [ -77.623035796554319, 24.237631239456366 ], [ -77.622964823358686, 24.237572119596702 ], [ -77.622916098737676, 24.237536612772764 ], [ -77.622890792297795, 24.237520878922378 ], [ -77.622864233606407, 24.237507581982495 ], [ -77.622836298696015, 24.23749665396593 ], [ -77.622806897735103, 24.237488823080266 ], [ -77.622775824111116, 24.237483700239139 ], [ -77.62273729701333, 24.237479730618976 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 3171, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 97 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.591760702253353, 24.20503674557418 ], [ -77.591826713802661, 24.204969603866548 ], [ -77.591848362302713, 24.204944444406109 ], [ -77.591888838592794, 24.204891647786134 ], [ -77.591907453482079, 24.204863755810798 ], [ -77.591941399020044, 24.204806013617983 ], [ -77.591956321833536, 24.204775778309394 ], [ -77.591969377947891, 24.204744679408268 ], [ -77.591985064329336, 24.204691416500367 ], [ -77.591994438249344, 24.204635195746924 ], [ -77.59199799917117, 24.204577614041572 ], [ -77.591995844112802, 24.204520184707878 ], [ -77.591987668545414, 24.204464410420663 ], [ -77.591969862139806, 24.204397922378163 ], [ -77.591945980428008, 24.204333993930348 ], [ -77.591917692479697, 24.204271892587602 ], [ -77.591898321470168, 24.204236050537542 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 3173, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 239 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.555349157436254, 24.114881414836088 ], [ -77.555340830054007, 24.114866418537964 ], [ -77.555302462109879, 24.114767083011511 ], [ -77.555202100529712, 24.114530543734958 ], [ -77.555150547113868, 24.114403082212608 ], [ -77.555111112869525, 24.114310017904288 ], [ -77.555089361063253, 24.114262299298293 ], [ -77.55504932494766, 24.114187258415299 ], [ -77.55502227936941, 24.114144715113277 ], [ -77.555002150818808, 24.114118421841848 ], [ -77.554980542742982, 24.114093168226947 ], [ -77.554933241053391, 24.114046455585591 ], [ -77.55488091957794, 24.114004104918664 ], [ -77.554709608158362, 24.11389001091278 ], [ -77.554655667020427, 24.113849068004075 ], [ -77.554604395675653, 24.113805804695975 ], [ -77.554580072891014, 24.113783155099998 ], [ -77.55453526492461, 24.113734029306414 ], [ -77.554513973954087, 24.113708745278394 ], [ -77.554452430373971, 24.113630130835094 ], [ -77.554408802793887, 24.113580222773486 ], [ -77.554362581777553, 24.113532567849646 ], [ -77.554291077677576, 24.113463340639015 ], [ -77.554268834492817, 24.113438634605966 ], [ -77.55422636484117, 24.113387715499488 ], [ -77.554123642488406, 24.113257039541292 ], [ -77.554047289282479, 24.113169733578172 ], [ -77.554029491823968, 24.113150633429399 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 3175, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 67 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.556983596265468, 24.120285954551626 ], [ -77.556968200056417, 24.120285718679771 ], [ -77.556963668055815, 24.120283550089312 ], [ -77.556963964499843, 24.12024449823679 ], [ -77.556965172531378, 24.120207923844468 ] ], [ [ -77.556962530754504, 24.120196734993002 ], [ -77.556958878238689, 24.12019498629849 ], [ -77.556935608279574, 24.120194630469012 ], [ -77.556920362970928, 24.120194397622104 ], [ -77.55691679755752, 24.120192689804682 ], [ -77.5569170302212, 24.120161958925035 ], [ -77.556918546577393, 24.120116066742931 ], [ -77.556917449734442, 24.120106732362576 ], [ -77.556915618069581, 24.120104879424467 ], [ -77.556911042051496, 24.12010366517605 ], [ -77.556883645232006, 24.120103246215262 ], [ -77.556876598083974, 24.120103138645153 ] ], [ [ -77.556870108394435, 24.120077926122558 ], [ -77.556870252249411, 24.120058852760838 ], [ -77.556867866324012, 24.120057709841969 ], [ -77.556864892816279, 24.120057664378571 ] ], [ [ -77.556644388437974, 24.119201033228293 ], [ -77.556644493042072, 24.119199013298434 ], [ -77.556644104969891, 24.119162588862988 ], [ -77.556641624721408, 24.119123674410059 ], [ -77.556637058584769, 24.119084074516675 ], [ -77.556613909898275, 24.118962317414557 ], [ -77.556609530611269, 24.118931004116419 ], [ -77.556606192471662, 24.118888946947337 ], [ -77.556607294704492, 24.118882424711369 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 3180, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 112 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.034933503864679, 25.177152410834584 ], [ -78.034897865579936, 25.177114883449484 ], [ -78.034876572812749, 25.177096889923885 ], [ -78.034721928734896, 25.176982572887322 ], [ -78.034684989112094, 25.176952790410247 ], [ -78.034650777672823, 25.176919253612109 ], [ -78.034549709118522, 25.176813458822966 ], [ -78.034497579882611, 25.176765982717857 ], [ -78.034406276913728, 25.176686475362352 ], [ -78.034376362116447, 25.176657176533531 ], [ -78.034347912471432, 25.176627291541994 ], [ -78.034321749038753, 25.176596639906631 ], [ -78.034298652454481, 25.176565099680467 ], [ -78.034278976654804, 25.176533748869634 ], [ -78.034256369652383, 25.176487496998792 ], [ -78.034241307600027, 25.176445560393063 ], [ -78.034235003223358, 25.176421640977264 ], [ -78.03423179803444, 25.176401159638385 ], [ -78.034231448279485, 25.17639351338812 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 3183, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 747 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.06394190378407, 25.176714789527342 ], [ -78.063979809604575, 25.176729506149812 ], [ -78.064024789149187, 25.176745191693257 ], [ -78.064072317214254, 25.176757910688721 ], [ -78.064123679288926, 25.176767879388461 ], [ -78.064176115748651, 25.176775072590953 ], [ -78.06422669988234, 25.176779608991144 ], [ -78.064500630348476, 25.176789591509632 ], [ -78.064588052595298, 25.176795830278479 ], [ -78.064629686813774, 25.176800747962968 ], [ -78.064669218974473, 25.176807487523629 ], [ -78.064705911560566, 25.176816687958286 ], [ -78.064789630951807, 25.176846869639078 ], [ -78.064946326781737, 25.176916541530847 ], [ -78.065052457342688, 25.176956585371624 ], [ -78.065086294184425, 25.176965696367954 ], [ -78.065122369627971, 25.176972869234437 ], [ -78.06527435559093, 25.176994901630692 ], [ -78.065310699630686, 25.177001840359125 ], [ -78.06534469457597, 25.177010815585465 ], [ -78.065403721076663, 25.177033214625762 ], [ -78.065428028589949, 25.177044160496735 ], [ -78.065452952347485, 25.177057642029727 ], [ -78.065508311026875, 25.177095583476515 ], [ -78.065543585173145, 25.177123432669823 ], [ -78.065646555460887, 25.177212497852775 ], [ -78.065652707123959, 25.177217066755457 ], [ -78.065658988144406, 25.177219039025488 ], [ -78.065706903383386, 25.177286092936292 ], [ -78.06574467484613, 25.177342452987901 ], [ -78.065810660595318, 25.17744754491147 ], [ -78.065879472444394, 25.177564861370048 ], [ -78.065921740873492, 25.177643387711775 ], [ -78.065948072291107, 25.17770110363017 ], [ -78.065969214141276, 25.177755027836596 ], [ -78.065992713170829, 25.177824366705345 ], [ -78.066012307223758, 25.177897305354648 ], [ -78.066024938435007, 25.177967702625516 ], [ -78.066032920864643, 25.178042307770333 ], [ -78.066037612765342, 25.178119915152877 ], [ -78.066040704766536, 25.178280759551811 ], [ -78.066040208896524, 25.178362760041978 ], [ -78.066036403632992, 25.178527415292141 ], [ -78.06602872932551, 25.178689237959777 ], [ -78.066022842665447, 25.178767140848429 ], [ -78.066014928507784, 25.178841440643456 ], [ -78.066004219691266, 25.178910378917493 ], [ -78.065989670576954, 25.178971550943071 ], [ -78.065969889674363, 25.179021691884806 ], [ -78.065956343978215, 25.179043373525001 ], [ -78.065941568488441, 25.179060828583946 ], [ -78.065925507509448, 25.179073125411673 ], [ -78.065908106244095, 25.179079295775015 ], [ -78.065890190244062, 25.179079351056281 ], [ -78.065872555416718, 25.179073518071203 ], [ -78.065855435324053, 25.179062726031873 ], [ -78.065839271038811, 25.179047087938354 ], [ -78.065823943085121, 25.17902750048361 ], [ -78.065809328393769, 25.179004837597784 ], [ -78.065789734340783, 25.178964574930589 ], [ -78.065772311515829, 25.178918800377119 ], [ -78.065761572156646, 25.178886246989631 ], [ -78.06574574024809, 25.178821994610921 ], [ -78.065733640839525, 25.178752527861768 ], [ -78.065703479005521, 25.178533284073758 ], [ -78.065638258620936, 25.178111318850398 ], [ -78.065611946966271, 25.177930204517381 ], [ -78.065598779460842, 25.177856482186858 ], [ -78.065585252629305, 25.177800842662595 ], [ -78.065571712323006, 25.177764742808687 ], [ -78.065566549705053, 25.177757957774666 ], [ -78.065563481060067, 25.177758539860054 ], [ -78.065559997393393, 25.177758442303826 ], [ -78.065552589885556, 25.17775439534714 ], [ -78.06547991348414, 25.177703077518338 ], [ -78.065447271401638, 25.177684884089203 ], [ -78.065413477678973, 25.17767130832117 ], [ -78.065379851941259, 25.177666769515334 ], [ -78.065349655971303, 25.177673404155176 ], [ -78.065326474945365, 25.17769175936677 ], [ -78.065310640341863, 25.177718613350223 ], [ -78.065273721380322, 25.177815288292024 ], [ -78.065263088022277, 25.177850845068441 ], [ -78.065236132275558, 25.177963809326542 ], [ -78.065225319254466, 25.17799994245313 ], [ -78.065175712487829, 25.178138227210045 ], [ -78.065133518618964, 25.178236938296855 ], [ -78.065118355056967, 25.178268843111724 ], [ -78.065067160068935, 25.178358552951352 ], [ -78.065052015371549, 25.178390412208365 ], [ -78.065009877198207, 25.178488799531369 ], [ -78.064971880258327, 25.178591299554022 ], [ -78.064957294313089, 25.178623642462949 ], [ -78.064921908775702, 25.178682195268234 ], [ -78.064860896099887, 25.17877239908432 ], [ -78.064731406646658, 25.178939493475625 ], [ -78.064710286356004, 25.178962464485593 ], [ -78.064692349694724, 25.178977004280611 ], [ -78.064678920779073, 25.178984854229231 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 9, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 98 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.830529375941737, 23.762964512787999 ], [ -77.830525928207777, 23.763106703013175 ], [ -77.830521698041125, 23.763281219379309 ], [ -77.830519946326291, 23.763353466999817 ], [ -77.830511644096461, 23.763665446918317 ], [ -77.830511991744487, 23.763715928684285 ], [ -77.830514480976106, 23.763734063704234 ], [ -77.830520618266149, 23.763749007129856 ], [ -77.830541913728283, 23.763768377016625 ], [ -77.830547086227668, 23.763775247735083 ], [ -77.830551316394335, 23.763784034065555 ], [ -77.830556197839613, 23.763803825710582 ], [ -77.830557780671114, 23.763822171189009 ], [ -77.830557267732999, 23.763835910978884 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 317, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 31 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.752761919528083, 24.336384853240226 ], [ -77.752763322231019, 24.33637932954041 ], [ -77.752762204726551, 24.33637760579494 ], [ -77.752856007707109, 24.336380670231311 ], [ -77.75287300473056, 24.336379598824433 ], [ -77.752882333734775, 24.336376973918689 ], [ -77.752888464736628, 24.336371287850231 ], [ -77.752891431872001, 24.336362574177066 ], [ -77.752894362176477, 24.336313414676333 ], [ -77.752896170485116, 24.336303595215018 ], [ -77.752900289260694, 24.336295980773436 ], [ -77.752907732701161, 24.336291921865875 ], [ -77.752917706695769, 24.336290177656878 ], [ -77.752977988142632, 24.336292006170623 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 329, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 4, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 32 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.796838539114518, 24.360679727083532 ], [ -77.796835747150709, 24.360820251579668 ], [ -77.796834187675344, 24.360838289310092 ], [ -77.796831682274018, 24.36084891620159 ], [ -77.796826682251151, 24.360857163375737 ], [ -77.79682272786728, 24.360859949804269 ], [ -77.796802163633814, 24.360866569310801 ], [ -77.796793040343786, 24.360870983406112 ], [ -77.796787203989354, 24.360878607826471 ], [ -77.796781343380459, 24.360892835384856 ], [ -77.796774102060979, 24.360901596470018 ], [ -77.796761568766115, 24.360906994201585 ], [ -77.796737125607208, 24.360911439392147 ], [ -77.796734170148113, 24.360912922214304 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 372, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 35 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.744924971607801, 24.407529807543959 ], [ -77.744977071199585, 24.407530422704198 ], [ -77.744991922147875, 24.40753218474574 ], [ -77.745001975194214, 24.407535685105721 ], [ -77.745008616439122, 24.407542277627336 ], [ -77.745015699655099, 24.407561313235057 ], [ -77.745020866764634, 24.407569417478545 ], [ -77.74502945465872, 24.407574481096603 ], [ -77.745049445767066, 24.407582162416698 ], [ -77.745053357930161, 24.407585025528491 ], [ -77.745058535819453, 24.407593121590079 ], [ -77.745063684962673, 24.407607539400857 ], [ -77.745068726308048, 24.407615754075639 ], [ -77.745077208200911, 24.407620909311429 ], [ -77.74509282092059, 24.40762613080755 ], [ -77.745101788802074, 24.407630901568051 ], [ -77.745108167738877, 24.407640372737802 ], [ -77.745118536093898, 24.407663349606132 ], [ -77.745124345498851, 24.407669025107953 ], [ -77.745128346595266, 24.407669515926731 ] ], [ [ -77.744917317063496, 24.407441561465006 ], [ -77.74491586269103, 24.407498229040819 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 460, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 50 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.729566047597245, 24.629229079883242 ], [ -77.729569457602096, 24.629183084636157 ], [ -77.729573756040736, 24.629161913718896 ], [ -77.729577070824135, 24.629153475891538 ], [ -77.729581343211649, 24.629147476402355 ], [ -77.729586504931277, 24.629144508096331 ], [ -77.729597953959569, 24.629144244337695 ], [ -77.729603320495045, 24.629146279280896 ], [ -77.729607801291706, 24.629149840431364 ], [ -77.729613488525771, 24.629162515545939 ], [ -77.729615683110026, 24.629179296474543 ], [ -77.729618228037182, 24.629244124732597 ], [ -77.729622766326045, 24.629259291252581 ], [ -77.729626965051665, 24.629265181313375 ], [ -77.729632964899466, 24.629269581097958 ], [ -77.729648945030036, 24.629274899545614 ], [ -77.729678301973522, 24.629278146305488 ], [ -77.729862450318237, 24.629280311084266 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 3154, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 50 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.729566047597245, 24.629229079883242 ], [ -77.729569457602096, 24.629183084636157 ], [ -77.729573756040736, 24.629161913718896 ], [ -77.729577070824135, 24.629153475891538 ], [ -77.729581343211649, 24.629147476402355 ], [ -77.729586504931277, 24.629144508096331 ], [ -77.729597953959569, 24.629144244337695 ], [ -77.729603320495045, 24.629146279280896 ], [ -77.729607801291706, 24.629149840431364 ], [ -77.729613488525771, 24.629162515545939 ], [ -77.729615683110026, 24.629179296474543 ], [ -77.729618228037182, 24.629244124732597 ], [ -77.729622766326045, 24.629259291252581 ], [ -77.729626965051665, 24.629265181313375 ], [ -77.729632964899466, 24.629269581097958 ], [ -77.729648945030036, 24.629274899545614 ], [ -77.729678301973522, 24.629278146305488 ], [ -77.729862450318237, 24.629280311084266 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 461, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 58 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.730198120197372, 24.629919478536294 ], [ -77.730217713352175, 24.629920349016253 ], [ -77.730242475412979, 24.629917628153979 ], [ -77.730255059911812, 24.629914091522963 ], [ -77.730266242140473, 24.629908509345395 ], [ -77.730275276497252, 24.629900312461132 ], [ -77.730281644654312, 24.629890230896969 ], [ -77.730285546935903, 24.629879173512261 ], [ -77.73029196629696, 24.629834082465461 ], [ -77.730297320256014, 24.629813701297195 ], [ -77.730301671695287, 24.629805125510753 ], [ -77.730307735323407, 24.629798218009093 ], [ -77.730315822855957, 24.629793369120737 ], [ -77.730325548915502, 24.629790181985026 ], [ -77.730336414937213, 24.629788232793864 ], [ -77.730360072968523, 24.629786965452134 ], [ -77.730384411922856, 24.629788315269071 ], [ -77.730407446523344, 24.62979226427969 ], [ -77.730426888761031, 24.629799923857462 ], [ -77.730453675624503, 24.629822184808852 ], [ -77.730462621048133, 24.629826696446116 ], [ -77.730483886865798, 24.629832517070337 ], [ -77.730520004530121, 24.629835965512441 ], [ -77.730544277009074, 24.62983540615113 ], [ -77.730567514628888, 24.629831161537783 ], [ -77.730579063370172, 24.629826389409754 ], [ -77.730616851002594, 24.629801480270547 ], [ -77.730634327726463, 24.62979499167739 ], [ -77.730641462146437, 24.629793601031224 ], [ -77.730648963321173, 24.629793958563795 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 2757, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 58 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.730198120197372, 24.629919478536294 ], [ -77.730217713352175, 24.629920349016253 ], [ -77.730242475412979, 24.629917628153979 ], [ -77.730255059911812, 24.629914091522963 ], [ -77.730266242140473, 24.629908509345395 ], [ -77.730275276497252, 24.629900312461132 ], [ -77.730281644654312, 24.629890230896969 ], [ -77.730285546935903, 24.629879173512261 ], [ -77.73029196629696, 24.629834082465461 ], [ -77.730297320256014, 24.629813701297195 ], [ -77.730301671695287, 24.629805125510753 ], [ -77.730307735323407, 24.629798218009093 ], [ -77.730315822855957, 24.629793369120737 ], [ -77.730325548915502, 24.629790181985026 ], [ -77.730336414937213, 24.629788232793864 ], [ -77.730360072968523, 24.629786965452134 ], [ -77.730384411922856, 24.629788315269071 ], [ -77.730407446523344, 24.62979226427969 ], [ -77.730426888761031, 24.629799923857462 ], [ -77.730453675624503, 24.629822184808852 ], [ -77.730462621048133, 24.629826696446116 ], [ -77.730483886865798, 24.629832517070337 ], [ -77.730520004530121, 24.629835965512441 ], [ -77.730544277009074, 24.62983540615113 ], [ -77.730567514628888, 24.629831161537783 ], [ -77.730579063370172, 24.629826389409754 ], [ -77.730616851002594, 24.629801480270547 ], [ -77.730634327726463, 24.62979499167739 ], [ -77.730641462146437, 24.629793601031224 ], [ -77.730648963321173, 24.629793958563795 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 536, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 81 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.891856746843004, 24.844813150126878 ], [ -77.891855839543112, 24.844811669765829 ], [ -77.891849454318105, 24.844808996805554 ], [ -77.891806248946153, 24.844795687435195 ], [ -77.891788626695259, 24.844788704641381 ], [ -77.891746486725253, 24.844767197046874 ], [ -77.891730520069416, 24.84476106121901 ], [ -77.891669216339452, 24.844747085029724 ], [ -77.891640845746167, 24.844738779202512 ], [ -77.891628617878524, 24.844732930315224 ], [ -77.891619149635403, 24.844726434177932 ], [ -77.891548012946373, 24.844670717701206 ], [ -77.891535607212276, 24.844663925651531 ], [ -77.89148077853892, 24.844641269451579 ], [ -77.891450428957071, 24.844623469255012 ], [ -77.891436319118881, 24.844618154302989 ], [ -77.891403886343852, 24.844611178020525 ], [ -77.891332873622375, 24.844602552634953 ], [ -77.891299661109656, 24.844596250502864 ], [ -77.891285073367754, 24.844591336616681 ], [ -77.891244870165551, 24.844573403539052 ], [ -77.891225713592107, 24.844567887236163 ], [ -77.891205086476546, 24.844563786080379 ], [ -77.891164431421743, 24.844558949634788 ], [ -77.891119683642245, 24.84455736493047 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 2836, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 81 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.891856746843004, 24.844813150126878 ], [ -77.891855839543112, 24.844811669765829 ], [ -77.891849454318105, 24.844808996805554 ], [ -77.891806248946153, 24.844795687435195 ], [ -77.891788626695259, 24.844788704641381 ], [ -77.891746486725253, 24.844767197046874 ], [ -77.891730520069416, 24.84476106121901 ], [ -77.891669216339452, 24.844747085029724 ], [ -77.891640845746167, 24.844738779202512 ], [ -77.891628617878524, 24.844732930315224 ], [ -77.891619149635403, 24.844726434177932 ], [ -77.891548012946373, 24.844670717701206 ], [ -77.891535607212276, 24.844663925651531 ], [ -77.89148077853892, 24.844641269451579 ], [ -77.891450428957071, 24.844623469255012 ], [ -77.891436319118881, 24.844618154302989 ], [ -77.891403886343852, 24.844611178020525 ], [ -77.891332873622375, 24.844602552634953 ], [ -77.891299661109656, 24.844596250502864 ], [ -77.891285073367754, 24.844591336616681 ], [ -77.891244870165551, 24.844573403539052 ], [ -77.891225713592107, 24.844567887236163 ], [ -77.891205086476546, 24.844563786080379 ], [ -77.891164431421743, 24.844558949634788 ], [ -77.891119683642245, 24.84455736493047 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 653, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 32 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.987695069710583, 25.092460234826468 ], [ -77.988011333284447, 25.092466662577618 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 654, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 79 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.987915208159393, 25.092600053185414 ], [ -77.98812882483908, 25.092603949206882 ], [ -77.988153736020223, 25.092606901527088 ], [ -77.988162813496146, 25.092611138419635 ], [ -77.988167199071384, 25.09261795259221 ], [ -77.988168546544316, 25.092626551660917 ], [ -77.98816563330783, 25.092636043177226 ], [ -77.988162269117097, 25.09264039721786 ], [ -77.988157664352968, 25.092643989789369 ], [ -77.988146174002168, 25.092648199833999 ], [ -77.988125899924498, 25.092649449424076 ], [ -77.988125861271342, 25.092649440545014 ] ], [ [ -77.987761459225723, 25.092596918968479 ], [ -77.987762567769565, 25.092596941567049 ] ], [ [ -77.988135947579195, 25.092514309768347 ], [ -77.988133416128463, 25.092515403973625 ], [ -77.98812069688239, 25.092539429318322 ], [ -77.988114912630294, 25.092546075092926 ], [ -77.988107476376342, 25.092551230469574 ], [ -77.988089548698213, 25.092556901627709 ], [ -77.988051702675307, 25.092558099152352 ], [ -77.987813370647274, 25.092552656597892 ], [ -77.987773621094234, 25.092552749340975 ], [ -77.987752583448639, 25.092556293102916 ], [ -77.987735102233188, 25.092563714176219 ], [ -77.987729141911302, 25.092568894771709 ], [ -77.987725458818616, 25.092574644841974 ], [ -77.987723603797562, 25.092580136207605 ], [ -77.98772359930598, 25.092586559888169 ] ] ] } }, +{ "type": "Feature", "properties": { "FID_Merge": 674, "Hab_Desc": "Beach", "ShoreType": "sand", "Type": 1, "SedSize": 0.2, "ForshrSlop": 0.05, "BermLength": 500.0, "BermHeight": 2.0, "DuneHeight": 0.0, "DryDensity": 0.0, "ErosionCst": 0.0, "RANK": 5, "BUFF_DIST": 0.0, "ORIG_FID": 0, "FID_Soil_T": 0, "ShoreTyp_1": "sand", "length": 51 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.028218971392235, 25.173653993371655 ], [ -78.028221678914633, 25.173579944878878 ], [ -78.028220237118617, 25.173555585069703 ], [ -78.028217384967576, 25.1735478111977 ], [ -78.028211772293687, 25.173542671433946 ], [ -78.028182214127582, 25.173534117897422 ], [ -78.028179047566198, 25.173531982155431 ], [ -78.028174803924784, 25.173525115586138 ], [ -78.028172927344187, 25.173516199451903 ], [ -78.028172250912732, 25.173500973649173 ], [ -78.028174955739985, 25.173424844608423 ] ], [ [ -78.028157277793426, 25.173402255475054 ], [ -78.027933016975879, 25.17339774821717 ] ] ] } } +] +} diff --git a/src/ckanext-mappreview/ckanext/mappreview/public/data/recreation/beaches.qmd b/src/ckanext-mappreview/ckanext/mappreview/public/data/recreation/beaches.qmd new file mode 100644 index 00000000..b190199d --- /dev/null +++ b/src/ckanext-mappreview/ckanext/mappreview/public/data/recreation/beaches.qmd @@ -0,0 +1,26 @@ + + + + + + dataset + + + + + + + + + + 0 + 0 + + + + + false + + + + diff --git a/src/ckanext-mappreview/ckanext/mappreview/public/data/recreation/bonefish.geojson b/src/ckanext-mappreview/ckanext/mappreview/public/data/recreation/bonefish.geojson new file mode 100644 index 00000000..9418f9f4 --- /dev/null +++ b/src/ckanext-mappreview/ckanext/mappreview/public/data/recreation/bonefish.geojson @@ -0,0 +1,8 @@ +{ +"type": "FeatureCollection", +"name": "bonefish", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, +"features": [ +{ "type": "Feature", "properties": { "ID": 629, "GRIDCODE": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -77.661107156020591, 23.857156028849936 ], [ -77.661418065790144, 23.857962980146404 ], [ -77.660834975233371, 23.858243837569773 ], [ -77.661118221512908, 23.857697389013335 ], [ -77.661107156020591, 23.857156028849936 ] ] ], [ [ [ -77.614735120641413, 23.879071808169304 ], [ -77.614724236929618, 23.878530429219442 ], [ -77.615276178591643, 23.878521045673988 ], [ -77.615287064594511, 23.879062424385189 ], [ -77.614735120641413, 23.879071808169304 ] ] ], [ [ [ -77.615324768042171, 23.879106913618685 ], [ -77.61612692633129, 23.879093272109735 ], [ -77.616131463723363, 23.879318846407461 ], [ -77.615329304046838, 23.879332488060957 ], [ -77.615324768042171, 23.879106913618685 ] ] ], [ [ [ -77.617706059684977, 23.880375182493477 ], [ -77.616512231658405, 23.879583151248621 ], [ -77.616391058592839, 23.878317051391388 ], [ -77.615307531735667, 23.878249730670362 ], [ -77.616185191232731, 23.877964023684918 ], [ -77.617079186042801, 23.878490378990112 ], [ -77.617706059684977, 23.880375182493477 ] ] ], [ [ [ -77.618916255583613, 23.881979268533907 ], [ -77.618316603721141, 23.881447915677505 ], [ -77.623366718042519, 23.877426512701671 ], [ -77.624367370357234, 23.874846053338853 ], [ -77.632614850470645, 23.874975909927915 ], [ -77.636814528174611, 23.878424104892428 ], [ -77.640301062113167, 23.876468848034971 ], [ -77.64266692423908, 23.876969776689585 ], [ -77.636240388399685, 23.87951706156629 ], [ -77.62615537785301, 23.875898661214809 ], [ -77.624449292711276, 23.878906364948001 ], [ -77.618916255583613, 23.881979268533907 ] ] ], [ [ [ -77.631579816702029, 23.882033887341578 ], [ -77.631885146415897, 23.882570221345361 ], [ -77.631007500642525, 23.882856017564212 ], [ -77.631585294477432, 23.882304573033274 ], [ -77.631579816702029, 23.882033887341578 ] ] ], [ [ [ -77.61717179098207, 23.883092090043032 ], [ -77.61716634298638, 23.882821401243088 ], [ -77.618038577484, 23.882264992826748 ], [ -77.617760548227068, 23.883082069699995 ], [ -77.61717179098207, 23.883092090043032 ] ] ], [ [ [ -77.613922737892935, 23.882605782727889 ], [ -77.614222558026029, 23.882871468595127 ], [ -77.613350301147563, 23.883427857083806 ], [ -77.61333398099292, 23.882615788201612 ], [ -77.613922737892935, 23.882605782727889 ] ] ], [ [ [ -77.61717179098207, 23.883092090043032 ], [ -77.617199032172465, 23.884445533882477 ], [ -77.615432740165318, 23.884475583331241 ], [ -77.615710786578617, 23.883658509268365 ], [ -77.61717179098207, 23.883092090043032 ] ] ], [ [ [ -77.610771532159603, 23.886991827090725 ], [ -77.612210845119037, 23.885342690847381 ], [ -77.614282423197935, 23.885849051809469 ], [ -77.6142987517579, 23.886661119734388 ], [ -77.610771532159603, 23.886991827090725 ] ], [ [ -77.611522605862689, 23.886631569679619 ], [ -77.611518709229955, 23.886437575252351 ], [ -77.611349436343815, 23.88644044984493 ], [ -77.611353332724676, 23.886634444298384 ], [ -77.611522605862689, 23.886631569679619 ] ], [ [ -77.612076776600588, 23.886364914327416 ], [ -77.612072607279714, 23.886157385489835 ], [ -77.611932773521389, 23.88615976064381 ], [ -77.611936942619678, 23.886367289504548 ], [ -77.612076776600588, 23.886364914327416 ] ] ], [ [ [ -77.609305018682008, 23.887287501082199 ], [ -77.610188188466751, 23.887272512397555 ], [ -77.610193623085564, 23.887543202553214 ], [ -77.609315884332716, 23.887828881763944 ], [ -77.609305018682008, 23.887287501082199 ] ] ], [ [ [ -77.729533003283976, 23.933125634087016 ], [ -77.729855948101573, 23.934473709214448 ], [ -77.724640798552926, 23.938627807287244 ], [ -77.717850750885333, 23.937935875051647 ], [ -77.716123557841897, 23.939861799974327 ], [ -77.717052377411775, 23.942011483483995 ], [ -77.713875319788798, 23.945046107365517 ], [ -77.710052524427638, 23.945384419688978 ], [ -77.709780656257422, 23.946472283923331 ], [ -77.70740204306928, 23.945431196487672 ], [ -77.712017761785589, 23.940746688851089 ], [ -77.71554545398682, 23.940390994460852 ], [ -77.715211772135589, 23.93852410310598 ], [ -77.71694463398201, 23.936868853391402 ], [ -77.713082461709632, 23.935312560011912 ], [ -77.725104647675153, 23.932662766349889 ], [ -77.725076219725622, 23.931309450456979 ], [ -77.727143140906506, 23.931543518227887 ], [ -77.727703610824506, 23.930179744199748 ], [ -77.731554361869243, 23.931194344783759 ], [ -77.733598471307374, 23.930345679202667 ], [ -77.729533003283976, 23.933125634087016 ] ], [ [ -77.728884746058085, 23.933466585877678 ], [ -77.728889206303137, 23.933678604651533 ], [ -77.728955461234179, 23.933677427060715 ], [ -77.728951000881167, 23.93346540829857 ], [ -77.728884746058085, 23.933466585877678 ] ], [ [ -77.728050925511013, 23.933738628741899 ], [ -77.728061361409829, 23.934234843211343 ], [ -77.728083446497237, 23.934234450794669 ], [ -77.728367477177855, 23.933733003931099 ], [ -77.728050925511013, 23.933738628741899 ] ], [ [ -77.727787403639127, 23.934514987075232 ], [ -77.727793000704565, 23.93478113850874 ], [ -77.727800362433044, 23.934781007713596 ], [ -77.727794765352542, 23.934514856281719 ], [ -77.727787403639127, 23.934514987075232 ] ], [ [ -77.72278597461937, 23.936223837797723 ], [ -77.722789762583204, 23.936404280161927 ], [ -77.722826571839107, 23.936403627339761 ], [ -77.722822783824228, 23.936223184981081 ], [ -77.72278597461937, 23.936223837797723 ] ], [ [ -77.71315446284018, 23.944034455396874 ], [ -77.713158899597772, 23.944246476659046 ], [ -77.713563829056028, 23.944239318313222 ], [ -77.713558164276449, 23.943968652961818 ], [ -77.71315446284018, 23.944034455396874 ] ], [ [ -77.711491979757895, 23.944835515883682 ], [ -77.71210834318633, 23.945077340534507 ], [ -77.712097679886, 23.944567586886127 ], [ -77.71176637273561, 23.94457344070668 ], [ -77.711491979757895, 23.944835515883682 ] ] ], [ [ [ -77.540978752935942, 24.064172104603976 ], [ -77.542224582393118, 24.066361593481428 ], [ -77.542220154834396, 24.068150289095477 ], [ -77.541295370331937, 24.06497418096135 ], [ -77.540978752935942, 24.064172104603976 ] ] ], [ [ [ -77.542560177286489, 24.06928601403672 ], [ -77.542247680439601, 24.068244829420912 ], [ -77.542857074654151, 24.069284250019013 ], [ -77.542560177286489, 24.06928601403672 ] ] ], [ [ [ -77.537681565784311, 24.098749857196356 ], [ -77.537750655770296, 24.098960932375967 ], [ -77.537562788293215, 24.098854514295766 ], [ -77.537681565784311, 24.098749857196356 ] ] ], [ [ [ -77.537176436351132, 24.099246933280053 ], [ -77.537302662829561, 24.09911720550561 ], [ -77.537196968617266, 24.099573179927727 ], [ -77.537176436351132, 24.099246933280053 ] ] ], [ [ [ -77.537312965316033, 24.101416249097294 ], [ -77.537281913863737, 24.100922882515473 ], [ -77.537596303263442, 24.101648591502521 ], [ -77.537312965316033, 24.101416249097294 ] ] ], [ [ [ -77.539283855160136, 24.105585448202778 ], [ -77.539020668295322, 24.106854130307322 ], [ -77.538986602149961, 24.105091623679424 ], [ -77.539283855160136, 24.105585448202778 ] ] ], [ [ [ -77.537681565784311, 24.098749857196356 ], [ -77.538708727657024, 24.094267453624429 ], [ -77.542014450580751, 24.102601572926925 ], [ -77.546656991225731, 24.098816540594598 ], [ -77.54666494756934, 24.095570947254341 ], [ -77.542357368133707, 24.088843414378957 ], [ -77.542559895978314, 24.069562137157174 ], [ -77.547871117362149, 24.094110701960627 ], [ -77.547583663356335, 24.098712237901591 ], [ -77.545850625753815, 24.101486272017926 ], [ -77.555168248244655, 24.115774536664393 ], [ -77.560859911842542, 24.129119423009197 ], [ -77.567927815432682, 24.134243882385043 ], [ -77.574860097732852, 24.147597328836554 ], [ -77.581947408781303, 24.165076565067825 ], [ -77.583888181850824, 24.17552073783866 ], [ -77.589507768478768, 24.189265130792847 ], [ -77.590828885310145, 24.196494403470048 ], [ -77.589523675526749, 24.200732338358925 ], [ -77.588891672200575, 24.191423837327434 ], [ -77.585623699155036, 24.181198789799225 ], [ -77.581367565455807, 24.173759763111896 ], [ -77.581408463085907, 24.166588725769365 ], [ -77.578988771594013, 24.160014632146403 ], [ -77.571562015343773, 24.162759291432391 ], [ -77.574631964483046, 24.154472754263324 ], [ -77.568528168328143, 24.140701856448551 ], [ -77.564760850219855, 24.139320890880935 ], [ -77.561580109183538, 24.135964956189536 ], [ -77.561200838475656, 24.131522979687112 ], [ -77.557317818460163, 24.122925151458261 ], [ -77.554118425711465, 24.120527648373827 ], [ -77.547786588441625, 24.107464420678625 ], [ -77.546874834126683, 24.106593494209537 ], [ -77.542846564767601, 24.108418610281273 ], [ -77.539636390454206, 24.108059386522353 ], [ -77.541189889444624, 24.105449821782528 ], [ -77.538812529839362, 24.103987898592038 ], [ -77.539367104064667, 24.099613275065668 ], [ -77.537681565784311, 24.098749857196356 ] ] ], [ [ [ -77.589751059144291, 24.201724656289265 ], [ -77.589746099963691, 24.201703014286693 ], [ -77.58991231289491, 24.202122790617505 ], [ -77.589751059144291, 24.201724656289265 ] ] ], [ [ [ -77.590215782636093, 24.202872047003986 ], [ -77.590208237813115, 24.20285341922424 ], [ -77.59067610198349, 24.203461947550345 ], [ -77.590215782636093, 24.202872047003986 ] ] ], [ [ [ -77.591299859540342, 24.205619274258304 ], [ -77.591306019126151, 24.205350648217866 ], [ -77.591316911010935, 24.205888196446988 ], [ -77.591299859540342, 24.205619274258304 ] ] ], [ [ [ -77.591336907503859, 24.206203562579311 ], [ -77.591336127446439, 24.206191260290069 ], [ -77.591931000236656, 24.206964868417526 ], [ -77.591336907503859, 24.206203562579311 ] ] ], [ [ [ -77.592380391019987, 24.207540736361132 ], [ -77.59237540063485, 24.207534341513902 ], [ -77.593402479599703, 24.207745567815508 ], [ -77.592380391019987, 24.207540736361132 ] ] ], [ [ [ -77.594377249159592, 24.208531913740092 ], [ -77.594172912998459, 24.208153184948547 ], [ -77.595351511967905, 24.208796695889319 ], [ -77.594377249159592, 24.208531913740092 ] ] ], [ [ [ -77.596105779147976, 24.209526052239205 ], [ -77.596110263743697, 24.209330048387098 ], [ -77.597165660969949, 24.210393664444783 ], [ -77.596105779147976, 24.209526052239205 ] ] ], [ [ [ -77.629524309891863, 24.217117641780426 ], [ -77.62961567458936, 24.217014615269555 ], [ -77.629670509813195, 24.217177846236101 ], [ -77.629524309891863, 24.217117641780426 ] ] ], [ [ [ -77.62835839251008, 24.21749697215991 ], [ -77.628857520299377, 24.217298127771649 ], [ -77.628966667014225, 24.21758795846538 ], [ -77.62835839251008, 24.21749697215991 ] ] ], [ [ [ -77.626984884418675, 24.218044144163102 ], [ -77.627266900175215, 24.217931797337283 ], [ -77.626528931142303, 24.218339210350763 ], [ -77.626984884418675, 24.218044144163102 ] ] ], [ [ [ -77.629211117407365, 24.218237071846456 ], [ -77.62890434335074, 24.218321916632856 ], [ -77.629127454413137, 24.21801491410147 ], [ -77.629211117407365, 24.218237071846456 ] ] ], [ [ [ -77.600081803505631, 24.220269350665543 ], [ -77.59941018375072, 24.219155916764926 ], [ -77.600273489228783, 24.220514868217013 ], [ -77.600081803505631, 24.220269350665543 ] ] ], [ [ [ -77.601088046043742, 24.221558165792121 ], [ -77.601381980674176, 24.22195902375945 ], [ -77.600782198060472, 24.221166433454346 ], [ -77.601088046043742, 24.221558165792121 ] ] ], [ [ [ -77.604831667849837, 24.222081954132211 ], [ -77.604892256415383, 24.222045684899424 ], [ -77.604496053557796, 24.222452884053816 ], [ -77.604831667849837, 24.222081954132211 ] ] ], [ [ [ -77.603623098755122, 24.223145548496429 ], [ -77.604205104800471, 24.222751905695674 ], [ -77.60417397841492, 24.222783895628758 ], [ -77.603623098755122, 24.223145548496429 ] ] ], [ [ [ -77.603045774851196, 24.223524557887931 ], [ -77.602442119436105, 24.223030469271048 ], [ -77.603070366872004, 24.223508413472473 ], [ -77.603045774851196, 24.223524557887931 ] ] ], [ [ [ -77.622084415402554, 24.23771751758478 ], [ -77.622231955722313, 24.237853003691065 ], [ -77.621925746513725, 24.237582855182644 ], [ -77.622084415402554, 24.23771751758478 ] ] ], [ [ [ -77.623135942748121, 24.238630309406354 ], [ -77.622538569252697, 24.238123458627541 ], [ -77.623000348445075, 24.238501080169431 ], [ -77.623135942748121, 24.238630309406354 ] ] ], [ [ [ -77.93638509996957, 24.243347445023137 ], [ -77.944073324750747, 24.237919702679264 ], [ -77.947133147452021, 24.239610074176746 ], [ -77.954627950598081, 24.238706669093926 ], [ -77.954554848462763, 24.239841464252844 ], [ -77.951820191910869, 24.239819756320024 ], [ -77.949795340068789, 24.241814370925226 ], [ -77.947323019676432, 24.240980091447874 ], [ -77.937823841083031, 24.245999116588333 ], [ -77.93638509996957, 24.243347445023137 ] ] ], [ [ [ -78.018490050595631, 24.245268091700829 ], [ -78.021441345297006, 24.244189814203263 ], [ -78.020703347329572, 24.241320795435168 ], [ -78.023049721004114, 24.23864189191 ], [ -78.022299041719975, 24.237467969384124 ], [ -78.026453576914506, 24.237532062635815 ], [ -78.02119471685792, 24.246282926279548 ], [ -78.019123416859955, 24.247138317391791 ], [ -78.018490050595631, 24.245268091700829 ] ] ], [ [ [ -77.932613480998654, 24.256373967082979 ], [ -77.940741310121481, 24.251922650261378 ], [ -77.944332048093216, 24.248715123365532 ], [ -77.940636613548349, 24.257333821385753 ], [ -77.936716097080122, 24.256070293668817 ], [ -77.935060798644088, 24.260627881254671 ], [ -77.932225231228941, 24.262643775517841 ], [ -77.930726285278411, 24.262293574669652 ], [ -77.930536534022039, 24.259427939176131 ], [ -77.932613480998654, 24.256373967082979 ] ] ], [ [ [ -77.65854322773005, 24.312347118105137 ], [ -77.658489649978335, 24.311985942159552 ], [ -77.659226453068584, 24.312347980741567 ], [ -77.65854322773005, 24.312347118105137 ] ] ], [ [ [ -77.675124641702951, 24.32933681251486 ], [ -77.675422654338973, 24.329064159505652 ], [ -77.675084472226956, 24.329411765290661 ], [ -77.675124641702951, 24.32933681251486 ] ] ], [ [ [ -77.674521781522699, 24.330461688222421 ], [ -77.674791344343106, 24.329958713929425 ], [ -77.674599777538759, 24.330540026626572 ], [ -77.674521781522699, 24.330461688222421 ] ] ], [ [ [ -77.679279200091983, 24.330965869791633 ], [ -77.675322081232522, 24.330782355018716 ], [ -77.679262634872288, 24.330943327548738 ], [ -77.679279200091983, 24.330965869791633 ] ] ], [ [ [ -77.758781318077268, 24.360874174089812 ], [ -77.758635456774741, 24.35998473869731 ], [ -77.759037041295983, 24.360169117821069 ], [ -77.758781318077268, 24.360874174089812 ] ] ], [ [ [ -77.822625117864661, 24.446524772583164 ], [ -77.822708667575043, 24.445913000240566 ], [ -77.824161598226269, 24.446038671100958 ], [ -77.823730870695925, 24.446435373053252 ], [ -77.822625117864661, 24.446524772583164 ] ] ], [ [ [ -77.822625117864661, 24.446524772583164 ], [ -77.822393854732411, 24.446800356125046 ], [ -77.820745911993697, 24.447728995258849 ], [ -77.821247381629107, 24.446708606045355 ], [ -77.822625117864661, 24.446524772583164 ] ] ], [ [ [ -78.299153014881796, 24.725275121152592 ], [ -78.29229933913723, 24.721569135792436 ], [ -78.291405202741274, 24.708990000649099 ], [ -78.293414927428742, 24.710488558107937 ], [ -78.294485999614992, 24.708408077163959 ], [ -78.295912822011147, 24.709148061777007 ], [ -78.296082145510795, 24.715572269251691 ], [ -78.293302812516472, 24.716918963782703 ], [ -78.292553596090883, 24.720535076673848 ], [ -78.297966636434154, 24.722987191671287 ], [ -78.299153014881796, 24.725275121152592 ] ] ], [ [ [ -77.77347376527527, 24.738691115092042 ], [ -77.771665204644947, 24.737837681384999 ], [ -77.773319515448279, 24.738607111414069 ], [ -77.77347376527527, 24.738691115092042 ] ] ], [ [ [ -77.775113550792, 24.739664226620921 ], [ -77.775262910777087, 24.73980052953522 ], [ -77.774844859904007, 24.739437793775945 ], [ -77.775113550792, 24.739664226620921 ] ] ], [ [ [ -77.77572447415146, 24.740221739956432 ], [ -77.775709791523354, 24.740208341051964 ], [ -77.775776103920123, 24.740219817907878 ], [ -77.77572447415146, 24.740221739956432 ] ] ], [ [ [ -77.77779864359745, 24.741487121980697 ], [ -77.777798646635375, 24.741260903674743 ], [ -77.777858669967145, 24.741541921401005 ], [ -77.77779864359745, 24.741487121980697 ] ] ], [ [ [ -77.778363346858399, 24.742002649211013 ], [ -77.778169817469831, 24.741825973703584 ], [ -77.779262469896594, 24.742404762693731 ], [ -77.778363346858399, 24.742002649211013 ] ] ], [ [ [ -77.780833696018476, 24.743603282222306 ], [ -77.781063912404335, 24.74339292729281 ], [ -77.780900826570829, 24.743668028062029 ], [ -77.780833696018476, 24.743603282222306 ] ] ], [ [ [ -77.781348196271637, 24.744099502959276 ], [ -77.781197326988675, 24.743953994497911 ], [ -77.782496947803438, 24.744730036736438 ], [ -77.781348196271637, 24.744099502959276 ] ] ], [ [ [ -77.784869822855157, 24.746842122106731 ], [ -77.785006458048613, 24.746587338542852 ], [ -77.786378735282398, 24.748219083479203 ], [ -77.784869822855157, 24.746842122106731 ] ] ], [ [ [ -77.787142311757464, 24.748915868296745 ], [ -77.786884369448828, 24.748680490147006 ], [ -77.787202036014293, 24.748915859930857 ], [ -77.787142311757464, 24.748915868296745 ] ] ], [ [ [ -77.764332652011433, 24.708192696726684 ], [ -77.766431555368399, 24.708421019488867 ], [ -77.768853785725767, 24.711076661907377 ], [ -77.770698125907089, 24.71458872410232 ], [ -77.769872710010773, 24.716702577318021 ], [ -77.773696052495012, 24.716972940861581 ], [ -77.782483703634341, 24.725972586646733 ], [ -77.804254301166196, 24.715295469134343 ], [ -77.805592331423654, 24.712184103955881 ], [ -77.802168992870108, 24.71019057609659 ], [ -77.806080241789289, 24.708831450084634 ], [ -77.810091283091253, 24.703012335645418 ], [ -77.811863170806376, 24.703064851376499 ], [ -77.815054106720169, 24.699670498057028 ], [ -77.821509904493908, 24.696841891383606 ], [ -77.826249264990992, 24.696752656501836 ], [ -77.828243249815614, 24.693195609683329 ], [ -77.830902930950813, 24.692874709053839 ], [ -77.830582260083446, 24.691797851657945 ], [ -77.834976181416124, 24.689549058944653 ], [ -77.83646326042016, 24.689791674485438 ], [ -77.836197717681856, 24.691150327640951 ], [ -77.843376584446759, 24.689868350353919 ], [ -77.849960004199573, 24.682284959371493 ], [ -77.852474683572197, 24.68146560944739 ], [ -77.849432372032254, 24.683838110955076 ], [ -77.846242205337518, 24.689814005829078 ], [ -77.847724579064817, 24.689849041249868 ], [ -77.849594083662353, 24.69387440498291 ], [ -77.843102321148024, 24.695080499752432 ], [ -77.840522477146891, 24.698919539596542 ], [ -77.841824068220149, 24.70403866164434 ], [ -77.844223164716126, 24.705283628951786 ], [ -77.843891473888206, 24.703728740158397 ], [ -77.846523577194546, 24.704468409658659 ], [ -77.850094093012359, 24.700542767168727 ], [ -77.850841735514393, 24.696287213093679 ], [ -77.84910945016253, 24.694388963725121 ], [ -77.854930647929976, 24.690420463149895 ], [ -77.858511847160429, 24.68212227836981 ], [ -77.855850975075057, 24.681401385658226 ], [ -77.854936804145083, 24.678341554442007 ], [ -77.851847590391912, 24.678648460198104 ], [ -77.851489249975245, 24.67299261549347 ], [ -77.856492889364191, 24.671543846957576 ], [ -77.85763283571292, 24.673137465125595 ], [ -77.85885584911631, 24.671228133187427 ], [ -77.862440434272386, 24.672513427621478 ], [ -77.862458978000845, 24.673325242658414 ], [ -77.865673246846555, 24.67136884632956 ], [ -77.86719108883284, 24.672964191497044 ], [ -77.868586585239271, 24.672125359371254 ], [ -77.869055813408949, 24.668033000783268 ], [ -77.86791875316132, 24.66754035780426 ], [ -77.867610011862752, 24.665375965998727 ], [ -77.869972809805049, 24.66506008988539 ], [ -77.871371312550423, 24.658536022847866 ], [ -77.875483285883533, 24.653764826940108 ], [ -77.876823115133945, 24.653739165269734 ], [ -77.872180614080776, 24.657979100181638 ], [ -77.870256541348311, 24.664513221360526 ], [ -77.872372794939679, 24.666367795148577 ], [ -77.87130051295577, 24.667732893764072 ], [ -77.87241000128185, 24.667991412285279 ], [ -77.874014755749016, 24.673375118336981 ], [ -77.87348059672594, 24.675921101217174 ], [ -77.879893744115378, 24.674255061708998 ], [ -77.88022826242603, 24.676563298692209 ], [ -77.883340748483022, 24.677275078527806 ], [ -77.880257811510646, 24.677848651654962 ], [ -77.880873701485356, 24.680151483870407 ], [ -77.87861700641318, 24.679937610301913 ], [ -77.875255205499812, 24.675787846557842 ], [ -77.875940674219308, 24.679835521881532 ], [ -77.873262849172306, 24.679345380334205 ], [ -77.86868547305437, 24.686471722849866 ], [ -77.872915055581814, 24.689048362557077 ], [ -77.874664841553653, 24.6887937527924 ], [ -77.874331396208305, 24.687175818334911 ], [ -77.8758433381347, 24.688500444144498 ], [ -77.879674963033594, 24.687614780521276 ], [ -77.888971471746714, 24.679585201708065 ], [ -77.888631435286612, 24.677687693449901 ], [ -77.885298293776714, 24.676723086145444 ], [ -77.884892663517903, 24.671330032969415 ], [ -77.889938758731049, 24.670461407172855 ], [ -77.889867630372152, 24.6673765829964 ], [ -77.893495077033478, 24.666020790946973 ], [ -77.895266086848224, 24.669587191539939 ], [ -77.897492879256873, 24.668515494463357 ], [ -77.898297237833461, 24.672872050785202 ], [ -77.898683551390079, 24.671321501419293 ], [ -77.90153249837212, 24.672809537540715 ], [ -77.901807815595774, 24.670945292509924 ], [ -77.9038869844549, 24.671175795916696 ], [ -77.905950259895135, 24.669123537732162 ], [ -77.905267265274631, 24.666817622577756 ], [ -77.90030010569123, 24.668204096762011 ], [ -77.898002022632866, 24.666191030442381 ], [ -77.900779451883892, 24.664594296405422 ], [ -77.900175205914806, 24.66280570147266 ], [ -77.903006103976963, 24.663522529310455 ], [ -77.90294658072105, 24.660951870027358 ], [ -77.900426774752944, 24.661514934302936 ], [ -77.899576924809224, 24.661274168890312 ], [ -77.904856120565199, 24.65834312720348 ], [ -77.903402037979021, 24.656313803693294 ], [ -77.904760849373488, 24.654230075800829 ], [ -77.908986063521098, 24.65440546392314 ], [ -77.906676218864504, 24.651878386202618 ], [ -77.90997402822164, 24.648471175599433 ], [ -77.911954849175302, 24.64894714321894 ], [ -77.912765869548664, 24.645285777620817 ], [ -77.918737516210314, 24.647335573688736 ], [ -77.918176850125235, 24.648700042501357 ], [ -77.916387835921896, 24.648193362737796 ], [ -77.915922503639294, 24.650156059110387 ], [ -77.918214540991187, 24.65191179231044 ], [ -77.920898199026212, 24.651083570511108 ], [ -77.92422443215608, 24.653996690433061 ], [ -77.920142269826343, 24.656783273468509 ], [ -77.922290152938189, 24.657747639304375 ], [ -77.921779805130242, 24.65999998563052 ], [ -77.932011120956659, 24.657634826855698 ], [ -77.936370084442572, 24.654030389510442 ], [ -77.941403425084033, 24.653931879144 ], [ -77.94429433024537, 24.650897406769587 ], [ -77.947267742767352, 24.651380501408301 ], [ -77.944376906204937, 24.654415025247907 ], [ -77.94248729764648, 24.654993487293172 ], [ -77.945791214241581, 24.651887727426029 ], [ -77.937019275806904, 24.656454098392739 ], [ -77.933561202643034, 24.660582382486574 ], [ -77.933895290414142, 24.662200126136518 ], [ -77.932099706328543, 24.661423069777083 ], [ -77.930965920651886, 24.663610908611854 ], [ -77.925358877099455, 24.664532417639872 ], [ -77.92568024585222, 24.66560900749176 ], [ -77.924145744248207, 24.664912493024666 ], [ -77.923128438868844, 24.669561508160847 ], [ -77.921317525551871, 24.669082409498568 ], [ -77.920626564390219, 24.670896103508113 ], [ -77.918663327106898, 24.671191472918462 ], [ -77.918471813083983, 24.675052873594939 ], [ -77.925296447214421, 24.674550021019041 ], [ -77.92622907669606, 24.676426828433677 ], [ -77.929177771808668, 24.675827874556735 ], [ -77.931874625254821, 24.677128768626744 ], [ -77.930715402645689, 24.678234261721251 ], [ -77.931950619007296, 24.680375826108286 ], [ -77.92497090928363, 24.685984963544485 ], [ -77.929763553346177, 24.68820603046419 ], [ -77.933615131872486, 24.688193923072632 ], [ -77.934471909977859, 24.686823609015534 ], [ -77.936564046584422, 24.687594802199243 ], [ -77.936614812977453, 24.689759495231716 ], [ -77.941081637339437, 24.691025530701971 ], [ -77.944283231474614, 24.688255623866443 ], [ -77.948989891732793, 24.686809624675856 ], [ -77.948598177658397, 24.682756688816049 ], [ -77.953084989283738, 24.684563399822093 ], [ -77.953129759368068, 24.686461988514772 ], [ -77.954018107775653, 24.686439986327553 ], [ -77.959252915446328, 24.682276202749634 ], [ -77.959007915882879, 24.684446694359131 ], [ -77.960198892283259, 24.68469390630144 ], [ -77.961138511958652, 24.686841019090632 ], [ -77.963198757785946, 24.686258923582585 ], [ -77.962941022272844, 24.68788825455443 ], [ -77.964408972357162, 24.687317839440922 ], [ -77.968915377747024, 24.689935775329335 ], [ -77.966880756204588, 24.69160026894324 ], [ -77.962172114378944, 24.690141282729115 ], [ -77.956780689648852, 24.690504829239462 ], [ -77.956231707357404, 24.692351950293883 ], [ -77.95515653685132, 24.69105118138846 ], [ -77.950573418176035, 24.691141407635367 ], [ -77.949716058705647, 24.692480231371864 ], [ -77.949098229606335, 24.691409545466357 ], [ -77.946735279130522, 24.691726695583153 ], [ -77.945002837795698, 24.693655687150816 ], [ -77.945910452527613, 24.694449990511124 ], [ -77.947926313133223, 24.691974000677547 ], [ -77.948318067884543, 24.69602693332018 ], [ -77.946056932185741, 24.700673422955571 ], [ -77.944015446942061, 24.702067064395415 ], [ -77.943763813868429, 24.703966970100463 ], [ -77.939056450936135, 24.705412867939852 ], [ -77.939378078521273, 24.70648940262075 ], [ -77.936699547582649, 24.706000472078781 ], [ -77.933587254521882, 24.71228774961515 ], [ -77.930032631639236, 24.712357272365796 ], [ -77.930070664498032, 24.713980796386469 ], [ -77.926496988468472, 24.71323847572096 ], [ -77.927127428794435, 24.714850436127016 ], [ -77.925923534001228, 24.714061806069161 ], [ -77.920925625753767, 24.715783558113749 ], [ -77.922747269997146, 24.717643033549578 ], [ -77.92103307638989, 24.720383577224176 ], [ -77.918253241091293, 24.715564899816076 ], [ -77.918310070835602, 24.718000210347562 ], [ -77.916841515177254, 24.718570224486648 ], [ -77.915284630479206, 24.715351954827703 ], [ -77.912675275311912, 24.717839108372988 ], [ -77.908540539978389, 24.718460833643583 ], [ -77.908184325438171, 24.71684345866397 ], [ -77.906441706125804, 24.717418690520056 ], [ -77.904775808954284, 24.715555980092006 ], [ -77.897183080359383, 24.714349350061443 ], [ -77.891295945176026, 24.716087325658574 ], [ -77.890161021185094, 24.71827495307069 ], [ -77.879262252041073, 24.721191913460583 ], [ -77.879917089217557, 24.723886519630884 ], [ -77.87810215342202, 24.722297073791967 ], [ -77.874294361316387, 24.72426519277894 ], [ -77.873097289591001, 24.723764757125359 ], [ -77.872844142653349, 24.72564660165844 ], [ -77.87164664723494, 24.725128115096503 ], [ -77.870505083754594, 24.727045028824996 ], [ -77.87436902530348, 24.727512396147517 ], [ -77.873523762512335, 24.729423646440583 ], [ -77.85641391120356, 24.732999480661533 ], [ -77.852839924430086, 24.732255412458489 ], [ -77.848154836499589, 24.734781063793804 ], [ -77.838661097897031, 24.734419809045217 ], [ -77.83226526161603, 24.739955379466654 ], [ -77.826684340074337, 24.742226616186461 ], [ -77.823516606644759, 24.74634727055221 ], [ -77.822591949311388, 24.744785459929485 ], [ -77.82024477803715, 24.745867466576975 ], [ -77.81656070402974, 24.740251509914675 ], [ -77.820110366151127, 24.739913992742217 ], [ -77.821332286549364, 24.741515346338463 ], [ -77.824869720784633, 24.740636491109544 ], [ -77.82308572258242, 24.740399399029528 ], [ -77.82480603592748, 24.740114286923841 ], [ -77.824495478427366, 24.738834190504651 ], [ -77.823099626154473, 24.739374886018801 ], [ -77.821393234994446, 24.738635463786078 ], [ -77.82069077241087, 24.739361609042536 ], [ -77.820370025022982, 24.738284738420525 ], [ -77.825894887891394, 24.738451339586508 ], [ -77.823891816868795, 24.737045237098279 ], [ -77.824130290163836, 24.734152985827066 ], [ -77.828802549667955, 24.731037211475638 ], [ -77.830477233408317, 24.726452869046387 ], [ -77.833446147808402, 24.726667485079137 ], [ -77.836643799532766, 24.72389973140551 ], [ -77.838335419383313, 24.720077547164369 ], [ -77.835845684803402, 24.717787411797275 ], [ -77.833546170214021, 24.718002361357691 ], [ -77.835009053806587, 24.717162520694586 ], [ -77.834609204052001, 24.71292419619715 ], [ -77.836696156062644, 24.71314190853909 ], [ -77.836843175788204, 24.712110368443081 ], [ -77.835491135013996, 24.71228033513065 ], [ -77.836262827354588, 24.711349780880902 ], [ -77.833591082762226, 24.706901735078819 ], [ -77.835310497151085, 24.706598503808884 ], [ -77.831631938842648, 24.705779135310543 ], [ -77.83664499636059, 24.703369670933615 ], [ -77.833175476380063, 24.701634933251995 ], [ -77.834091608318147, 24.702831378751412 ], [ -77.829642154221162, 24.702644680580047 ], [ -77.830561425684365, 24.70398096581712 ], [ -77.8293887611526, 24.704544552055019 ], [ -77.828741253073986, 24.702120223517834 ], [ -77.829920018627021, 24.701827255614525 ], [ -77.824539178773207, 24.699762880545617 ], [ -77.821323489589801, 24.701718511339298 ], [ -77.821366195776406, 24.703612806703042 ], [ -77.81987286487427, 24.703099439808717 ], [ -77.820110747703282, 24.713653375436827 ], [ -77.818846889974154, 24.713135689750249 ], [ -77.818602142570171, 24.714769175044363 ], [ -77.820926812698943, 24.717969670634766 ], [ -77.821066640621581, 24.716613398654481 ], [ -77.821659155703642, 24.716602245878537 ], [ -77.821708002302358, 24.718767149904707 ], [ -77.818137740288492, 24.71915017202392 ], [ -77.814937614286293, 24.714580842843123 ], [ -77.809535096990359, 24.712227579874863 ], [ -77.810032087251656, 24.713571914070194 ], [ -77.808550819891025, 24.713599673639155 ], [ -77.806284010340121, 24.718244541970414 ], [ -77.805414683851509, 24.716816920185924 ], [ -77.804826961571933, 24.719354737010196 ], [ -77.797884553225657, 24.720044006852515 ], [ -77.783404664657283, 24.726493909821478 ], [ -77.793129849711008, 24.73743992764371 ], [ -77.799132860109324, 24.739217308547701 ], [ -77.801480864959757, 24.738097365708882 ], [ -77.806289627346217, 24.740445244843816 ], [ -77.809293670505511, 24.743629487041026 ], [ -77.808782430700703, 24.747260738916854 ], [ -77.81118734493343, 24.748737801560736 ], [ -77.812008994377393, 24.751341752594605 ], [ -77.817217843470118, 24.753226842510038 ], [ -77.820397745074715, 24.756242003736627 ], [ -77.820921185452477, 24.759930578936352 ], [ -77.822414773961128, 24.760167865217607 ], [ -77.823019732568696, 24.760973501301539 ], [ -77.819951018590913, 24.760170938490177 ], [ -77.815639082230945, 24.754209242516186 ], [ -77.811416338373917, 24.752035651374413 ], [ -77.808245728053905, 24.747719992591911 ], [ -77.806914004268776, 24.743689173915143 ], [ -77.794807637490877, 24.741615679473256 ], [ -77.791630229533567, 24.737948933110189 ], [ -77.783799963197666, 24.74368076899496 ], [ -77.789073456475549, 24.748153907369055 ], [ -77.787912591923657, 24.748769676773282 ], [ -77.782547694567285, 24.742796528032681 ], [ -77.776984098865853, 24.740174842162261 ], [ -77.776812399069655, 24.738619076695617 ], [ -77.770442536883465, 24.73636922822455 ], [ -77.76526383589713, 24.731097565994087 ], [ -77.76928617080334, 24.722500392503783 ], [ -77.76518480665365, 24.719665837670398 ], [ -77.769558089104123, 24.714840207534625 ], [ -77.765797654482327, 24.708490483873724 ], [ -77.764332652011433, 24.708192696726684 ] ], [ [ -77.798879571859587, 24.718482259963654 ], [ -77.798877351060867, 24.718383033258068 ], [ -77.798692183870926, 24.718386490863772 ], [ -77.798694404523175, 24.718485717585061 ], [ -77.798879571859587, 24.718482259963654 ] ], [ [ -77.80590837097219, 24.713721352676082 ], [ -77.805894611147338, 24.713107954510935 ], [ -77.805872392156616, 24.713108370392234 ], [ -77.8058845330591, 24.71364960408064 ], [ -77.8055882785238, 24.713655148988199 ], [ -77.805595663635415, 24.713984399543719 ], [ -77.80590837097219, 24.713721352676082 ] ], [ [ -77.807861149476878, 24.712913207082739 ], [ -77.807870767716395, 24.713341683034997 ], [ -77.807952237358577, 24.713340157022202 ], [ -77.807942618840883, 24.712911681099875 ], [ -77.807861149476878, 24.712913207082739 ] ], [ [ -77.819310896626433, 24.704463650152544 ], [ -77.819304799678392, 24.70419303611288 ], [ -77.819208525348699, 24.704194846237616 ], [ -77.819214622089206, 24.704465460299712 ], [ -77.819310896626433, 24.704463650152544 ] ], [ [ -77.822187746920051, 24.700619335284522 ], [ -77.822186323091785, 24.700556192134247 ], [ -77.821941942094995, 24.70056079100619 ], [ -77.821943365800379, 24.700623934169766 ], [ -77.822187746920051, 24.700619335284522 ] ], [ [ -77.862312729323648, 24.705814728924821 ], [ -77.86141168800566, 24.705290482989426 ], [ -77.861421692379977, 24.70572795959259 ], [ -77.863733379078212, 24.706058323398508 ], [ -77.863479036233414, 24.704980293657467 ], [ -77.86763229727849, 24.705171640041314 ], [ -77.875698577648649, 24.707995071121537 ], [ -77.873082281595856, 24.710210993585619 ], [ -77.868321653090561, 24.709711080063983 ], [ -77.868004151593155, 24.708142460147261 ], [ -77.867126673514221, 24.708971407063647 ], [ -77.858529850330655, 24.708864845792093 ], [ -77.854765311797948, 24.71272669893316 ], [ -77.853177752125106, 24.712314742342436 ], [ -77.85364209047367, 24.71545531660416 ], [ -77.844563044909876, 24.720230202454722 ], [ -77.840278969939561, 24.72735030076468 ], [ -77.84280108917342, 24.726490298747873 ], [ -77.843741964532768, 24.723223753305504 ], [ -77.846408367960223, 24.723173131749082 ], [ -77.8466676673292, 24.721543862439248 ], [ -77.848961876595411, 24.724997113917457 ], [ -77.85146957542905, 24.724159807341675 ], [ -77.855061861004927, 24.725715745223859 ], [ -77.854247196050864, 24.728979937292316 ], [ -77.85694462477332, 24.730282139323773 ], [ -77.856314958547259, 24.728669810753182 ], [ -77.856895142544332, 24.728117304950334 ], [ -77.858382707765401, 24.728359656557775 ], [ -77.858376519606011, 24.728089052571665 ], [ -77.858969069799116, 24.728077747531174 ], [ -77.858962880451415, 24.727807143673836 ], [ -77.856888957671543, 24.727846700603209 ], [ -77.856537028584071, 24.725416908998085 ], [ -77.860399151519516, 24.725807975317164 ], [ -77.863301617703939, 24.723122033014356 ], [ -77.865097792930285, 24.723899866570591 ], [ -77.878866319315733, 24.716868013929975 ], [ -77.881834983298404, 24.717081683500524 ], [ -77.884457064762216, 24.713511906897125 ], [ -77.8748474074537, 24.711900738699935 ], [ -77.874254762467771, 24.70964707855315 ], [ -77.882586506247605, 24.711111421288766 ], [ -77.88757241193683, 24.708849721530147 ], [ -77.896446502323144, 24.708137103605946 ], [ -77.90110441248018, 24.704527734159321 ], [ -77.886126117093326, 24.697538981993514 ], [ -77.874863676094449, 24.697452996234389 ], [ -77.873609356708116, 24.694769830013545 ], [ -77.870641285368052, 24.694235592943102 ], [ -77.866835298341769, 24.69625307227324 ], [ -77.872469246999856, 24.696415993973762 ], [ -77.872222724670252, 24.698586481155161 ], [ -77.859529242519386, 24.700724112500222 ], [ -77.851704208330062, 24.70845338599889 ], [ -77.859609627001106, 24.7042419727075 ], [ -77.862584187707341, 24.704726658428328 ], [ -77.862312729323648, 24.705814728924821 ] ], [ [ -77.859930584688954, 24.705318741000184 ], [ -77.859940583902102, 24.705756218169398 ], [ -77.86112547086492, 24.705733612475036 ], [ -77.861121655129296, 24.705566739916577 ], [ -77.859930584688954, 24.705318741000184 ] ], [ [ -77.871224170488659, 24.706727224715092 ], [ -77.870039284625577, 24.706749911001978 ], [ -77.869751235061926, 24.707111873820171 ], [ -77.872138716923075, 24.707837710024631 ], [ -77.871224170488659, 24.706727224715092 ] ], [ [ -77.866029084399969, 24.70795462828659 ], [ -77.866321864602014, 24.70844535359327 ], [ -77.866818044072261, 24.708435866530991 ], [ -77.866591912763369, 24.707943868015889 ], [ -77.866029084399969, 24.70795462828659 ] ], [ [ -77.87744859565494, 24.693884063195242 ], [ -77.879843006594825, 24.694920986819987 ], [ -77.883057481044233, 24.692964196767726 ], [ -77.885156063618041, 24.694985819087105 ], [ -77.889654287446206, 24.694732277896154 ], [ -77.890387131706248, 24.689574513927319 ], [ -77.894243662992878, 24.689770872241496 ], [ -77.893620046566284, 24.688429315150533 ], [ -77.894804734496006, 24.688406458505273 ], [ -77.896959322163141, 24.69188418709728 ], [ -77.896127120267906, 24.69433671176558 ], [ -77.894069876081147, 24.695071263505678 ], [ -77.89558482237122, 24.696512919452498 ], [ -77.893618600617074, 24.69573871654972 ], [ -77.894489124093184, 24.696863443022497 ], [ -77.901577619841035, 24.699374972955493 ], [ -77.904230821783571, 24.698782181573058 ], [ -77.902768678784611, 24.699622638452865 ], [ -77.904833990308887, 24.69923522766755 ], [ -77.904514456796974, 24.698235257033744 ], [ -77.908611896911339, 24.69890482062274 ], [ -77.922210035884589, 24.694642932308874 ], [ -77.922458916002597, 24.689120049408324 ], [ -77.923830217201896, 24.687572822814577 ], [ -77.922354630769959, 24.688143002009134 ], [ -77.922601641410708, 24.686031139338212 ], [ -77.920256240107278, 24.687101012532104 ], [ -77.919310037810206, 24.686866762772144 ], [ -77.918495931839388, 24.688168493456114 ], [ -77.920880121842799, 24.688442433260299 ], [ -77.921207850210095, 24.689789617950257 ], [ -77.917460347867305, 24.69204630989163 ], [ -77.914365320054202, 24.6921064785449 ], [ -77.912916621023513, 24.690334368286877 ], [ -77.908672280182813, 24.689388012908875 ], [ -77.910055192258824, 24.68833247398716 ], [ -77.914580862781648, 24.689273326099325 ], [ -77.912543410143627, 24.686709526958776 ], [ -77.907481176209288, 24.686582127595887 ], [ -77.903021185666432, 24.688468762705536 ], [ -77.901830214556625, 24.685662819710458 ], [ -77.899860725461238, 24.685700901955602 ], [ -77.898980955159672, 24.684174818661461 ], [ -77.900034941842634, 24.681068277634068 ], [ -77.903111863646586, 24.680237233633633 ], [ -77.902802827082326, 24.679047548342027 ], [ -77.898398221391602, 24.6772376721527 ], [ -77.894352219531839, 24.681647249860262 ], [ -77.883765308442079, 24.685099734005458 ], [ -77.879119944706957, 24.68924975292903 ], [ -77.877916574806179, 24.688460684262783 ], [ -77.874339608025281, 24.689792627178193 ], [ -77.87412863492699, 24.692864836333648 ], [ -77.87744859565494, 24.693884063195242 ] ], [ [ -77.888625508182216, 24.677430624773816 ], [ -77.888625404198663, 24.677426114796937 ], [ -77.888410697251956, 24.677430247700702 ], [ -77.88841080122782, 24.677434757678437 ], [ -77.888625508182216, 24.677430624773816 ] ], [ [ -77.890982093079316, 24.676839293889461 ], [ -77.892331752004722, 24.676587687971619 ], [ -77.891721613620419, 24.674541987642737 ], [ -77.88693541014274, 24.674480728101692 ], [ -77.887724487331781, 24.676902016808665 ], [ -77.890982093079316, 24.676839293889461 ] ], [ [ -77.927426261796896, 24.676944903557928 ], [ -77.926852953802083, 24.677768224949119 ], [ -77.929209403264224, 24.677180818880338 ], [ -77.928604480385104, 24.67665120121185 ], [ -77.927426261796896, 24.676944903557928 ] ], [ [ -77.919562986871455, 24.682783087739857 ], [ -77.916576679392932, 24.681776360615437 ], [ -77.916317910296115, 24.683387628320702 ], [ -77.919226149994856, 24.683267902975786 ], [ -77.919562986871455, 24.682783087739857 ] ], [ [ -77.91400533549411, 24.685868993353026 ], [ -77.914503083895099, 24.685931514733372 ], [ -77.914495107365894, 24.68558876475262 ], [ -77.914301496193445, 24.685863240410157 ], [ -77.91400533549411, 24.685868993353026 ] ], [ [ -77.913715470336612, 24.686145337984097 ], [ -77.913721766062167, 24.686415930243953 ], [ -77.913951291671793, 24.686411472105274 ], [ -77.913944995451999, 24.686140879900687 ], [ -77.913715470336612, 24.686145337984097 ] ], [ [ -77.919584662291527, 24.686572657129702 ], [ -77.919590970811825, 24.686843247955441 ], [ -77.91965760716262, 24.686841951067397 ], [ -77.919651298498849, 24.68657136025773 ], [ -77.919584662291527, 24.686572657129702 ] ], [ [ -77.913682948917668, 24.686976160865779 ], [ -77.91367623339687, 24.686687529133039 ], [ -77.913431899083363, 24.686692274483502 ], [ -77.91343861404296, 24.686980906278997 ], [ -77.913682948917668, 24.686976160865779 ] ], [ [ -77.922267309124408, 24.697096280321372 ], [ -77.922285840324051, 24.697890010362354 ], [ -77.924680624617579, 24.698926175534719 ], [ -77.924056639089002, 24.697584780868826 ], [ -77.922267309124408, 24.697096280321372 ] ], [ [ -77.926081543316556, 24.699593675004163 ], [ -77.921750316760352, 24.700336861174769 ], [ -77.921920844091844, 24.702246575917876 ], [ -77.917987405135761, 24.70258035089315 ], [ -77.919481775047132, 24.704712455888767 ], [ -77.920338810183793, 24.703342200490617 ], [ -77.923036214526277, 24.7046432031349 ], [ -77.931231516601315, 24.703129652695132 ], [ -77.930050953185528, 24.700802048550468 ], [ -77.926081543316556, 24.699593675004163 ] ], [ [ -77.927183043802586, 24.704562302077068 ], [ -77.927186630878111, 24.70471563546959 ], [ -77.92732732672593, 24.704712888587395 ], [ -77.927323739478581, 24.704559555214161 ], [ -77.927183043802586, 24.704562302077068 ] ], [ [ -77.905378523206195, 24.705139810781976 ], [ -77.904052779077375, 24.703879595731024 ], [ -77.901980485696669, 24.70396934890891 ], [ -77.90469659509084, 24.706082479715441 ], [ -77.905378523206195, 24.705139810781976 ] ], [ [ -77.888825866292663, 24.695429543936328 ], [ -77.888822639923703, 24.695289735011507 ], [ -77.888541259725784, 24.695295154509527 ], [ -77.888544485781551, 24.695434963469062 ], [ -77.888825866292663, 24.695429543936328 ] ], [ [ -77.888442292444665, 24.695179749287881 ], [ -77.888438754357793, 24.695026410409831 ], [ -77.88755018659738, 24.695043520377883 ], [ -77.887553723599524, 24.695196859376104 ], [ -77.888442292444665, 24.695179749287881 ] ], [ [ -77.914711473232472, 24.706970976264344 ], [ -77.914712523876631, 24.707016074810085 ], [ -77.915386402648622, 24.707002972371363 ], [ -77.915082836852918, 24.706693042336504 ], [ -77.914711473232472, 24.706970976264344 ] ], [ [ -77.85897525923707, 24.728348351377296 ], [ -77.858395084354882, 24.728900864496346 ], [ -77.858407461305305, 24.729442072390039 ], [ -77.859580192051595, 24.728878251238797 ], [ -77.85897525923707, 24.728348351377296 ] ], [ [ -77.866721012873086, 24.730059304994953 ], [ -77.866721840437307, 24.730095385253648 ], [ -77.867018118163074, 24.730089716108139 ], [ -77.867017290513601, 24.730053635858798 ], [ -77.866721012873086, 24.730059304994953 ] ], [ [ -77.844415326454239, 24.713735618285558 ], [ -77.847534612227321, 24.711781327878651 ], [ -77.84750822750911, 24.710622227181219 ], [ -77.843882201142634, 24.712121385400831 ], [ -77.844415326454239, 24.713735618285558 ] ], [ [ -77.964749968034226, 24.689206045102495 ], [ -77.964717935428752, 24.687853146343194 ], [ -77.963829479271311, 24.687870703071734 ], [ -77.963543679861829, 24.688313991914388 ], [ -77.964749968034226, 24.689206045102495 ] ], [ [ -77.952241303742966, 24.686479475748712 ], [ -77.952234818526932, 24.686204383139348 ], [ -77.951642515607958, 24.686216038234129 ], [ -77.95195121111891, 24.686742357468752 ], [ -77.952241303742966, 24.686479475748712 ] ], [ [ -77.95964496841691, 24.68632907883087 ], [ -77.959638573576242, 24.686058497744838 ], [ -77.959542325134436, 24.686060396591962 ], [ -77.959548719767881, 24.686330977701527 ], [ -77.95964496841691, 24.68632907883087 ] ], [ [ -77.959632178828883, 24.68578791664752 ], [ -77.959612995146657, 24.684976173287744 ], [ -77.95872455526812, 24.684993697899699 ], [ -77.959254589544358, 24.685795365525529 ], [ -77.959632178828883, 24.68578791664752 ] ], [ [ -77.894241730628309, 24.673979042883943 ], [ -77.894152183556145, 24.672988137301978 ], [ -77.893068926035326, 24.671944198313948 ], [ -77.890536982396014, 24.671992983373261 ], [ -77.890842863092388, 24.673051918071437 ], [ -77.894241730628309, 24.673979042883943 ] ], [ [ -77.897007491778524, 24.671868225793677 ], [ -77.897013330287876, 24.672120782804214 ], [ -77.897094766790815, 24.672119210838215 ], [ -77.897088928117896, 24.671866653845886 ], [ -77.897007491778524, 24.671868225793677 ] ], [ [ -77.896738050659906, 24.672387789851751 ], [ -77.896738259162319, 24.672396809746683 ], [ -77.896804889191785, 24.672395523704537 ], [ -77.896804680684582, 24.672386503810145 ], [ -77.896738050659906, 24.672387789851751 ] ], [ [ -77.896811144455086, 24.672666120530849 ], [ -77.896834393983951, 24.673671838636796 ], [ -77.897617696372947, 24.673913898512858 ], [ -77.89787608088065, 24.672916279101084 ], [ -77.896811144455086, 24.672666120530849 ] ], [ [ -77.905753223633397, 24.67276397331549 ], [ -77.906320999510314, 24.672974064087956 ], [ -77.908064173916998, 24.672448496493139 ], [ -77.908662715809228, 24.672707613267068 ], [ -77.909924503601133, 24.670589620113784 ], [ -77.907125563684531, 24.670300952883046 ], [ -77.905753223633397, 24.67276397331549 ] ], [ [ -77.911325128123721, 24.670305278722079 ], [ -77.910768461574477, 24.670573255097882 ], [ -77.911073666003972, 24.671596054143269 ], [ -77.911888713661071, 24.671291480168595 ], [ -77.911325128123721, 24.670305278722079 ] ], [ [ -77.91581425134892, 24.669703777491144 ], [ -77.91581162825203, 24.66959103067768 ], [ -77.914405048558351, 24.669618349282743 ], [ -77.914407670394226, 24.669731096237395 ], [ -77.91581425134892, 24.669703777491144 ] ], [ [ -77.917208863287897, 24.669162320761632 ], [ -77.917755638474176, 24.668470394941941 ], [ -77.916853581789127, 24.668217212806429 ], [ -77.916280233378743, 24.669040497322204 ], [ -77.917208863287897, 24.669162320761632 ] ], [ [ -77.908524558384386, 24.666754543249244 ], [ -77.907624385365366, 24.666262134163755 ], [ -77.907346365817432, 24.667048083835155 ], [ -77.908234719570459, 24.667030874926706 ], [ -77.908524558384386, 24.666754543249244 ] ], [ [ -77.910103621797774, 24.666182507076783 ], [ -77.910098386733452, 24.665957012193498 ], [ -77.909683900899111, 24.66564921202654 ], [ -77.909696463194706, 24.666190399955362 ], [ -77.910103621797774, 24.666182507076783 ] ], [ [ -77.90435383159415, 24.665752432865684 ], [ -77.905292289514577, 24.665021386064183 ], [ -77.904011432489796, 24.663760266018713 ], [ -77.903749063391629, 24.665222699381069 ], [ -77.903047775168147, 24.665321990205136 ], [ -77.90435383159415, 24.665752432865684 ] ], [ [ -77.903723991593068, 24.664140317608293 ], [ -77.903012056756609, 24.663779595182966 ], [ -77.903033257677464, 24.664695110400988 ], [ -77.903440413843015, 24.664687236026516 ], [ -77.903723991593068, 24.664140317608293 ] ], [ [ -77.909200766752946, 24.663659790896439 ], [ -77.911145618125502, 24.664808725174876 ], [ -77.912015095796278, 24.663979714892875 ], [ -77.91000291033393, 24.661843984152192 ], [ -77.908327036427551, 24.662390819455048 ], [ -77.909200766752946, 24.663659790896439 ] ], [ [ -77.914333646868045, 24.66176900096227 ], [ -77.911982516660473, 24.662577138571894 ], [ -77.912601027945072, 24.663697632463805 ], [ -77.917603376695538, 24.662246921555539 ], [ -77.917580029222194, 24.660925385725161 ], [ -77.914333646868045, 24.66176900096227 ] ], [ [ -77.929670641750604, 24.658889696774821 ], [ -77.929069185188524, 24.658504386252094 ], [ -77.928489639933488, 24.659057117188922 ], [ -77.929637001948194, 24.659034733316435 ], [ -77.929670641750604, 24.658889696774821 ] ], [ [ -77.913230128006518, 24.652522928458708 ], [ -77.912916659592284, 24.651780029521511 ], [ -77.911732336615856, 24.651802997208446 ], [ -77.912047264240002, 24.652609037833319 ], [ -77.913230128006518, 24.652522928458708 ] ], [ [ -77.91379861497802, 24.651492204159201 ], [ -77.914234869310789, 24.650188816979643 ], [ -77.913103808359864, 24.649953581030843 ], [ -77.912852277860097, 24.651239847116617 ], [ -77.91379861497802, 24.651492204159201 ] ], [ [ -77.870927781392581, 24.688314853428381 ], [ -77.870203554306528, 24.688067014579961 ], [ -77.869919780314078, 24.688613886380825 ], [ -77.869907376830923, 24.688072681012166 ], [ -77.869308821278153, 24.687813409285791 ], [ -77.868722666023629, 24.688095340910454 ], [ -77.869814088006791, 24.688850533530609 ], [ -77.870927781392581, 24.688314853428381 ] ], [ [ -77.86813031007722, 24.688106667361257 ], [ -77.868124112298617, 24.687836064238766 ], [ -77.867814333355341, 24.68757126486328 ], [ -77.867820943528528, 24.687859908282245 ], [ -77.86813031007722, 24.688106667361257 ] ], [ [ -77.857246032277814, 24.680860452084275 ], [ -77.856986473783081, 24.680197609698165 ], [ -77.856380574817891, 24.679938421226527 ], [ -77.856401965170505, 24.680876522645963 ], [ -77.857246032277814, 24.680860452084275 ] ], [ [ -77.856375638735571, 24.679397067868262 ], [ -77.856368337662985, 24.679076850501563 ], [ -77.856360933668398, 24.679076991439203 ], [ -77.856368234722112, 24.679397208807959 ], [ -77.856375638735571, 24.679397067868262 ] ], [ [ -77.866617374616553, 24.673787317449644 ], [ -77.866586423335178, 24.672434297351398 ], [ -77.865697998597398, 24.672451263451524 ], [ -77.866018896012477, 24.673528025329638 ], [ -77.866617374616553, 24.673787317449644 ] ], [ [ -77.854172235070365, 24.673717692495508 ], [ -77.854166893309653, 24.67348316647276 ], [ -77.853981801328004, 24.673486686345576 ], [ -77.853987142743435, 24.673721212406164 ], [ -77.854172235070365, 24.673717692495508 ] ], [ [ -77.869044044772721, 24.667518853886879 ], [ -77.86883786086095, 24.667247560521076 ], [ -77.868541732202843, 24.667253219797651 ], [ -77.868468910656873, 24.666983889263889 ], [ -77.868475516084558, 24.667272533306903 ], [ -77.869044044772721, 24.667518853886879 ] ], [ [ -77.869430117905893, 24.667236240220426 ], [ -77.869430530885126, 24.66725428045763 ], [ -77.869600804743044, 24.66725102543727 ], [ -77.869600391739382, 24.667232985202762 ], [ -77.869430117905893, 24.667236240220426 ] ], [ [ -77.853418607994783, 24.673474834766946 ], [ -77.853412959611276, 24.673226778225068 ], [ -77.853272289903316, 24.673229452617129 ], [ -77.853277938009256, 24.673477509189411 ], [ -77.853418607994783, 24.673474834766946 ] ], [ [ -77.859768970923312, 24.67229363111149 ], [ -77.859454304470518, 24.671487456318072 ], [ -77.858868195313747, 24.671769345015438 ], [ -77.85887539742869, 24.672085051894438 ], [ -77.859768970923312, 24.67229363111149 ] ], [ [ -77.818846467419817, 24.710157683693552 ], [ -77.818840369881258, 24.709887069750422 ], [ -77.818492285138902, 24.709893614087328 ], [ -77.818498381926943, 24.710164228111541 ], [ -77.818846467419817, 24.710157683693552 ] ], [ [ -77.818822077799211, 24.709075227854029 ], [ -77.818815980616407, 24.708804613866214 ], [ -77.818468914941917, 24.708856260224398 ], [ -77.818473995308366, 24.709081771947698 ], [ -77.818822077799211, 24.709075227854029 ] ], [ [ -77.819365773161365, 24.706899176006903 ], [ -77.818700553564582, 24.706640954608606 ], [ -77.818718842814221, 24.707452796853179 ], [ -77.819069538038704, 24.706904746114677 ], [ -77.819365773161365, 24.706899176006903 ] ], [ [ -77.818742821359862, 24.705557245141296 ], [ -77.818736725333196, 24.705286631008278 ], [ -77.818670073260449, 24.705287883977615 ], [ -77.81867616914343, 24.705558498126159 ], [ -77.818742821359862, 24.705557245141296 ] ], [ [ -77.819026860136887, 24.705010447823021 ], [ -77.819014768857016, 24.704473729874223 ], [ -77.818933305760282, 24.704475261381052 ], [ -77.818663977466414, 24.705017269817905 ], [ -77.819026860136887, 24.705010447823021 ] ], [ [ -77.820447019711978, 24.702276455949047 ], [ -77.820443767012691, 24.70213212856223 ], [ -77.820288249649082, 24.702135053531695 ], [ -77.820291502169582, 24.702279380937849 ], [ -77.820447019711978, 24.702276455949047 ] ], [ [ -77.821021167332916, 24.70145347048328 ], [ -77.821018829065579, 24.701349735214411 ], [ -77.820833690592664, 24.70135321790908 ], [ -77.820836028707021, 24.701456953194494 ], [ -77.821021167332916, 24.70145347048328 ] ], [ [ -77.867360883294353, 24.706259715739399 ], [ -77.868264227711009, 24.706883143809804 ], [ -77.868848192654298, 24.706501985673611 ], [ -77.868841988085336, 24.70623138338398 ], [ -77.867360883294353, 24.706259715739399 ] ], [ [ -77.874971995523168, 24.689266139394014 ], [ -77.874967232305821, 24.689058678281427 ], [ -77.874885783205926, 24.68906023925123 ], [ -77.874890546288782, 24.68926770037864 ], [ -77.874971995523168, 24.689266139394014 ] ], [ [ -77.902840378153783, 24.677151806627499 ], [ -77.904302274521839, 24.676311371034966 ], [ -77.904674756531904, 24.674806198406632 ], [ -77.901928236312756, 24.676145237455614 ], [ -77.902840378153783, 24.677151806627499 ] ], [ [ -77.888027287208473, 24.677184956326464 ], [ -77.88802687136517, 24.677166916408844 ], [ -77.88784177945719, 24.677170478502532 ], [ -77.887842195273933, 24.677188518423094 ], [ -77.888027287208473, 24.677184956326464 ] ], [ [ -77.910711756763746, 24.680247914919342 ], [ -77.910442989757371, 24.680794558860626 ], [ -77.911220382398184, 24.680779477483522 ], [ -77.911207805097277, 24.680238291339407 ], [ -77.910711756763746, 24.680247914919342 ] ], [ [ -77.908750641330215, 24.680642387500487 ], [ -77.908742368303123, 24.68028610583659 ], [ -77.907654020308698, 24.680307200287007 ], [ -77.907964407951852, 24.68091480714865 ], [ -77.908750641330215, 24.680642387500487 ] ], [ [ -77.908302862055294, 24.68273106499327 ], [ -77.907917188151416, 24.681114247069765 ], [ -77.906510469299491, 24.681141503642316 ], [ -77.906254238315498, 24.68222933029222 ], [ -77.908302862055294, 24.68273106499327 ] ], [ [ -77.907431775180186, 24.683496927637353 ], [ -77.907426959505869, 24.683289472328699 ], [ -77.907130803072477, 24.683295211152849 ], [ -77.907135618257939, 24.683502666516056 ], [ -77.907431775180186, 24.683496927637353 ] ], [ [ -77.916630552811483, 24.684089919507464 ], [ -77.916639269805302, 24.684464237925315 ], [ -77.916720712902489, 24.684462654579583 ], [ -77.916711995666091, 24.684088336188889 ], [ -77.916630552811483, 24.684089919507464 ] ], [ [ -77.946004172616838, 24.698432086017231 ], [ -77.945722531924716, 24.69905573782005 ], [ -77.946611081959375, 24.699038280857213 ], [ -77.946598341209352, 24.698497113208642 ], [ -77.946004172616838, 24.698432086017231 ] ], [ [ -77.906476164173469, 24.706147254700454 ], [ -77.906480145213393, 24.706318630449488 ], [ -77.906531982150597, 24.706317625547236 ], [ -77.906528001039916, 24.706146249806086 ], [ -77.906476164173469, 24.706147254700454 ] ], [ [ -77.904312182284926, 24.707714219475413 ], [ -77.904312601058422, 24.707732259059128 ], [ -77.904438492422258, 24.707729820239376 ], [ -77.904438073630672, 24.707711780657664 ], [ -77.904312182284926, 24.707714219475413 ] ], [ [ -77.877846835551566, 24.711202484386561 ], [ -77.87783438492626, 24.710661284420414 ], [ -77.877241927008598, 24.710672656520089 ], [ -77.877653105200551, 24.711476922840074 ], [ -77.878445522386741, 24.711461709495801 ], [ -77.877846835551566, 24.711202484386561 ] ], [ [ -77.873706122211615, 24.723495899191953 ], [ -77.873711616547439, 24.723734929643285 ], [ -77.873985657829991, 24.723729674191677 ], [ -77.873980162971975, 24.723490643797827 ], [ -77.873706122211615, 24.723495899191953 ] ], [ [ -77.852734833839762, 24.714660416265563 ], [ -77.853314976787232, 24.714107927875464 ], [ -77.853302630562055, 24.713566716466296 ], [ -77.852716317929733, 24.713848598783152 ], [ -77.852734833839762, 24.714660416265563 ] ], [ [ -77.920602013704212, 24.7146167759274 ], [ -77.920616757831368, 24.715248151573181 ], [ -77.921499121932783, 24.714960243304088 ], [ -77.921492801135813, 24.714689653952377 ], [ -77.920602013704212, 24.7146167759274 ] ], [ [ -77.903005597495067, 24.671495146654529 ], [ -77.903004866189775, 24.671463577194142 ], [ -77.902627300846277, 24.671470879703111 ], [ -77.902628032056768, 24.671502449174064 ], [ -77.903005597495067, 24.671495146654529 ] ], [ [ -77.903415345324348, 24.663604853879633 ], [ -77.903413256347207, 24.663514655359286 ], [ -77.903287409269424, 24.663517089243566 ], [ -77.903289498156326, 24.663607287773985 ], [ -77.903415345324348, 24.663604853879633 ] ], [ [ -77.905764264571729, 24.662697625662673 ], [ -77.905759142672395, 24.662476639720726 ], [ -77.905166927120845, 24.662488101172613 ], [ -77.905172047979889, 24.662709087230684 ], [ -77.905764264571729, 24.662697625662673 ] ], [ [ -77.905456763949019, 24.662211775625547 ], [ -77.905456241370359, 24.662189226032336 ], [ -77.905226758351375, 24.66219366711038 ], [ -77.905227280888894, 24.662216216708181 ], [ -77.905456763949019, 24.662211775625547 ] ], [ [ -77.90575234841036, 24.662183495092268 ], [ -77.906352487625185, 24.662194437730449 ], [ -77.906346005703995, 24.661914822991559 ], [ -77.90578340375157, 24.661925713391852 ], [ -77.90575234841036, 24.662183495092268 ] ], [ [ -77.910366083527734, 24.665365271758649 ], [ -77.910373727237584, 24.66569449423293 ], [ -77.91057360420821, 24.665690618856409 ], [ -77.91056595997523, 24.66536139644062 ], [ -77.910366083527734, 24.665365271758649 ] ], [ [ -77.922007087991972, 24.660536990166577 ], [ -77.922000781885359, 24.660266398979495 ], [ -77.921786110683115, 24.660270576880674 ], [ -77.921792416328032, 24.66054116811959 ], [ -77.922007087991972, 24.660536990166577 ] ], [ [ -77.921868374911867, 24.654583981450916 ], [ -77.921858393492116, 24.654155545007463 ], [ -77.921643732714443, 24.654159721738097 ], [ -77.92165371340343, 24.654588158263607 ], [ -77.921868374911867, 24.654583981450916 ] ], [ [ -77.911442536525101, 24.652079331720099 ], [ -77.911435732239667, 24.65178618817092 ], [ -77.910895384323553, 24.651796663011542 ], [ -77.91114645482341, 24.652085071676041 ], [ -77.911442536525101, 24.652079331720099 ] ], [ [ -77.920318644909585, 24.651636270503396 ], [ -77.920336075074815, 24.652384908078567 ], [ -77.920928234940476, 24.65237339124792 ], [ -77.920614723127386, 24.651630512576773 ], [ -77.920318644909585, 24.651636270503396 ] ], [ [ -77.91973194707073, 24.651882297719133 ], [ -77.919726488198009, 24.651647784610681 ], [ -77.91913433111857, 24.651659296390022 ], [ -77.919139788888003, 24.651893809622283 ], [ -77.91973194707073, 24.651882297719133 ] ], [ [ -77.872157278855397, 24.669891298737507 ], [ -77.872138675287587, 24.669079490244119 ], [ -77.871613040706379, 24.66908954730587 ], [ -77.871623064032562, 24.669527022097071 ], [ -77.872157278855397, 24.669891298737507 ] ], [ [ -77.870289483058045, 24.665951929598069 ], [ -77.870287520941034, 24.665866238520696 ], [ -77.869991395920749, 24.665871900358574 ], [ -77.869993357836009, 24.665957591458188 ], [ -77.870289483058045, 24.665951929598069 ] ], [ [ -77.819195069822328, 24.699321981489074 ], [ -77.818886663426952, 24.698786321011593 ], [ -77.818294231224556, 24.698797455336113 ], [ -77.818306417821944, 24.699338684265012 ], [ -77.819195069822328, 24.699321981489074 ] ], [ [ -77.846185656785977, 24.689607522960859 ], [ -77.845897308575445, 24.689306171942093 ], [ -77.845341958429231, 24.689316706612814 ], [ -77.845645114817117, 24.689617777888714 ], [ -77.846185656785977, 24.689607522960859 ] ] ], [ [ [ -77.892535941127107, 24.673240382917374 ], [ -77.892085477721523, 24.673298695912397 ], [ -77.892079232472497, 24.673028097975212 ], [ -77.89253084005351, 24.67301939468933 ], [ -77.892535941127107, 24.673240382917374 ] ] ], [ [ [ -77.82308515481931, 24.761028617361127 ], [ -77.825259404058428, 24.760669669587536 ], [ -77.826629637261206, 24.76228653263831 ], [ -77.827248946298766, 24.764413544369834 ], [ -77.82308515481931, 24.761028617361127 ] ] ], [ [ [ -77.954965659612682, 24.955939154824993 ], [ -77.952005042606515, 24.950083084948666 ], [ -77.953420879629633, 24.950312165176051 ], [ -77.952715917998219, 24.944411325279507 ], [ -77.955056881216407, 24.936135559206978 ], [ -77.957269162558958, 24.934291479003228 ], [ -77.957189892041754, 24.94277952786382 ], [ -77.958918298510824, 24.944288179790902 ], [ -77.961449473170973, 24.943980685082135 ], [ -77.963367547913464, 24.941628034157894 ], [ -77.964096353126877, 24.936727394354996 ], [ -77.974022687793109, 24.927271584611898 ], [ -77.977123394238149, 24.927209640348782 ], [ -77.976934194437987, 24.931070869314123 ], [ -77.964409036057276, 24.938006994032961 ], [ -77.964801767623783, 24.942628139521666 ], [ -77.962859092650518, 24.943952637921001 ], [ -77.962442934543958, 24.950132877063613 ], [ -77.957962646028548, 24.951507805986381 ], [ -77.954965659612682, 24.955939154824993 ] ], [ [ -77.955989049007798, 24.951547014507945 ], [ -77.957055382689703, 24.948954177171718 ], [ -77.960702098632837, 24.948110193063187 ], [ -77.961486380441755, 24.945522941487951 ], [ -77.956417810744242, 24.9458808520437 ], [ -77.957306601183205, 24.947663358187281 ], [ -77.95423601292984, 24.94901015884491 ], [ -77.95462230816176, 24.953374313094159 ], [ -77.955989049007798, 24.951547014507945 ] ] ], [ [ [ -77.982125481850943, 25.10428764251478 ], [ -77.961512715810443, 25.073121313131061 ], [ -77.962611308985288, 25.070662310727684 ], [ -77.949551219510653, 25.048661178086327 ], [ -77.957658632619797, 25.042787556008584 ], [ -77.964559624717197, 25.043233060829746 ], [ -77.967576995906043, 25.041038655805568 ], [ -77.965424395364479, 25.03865332891155 ], [ -77.956457862275258, 25.037834881990332 ], [ -77.950904772081159, 25.026714503529295 ], [ -77.948644508288623, 25.025953772987691 ], [ -77.949569398207629, 25.021256582377177 ], [ -77.943116053334293, 25.013870385715123 ], [ -77.943783143951109, 25.002749035858859 ], [ -77.938886073972881, 24.984225649102012 ], [ -77.929779248730753, 24.977840250936307 ], [ -77.928162454998983, 24.969221572704118 ], [ -77.933962687746757, 24.96448219793637 ], [ -77.932464878594658, 24.958479172056911 ], [ -77.927736015695928, 24.959063331281147 ], [ -77.921794960083659, 24.944147313785788 ], [ -77.916414230164847, 24.93693248359941 ], [ -77.908231710020331, 24.932288095579523 ], [ -77.915510438127654, 24.911131152919527 ], [ -77.914470714729532, 24.90822419140456 ], [ -77.907914501309946, 24.900502076026591 ], [ -77.905862687947987, 24.89516621791789 ], [ -77.893463024462548, 24.883875932042447 ], [ -77.89114942245088, 24.883272304552943 ], [ -77.890704967266288, 24.879401318190141 ], [ -77.901424403557002, 24.869196172856284 ], [ -77.894232224631622, 24.854831831921462 ], [ -77.890610818365843, 24.852876145496698 ], [ -77.885766087565969, 24.847169740865052 ], [ -77.884467689623108, 24.844342675342872 ], [ -77.886092673993119, 24.84249836017765 ], [ -77.861244597694238, 24.812435933430393 ], [ -77.852350745700988, 24.797042519379588 ], [ -77.845432124711792, 24.788757621654547 ], [ -77.836020900079461, 24.782346065205058 ], [ -77.828754482752771, 24.772103551255707 ], [ -77.827679275897367, 24.765327649900087 ], [ -77.830838730217152, 24.773741495957399 ], [ -77.845234039941246, 24.785725279944451 ], [ -77.850540553342768, 24.793051246996704 ], [ -77.854973505738343, 24.796428288515788 ], [ -77.860864487699814, 24.807578323248798 ], [ -77.866698006487439, 24.81305727304531 ], [ -77.868530776742901, 24.817154921624869 ], [ -77.880361639387516, 24.824735693801134 ], [ -77.883590153984642, 24.828300184830383 ], [ -77.887330389527804, 24.836354539579887 ], [ -77.888410730731053, 24.845205096893622 ], [ -77.891100197799091, 24.844137605115872 ], [ -77.894749058935844, 24.846854411925985 ], [ -77.900512864879772, 24.855276595397374 ], [ -77.906487866596208, 24.87715655462949 ], [ -77.912948423325872, 24.878087863453992 ], [ -77.91394885877051, 24.877096254834729 ], [ -77.912188919166113, 24.873235205777526 ], [ -77.910722592362433, 24.874341374101135 ], [ -77.909089808520974, 24.871151928756117 ], [ -77.909747527600544, 24.869120011791956 ], [ -77.906023755520422, 24.867870224930041 ], [ -77.9071885404162, 24.862870052794726 ], [ -77.90169732986196, 24.855232293277176 ], [ -77.902141399072363, 24.852038830284929 ], [ -77.897073026996239, 24.84858496440977 ], [ -77.898768743648247, 24.843431114334273 ], [ -77.902192127428037, 24.84236709107287 ], [ -77.903058201302471, 24.843229983315162 ], [ -77.905122008497898, 24.84820503862673 ], [ -77.904135575143144, 24.857291481313041 ], [ -77.909724129949268, 24.855453555933234 ], [ -77.909565257833833, 24.859137021664303 ], [ -77.91532726882869, 24.866173007796142 ], [ -77.917133936722564, 24.870649077877601 ], [ -77.913746857659078, 24.873731004529869 ], [ -77.920743424244179, 24.884369517473715 ], [ -77.921954073051936, 24.891911875887345 ], [ -77.926582316186128, 24.894158598135302 ], [ -77.928020883493261, 24.897073628083202 ], [ -77.932197796508916, 24.899812103446056 ], [ -77.934728192383147, 24.899505139430218 ], [ -77.934332246403599, 24.895001171805902 ], [ -77.941295307934439, 24.891074100737569 ], [ -77.938987738134742, 24.888877260200271 ], [ -77.938248257101876, 24.88490795400309 ], [ -77.940021607681828, 24.884602299999806 ], [ -77.94214289418673, 24.886455399821454 ], [ -77.942194222398427, 24.88862002456537 ], [ -77.943485581271148, 24.888323835296834 ], [ -77.945671692639323, 24.885402180553754 ], [ -77.944155103428557, 24.883708643137904 ], [ -77.945237389224289, 24.878981530564143 ], [ -77.952744798757138, 24.870545069840485 ], [ -77.960139792046519, 24.865525890586262 ], [ -77.960617206657631, 24.864704311985328 ], [ -77.958238176058245, 24.86448079105449 ], [ -77.959467136278803, 24.860955335673076 ], [ -77.962886524723856, 24.860328037641633 ], [ -77.96204845137801, 24.862510291383426 ], [ -77.965290770988318, 24.861611235888059 ], [ -77.965220268593029, 24.858657476896475 ], [ -77.967296167048787, 24.858616219125683 ], [ -77.96666428971443, 24.857004571001273 ], [ -77.972833619101323, 24.854445513317405 ], [ -77.973342550885079, 24.850916267825681 ], [ -77.974296915337703, 24.853604261236331 ], [ -77.976649811398744, 24.852745259332647 ], [ -77.980240729427322, 24.854027107535732 ], [ -77.98557197233427, 24.853649871121863 ], [ -77.987390237468759, 24.855237682465663 ], [ -77.990038687853499, 24.854643255702499 ], [ -77.992219212564251, 24.851558723451401 ], [ -77.991893915967594, 24.845131658694282 ], [ -77.993646959389935, 24.844013729118871 ], [ -77.993894605942842, 24.854295267111482 ], [ -77.998632690162395, 24.853929460741274 ], [ -77.998704515061632, 24.856905679554931 ], [ -78.005241548771664, 24.857315588880436 ], [ -78.009353825478428, 24.855608560588667 ], [ -78.008516621355938, 24.85779099731263 ], [ -78.011231413014514, 24.859631109241306 ], [ -78.018645060298937, 24.859481338890014 ], [ -78.028589301601599, 24.865776463212871 ], [ -78.039034944721564, 24.868270975594061 ], [ -78.047048669732945, 24.868378217285589 ], [ -78.050370619030275, 24.870746526493889 ], [ -78.05482570691612, 24.870926055591454 ], [ -78.059000103229337, 24.873863182409227 ], [ -78.059327458025535, 24.872999296896584 ], [ -78.06653188543963, 24.876370278510169 ], [ -78.06949759815528, 24.876309278300109 ], [ -78.068634638435114, 24.877409772473094 ], [ -78.065945424057531, 24.876653019178089 ], [ -78.06240657029872, 24.877537774317233 ], [ -78.059124228676836, 24.876793071313301 ], [ -78.051453157093036, 24.878574324593444 ], [ -78.046324944830005, 24.875160205313492 ], [ -78.045145282810779, 24.87545498027329 ], [ -78.045132009563844, 24.87491387428453 ], [ -78.043945711904769, 24.874938086553655 ], [ -78.044406260445513, 24.876476123321492 ], [ -78.04213336712013, 24.875751033106901 ], [ -78.043042723801435, 24.874415132505501 ], [ -78.040357624240912, 24.872304368844933 ], [ -78.035345007761762, 24.875113344277366 ], [ -78.025485372726394, 24.872336036460219 ], [ -78.022737168235452, 24.869143439065471 ], [ -78.020054904474009, 24.86865637234375 ], [ -78.019106006324179, 24.866239340493774 ], [ -78.016206107552406, 24.869004922461322 ], [ -78.010874426799802, 24.869383307293099 ], [ -78.012172290090504, 24.873958906748445 ], [ -78.006345488512082, 24.878407563507626 ], [ -78.007261488718626, 24.87947187636027 ], [ -78.004097168221833, 24.883596067178388 ], [ -78.003331775299003, 24.888754687265397 ], [ -78.002132205566824, 24.888237453234915 ], [ -78.001412552432981, 24.895290013655739 ], [ -77.999078725563905, 24.896961153167172 ], [ -77.996869077984428, 24.903772980564881 ], [ -77.99412782615191, 24.907324562661238 ], [ -77.991829740583569, 24.905570584103732 ], [ -77.99015736384456, 24.906375630398323 ], [ -77.989643294348355, 24.908443237634916 ], [ -77.986611219148742, 24.911332818696742 ], [ -77.989832139916984, 24.904582024545512 ], [ -77.993783920400176, 24.904759860282454 ], [ -77.994505242325019, 24.899602145066257 ], [ -77.998307715613095, 24.893611013592707 ], [ -78.000075193306969, 24.885089157466354 ], [ -77.998904587652618, 24.883312575428207 ], [ -77.999625671790298, 24.878154856532156 ], [ -78.003702870605281, 24.871900956884058 ], [ -78.002293469029254, 24.870368315594959 ], [ -78.003124303471282, 24.867915334936864 ], [ -78.006611073499911, 24.864867469211976 ], [ -78.000415956751453, 24.86634564733588 ], [ -77.999868573983932, 24.868251525536458 ], [ -78.001403743180504, 24.870386217346582 ], [ -77.997561317984207, 24.871004860623277 ], [ -77.99390452564819, 24.867017834451264 ], [ -77.986464234888615, 24.866084147035835 ], [ -77.985535503141506, 24.864478542163006 ], [ -77.989287427802878, 24.860103844255441 ], [ -77.985992051247393, 24.858784740686502 ], [ -77.980145372666925, 24.862420693568019 ], [ -77.977883150542993, 24.867067746671182 ], [ -77.963151182314576, 24.871421562417414 ], [ -77.956445601876695, 24.876427243249378 ], [ -77.95319584784032, 24.877033021763367 ], [ -77.952267425934224, 24.87542717919434 ], [ -77.949069090600119, 24.878197480435372 ], [ -77.949423563215646, 24.880626805604987 ], [ -77.950274815817409, 24.878985748474591 ], [ -77.953550394380187, 24.879462330285431 ], [ -77.950048947499212, 24.881967955657764 ], [ -77.946424214292009, 24.891784951726354 ], [ -77.950970378150913, 24.895755593380962 ], [ -77.945566413972898, 24.893155420149494 ], [ -77.940246031887781, 24.894072548332428 ], [ -77.937046964080182, 24.896842654392639 ], [ -77.9360399725702, 24.895364587234273 ], [ -77.935010021824979, 24.899499590871109 ], [ -77.930567058135111, 24.901737561207621 ], [ -77.931198079959316, 24.905232347765583 ], [ -77.929680431821822, 24.909159754997134 ], [ -77.931699744078557, 24.913918461847857 ], [ -77.930831022980286, 24.920244526610951 ], [ -77.932101321696166, 24.919574771554807 ], [ -77.93285666172855, 24.915743701529852 ], [ -77.934241650391698, 24.914687753926131 ], [ -77.935730139013899, 24.918001640657952 ], [ -77.937127309411039, 24.917459765189907 ], [ -77.939958203049585, 24.917918270272779 ], [ -77.941226038855547, 24.923808128332315 ], [ -77.941765387957005, 24.922768803799752 ], [ -77.945754500492143, 24.924490151386639 ], [ -77.946140326479707, 24.928854374648019 ], [ -77.950368720950564, 24.928770675105039 ], [ -77.952415504817097, 24.93181611854801 ], [ -77.95250131643084, 24.935414751560543 ], [ -77.950816000041186, 24.935705323796803 ], [ -77.951710752963393, 24.937744924944745 ], [ -77.950993706358872, 24.943159639697228 ], [ -77.947825183633427, 24.940393571102092 ], [ -77.947475937187463, 24.937571644435515 ], [ -77.945539241546669, 24.939152973647094 ], [ -77.947090003276585, 24.933207435888249 ], [ -77.94492718278137, 24.925278013812445 ], [ -77.940380388360467, 24.923824822848374 ], [ -77.939112591756881, 24.917934953919424 ], [ -77.936857624607228, 24.91797942025147 ], [ -77.935221201892347, 24.920326195095221 ], [ -77.934259909840492, 24.915458904144028 ], [ -77.933144613253504, 24.915995203427819 ], [ -77.932662538262051, 24.919456562254208 ], [ -77.934486042817113, 24.921292541028549 ], [ -77.935132750055217, 24.925456427556142 ], [ -77.937043571064407, 24.926473427158712 ], [ -77.940428351607835, 24.937527179894801 ], [ -77.944666027180787, 24.941769264989226 ], [ -77.946965430485434, 24.951278716570577 ], [ -77.944967135361381, 24.953793847087351 ], [ -77.941130485466189, 24.946753974116032 ], [ -77.941152678647057, 24.943802103062531 ], [ -77.938061441688347, 24.943974964014604 ], [ -77.932816970259438, 24.938841133230937 ], [ -77.925754030111804, 24.938158314756407 ], [ -77.922988474054662, 24.940154100436882 ], [ -77.925612479430811, 24.942749745432749 ], [ -77.930539835689316, 24.94164100002957 ], [ -77.934607624799355, 24.944350270523078 ], [ -77.942703934480946, 24.954227482816943 ], [ -77.946286126216435, 24.955135528880671 ], [ -77.946845542824676, 24.956908866589995 ], [ -77.94430254331921, 24.959191173482733 ], [ -77.943404559682818, 24.975449889562604 ], [ -77.937052101784147, 24.98166258052628 ], [ -77.940167536299256, 24.983667239606259 ], [ -77.942453940799766, 24.981737410561028 ], [ -77.947190192275173, 24.986646970308769 ], [ -77.949888382754835, 24.985026625203822 ], [ -77.946876039834791, 24.982627439554616 ], [ -77.949552809367304, 24.983423483838987 ], [ -77.951810565332153, 24.988652189339188 ], [ -77.957048032788904, 24.990742395356119 ], [ -77.962627939421751, 24.995673598011091 ], [ -77.95978930535378, 24.988265697018093 ], [ -77.965255660759041, 24.989326676507762 ], [ -77.964971796232931, 24.985192423088925 ], [ -77.967814865059538, 24.983850021642098 ], [ -77.968232440750469, 24.981957639301818 ], [ -77.967518643847413, 24.980223846242534 ], [ -77.963787314141939, 24.982129833809459 ], [ -77.959591805972053, 24.982177704103126 ], [ -77.957014061364845, 24.976061441165886 ], [ -77.958297545661409, 24.974643823773356 ], [ -77.962740689747577, 24.976733934264768 ], [ -77.964848240529292, 24.976128069307467 ], [ -77.964770182236734, 24.972958959986375 ], [ -77.966235941203038, 24.972054197179727 ], [ -77.964991319615123, 24.969598177390143 ], [ -77.96761565725366, 24.967971091756375 ], [ -77.960330351786737, 24.96156194752005 ], [ -77.968134711422692, 24.960473569783343 ], [ -77.970358511954529, 24.959202858031528 ], [ -77.968293886003437, 24.959318735937575 ], [ -77.967438999111593, 24.957861350097019 ], [ -77.969873132016986, 24.957073394020231 ], [ -77.975377892203582, 24.959467784786405 ], [ -77.977124540586018, 24.963952752766463 ], [ -77.975367946753323, 24.969472022803064 ], [ -77.976501755770997, 24.971304435563624 ], [ -77.972403012866138, 24.971114373604799 ], [ -77.974427195161965, 24.968719453786871 ], [ -77.972386995387168, 24.964128232847571 ], [ -77.970189013777997, 24.964369731471393 ], [ -77.968387209155352, 24.975566841419319 ], [ -77.971106681912701, 24.976567048194443 ], [ -77.971222254020077, 24.980595332417536 ], [ -77.973693705188722, 24.980835003471071 ], [ -77.983507854136633, 24.973610654307251 ], [ -77.987714782476687, 24.977648628865051 ], [ -77.9846529068666, 24.97913178691433 ], [ -77.981525828109255, 24.978144506988176 ], [ -77.979021933981272, 24.981416736057064 ], [ -77.977104677636206, 24.980477424366555 ], [ -77.974366427396745, 24.981599936371225 ], [ -77.974518128974779, 24.983292988178651 ], [ -77.979820067101414, 24.986747919491023 ], [ -77.981000077190728, 24.989390514717215 ], [ -77.991464090457896, 24.987844579024429 ], [ -77.99188228951148, 24.989812310475898 ], [ -77.985768496785198, 24.991191280720287 ], [ -77.984548804731716, 24.993608410229328 ], [ -77.986060959614619, 24.999452305982611 ], [ -77.977112638053526, 25.004754418702216 ], [ -77.97988692562808, 25.008492914209111 ], [ -77.983379884830939, 25.009996371303931 ], [ -77.981834463346431, 25.015796317226549 ], [ -77.983350412203976, 25.016419091749938 ], [ -77.983972877523627, 25.020437401434403 ], [ -77.981280669333287, 25.02272839388014 ], [ -77.977927042101371, 25.022732489613926 ], [ -77.976142013007276, 25.027076927832177 ], [ -77.977728320637468, 25.030985808540482 ], [ -77.974811539745815, 25.038435660100056 ], [ -77.977198413393054, 25.045945598048714 ], [ -77.975778954123768, 25.050148159715935 ], [ -77.971362784815213, 25.051037758058545 ], [ -77.973828971759758, 25.052111720008227 ], [ -77.973783516141395, 25.054927967316772 ], [ -77.971726962114062, 25.057746703365531 ], [ -77.967451104009072, 25.058967800539506 ], [ -77.96514503619882, 25.05888873249571 ], [ -77.964687400798383, 25.056931758231265 ], [ -77.961185956687686, 25.054992990983408 ], [ -77.95756006567035, 25.057498012473829 ], [ -77.964168595173831, 25.072258019006924 ], [ -77.972487255147058, 25.085093609356317 ], [ -77.982642740776342, 25.08568864926254 ], [ -77.982418534218397, 25.088956807776881 ], [ -77.986362189320246, 25.092380819041363 ], [ -77.986993460309435, 25.094807104106945 ], [ -77.988954434718622, 25.095034827694391 ], [ -77.988273076905699, 25.092818662630265 ], [ -77.989845639507692, 25.089705850533932 ], [ -77.987748610726257, 25.089376721813888 ], [ -77.985135561212715, 25.08251137005244 ], [ -77.982500275253457, 25.08034136145174 ], [ -77.985140535067643, 25.079140695990926 ], [ -77.992836602844875, 25.081853998884274 ], [ -77.997191223318154, 25.08512006673033 ], [ -77.997374014263343, 25.086873084941349 ], [ -78.002129116207072, 25.088880135007681 ], [ -78.008295955433454, 25.088429314947476 ], [ -78.008299960569147, 25.090336743927544 ], [ -78.005571086341732, 25.09304651791032 ], [ -78.000765785712915, 25.09094809043528 ], [ -77.99907767620347, 25.092169431458675 ], [ -77.994543429985242, 25.098867782841218 ], [ -77.997720621501102, 25.098752796081072 ], [ -77.996654430579227, 25.100101904636247 ], [ -77.999971635663599, 25.102129596643476 ], [ -78.001744555096366, 25.099924741066289 ], [ -78.003725144128879, 25.101663519894846 ], [ -78.005946209648044, 25.10840473523092 ], [ -78.0054251183779, 25.111615857160164 ], [ -78.004627869453103, 25.113063850968771 ], [ -77.994496052852881, 25.116889618446898 ], [ -77.990602283674292, 25.121583510589179 ], [ -77.99075154340224, 25.124771950708347 ], [ -77.989257017748656, 25.126164886544984 ], [ -77.98549772759219, 25.117624271893394 ], [ -77.981071526434548, 25.113189762391752 ], [ -77.979071652743627, 25.105588600947183 ], [ -77.982125481850943, 25.10428764251478 ] ], [ [ -77.955898302540504, 25.02589999116374 ], [ -77.955345685232842, 25.025171721480984 ], [ -77.951418508239243, 25.025958681812504 ], [ -77.953867000438478, 25.027611919412806 ], [ -77.955898302540504, 25.02589999116374 ] ], [ [ -77.957895889433445, 25.023359431531514 ], [ -77.957757800510223, 25.020958938052939 ], [ -77.955346232797822, 25.020321995387633 ], [ -77.955680743695027, 25.022034701240447 ], [ -77.957895889433445, 25.023359431531514 ] ], [ [ -77.959638894621236, 25.016893112226885 ], [ -77.955974425261402, 25.017165527859838 ], [ -77.954038155058726, 25.008041500446659 ], [ -77.951782766165053, 25.005827005709083 ], [ -77.949376614699489, 25.00594311582287 ], [ -77.94915404569393, 25.001964482216344 ], [ -77.949542507191296, 25.005103930148568 ], [ -77.953918919965545, 25.004599455541751 ], [ -77.95137313115697, 25.003830533527598 ], [ -77.950278747660647, 25.000516225025908 ], [ -77.94749261319491, 24.999238090216473 ], [ -77.946085444857744, 25.0000583968455 ], [ -77.945655565412167, 25.002775910560672 ], [ -77.947056650790941, 25.002045739749583 ], [ -77.949698697303816, 25.013555057636399 ], [ -77.951460205366331, 25.015305398573918 ], [ -77.953425192488197, 25.014858845131862 ], [ -77.955692375887139, 25.019015541505624 ], [ -77.95823088837102, 25.019309464207215 ], [ -77.959638894621236, 25.016893112226885 ] ], [ [ -77.948025556575132, 24.996501875589782 ], [ -77.949232972628181, 24.994740972800155 ], [ -77.946947058618065, 24.992065284692391 ], [ -77.945698031936686, 24.995499050434731 ], [ -77.948025556575132, 24.996501875589782 ] ], [ [ -77.967041326667029, 24.972882878109772 ], [ -77.965609911230175, 24.973520891885666 ], [ -77.965582497273047, 24.975393858980716 ], [ -77.967735204831001, 24.975408022313822 ], [ -77.967041326667029, 24.972882878109772 ] ], [ [ -77.939268367354344, 24.941576535508595 ], [ -77.940601272195323, 24.941907629069082 ], [ -77.941215134116689, 24.939512176823627 ], [ -77.940051329065199, 24.939414745959837 ], [ -77.939268367354344, 24.941576535508595 ] ], [ [ -77.928575642995014, 24.932150100855832 ], [ -77.929852642990141, 24.931195888236243 ], [ -77.929667680915188, 24.927433838366159 ], [ -77.92727398997161, 24.926401909600433 ], [ -77.92645783060722, 24.93334923670864 ], [ -77.927874572990447, 24.936519365014274 ], [ -77.931015323102429, 24.935168424493817 ], [ -77.931367227088032, 24.937412394612597 ], [ -77.933187299973198, 24.937743220968361 ], [ -77.932910053482189, 24.934197267159487 ], [ -77.928575642995014, 24.932150100855832 ] ], [ [ -77.917015701356064, 24.929800754218046 ], [ -77.91517170087802, 24.929346332050347 ], [ -77.914892547480989, 24.933486301714535 ], [ -77.915825963500339, 24.933787643805328 ], [ -77.917015701356064, 24.929800754218046 ] ], [ [ -77.931993441256722, 24.922110115235032 ], [ -77.930435585971466, 24.92200845520442 ], [ -77.929961185366679, 24.924160299923081 ], [ -77.932341361073327, 24.926147059100188 ], [ -77.931993441256722, 24.922110115235032 ] ], [ [ -77.91724232838186, 24.90398205268292 ], [ -77.918428710268785, 24.90214066994411 ], [ -77.918797471723238, 24.901109174189905 ], [ -77.916580129129443, 24.900894423470703 ], [ -77.91724232838186, 24.90398205268292 ] ], [ [ -77.910915064288972, 24.90085486471142 ], [ -77.912488517980748, 24.897985122899907 ], [ -77.909068112934406, 24.896980567452516 ], [ -77.909713761432087, 24.900224412251134 ], [ -77.910915064288972, 24.90085486471142 ] ], [ [ -77.940124187436652, 24.888931558106684 ], [ -77.940122370689821, 24.888854893223474 ], [ -77.940114954576387, 24.888855039445122 ], [ -77.940116771318642, 24.88893170432884 ], [ -77.940124187436652, 24.888931558106684 ] ], [ [ -77.949339983666164, 24.877109309209025 ], [ -77.94913345342826, 24.876847201181207 ], [ -77.948589078238626, 24.877665561987893 ], [ -77.949056234150717, 24.877656326919567 ], [ -77.949339983666164, 24.877109309209025 ] ], [ [ -77.951377623281118, 24.875444786215052 ], [ -77.951373227740376, 24.875259892599026 ], [ -77.951350982178766, 24.875260332713278 ], [ -77.951355377686497, 24.875445226333017 ], [ -77.951377623281118, 24.875444786215052 ] ], [ [ -77.969295079395152, 24.859388567551534 ], [ -77.968482392670211, 24.858592630333089 ], [ -77.966715975745714, 24.859169156238412 ], [ -77.9679022072675, 24.859145571563587 ], [ -77.967347867887895, 24.860780802653604 ], [ -77.969295079395152, 24.859388567551534 ] ], [ [ -78.008950784375855, 24.863466834284726 ], [ -78.007764556185947, 24.863490748805361 ], [ -78.007191093312315, 24.864314391304394 ], [ -78.008323711864136, 24.864832951032174 ], [ -78.008950784375855, 24.863466834284726 ] ], [ [ -78.011331294565906, 24.872622415665806 ], [ -78.011344419241212, 24.873163538785107 ], [ -78.011559438749273, 24.873159198257248 ], [ -78.011546313140272, 24.872618075244954 ], [ -78.011331294565906, 24.872622415665806 ] ], [ [ -78.010226709226274, 24.87356958083026 ], [ -78.010230535961568, 24.873727407796366 ], [ -78.010682822638159, 24.873718280506534 ], [ -78.010678995330011, 24.873560453606053 ], [ -78.010226709226274, 24.87356958083026 ] ], [ [ -78.009118393208368, 24.874363419118868 ], [ -78.009129760460596, 24.874832393448454 ], [ -78.009226149746596, 24.87483044904609 ], [ -78.009214782131593, 24.874361474758047 ], [ -78.009118393208368, 24.874363419118868 ] ], [ [ -78.006081336881095, 24.876996250850759 ], [ -78.006082865728544, 24.877059382836233 ], [ -78.006312724107971, 24.877054750340065 ], [ -78.006311195144036, 24.876991618367907 ], [ -78.006081336881095, 24.876996250850759 ] ], [ [ -78.049340063465394, 24.870767594287383 ], [ -78.049345157568581, 24.870975018021021 ], [ -78.049486024454808, 24.870972138656946 ], [ -78.04948093011717, 24.870764714950525 ], [ -78.049340063465394, 24.870767594287383 ] ], [ [ -78.060132616593108, 24.874065526695979 ], [ -78.060133394611597, 24.87409708979985 ], [ -78.060244608695811, 24.874094808291865 ], [ -78.060243830649156, 24.87406324519127 ], [ -78.060132616593108, 24.874065526695979 ] ], [ [ -78.043674455064817, 24.875976749735138 ], [ -78.043675671249986, 24.876026351575362 ], [ -78.043831373877225, 24.87602317441187 ], [ -78.043830157630083, 24.875973572578829 ], [ -78.043674455064817, 24.875976749735138 ] ], [ [ -78.062726120757461, 24.876358243449545 ], [ -78.062728345828987, 24.876448425234532 ], [ -78.062973017355503, 24.876443401183916 ], [ -78.06297079210691, 24.876353219419567 ], [ -78.062726120757461, 24.876358243449545 ] ], [ [ -78.061323736611001, 24.876644183179415 ], [ -78.061326294318022, 24.876747892810037 ], [ -78.061793398199896, 24.876738305330996 ], [ -78.061790840104095, 24.876634595745671 ], [ -78.061323736611001, 24.876644183179415 ] ], [ [ -78.060907456402035, 24.876909877488576 ], [ -78.060910347375923, 24.877027114891217 ], [ -78.06120692221738, 24.877021028531587 ], [ -78.061204030964433, 24.87690379116145 ], [ -78.060907456402035, 24.876909877488576 ] ], [ [ -77.947624600621324, 24.879850256250155 ], [ -77.947618175010632, 24.879579679204824 ], [ -77.947506944386333, 24.879581877273413 ], [ -77.947513369755413, 24.879852454345833 ], [ -77.947624600621324, 24.879850256250155 ] ], [ [ -77.951667791124791, 24.875168341580995 ], [ -77.951663716865951, 24.874996977106427 ], [ -77.95162664104673, 24.874997710692679 ], [ -77.951630715254581, 24.87516907517297 ], [ -77.951667791124791, 24.875168341580995 ] ], [ [ -77.952551156591724, 24.874880157004199 ], [ -77.952547402918597, 24.874722321749367 ], [ -77.951902298752032, 24.87473508826179 ], [ -77.951906051607907, 24.874892923608414 ], [ -77.952551156591724, 24.874880157004199 ] ], [ [ -78.002635982658973, 24.886061749396212 ], [ -78.002649077507982, 24.886602875876541 ], [ -78.002982767494217, 24.886596156481335 ], [ -78.002976219297153, 24.886325593329676 ], [ -78.002635982658973, 24.886061749396212 ] ], [ [ -77.995450035622468, 24.903697739187642 ], [ -77.995452541464061, 24.903801455910578 ], [ -77.995682451609966, 24.903796835151233 ], [ -77.99567994557674, 24.903693118450111 ], [ -77.995450035622468, 24.903697739187642 ] ], [ [ -77.992604201078464, 24.849989982546337 ], [ -77.992584657326319, 24.849178281349705 ], [ -77.992443807660067, 24.849181104724707 ], [ -77.992463350495726, 24.849992806025824 ], [ -77.992604201078464, 24.849989982546337 ] ] ], [ [ [ -77.998271529278412, 25.143269955389528 ], [ -77.990309202322806, 25.129248204883606 ], [ -77.989815154292685, 25.127342051573542 ], [ -77.993819167584633, 25.132314005563462 ], [ -77.998999415674149, 25.14325111131275 ], [ -78.002579931563901, 25.142986737537235 ], [ -78.008364656167544, 25.153381230821729 ], [ -78.002434012633643, 25.146047365089714 ], [ -77.998271529278412, 25.143269955389528 ] ] ], [ [ [ -78.00966200645378, 25.154795688115176 ], [ -78.010637778316266, 25.157694706060674 ], [ -78.00859597594534, 25.153574706565777 ], [ -78.00966200645378, 25.154795688115176 ] ] ], [ [ [ -78.013460911856484, 25.161605795470106 ], [ -78.013883879747993, 25.163043976002246 ], [ -78.012199839753833, 25.15949521621468 ], [ -78.013460911856484, 25.161605795470106 ] ] ], [ [ [ -78.014194999373018, 25.164101821807449 ], [ -78.014114859664843, 25.163829338913448 ], [ -78.014589532487761, 25.164623554435099 ], [ -78.014194999373018, 25.164101821807449 ] ] ], [ [ [ -77.811035198464111, 24.466915298758408 ], [ -77.81042231080913, 24.465956566702179 ], [ -77.8113428988338, 24.467451043767646 ], [ -77.80196519405672, 24.47141565490243 ], [ -77.800842376496973, 24.474143863721096 ], [ -77.799931333988454, 24.473077809094082 ], [ -77.794632812259778, 24.474258923373277 ], [ -77.79117406716459, 24.47838398899156 ], [ -77.782054806547791, 24.48071823638783 ], [ -77.769627187414272, 24.480599302096071 ], [ -77.766991112508833, 24.481807322197945 ], [ -77.763099443011697, 24.479712658604424 ], [ -77.760769174193314, 24.481379752891343 ], [ -77.754891031966082, 24.480097316416703 ], [ -77.754729280396774, 24.475727742163958 ], [ -77.749976071182161, 24.474808119173868 ], [ -77.752382953374251, 24.476659479066093 ], [ -77.746764434949853, 24.476761799693858 ], [ -77.738850511512936, 24.480154532183004 ], [ -77.726723582955344, 24.480269864374833 ], [ -77.719217555175376, 24.487030329435854 ], [ -77.715928648264878, 24.487308443748972 ], [ -77.71744872245354, 24.489205288775405 ], [ -77.71851645293421, 24.497579298959238 ], [ -77.717335128064605, 24.499428560048472 ], [ -77.717697098395988, 24.515886985636012 ], [ -77.720603330240337, 24.520868287248362 ], [ -77.723264216203475, 24.521353023805634 ], [ -77.723633092184727, 24.525676478745147 ], [ -77.726557769886696, 24.5312677988362 ], [ -77.73111984158237, 24.528509998384024 ], [ -77.729856044005317, 24.525481168917054 ], [ -77.733352444432029, 24.524105067654862 ], [ -77.735202853789005, 24.52548050008836 ], [ -77.741449835034857, 24.542650300204574 ], [ -77.748296864985434, 24.550807580214943 ], [ -77.74841827617135, 24.559124117066474 ], [ -77.745383899949687, 24.563508188193108 ], [ -77.7459419535802, 24.565170330685351 ], [ -77.744019691233561, 24.563967459724815 ], [ -77.741967927325831, 24.565930713266379 ], [ -77.737806977532841, 24.56363397212419 ], [ -77.73743154587055, 24.565254954884693 ], [ -77.737548320894348, 24.566597301930742 ], [ -77.743624974909523, 24.567506220420576 ], [ -77.746588449910689, 24.565843066037665 ], [ -77.748625086662159, 24.571833108722323 ], [ -77.748662339373595, 24.575042477289344 ], [ -77.744099237466642, 24.571757560885537 ], [ -77.742409232152738, 24.572488217949044 ], [ -77.744359308345537, 24.576539481629602 ], [ -77.748728378596482, 24.577159887068206 ], [ -77.750513108864794, 24.585413220207425 ], [ -77.749385580907926, 24.587404374645068 ], [ -77.748117110051069, 24.585850152381632 ], [ -77.745340227584677, 24.58910705362894 ], [ -77.7427745303428, 24.589702468441715 ], [ -77.741364166840057, 24.592349411866362 ], [ -77.742970243207481, 24.594149375408264 ], [ -77.744900749145401, 24.593972052410781 ], [ -77.745572500691864, 24.591661256887154 ], [ -77.748393068516819, 24.591262343209007 ], [ -77.755032809155352, 24.593537396546161 ], [ -77.758091253239797, 24.597478753612215 ], [ -77.759141717252717, 24.608345692596828 ], [ -77.758183390456196, 24.610431105969369 ], [ -77.751099877023421, 24.612197213693438 ], [ -77.751470050825603, 24.614079020491232 ], [ -77.747908132470371, 24.615375321567928 ], [ -77.749124286694865, 24.621257583493872 ], [ -77.746955712329935, 24.629432962985117 ], [ -77.743014812653598, 24.628715586307887 ], [ -77.741551138962379, 24.630096005221773 ], [ -77.741670983461461, 24.633359119792182 ], [ -77.743433159506807, 24.633294041495834 ], [ -77.744203595848347, 24.642681906203048 ], [ -77.741806578042159, 24.647041680653775 ], [ -77.738890668678394, 24.647994751578956 ], [ -77.744447062462143, 24.652371405761286 ], [ -77.746602855962408, 24.656536413124247 ], [ -77.751116326476478, 24.658637957271743 ], [ -77.751792584189872, 24.663528366215111 ], [ -77.747499652835188, 24.670865029214845 ], [ -77.747683516524845, 24.677944271561206 ], [ -77.748909902261687, 24.680229579637686 ], [ -77.752166013952618, 24.679750831937096 ], [ -77.750473025557042, 24.684103263032487 ], [ -77.755244832641992, 24.681244341269462 ], [ -77.753572197121841, 24.676440735288008 ], [ -77.75106456813532, 24.675336608706903 ], [ -77.749937294315046, 24.672503658209191 ], [ -77.751996467352285, 24.669889923909807 ], [ -77.755936396818257, 24.680888326603796 ], [ -77.758179399553484, 24.682662305505051 ], [ -77.757302552734032, 24.686143028701423 ], [ -77.753805868062003, 24.68732748563496 ], [ -77.755409319732792, 24.692962802848946 ], [ -77.764332652011433, 24.708192696726684 ], [ -77.745361877071034, 24.679695546219822 ], [ -77.736047979728554, 24.6740576567068 ], [ -77.729546256952815, 24.671919935742622 ], [ -77.728061726599591, 24.669259850315562 ], [ -77.729685929463386, 24.666973690533609 ], [ -77.729593037736493, 24.662122492241576 ], [ -77.723800933055671, 24.649675614349665 ], [ -77.72144631990119, 24.649114540089382 ], [ -77.720560334652433, 24.643896934796139 ], [ -77.724101776626412, 24.631681499345852 ], [ -77.72222369581587, 24.621542353101361 ], [ -77.723670965972516, 24.618311612794702 ], [ -77.71509683767691, 24.596706209658215 ], [ -77.720209855678931, 24.586621335931124 ], [ -77.7148375320795, 24.570963421808955 ], [ -77.717234339702742, 24.560606383880749 ], [ -77.71576034684675, 24.558699659829202 ], [ -77.719882816987365, 24.541336008609463 ], [ -77.715310504238943, 24.534556940558652 ], [ -77.711087429239328, 24.520561641698553 ], [ -77.691468736556644, 24.517539800686961 ], [ -77.69146988112864, 24.516400714110958 ], [ -77.710807421199675, 24.509231392206356 ], [ -77.711172328148379, 24.507734120662704 ], [ -77.701114097228825, 24.500109032412933 ], [ -77.701523740864189, 24.497618130421838 ], [ -77.713235820294813, 24.497124013229012 ], [ -77.71491765462595, 24.492444739285709 ], [ -77.713034067200553, 24.487127588450832 ], [ -77.716141654147492, 24.480292101982812 ], [ -77.716822245258868, 24.473766247713439 ], [ -77.728602061198828, 24.464802625676313 ], [ -77.730055333628869, 24.455473867942384 ], [ -77.735853589514747, 24.454667256915442 ], [ -77.72142325173013, 24.431824971031173 ], [ -77.709660679511742, 24.430556090431182 ], [ -77.6997663227895, 24.420519781374676 ], [ -77.700905516009271, 24.411176395396549 ], [ -77.694625273999037, 24.390812219510803 ], [ -77.694870386507844, 24.384261588017949 ], [ -77.680505646525447, 24.348824806576008 ], [ -77.682350184736336, 24.341089820312199 ], [ -77.685834745116722, 24.348291282805167 ], [ -77.689465382779488, 24.36862125332539 ], [ -77.695259354943573, 24.374795911951466 ], [ -77.695382761979332, 24.379245594211589 ], [ -77.703048790121386, 24.397405263384982 ], [ -77.704473926740405, 24.408799603631888 ], [ -77.706325711977001, 24.409864577520043 ], [ -77.71168269191574, 24.424326641166925 ], [ -77.715623767191474, 24.425604392357133 ], [ -77.736962286856766, 24.408511774535594 ], [ -77.742598771404261, 24.410093421133286 ], [ -77.746251942227175, 24.408525611250994 ], [ -77.746200798977185, 24.407363434261452 ], [ -77.742329353124362, 24.40724064000624 ], [ -77.741151098553559, 24.405634062045806 ], [ -77.742290391833436, 24.403955083217657 ], [ -77.738081361833906, 24.40363760767352 ], [ -77.740708661943373, 24.399139080924147 ], [ -77.743630237856138, 24.397217079914739 ], [ -77.743931827491906, 24.394947795095579 ], [ -77.749446840067222, 24.3927795608158 ], [ -77.750432814367855, 24.389783423765955 ], [ -77.75357566804702, 24.392583941044343 ], [ -77.751961327276561, 24.395990502662791 ], [ -77.752837614350355, 24.39704460007588 ], [ -77.758450682144669, 24.392942545923592 ], [ -77.765162948821413, 24.383017181741128 ], [ -77.765967327373943, 24.386853474302939 ], [ -77.768163362620399, 24.387780245683125 ], [ -77.773219563642868, 24.382854232858794 ], [ -77.77583597484869, 24.382794390561653 ], [ -77.775835374538147, 24.384034959303158 ], [ -77.780067282258855, 24.386258103048721 ], [ -77.778440900151978, 24.379477857206538 ], [ -77.781241900985776, 24.379282604776105 ], [ -77.783188540338429, 24.382952368983645 ], [ -77.789267825631939, 24.375265006757385 ], [ -77.783033322234459, 24.375103143894918 ], [ -77.780889385052049, 24.373253138547891 ], [ -77.77921572963416, 24.374914139161476 ], [ -77.77754002080458, 24.373980884053992 ], [ -77.761280185664589, 24.379071530233002 ], [ -77.750884692450541, 24.377337470194178 ], [ -77.750207494077131, 24.375437875769371 ], [ -77.74806549609967, 24.376153365000306 ], [ -77.748226864350841, 24.379529767931036 ], [ -77.744663024896525, 24.376615902489739 ], [ -77.736117896629565, 24.378406135180803 ], [ -77.735867733315885, 24.376702337188007 ], [ -77.748149925777099, 24.371955495579424 ], [ -77.757003082105982, 24.374215201718005 ], [ -77.757257267096691, 24.370138526222188 ], [ -77.760472492058184, 24.369830634513466 ], [ -77.764349366623009, 24.371437817506497 ], [ -77.761143766688221, 24.373279144042364 ], [ -77.765607673093584, 24.375254203626614 ], [ -77.772463577904489, 24.37362415501411 ], [ -77.777305591044865, 24.36929686738155 ], [ -77.775729535398156, 24.364007371577198 ], [ -77.77763338950335, 24.363295352187862 ], [ -77.780230813464684, 24.365408371856248 ], [ -77.784833988534089, 24.364750343932599 ], [ -77.785996206212573, 24.363052959225865 ], [ -77.786305703079634, 24.361766261624943 ], [ -77.782772305943197, 24.361316682967701 ], [ -77.78226760447329, 24.356473980728705 ], [ -77.780333613674884, 24.356164702477148 ], [ -77.780877474890289, 24.353457329191645 ], [ -77.787244780333594, 24.354729764575517 ], [ -77.786808724952934, 24.357457642241851 ], [ -77.790452195720647, 24.363052385691514 ], [ -77.79323499829411, 24.360030345618668 ], [ -77.796594476572366, 24.363753467869454 ], [ -77.797727861357231, 24.356693795381705 ], [ -77.790371845293251, 24.358240519371339 ], [ -77.793379208417818, 24.357509838745802 ], [ -77.800722914429187, 24.350893151715404 ], [ -77.810375613470782, 24.346945260589028 ], [ -77.817295878757903, 24.336898338174151 ], [ -77.811398457517114, 24.333703403323355 ], [ -77.811025465652207, 24.331571894936285 ], [ -77.808669144071303, 24.331317317893205 ], [ -77.804185011441888, 24.33342636649423 ], [ -77.802793862307212, 24.337757506523186 ], [ -77.80028239784302, 24.338785086349453 ], [ -77.798143623192232, 24.336926737159967 ], [ -77.796400744721055, 24.337790419084218 ], [ -77.796495786882844, 24.339935830911813 ], [ -77.79172589813821, 24.340026912136839 ], [ -77.790682195659173, 24.342043914280211 ], [ -77.78854258712316, 24.342205437661111 ], [ -77.789177455706891, 24.340387922526812 ], [ -77.787598108978315, 24.339052412751528 ], [ -77.803139736728482, 24.330000615675541 ], [ -77.807186419952743, 24.323798137473954 ], [ -77.806055462457977, 24.317653621911511 ], [ -77.803030164880894, 24.315713356705405 ], [ -77.794273357919266, 24.315071382420154 ], [ -77.790634636626507, 24.317024833048496 ], [ -77.788426424180301, 24.310650599071906 ], [ -77.784990355753877, 24.30684554157526 ], [ -77.782505473563575, 24.309349243488139 ], [ -77.787331965971831, 24.314489152250076 ], [ -77.786723342245836, 24.315472261505061 ], [ -77.782569716688727, 24.313639267912901 ], [ -77.779459790600498, 24.308249101991056 ], [ -77.775611352266154, 24.307571020459733 ], [ -77.756860825768129, 24.318831064384689 ], [ -77.754052445805996, 24.323718538897957 ], [ -77.742573888040098, 24.329444377844052 ], [ -77.737840804716228, 24.329908788185715 ], [ -77.735395594352852, 24.331866151641385 ], [ -77.728806627592888, 24.331208029832673 ], [ -77.713560751772874, 24.334153445044247 ], [ -77.704789381454404, 24.333476465678071 ], [ -77.704156152917278, 24.33445021239033 ], [ -77.715830384167191, 24.339793102998826 ], [ -77.721338542978231, 24.34069221180129 ], [ -77.729386161361489, 24.338433352849119 ], [ -77.730962021086512, 24.336102262090296 ], [ -77.737067480815568, 24.334232028953558 ], [ -77.738718753826205, 24.332055243552531 ], [ -77.741378432137211, 24.332542607631158 ], [ -77.750136786472652, 24.329286008326569 ], [ -77.746669786917138, 24.332671869347163 ], [ -77.752837266486708, 24.335512097891836 ], [ -77.749296046361025, 24.338237569263374 ], [ -77.749458090531277, 24.339707358803164 ], [ -77.746077289295485, 24.334862612531193 ], [ -77.720520695685238, 24.341853890411148 ], [ -77.714036864962594, 24.340546790480083 ], [ -77.708320466925613, 24.337447806226482 ], [ -77.706319446020885, 24.338880676692309 ], [ -77.723912400704606, 24.346135877249711 ], [ -77.741106922613582, 24.350082573925015 ], [ -77.749095004553411, 24.349195716314039 ], [ -77.760226340678287, 24.344103565132404 ], [ -77.769369972082927, 24.34410125632219 ], [ -77.762553352105229, 24.351577844061534 ], [ -77.760080450595595, 24.351532738615116 ], [ -77.763289698279863, 24.348925695895279 ], [ -77.764350495154517, 24.345387966235158 ], [ -77.754093472468341, 24.350188759994175 ], [ -77.750907646597085, 24.352268242360523 ], [ -77.750668090873077, 24.354323035828877 ], [ -77.748319576298158, 24.355068693585945 ], [ -77.747404182016339, 24.35204703163679 ], [ -77.739931192211557, 24.352932433693322 ], [ -77.722793749596093, 24.350739474112146 ], [ -77.720897874895229, 24.348324843325535 ], [ -77.716247964774723, 24.347891323590201 ], [ -77.715182337745105, 24.346419681292581 ], [ -77.717675867767142, 24.345142855180999 ], [ -77.707724154814557, 24.341729729911339 ], [ -77.699811928770032, 24.334002498865768 ], [ -77.687167583408751, 24.335520065897892 ], [ -77.682898281150855, 24.337128730567041 ], [ -77.68150439568376, 24.339499414960859 ], [ -77.679879882731186, 24.331783282100012 ], [ -77.686509556807096, 24.330487607570031 ], [ -77.688050484394694, 24.334644547584851 ], [ -77.698805856947132, 24.332385024489646 ], [ -77.701095551420025, 24.329746422825952 ], [ -77.704721922075535, 24.329417912872689 ], [ -77.707600022613349, 24.327203156170125 ], [ -77.717616646406569, 24.314658147183795 ], [ -77.697042310728875, 24.312628093578166 ], [ -77.696150467312307, 24.32243167891847 ], [ -77.692490678667596, 24.321356006053701 ], [ -77.689470012709165, 24.328244127591265 ], [ -77.686674480288318, 24.330219633808738 ], [ -77.684874461558806, 24.326547368034174 ], [ -77.681673881092692, 24.326438464661589 ], [ -77.67592808332374, 24.328601736630095 ], [ -77.671203063470472, 24.320735488405923 ], [ -77.67923888305161, 24.319787056205822 ], [ -77.683636367572831, 24.314972624586726 ], [ -77.693315661133425, 24.311180787196164 ], [ -77.682254677696747, 24.308719865077155 ], [ -77.674826438106066, 24.304468022179648 ], [ -77.670035728365207, 24.305139639870116 ], [ -77.663652676076538, 24.312993124433778 ], [ -77.660078853222373, 24.312074401027452 ], [ -77.65986004788239, 24.309628043341768 ], [ -77.65831051604367, 24.310778352115602 ], [ -77.662388409535794, 24.301601220286223 ], [ -77.656819759988906, 24.295994231450464 ], [ -77.653132823467374, 24.283728061171598 ], [ -77.654697095796564, 24.283730078190292 ], [ -77.657713766158707, 24.295008963300354 ], [ -77.664144056071919, 24.292234114495887 ], [ -77.666809805037161, 24.286988882333858 ], [ -77.661385608806526, 24.272768713014884 ], [ -77.646369090430497, 24.266733050480205 ], [ -77.644700074403247, 24.263132403361439 ], [ -77.645370417092963, 24.252122945044459 ], [ -77.636280859961701, 24.250709373025504 ], [ -77.627145883603262, 24.24624325532297 ], [ -77.62764242399318, 24.241427187845748 ], [ -77.623909878863543, 24.241157400148055 ], [ -77.623589046108719, 24.239062140229027 ], [ -77.632205399222485, 24.239093015521984 ], [ -77.633601941476257, 24.237172397525363 ], [ -77.639836393972715, 24.238266384347313 ], [ -77.649643645714718, 24.24348368481435 ], [ -77.658166649016849, 24.253050235411301 ], [ -77.660756417753845, 24.265019054904499 ], [ -77.666387670759732, 24.271843864097363 ], [ -77.667856493794048, 24.283509810325533 ], [ -77.670925326269554, 24.287084725232681 ], [ -77.670538282303738, 24.297478862034499 ], [ -77.673990254673271, 24.301252655673625 ], [ -77.685991370098023, 24.299697553725178 ], [ -77.692378659353281, 24.296323398363555 ], [ -77.69871225726142, 24.295323049649127 ], [ -77.704707720196595, 24.291231945291944 ], [ -77.711440364193791, 24.291163165517691 ], [ -77.720004553004117, 24.28772047798542 ], [ -77.724059155285033, 24.284438670705075 ], [ -77.723075364221401, 24.280917463758623 ], [ -77.726866198816822, 24.277568673281156 ], [ -77.737916680568915, 24.272238554695278 ], [ -77.7414429324851, 24.273180769098314 ], [ -77.748032886737263, 24.270199255952853 ], [ -77.761548414387619, 24.269112077693553 ], [ -77.761531599829794, 24.267661071472705 ], [ -77.757978593177128, 24.267854896930189 ], [ -77.758991683611697, 24.266747953340193 ], [ -77.762668604976909, 24.267070877736764 ], [ -77.762338249674784, 24.268805289899387 ], [ -77.76360217542242, 24.268522133257949 ], [ -77.778234821274737, 24.254079403434702 ], [ -77.779320258780118, 24.250099884851043 ], [ -77.782449815722416, 24.246654867825008 ], [ -77.781921937665842, 24.24218821346679 ], [ -77.785744879675292, 24.24130466601261 ], [ -77.791726272156225, 24.243362260929519 ], [ -77.794122007622917, 24.238720878013446 ], [ -77.795950710093138, 24.239809379481677 ], [ -77.800126550531729, 24.237511069737145 ], [ -77.806353531786186, 24.237114709970299 ], [ -77.813699868998711, 24.229887324256797 ], [ -77.815551183121784, 24.225838999742034 ], [ -77.817388467031364, 24.225839358465254 ], [ -77.819756803143335, 24.229037241572811 ], [ -77.821072425304976, 24.228384380640367 ], [ -77.824540211147976, 24.218616721588358 ], [ -77.822305796540149, 24.212053832484511 ], [ -77.823128895241211, 24.209101657028231 ], [ -77.828332614610389, 24.204511393477834 ], [ -77.841704971157824, 24.198815336490281 ], [ -77.846848741406575, 24.19337322975354 ], [ -77.846348903714173, 24.190438822092464 ], [ -77.843333166348728, 24.189048656387218 ], [ -77.838463076638334, 24.182127229072485 ], [ -77.840053207156302, 24.173672406136784 ], [ -77.846717401410999, 24.168409833325875 ], [ -77.844231626983856, 24.162510552957706 ], [ -77.852702814142035, 24.161817124738246 ], [ -77.853314139232296, 24.158524570076089 ], [ -77.859048256254468, 24.153898948584711 ], [ -77.863863004213343, 24.147492546954101 ], [ -77.86637661442947, 24.137757239449385 ], [ -77.888377722980479, 24.134060937062245 ], [ -77.908279752148687, 24.138993546885825 ], [ -77.90877864975883, 24.140636966604184 ], [ -77.904574703922066, 24.142947167008725 ], [ -77.906451935007098, 24.144833219318901 ], [ -77.913022227349998, 24.144375007163493 ], [ -77.916915093365049, 24.142530557793609 ], [ -77.917894190115263, 24.139294816053667 ], [ -77.916388948667134, 24.128503706321972 ], [ -77.911555930223798, 24.115525885169077 ], [ -77.905032102505984, 24.107550979668005 ], [ -77.893346351206901, 24.101692206347622 ], [ -77.894072621725371, 24.097831865137756 ], [ -77.892567959919788, 24.094470117932577 ], [ -77.889661230996964, 24.092575794762933 ], [ -77.886435979872587, 24.084844950374112 ], [ -77.889704144700261, 24.086673030509274 ], [ -77.900482975418782, 24.084553569064528 ], [ -77.91092891625938, 24.088689525091986 ], [ -77.920278769546428, 24.090126479752101 ], [ -77.925844304676843, 24.090069165684458 ], [ -77.93073070121271, 24.086992476507781 ], [ -77.930272843919667, 24.085766327583922 ], [ -77.925295302704029, 24.076359236833017 ], [ -77.910727407935994, 24.071176482519235 ], [ -77.901055475936388, 24.062938541260984 ], [ -77.895645901164258, 24.06084084108457 ], [ -77.879866051037141, 24.05789529389882 ], [ -77.873190154481435, 24.058551501035602 ], [ -77.872384621102043, 24.061818923353158 ], [ -77.862953953453285, 24.062814613734588 ], [ -77.861680761747735, 24.057699950323176 ], [ -77.857512895037289, 24.056382408825787 ], [ -77.855088390881463, 24.053753861749961 ], [ -77.858517848615094, 24.046246301163031 ], [ -77.86568726605482, 24.040617805620627 ], [ -77.86428245409526, 24.031780029505917 ], [ -77.858442349195855, 24.030156629118576 ], [ -77.845388250483182, 24.022733921088879 ], [ -77.84111049873961, 24.016013835772888 ], [ -77.837662875046945, 24.021548436916206 ], [ -77.82487234902068, 24.031570426415204 ], [ -77.826699944201692, 24.027560635406793 ], [ -77.837820184219069, 24.020270855209411 ], [ -77.837359372395156, 24.017172709355481 ], [ -77.834187911032473, 24.014888070680186 ], [ -77.830921721455638, 24.009029362562238 ], [ -77.824185218538446, 24.004999188313182 ], [ -77.823572622834959, 24.001725294633864 ], [ -77.82087692049727, 23.999227971245094 ], [ -77.818171172920543, 24.000471011234033 ], [ -77.805763454254944, 23.999447581111063 ], [ -77.802715938247317, 24.00151547795058 ], [ -77.80093028498267, 24.006387799049786 ], [ -77.797883895024, 24.007528062174959 ], [ -77.789443824467554, 24.017403155783921 ], [ -77.782021046623015, 24.023144416943467 ], [ -77.776976821792502, 24.024731483192085 ], [ -77.773419239881832, 24.03021554939799 ], [ -77.768850253704215, 24.032160761572797 ], [ -77.767731718810481, 24.035459663174066 ], [ -77.76885715165416, 24.036650298327771 ], [ -77.771694736230629, 24.0358096741524 ], [ -77.774124368325431, 24.039150074356957 ], [ -77.776221896369933, 24.03948617189501 ], [ -77.783091132786438, 24.033080414721269 ], [ -77.788677188332755, 24.021699442134533 ], [ -77.796863649846458, 24.015459548358297 ], [ -77.799137694516276, 24.017177348011618 ], [ -77.796196956521243, 24.020178927533276 ], [ -77.79468294722659, 24.019458566330279 ], [ -77.795615394133321, 24.023065178432848 ], [ -77.791659586182618, 24.024864495973731 ], [ -77.787989760942253, 24.03160630297694 ], [ -77.791055164867444, 24.033912370822652 ], [ -77.79343028315256, 24.033263287077911 ], [ -77.793945042260603, 24.035126671978333 ], [ -77.799808035175019, 24.03833964791222 ], [ -77.803456331224012, 24.038072701646943 ], [ -77.807397637273596, 24.040821625557538 ], [ -77.808922667994992, 24.039288658396778 ], [ -77.810758109596961, 24.039855677703645 ], [ -77.810285107224814, 24.041728004555743 ], [ -77.812134648179082, 24.042822642655356 ], [ -77.817756271019576, 24.043748056958705 ], [ -77.825858183160932, 24.042827008678763 ], [ -77.822448098033504, 24.040575070734267 ], [ -77.82293490027655, 24.037222377647478 ], [ -77.824586433825914, 24.035905859337401 ], [ -77.826562909753704, 24.036640993562528 ], [ -77.828298898738097, 24.039180999418182 ], [ -77.827789703634778, 24.041505282127119 ], [ -77.829469415552936, 24.041474230130007 ], [ -77.829984219570974, 24.039407047801305 ], [ -77.828550673958304, 24.037890304902554 ], [ -77.831036337552405, 24.036301093511817 ], [ -77.829967307707392, 24.038635738180513 ], [ -77.831646979139208, 24.038604665774866 ], [ -77.831429078370988, 24.041437979514356 ], [ -77.833657397534182, 24.040882314973793 ], [ -77.832783689563016, 24.039355248331027 ], [ -77.835274967135931, 24.038023072661165 ], [ -77.835370987404701, 24.042393810843791 ], [ -77.833170877176499, 24.044235016056057 ], [ -77.83402768781535, 24.044990769850884 ], [ -77.838164854602667, 24.042084805586413 ], [ -77.839434516667524, 24.03614550300237 ], [ -77.842966131401326, 24.031193024100283 ], [ -77.844634358460254, 24.030647617784659 ], [ -77.844114153004284, 24.032457725975394 ], [ -77.846930446106498, 24.033176981204253 ], [ -77.847524332536494, 24.034709164992435 ], [ -77.849192578618357, 24.034163706690791 ], [ -77.849243650096142, 24.03647760025256 ], [ -77.839474106128179, 24.037945213412474 ], [ -77.83951935598374, 24.040002024386855 ], [ -77.84370154952019, 24.039152742381034 ], [ -77.844015485407539, 24.040690142286643 ], [ -77.845952433871787, 24.039625305944416 ], [ -77.847369168021501, 24.040370566620155 ], [ -77.844055147135066, 24.042489844454241 ], [ -77.84107758046666, 24.047174869099983 ], [ -77.83632387173472, 24.047520284043724 ], [ -77.83607216763528, 24.048810984433988 ], [ -77.833558114499212, 24.04911477964658 ], [ -77.832774670395494, 24.051701359381823 ], [ -77.830540522185061, 24.051999925523152 ], [ -77.830580017071313, 24.053799646112264 ], [ -77.833071584139731, 24.052467480393886 ], [ -77.832265533159145, 24.054025650758941 ], [ -77.834516660104313, 24.054498361625861 ], [ -77.833883265526055, 24.051166411559166 ], [ -77.836106081150191, 24.050353593368012 ], [ -77.838105464116694, 24.052116954467731 ], [ -77.837288167352369, 24.053160943385244 ], [ -77.840362230469637, 24.052846683232939 ], [ -77.840161519509664, 24.056451290217922 ], [ -77.833755811363332, 24.058113355271544 ], [ -77.825833382686909, 24.0672622210325 ], [ -77.82414206119735, 24.066779057242126 ], [ -77.824925741855409, 24.064192501580344 ], [ -77.822982612833044, 24.065000012778988 ], [ -77.823525730248178, 24.064218360873017 ], [ -77.820983195592689, 24.063236455666498 ], [ -77.820171313755324, 24.064537475652592 ], [ -77.823022026339956, 24.066799742093146 ], [ -77.817404982090224, 24.066131728244979 ], [ -77.81378731370036, 24.067227185586887 ], [ -77.818776911885863, 24.064820396678055 ], [ -77.818966971809274, 24.060701552150345 ], [ -77.817376886026793, 24.064846200346359 ], [ -77.812084805425741, 24.06622967161962 ], [ -77.810550515398404, 24.072945338944336 ], [ -77.807783876186534, 24.074539443430819 ], [ -77.80891904048994, 24.075547426092459 ], [ -77.811704273162036, 24.074467379450155 ], [ -77.813160546931854, 24.077012677478535 ], [ -77.809010493266044, 24.079403894009772 ], [ -77.808786514168702, 24.081980108325624 ], [ -77.805465167577594, 24.083841590145319 ], [ -77.804182483263617, 24.089266552264437 ], [ -77.802507705623086, 24.089554491878548 ], [ -77.80357757844763, 24.087219970071811 ], [ -77.802126940450648, 24.084931684616993 ], [ -77.798810997885681, 24.087050145279672 ], [ -77.79711389501297, 24.086309586584346 ], [ -77.801253230274156, 24.083404438354162 ], [ -77.804432258095176, 24.075002581494111 ], [ -77.799484512203691, 24.075634776689519 ], [ -77.795417900223455, 24.072708397731674 ], [ -77.795260579795013, 24.078369936001526 ], [ -77.79114909694556, 24.082560475079358 ], [ -77.785592557688034, 24.084719567111669 ], [ -77.78471347410094, 24.082935098640498 ], [ -77.785564754485534, 24.083434009549748 ], [ -77.788265111077308, 24.078754931699734 ], [ -77.790483175915028, 24.07768559884116 ], [ -77.786249205362296, 24.076219561448418 ], [ -77.79293665300591, 24.074554238691448 ], [ -77.796142179573948, 24.071093216676218 ], [ -77.800744005751284, 24.072868117880702 ], [ -77.804860467877646, 24.068934480755495 ], [ -77.805863011403119, 24.063514659916631 ], [ -77.80753184609317, 24.062969607193658 ], [ -77.808965474992505, 24.064486540074608 ], [ -77.810606279256987, 24.062655917792071 ], [ -77.810578255500943, 24.061370381777536 ], [ -77.808635057141643, 24.062177717383666 ], [ -77.808898254769673, 24.06140125052934 ], [ -77.811927789043025, 24.059030682978168 ], [ -77.813372638678899, 24.061061786835786 ], [ -77.811435072594108, 24.062126262528569 ], [ -77.811474319723601, 24.063926010450917 ], [ -77.814554372754657, 24.063869346253711 ], [ -77.816167002931266, 24.060753141996855 ], [ -77.814968436720974, 24.057174276856369 ], [ -77.816575378394106, 24.053800971107215 ], [ -77.819078353875369, 24.052983230683594 ], [ -77.819968882950818, 24.055281696844791 ], [ -77.818305830373049, 24.056083977072436 ], [ -77.818642011526492, 24.05864987092226 ], [ -77.823076844423241, 24.056510401764132 ], [ -77.820400695439744, 24.062218367946009 ], [ -77.824012523019448, 24.060865665478623 ], [ -77.824236204650163, 24.058289454224468 ], [ -77.824835609850453, 24.060078839899464 ], [ -77.826229942118005, 24.0597958694085 ], [ -77.826269391310404, 24.061595594888331 ], [ -77.824326309992969, 24.062403118998866 ], [ -77.825480110994761, 24.06392505091608 ], [ -77.827887342780002, 24.058736398064486 ], [ -77.825607985887146, 24.056978074285521 ], [ -77.827522792748482, 24.054885023480296 ], [ -77.827729500206715, 24.051537502951248 ], [ -77.823507365907332, 24.050586662005415 ], [ -77.822152497679923, 24.052669333218947 ], [ -77.821284446705121, 24.051399304640615 ], [ -77.819330234896071, 24.051692544617573 ], [ -77.820354582790202, 24.04730110961108 ], [ -77.822594315490861, 24.047259802222786 ], [ -77.822818032024827, 24.044683586277699 ], [ -77.812996942870271, 24.043835633683369 ], [ -77.810158135389173, 24.042087325828184 ], [ -77.809177218293556, 24.039992055698519 ], [ -77.806993531180723, 24.042328732217673 ], [ -77.800988784194686, 24.04449239726495 ], [ -77.798930360428272, 24.049640731253785 ], [ -77.795060273124278, 24.04778636328852 ], [ -77.792827761107063, 24.04922240002227 ], [ -77.788141142045404, 24.048503039321051 ], [ -77.78650989268192, 24.049594085621415 ], [ -77.784088782755774, 24.046686602058223 ], [ -77.771545736534534, 24.043618762104003 ], [ -77.765974985400163, 24.044003544745035 ], [ -77.763909141103213, 24.046728861211971 ], [ -77.760982509632328, 24.047142359939382 ], [ -77.760652748552488, 24.049068982605856 ], [ -77.764279674391318, 24.052835304849708 ], [ -77.772407208765074, 24.049898443759925 ], [ -77.777342428028845, 24.051793297298843 ], [ -77.779888619482861, 24.05486149180253 ], [ -77.781391926819566, 24.054521104591561 ], [ -77.780336256821357, 24.05297342463837 ], [ -77.784634010434942, 24.053692163940678 ], [ -77.790270641747071, 24.05814265320446 ], [ -77.786483303991318, 24.058273414047918 ], [ -77.784455685846382, 24.055708332620156 ], [ -77.779135642472482, 24.055331412848528 ], [ -77.772501198356395, 24.052463082601165 ], [ -77.760045363162149, 24.053590242448706 ], [ -77.746739990871973, 24.046524584639847 ], [ -77.737516665559724, 24.046685929471966 ], [ -77.733043320098645, 24.041573345775461 ], [ -77.733840185182331, 24.03677136849868 ], [ -77.730293075515561, 24.037104129190372 ], [ -77.732415569011479, 24.039106996733516 ], [ -77.722418493558337, 24.038613027332669 ], [ -77.72364610096686, 24.042663709179251 ], [ -77.720695268799403, 24.045027463223398 ], [ -77.716851348673401, 24.044370473587854 ], [ -77.713372504995689, 24.050098920305054 ], [ -77.709198319311994, 24.064937418992596 ], [ -77.712161870239981, 24.071373395067333 ], [ -77.710128722454655, 24.079199423416227 ], [ -77.706800753767553, 24.083579760709924 ], [ -77.706962117391072, 24.091263756554451 ], [ -77.704654269468534, 24.093861009969448 ], [ -77.703814843055227, 24.106628949870839 ], [ -77.70141121176475, 24.110496277476461 ], [ -77.699433803583602, 24.110513003817051 ], [ -77.700030579098652, 24.112278276497435 ], [ -77.69502969974603, 24.11861560888423 ], [ -77.698165309696037, 24.121102059795064 ], [ -77.703695935950279, 24.119679473384611 ], [ -77.711808576140655, 24.121372458771525 ], [ -77.711036587817574, 24.123099052578134 ], [ -77.708184672615502, 24.123063746338751 ], [ -77.70829528373153, 24.124348429037411 ], [ -77.711143410896483, 24.124954141517662 ], [ -77.712969061193149, 24.124821751689435 ], [ -77.714902270583295, 24.119530022670077 ], [ -77.717518119302738, 24.117143939862423 ], [ -77.722814597544442, 24.115119081911356 ], [ -77.735558409418886, 24.117474039682421 ], [ -77.740315805120261, 24.116649950634709 ], [ -77.743195977209893, 24.118660095643765 ], [ -77.745377422342486, 24.117867574199277 ], [ -77.747857812225476, 24.119047691727484 ], [ -77.747055104559934, 24.120977788263662 ], [ -77.743788218542761, 24.120898525486208 ], [ -77.74639783438603, 24.12447771002617 ], [ -77.748839672335023, 24.124953050407424 ], [ -77.749615402840732, 24.122300800649814 ], [ -77.751314508327852, 24.123395507537598 ], [ -77.750209628484768, 24.125878127751218 ], [ -77.756530592234569, 24.126245048482232 ], [ -77.761119796488757, 24.130601225485293 ], [ -77.756730513203493, 24.131039651500394 ], [ -77.754792008852661, 24.129247069931793 ], [ -77.753794342332796, 24.131145021550513 ], [ -77.751460303124787, 24.12981669495657 ], [ -77.750015015851986, 24.130820003895916 ], [ -77.76668604425204, 24.138550523763385 ], [ -77.768825434684047, 24.141989177102555 ], [ -77.773095209779484, 24.144062286153464 ], [ -77.779645422789059, 24.142991994114109 ], [ -77.783299483155204, 24.144765611151655 ], [ -77.791096156236932, 24.145409732949176 ], [ -77.797363212144319, 24.144085280199491 ], [ -77.804163109272039, 24.138891591164665 ], [ -77.813013995165321, 24.138715417281098 ], [ -77.813711412799165, 24.141761918977483 ], [ -77.819672167553293, 24.146390658005416 ], [ -77.814228188091576, 24.145398977611183 ], [ -77.808129751344055, 24.141868744159662 ], [ -77.798357895108097, 24.147082796875335 ], [ -77.783425632299966, 24.147687878000404 ], [ -77.765168167364735, 24.14243732203656 ], [ -77.75666669971892, 24.136244089322233 ], [ -77.752500943592082, 24.135244217002544 ], [ -77.745756175744944, 24.138741729635633 ], [ -77.747212684761379, 24.144394488351654 ], [ -77.740328694678908, 24.139038949149988 ], [ -77.7354346257343, 24.14230526686584 ], [ -77.731385678619688, 24.14130801258592 ], [ -77.728228983092251, 24.142148483817728 ], [ -77.723931553063622, 24.151054810342526 ], [ -77.723060158137045, 24.15746730225262 ], [ -77.719680153653314, 24.160302643278804 ], [ -77.718126330464315, 24.165073921957511 ], [ -77.720903141530826, 24.165125387168608 ], [ -77.722960064560723, 24.163439254366743 ], [ -77.720369422475798, 24.163487887352154 ], [ -77.719532864746839, 24.162103277396469 ], [ -77.725277799821214, 24.160900994894316 ], [ -77.737614864330723, 24.166313739034656 ], [ -77.743632958836187, 24.165526246173556 ], [ -77.73897124922722, 24.16687451059704 ], [ -77.738646700557709, 24.168242845767065 ], [ -77.737516105165923, 24.166898801115295 ], [ -77.732644185694156, 24.166993097780651 ], [ -77.728142380927622, 24.163709898556689 ], [ -77.725374909728899, 24.16545322394218 ], [ -77.726628967102954, 24.169832984510929 ], [ -77.724340621266037, 24.169404310742628 ], [ -77.723065557202347, 24.166366527530236 ], [ -77.719238819963877, 24.167205341781568 ], [ -77.721425207612157, 24.170635145168358 ], [ -77.718923488928823, 24.172928096178559 ], [ -77.717970456381735, 24.171163483779317 ], [ -77.716908222682449, 24.172964037622041 ], [ -77.714023608843632, 24.171401458623588 ], [ -77.701373053982522, 24.173230687452634 ], [ -77.699947057798525, 24.176185150099354 ], [ -77.69176470794055, 24.181064017449501 ], [ -77.693220671242941, 24.185267621559024 ], [ -77.686514532456115, 24.188504564518816 ], [ -77.683465691985432, 24.191890491290781 ], [ -77.68356655233859, 24.194353081825557 ], [ -77.687222698893621, 24.193808169821327 ], [ -77.688090397767752, 24.196983834631215 ], [ -77.681161298363278, 24.195945195127685 ], [ -77.679714059426644, 24.201155366670225 ], [ -77.672509044798261, 24.204856933857329 ], [ -77.671381571916299, 24.207055793897229 ], [ -77.662394825900947, 24.210750364470627 ], [ -77.651516803023441, 24.210611294139472 ], [ -77.632510667364457, 24.213979397025632 ], [ -77.634357837598117, 24.217534872786839 ], [ -77.633947193564708, 24.220606913197862 ], [ -77.627807964168682, 24.230129459468884 ], [ -77.621175839560891, 24.235793886333457 ], [ -77.621549459005152, 24.237265635519833 ], [ -77.617231435699992, 24.234977832146054 ], [ -77.6165228396559, 24.230885608405444 ], [ -77.624431572708872, 24.219673422789686 ], [ -77.625730391995504, 24.21885597172243 ], [ -77.62661394432854, 24.220031879741232 ], [ -77.630519587908907, 24.218049989539036 ], [ -77.632832718245197, 24.215416522948594 ], [ -77.630273981161238, 24.216272276179495 ], [ -77.631354405064442, 24.215053913468392 ], [ -77.629023760095251, 24.199660521583446 ], [ -77.621641039380179, 24.200870097803652 ], [ -77.617631001428194, 24.208426842218557 ], [ -77.60547852199997, 24.213623477306157 ], [ -77.607528477941102, 24.21939916410679 ], [ -77.607204217063625, 24.220968806806244 ], [ -77.605081881244431, 24.221932172328763 ], [ -77.606623577001187, 24.219641280044442 ], [ -77.604410684463659, 24.22095502968844 ], [ -77.602630735728127, 24.217322361424912 ], [ -77.599573940225753, 24.218281673904475 ], [ -77.597918435612272, 24.211191278276576 ], [ -77.598990642170392, 24.212119528186516 ], [ -77.604305054857917, 24.209193237669165 ], [ -77.604624413270329, 24.207133433265572 ], [ -77.601060164134822, 24.206668156752947 ], [ -77.600449537859191, 24.204772586417239 ], [ -77.604772170703981, 24.206148290988949 ], [ -77.609016759710812, 24.204375079918481 ], [ -77.606423965965519, 24.208101643419692 ], [ -77.608923889599481, 24.209234731177414 ], [ -77.611208821144714, 24.205852404692866 ], [ -77.614280770186582, 24.206055387793 ], [ -77.614891478846971, 24.202875218233892 ], [ -77.622468177024359, 24.196520066699193 ], [ -77.625317809636769, 24.188351521135115 ], [ -77.623944631689795, 24.18427182069146 ], [ -77.625032872736668, 24.179947164322176 ], [ -77.631464923425085, 24.164996942739872 ], [ -77.633774177960419, 24.166495668983345 ], [ -77.631447666908016, 24.170184206915529 ], [ -77.633583997039295, 24.173725241178772 ], [ -77.629764975831563, 24.189070731459765 ], [ -77.629745045607834, 24.198263010706583 ], [ -77.637925057082072, 24.195689629333742 ], [ -77.639276199456589, 24.19338741890445 ], [ -77.643201818803021, 24.184111867749351 ], [ -77.641135712889223, 24.174030853336152 ], [ -77.642209637065619, 24.169958887960121 ], [ -77.634028836580697, 24.1665357234955 ], [ -77.63518260014871, 24.165949964232581 ], [ -77.635186879661404, 24.157715698668728 ], [ -77.633200027608495, 24.156896988007148 ], [ -77.632776771098278, 24.154393048571531 ], [ -77.634846708791599, 24.156804815639198 ], [ -77.637431310096773, 24.148120843165998 ], [ -77.646809912020757, 24.133489633530818 ], [ -77.654763275668799, 24.124411324565671 ], [ -77.660721778459887, 24.119000084335543 ], [ -77.662251043606119, 24.120045918684959 ], [ -77.676931780652211, 24.112908966090373 ], [ -77.678536896067371, 24.104859366857792 ], [ -77.677416483998016, 24.101599142153074 ], [ -77.686369310088068, 24.089773114576197 ], [ -77.684621478982919, 24.078638439424921 ], [ -77.689533712042575, 24.069837608387346 ], [ -77.688152709737125, 24.06837479922272 ], [ -77.6897716975745, 24.068318033092762 ], [ -77.690917786366811, 24.065845375944889 ], [ -77.695084291335476, 24.065079217489519 ], [ -77.699537252962273, 24.059292140231872 ], [ -77.701622392230917, 24.047333229768881 ], [ -77.704193423312276, 24.044425482079181 ], [ -77.703570527739117, 24.041526831126241 ], [ -77.696788229773745, 24.036532904161515 ], [ -77.697526227867698, 24.035772649253278 ], [ -77.700755299304774, 24.038342703195305 ], [ -77.704699646698955, 24.039056250209519 ], [ -77.707557398086323, 24.042299567459004 ], [ -77.710848381042425, 24.036943435267585 ], [ -77.710707375463585, 24.033210243497994 ], [ -77.712383639425582, 24.030721995930016 ], [ -77.715445691179553, 24.028622442371184 ], [ -77.720875828165632, 24.028029714525296 ], [ -77.734321198258115, 24.029488481922581 ], [ -77.737693061118691, 24.032068913115403 ], [ -77.741260260869964, 24.029849573734467 ], [ -77.743407746588872, 24.030107507984393 ], [ -77.742616235906112, 24.032900934578041 ], [ -77.745400488504501, 24.035259286581983 ], [ -77.75419521385119, 24.034015336327059 ], [ -77.75568838210161, 24.031797286941842 ], [ -77.766669847359381, 24.028225854032172 ], [ -77.76751993417723, 24.026230327215817 ], [ -77.766339160551496, 24.025629248768947 ], [ -77.768333423031251, 24.022320078864986 ], [ -77.767384629022544, 24.01939091725108 ], [ -77.769186552796924, 24.019347763932004 ], [ -77.769492851558624, 24.02177901831077 ], [ -77.772710660645998, 24.020857750397433 ], [ -77.77105774134786, 24.022627748193951 ], [ -77.771933117533123, 24.025510878382786 ], [ -77.775419002482408, 24.02326344694541 ], [ -77.781513221284044, 24.022113465803429 ], [ -77.785565262055087, 24.018394159381529 ], [ -77.789888833818537, 24.012576775458875 ], [ -77.791842842802524, 24.006567972068044 ], [ -77.793290980791866, 24.007238281205709 ], [ -77.794129855976735, 24.006166680626077 ], [ -77.796385567967903, 23.998017788313767 ], [ -77.795637781594252, 23.996836320078113 ], [ -77.789810469879654, 23.99772226380507 ], [ -77.788410204926279, 23.996576694727679 ], [ -77.796560638132462, 23.992817435562465 ], [ -77.800393079596944, 23.992467445330199 ], [ -77.799915325612091, 23.988716860738542 ], [ -77.796416986029399, 23.990665414335162 ], [ -77.793264159019543, 23.989347733072243 ], [ -77.793645379236352, 23.990715961613951 ], [ -77.790316425703622, 23.989310471887968 ], [ -77.791589384308352, 23.988327230905977 ], [ -77.796669683605558, 23.98948816364047 ], [ -77.79933738139745, 23.986019905990982 ], [ -77.798961801403948, 23.988452949645541 ], [ -77.808661957940132, 23.986054769545007 ], [ -77.809993794418133, 23.986618393402352 ], [ -77.80890401619061, 23.990715741758919 ], [ -77.813334313922596, 23.990899939097314 ], [ -77.813976282775528, 23.9938661248556 ], [ -77.816563932748309, 23.992741144670834 ], [ -77.815545567437681, 23.99539093051304 ], [ -77.819046285511462, 23.997475892709666 ], [ -77.822205942057536, 23.995691184304949 ], [ -77.824835380895891, 23.98906918455933 ], [ -77.823384189116936, 23.99044437388941 ], [ -77.818884286487446, 23.989184308404678 ], [ -77.827311335425335, 23.988043923055624 ], [ -77.833887946801084, 23.990023386691032 ], [ -77.836303582451762, 23.987319631547091 ], [ -77.840333782967164, 23.986188988051602 ], [ -77.835946746969341, 23.979756464139413 ], [ -77.82831994822493, 23.978575088999683 ], [ -77.8235149147757, 23.976038674181126 ], [ -77.819785365035543, 23.96847453168467 ], [ -77.813551439881067, 23.966263064802693 ], [ -77.811683194197656, 23.966666962410105 ], [ -77.810564116110001, 23.971448864910087 ], [ -77.807148410087464, 23.975580616899627 ], [ -77.809364430508609, 23.971431716191358 ], [ -77.807806941803477, 23.963551633504871 ], [ -77.818096942572012, 23.953264833075099 ], [ -77.819487566273665, 23.949205813095169 ], [ -77.817514152668522, 23.947856319048274 ], [ -77.822348985454383, 23.942719493893563 ], [ -77.812808889929968, 23.937044407128756 ], [ -77.807119057834441, 23.937147233374088 ], [ -77.803928158809583, 23.935592654988454 ], [ -77.801305024472683, 23.935296829249051 ], [ -77.796741341114938, 23.939721276402594 ], [ -77.79688643743863, 23.941502663944213 ], [ -77.799045504723367, 23.942749382282681 ], [ -77.799851429298215, 23.941191394342763 ], [ -77.805166523045131, 23.941094351557037 ], [ -77.806872794464937, 23.942349228663662 ], [ -77.808528976510942, 23.941290078100245 ], [ -77.806089212572417, 23.944935692834388 ], [ -77.808103147837826, 23.947470990888753 ], [ -77.802843405319791, 23.950139284299489 ], [ -77.80308424369538, 23.948334386609893 ], [ -77.801103717969497, 23.947341693528237 ], [ -77.803000851766058, 23.944477700090097 ], [ -77.798799060596195, 23.944297163450095 ], [ -77.794976799213345, 23.948739479078515 ], [ -77.794226209004833, 23.952868592711788 ], [ -77.791988054790409, 23.952909334589851 ], [ -77.788971452521977, 23.955793570162498 ], [ -77.780381588079663, 23.959830296427491 ], [ -77.777397154789583, 23.964234492591206 ], [ -77.775959593808864, 23.962459992132818 ], [ -77.77728690512437, 23.959092137304101 ], [ -77.780913085543716, 23.958512013981746 ], [ -77.781165274009354, 23.957221358572614 ], [ -77.779744300733753, 23.956218240891232 ], [ -77.772161418943043, 23.956729986403591 ], [ -77.762344314889447, 23.966112813677082 ], [ -77.76328565743998, 23.968803430057296 ], [ -77.7615242018597, 23.969105914812683 ], [ -77.761220315191537, 23.966945325697463 ], [ -77.761218121271739, 23.968569910769791 ], [ -77.753028576084688, 23.971424725006536 ], [ -77.750429401795699, 23.973908195869427 ], [ -77.7527225223443, 23.970888701419653 ], [ -77.757624404648041, 23.968963992415315 ], [ -77.759959221450529, 23.964801961451194 ], [ -77.762003610696254, 23.963952888996772 ], [ -77.761345323059615, 23.960715648412098 ], [ -77.764718384027233, 23.960348036714777 ], [ -77.766301675692958, 23.958261740529558 ], [ -77.763591789941714, 23.955530802219752 ], [ -77.764134619492438, 23.953354963658764 ], [ -77.76534728095811, 23.954957657372145 ], [ -77.770902362807391, 23.952962140510742 ], [ -77.77239840647951, 23.954036192650602 ], [ -77.785866268196671, 23.954563901799258 ], [ -77.787215371634744, 23.952224454000586 ], [ -77.785794416731164, 23.951221393417065 ], [ -77.786583967144196, 23.948892109611769 ], [ -77.78408819502306, 23.949966274907233 ], [ -77.782074651282329, 23.947430622109479 ], [ -77.78205809707292, 23.946659269182621 ], [ -77.783473451952332, 23.947405257983171 ], [ -77.784839109822499, 23.945837181179208 ], [ -77.782886334697665, 23.946129819337468 ], [ -77.782578984363326, 23.944849307802908 ], [ -77.779529242159995, 23.946190655989497 ], [ -77.782529320911948, 23.942535251285232 ], [ -77.780554530924505, 23.941799386582808 ], [ -77.779468605963473, 23.943362361064164 ], [ -77.774723816526986, 23.943962646697457 ], [ -77.772754535924648, 23.943483798522486 ], [ -77.775228290291921, 23.941381343344059 ], [ -77.771597047760963, 23.941704172147617 ], [ -77.773785547523744, 23.939349672838244 ], [ -77.776330770392562, 23.940589750434317 ], [ -77.776363801926351, 23.942132462628816 ], [ -77.778881549157333, 23.942086901163162 ], [ -77.780806708601403, 23.94050872964965 ], [ -77.779687724653471, 23.940528997070732 ], [ -77.780225167634171, 23.93949039431994 ], [ -77.783872863925225, 23.939938718968367 ], [ -77.782166819162882, 23.93868356432176 ], [ -77.782660102628341, 23.935588013893462 ], [ -77.781524621079953, 23.934836938751793 ], [ -77.784563044890533, 23.932981339816987 ], [ -77.782314185510913, 23.932507674646153 ], [ -77.782286612562544, 23.931222085694447 ], [ -77.786460388768688, 23.930117529687482 ], [ -77.786230366823403, 23.932436658566601 ], [ -77.788988938683218, 23.93058605835439 ], [ -77.791534098160469, 23.931825887304171 ], [ -77.790728112150688, 23.93338383711281 ], [ -77.794929560606022, 23.93356462672779 ], [ -77.791589430720606, 23.934397044464252 ], [ -77.7927637103341, 23.93694784670215 ], [ -77.786257980352318, 23.933722240682105 ], [ -77.787722941940473, 23.936782249118931 ], [ -77.786324260848303, 23.936807641378536 ], [ -77.785825543621584, 23.93964607685945 ], [ -77.787257415426836, 23.94116338438582 ], [ -77.78081222255193, 23.940765849321146 ], [ -77.784202293405031, 23.942247697171407 ], [ -77.784246464270112, 23.944304631684229 ], [ -77.785941556128961, 23.945045523832601 ], [ -77.788146409752017, 23.943462186518389 ], [ -77.790960511027095, 23.944182687997053 ], [ -77.793159742990312, 23.942342170785071 ], [ -77.793489346720676, 23.944651114827039 ], [ -77.791558769035561, 23.945972319092888 ], [ -77.789863639169297, 23.945231495539197 ], [ -77.789057566338798, 23.946789443749775 ], [ -77.789924507312861, 23.948059764700709 ], [ -77.792151505323147, 23.947504831363673 ], [ -77.790265150280391, 23.950882948087457 ], [ -77.78773066610978, 23.950157363053361 ], [ -77.788918865817834, 23.953350182532596 ], [ -77.795657104229917, 23.944868858869263 ], [ -77.794321018623847, 23.939198258692425 ], [ -77.802467149224782, 23.93273181156243 ], [ -77.802634136058572, 23.927508242534593 ], [ -77.798701518241913, 23.92680832129852 ], [ -77.793594736418228, 23.923557497423943 ], [ -77.795322814871668, 23.925840996414045 ], [ -77.794522446092941, 23.927656074274601 ], [ -77.799305318223517, 23.928855037019307 ], [ -77.796217356005442, 23.92839686896275 ], [ -77.794309183169702, 23.930746546364105 ], [ -77.793431266960454, 23.928962008640532 ], [ -77.789487572279711, 23.927747616962428 ], [ -77.777207512317986, 23.929256290054859 ], [ -77.772035631457072, 23.936037436370288 ], [ -77.769227269105428, 23.935573680926414 ], [ -77.768711702640658, 23.937640735019805 ], [ -77.773165576684022, 23.936531466651971 ], [ -77.773500304049179, 23.939097608422365 ], [ -77.771256853298212, 23.938880906903155 ], [ -77.771569569058229, 23.940418573013524 ], [ -77.76932609534407, 23.940201845081415 ], [ -77.767132007605539, 23.942299168981659 ], [ -77.757378893881963, 23.944275232686536 ], [ -77.753813021877093, 23.947683131541808 ], [ -77.749934453561011, 23.949553232453557 ], [ -77.754070938380153, 23.9466496169876 ], [ -77.75537686339031, 23.942253417032198 ], [ -77.760900787054979, 23.938810290530597 ], [ -77.760292041518738, 23.936506252362935 ], [ -77.767208764544094, 23.932780660835622 ], [ -77.761882890518308, 23.932362113256101 ], [ -77.760978027896641, 23.929291739919528 ], [ -77.764290912092903, 23.92717437541172 ], [ -77.771311363897141, 23.928333937041497 ], [ -77.773527149064677, 23.927265057927912 ], [ -77.774305834137508, 23.924421585390508 ], [ -77.768936426007997, 23.921946287711048 ], [ -77.753123845232849, 23.928403870527706 ], [ -77.751681590610644, 23.92637194409598 ], [ -77.755219708028321, 23.921678517128576 ], [ -77.745170578755648, 23.920391829942787 ], [ -77.743415425378771, 23.920964711461316 ], [ -77.742340633431695, 23.925857614997856 ], [ -77.740025075327253, 23.927794279567735 ], [ -77.736803244120608, 23.928664019312315 ], [ -77.742023311584205, 23.9247802342638 ], [ -77.742803679562002, 23.919892589845595 ], [ -77.749285849410953, 23.918955397843217 ], [ -77.750646243441608, 23.917130485219019 ], [ -77.75084422397218, 23.913268601052444 ], [ -77.744153284986751, 23.914417150573289 ], [ -77.749611111711545, 23.907888993797005 ], [ -77.747292067379874, 23.904072123058842 ], [ -77.748093016944935, 23.902257241563749 ], [ -77.750319494419074, 23.901702966139815 ], [ -77.750281391674534, 23.899903086470459 ], [ -77.747441235567663, 23.897896093732285 ], [ -77.741842562420814, 23.897738839849229 ], [ -77.747655653601797, 23.894805579814175 ], [ -77.744810225111095, 23.89254139659198 ], [ -77.753310530727134, 23.884415485828111 ], [ -77.752707719888321, 23.882368492888691 ], [ -77.748771191445883, 23.881410009439065 ], [ -77.748689671228917, 23.877553111302131 ], [ -77.756611589798837, 23.881784120271302 ], [ -77.759304177060798, 23.876848607846203 ], [ -77.760219415914079, 23.880433296770214 ], [ -77.763021085748292, 23.880640209356631 ], [ -77.763549540749082, 23.879181349856143 ], [ -77.760713158169665, 23.877337770771064 ], [ -77.757493132156867, 23.87067874464444 ], [ -77.753800994728181, 23.867944421600654 ], [ -77.758668604709783, 23.873258895624001 ], [ -77.759013655180837, 23.876339375243841 ], [ -77.757018214288408, 23.874574596218181 ], [ -77.757544728046113, 23.873021821799288 ], [ -77.755313325105362, 23.873319030768396 ], [ -77.753307096784283, 23.871039940558862 ], [ -77.751075711020803, 23.871337085822383 ], [ -77.75285671667001, 23.876192468752937 ], [ -77.748833445883776, 23.871119941716625 ], [ -77.745516180932924, 23.872979751071242 ], [ -77.745193166124821, 23.870927719660514 ], [ -77.74766072975666, 23.868568650049429 ], [ -77.744943466908083, 23.864611643877911 ], [ -77.7414174524381, 23.864307194648205 ], [ -77.742521503077072, 23.860686368168658 ], [ -77.739029217866644, 23.857147406615404 ], [ -77.739770062915738, 23.856069019759598 ], [ -77.73866440952176, 23.854581637962074 ], [ -77.732813326657123, 23.853399500790001 ], [ -77.720019852000348, 23.861175192131466 ], [ -77.718254113325486, 23.866775959824533 ], [ -77.717135704965202, 23.866795714342519 ], [ -77.717487301859151, 23.865246132256587 ], [ -77.712146447837057, 23.865094063221076 ], [ -77.709051273735767, 23.863361093374817 ], [ -77.705107407856815, 23.86675042688902 ], [ -77.702660913502328, 23.862657716709535 ], [ -77.699282344916995, 23.863264109765215 ], [ -77.693368853682301, 23.86052555106815 ], [ -77.681203007784774, 23.860480754054105 ], [ -77.681719821744352, 23.858413877385907 ], [ -77.676734739151712, 23.860815770008013 ], [ -77.681429637057064, 23.857904463531877 ], [ -77.681107682404189, 23.855852199259736 ], [ -77.688956416260666, 23.85670011393119 ], [ -77.693940952105123, 23.854291606899672 ], [ -77.702915694715941, 23.860100942593689 ], [ -77.709700069531863, 23.858952717013931 ], [ -77.709774445509524, 23.862525483531886 ], [ -77.711618850607849, 23.862527628398755 ], [ -77.711140844688046, 23.860985181076796 ], [ -77.721168233805827, 23.858997719067236 ], [ -77.730523265538409, 23.851639551059769 ], [ -77.734442585965581, 23.851827206336978 ], [ -77.743431990006854, 23.853725061235426 ], [ -77.748008180035441, 23.858530695644145 ], [ -77.749436848838442, 23.858505179106189 ], [ -77.749615041971282, 23.855158081642426 ], [ -77.752142033131818, 23.855627365333191 ], [ -77.751626370220094, 23.857694376792814 ], [ -77.753643216408676, 23.860487763698899 ], [ -77.755035673337517, 23.860205618384171 ], [ -77.753045990158029, 23.858697882900461 ], [ -77.753862962289645, 23.857654372979503 ], [ -77.756702255156426, 23.859661327831319 ], [ -77.759196647175187, 23.858587733365091 ], [ -77.757573669263593, 23.861189054385001 ], [ -77.760144417510787, 23.863715191643411 ], [ -77.761811015314265, 23.863170843746197 ], [ -77.762435676570519, 23.866246295987285 ], [ -77.768049342940259, 23.867174292240918 ], [ -77.767813507923663, 23.869236305418088 ], [ -77.775439343200844, 23.872700002148282 ], [ -77.769556758367912, 23.872291583884806 ], [ -77.771530400556927, 23.873027701559501 ], [ -77.771848354874635, 23.874822514563721 ], [ -77.768175165945806, 23.873088116435422 ], [ -77.769633401588223, 23.875891296985689 ], [ -77.771886710850751, 23.876622367262339 ], [ -77.774090686490737, 23.875039313289903 ], [ -77.784159068750853, 23.874979224509229 ], [ -77.788849072801696, 23.871943039328421 ], [ -77.786031083554334, 23.870965228426805 ], [ -77.78132743803711, 23.873365313557812 ], [ -77.787373968878782, 23.868368716933276 ], [ -77.784583580846785, 23.868676467473144 ], [ -77.783985891767358, 23.866886751400656 ], [ -77.787028294888316, 23.865288358370897 ], [ -77.784753120744341, 23.863529020369224 ], [ -77.785536829145073, 23.860942647160424 ], [ -77.78891373865153, 23.861910355846874 ], [ -77.789253928188941, 23.864733592313286 ], [ -77.792882950997637, 23.864410546250834 ], [ -77.790662858118338, 23.865222480653976 ], [ -77.791830828436474, 23.867516252553667 ], [ -77.790120234662425, 23.866003974721821 ], [ -77.787620509048722, 23.866820941358554 ], [ -77.790449442000522, 23.868312966152246 ], [ -77.790230509285962, 23.871146335904918 ], [ -77.793832094947277, 23.869537664064712 ], [ -77.795027781925782, 23.873116623026181 ], [ -77.796282090668058, 23.866406547828937 ], [ -77.80238141631952, 23.864495061077054 ], [ -77.796857836516878, 23.867167733199107 ], [ -77.796907578690536, 23.869481781717617 ], [ -77.797713171899289, 23.867923831873213 ], [ -77.802213120718633, 23.86707028840879 ], [ -77.802027995083478, 23.869903037860475 ], [ -77.798870230265607, 23.869703304080694 ], [ -77.798421667926362, 23.874855798972522 ], [ -77.796307778811183, 23.874379807267857 ], [ -77.796484504393348, 23.875823450441043 ], [ -77.801923863316276, 23.877929541175806 ], [ -77.806220577612748, 23.87554028485151 ], [ -77.806073220923395, 23.87127517343302 ], [ -77.807300573952929, 23.870265748064003 ], [ -77.810045254423272, 23.871012559896581 ], [ -77.81238074192926, 23.867812073327627 ], [ -77.806334220985903, 23.86493335789509 ], [ -77.805973328230081, 23.860542839918647 ], [ -77.803915583489967, 23.861264370963696 ], [ -77.802537550273684, 23.857630063254621 ], [ -77.803600740850584, 23.855049111960074 ], [ -77.801495089287215, 23.854128971952168 ], [ -77.798066681782345, 23.85717810016849 ], [ -77.793606383634668, 23.856943157364334 ], [ -77.793689602659896, 23.855020181187658 ], [ -77.792266835962835, 23.85456477306488 ], [ -77.787781718320375, 23.857382460103551 ], [ -77.786937468944814, 23.8562129258762 ], [ -77.79233229888716, 23.853260572959602 ], [ -77.798777390588356, 23.854692160252391 ], [ -77.800061122129293, 23.850746835073888 ], [ -77.800191965892594, 23.847426387305362 ], [ -77.797184688983776, 23.848481053525255 ], [ -77.791054418268885, 23.847814158705386 ], [ -77.788518453811434, 23.844885492828222 ], [ -77.796150679527869, 23.84608551397795 ], [ -77.79960585215548, 23.844873600787654 ], [ -77.804707262406282, 23.84657978826246 ], [ -77.803726751130768, 23.840838565740572 ], [ -77.796475790458743, 23.837802263841667 ], [ -77.792747906552634, 23.83999683089371 ], [ -77.79113269723598, 23.837769107537412 ], [ -77.788364477265915, 23.839457810132441 ], [ -77.786542890524544, 23.838335835124365 ], [ -77.77876513777953, 23.840437523647747 ], [ -77.777426069602114, 23.838808309772297 ], [ -77.759132519283469, 23.842682180701321 ], [ -77.753579801215793, 23.841001266208313 ], [ -77.740771493492275, 23.841148067051002 ], [ -77.732229378652022, 23.844968952569722 ], [ -77.731568015636228, 23.847654495907101 ], [ -77.724583293147475, 23.84919026936846 ], [ -77.723088841978111, 23.851825219341467 ], [ -77.712104333869505, 23.853909758972932 ], [ -77.706638765390537, 23.851762069842344 ], [ -77.699178825723394, 23.854007653842686 ], [ -77.695554757223292, 23.853064232329913 ], [ -77.694610339096585, 23.851418593936931 ], [ -77.702460498367998, 23.848722684174536 ], [ -77.702881890736435, 23.847119490257395 ], [ -77.690888572149163, 23.843013887157813 ], [ -77.690634414969153, 23.850117357551103 ], [ -77.675506961011919, 23.848783865026267 ], [ -77.663337961946908, 23.852826708527012 ], [ -77.660915522007897, 23.854736267574296 ], [ -77.660185754593257, 23.858530349861923 ], [ -77.657416022159126, 23.859864383326929 ], [ -77.657663850662757, 23.861547942454735 ], [ -77.654449598172249, 23.862745192942452 ], [ -77.654803460384613, 23.865658960892493 ], [ -77.653359402316426, 23.8670377518199 ], [ -77.651965456573734, 23.866903831150612 ], [ -77.651931863574319, 23.86922857678357 ], [ -77.649010511707985, 23.870362011284367 ], [ -77.648193599702211, 23.873625401726674 ], [ -77.645390555255517, 23.873705220084723 ], [ -77.642961283008688, 23.876964719248885 ], [ -77.644078194279714, 23.873966968796509 ], [ -77.653305872100887, 23.864051105105652 ], [ -77.652963363066064, 23.860970155941008 ], [ -77.649623812065968, 23.861799403311949 ], [ -77.650990423386403, 23.860232437605237 ], [ -77.652367478411179, 23.859179759869306 ], [ -77.655184458504209, 23.860160136845749 ], [ -77.657611991918358, 23.8557626867441 ], [ -77.665834752310744, 23.850353388131811 ], [ -77.668367525726964, 23.846139733507169 ], [ -77.671310066976702, 23.845612209468854 ], [ -77.676953232606849, 23.84826133624259 ], [ -77.68326040596709, 23.847608408001989 ], [ -77.686312533591831, 23.840610296728315 ], [ -77.692430495432063, 23.837833813140431 ], [ -77.693409219324266, 23.836174089683382 ], [ -77.692304829127579, 23.833323325116726 ], [ -77.68562113722831, 23.828828406847236 ], [ -77.671997550248122, 23.825560571333241 ], [ -77.666615552948443, 23.82242248818897 ], [ -77.667499767960848, 23.821519229086867 ], [ -77.664364056323265, 23.81888343504523 ], [ -77.661247993317602, 23.819803553361794 ], [ -77.655040725507988, 23.818537435426471 ], [ -77.650634059417939, 23.813306407174451 ], [ -77.650704664629771, 23.80493095868124 ], [ -77.649602386053473, 23.805721627799141 ], [ -77.647008777434849, 23.801907575687576 ], [ -77.642252419654824, 23.80173191691825 ], [ -77.643976176199956, 23.804017534795211 ], [ -77.642283652110379, 23.803274828552706 ], [ -77.637304908829705, 23.805932488597136 ], [ -77.633749383104913, 23.80985190303495 ], [ -77.627108697598246, 23.813309378230944 ], [ -77.624323961671479, 23.813871305916603 ], [ -77.621761863619355, 23.811599713982645 ], [ -77.612004872320014, 23.813051586686836 ], [ -77.612880882405051, 23.816010850705915 ], [ -77.611725647446889, 23.817113568337643 ], [ -77.614629973982872, 23.815168836177126 ], [ -77.61552350590631, 23.815695242544912 ], [ -77.619577450441369, 23.814209294170833 ], [ -77.620146802115897, 23.814714103441393 ], [ -77.612036501405967, 23.817938703505188 ], [ -77.610619155616988, 23.820652510946882 ], [ -77.609893254372679, 23.819310885366917 ], [ -77.609142543100901, 23.820406735283484 ], [ -77.60515060584703, 23.819855980354067 ], [ -77.602468235484281, 23.825560717574707 ], [ -77.604491791703097, 23.82887071888711 ], [ -77.599195782155135, 23.829731900114176 ], [ -77.596074646845437, 23.827469307415523 ], [ -77.595202150031099, 23.829848873230112 ], [ -77.590568361698132, 23.831822372604766 ], [ -77.59087427184744, 23.834254308361409 ], [ -77.585284528687254, 23.833310209992071 ], [ -77.582757943391044, 23.840618732591579 ], [ -77.584250871970099, 23.84167683739809 ], [ -77.579846036279122, 23.841118852878466 ], [ -77.578224544241209, 23.843975747084254 ], [ -77.577045167379168, 23.840908499505744 ], [ -77.575101006074021, 23.840476167403633 ], [ -77.571072530988019, 23.835863331277693 ], [ -77.572160265916281, 23.834297157549461 ], [ -77.571265855458407, 23.83148685328829 ], [ -77.566337291216868, 23.82897847732886 ], [ -77.566140176103744, 23.826815437227168 ], [ -77.565624046107445, 23.829008408529244 ], [ -77.567890877720998, 23.83051414578453 ], [ -77.569369768513482, 23.834605492835678 ], [ -77.565740464391098, 23.834923239897101 ], [ -77.563158609780942, 23.831621961001176 ], [ -77.562075745412656, 23.833440734424546 ], [ -77.560383196453955, 23.832697120586229 ], [ -77.564204617044709, 23.827930825865121 ], [ -77.565401438115757, 23.817693066529337 ], [ -77.561157974486008, 23.815191126206663 ], [ -77.556660608936497, 23.815870562130272 ], [ -77.553336279271505, 23.812405366380752 ], [ -77.548968002578903, 23.813831630628698 ], [ -77.549530029433924, 23.812468369114359 ], [ -77.546571825207408, 23.811704888662067 ], [ -77.547128586932686, 23.810070927855893 ], [ -77.543560883992228, 23.80823427721295 ], [ -77.537379540998444, 23.794812089662319 ], [ -77.53467092781689, 23.793427590679006 ], [ -77.530913977002754, 23.795517613778664 ], [ -77.526878281701386, 23.80959011519252 ], [ -77.523610102468979, 23.81356729765691 ], [ -77.524634404838324, 23.815610589023613 ], [ -77.521363563651533, 23.82066514998138 ], [ -77.520324112308316, 23.826405650648109 ], [ -77.5213283564444, 23.827303953051103 ], [ -77.5187046340194, 23.828948642780468 ], [ -77.519681998527588, 23.833668699056087 ], [ -77.515398800060566, 23.840372443434383 ], [ -77.513751494706725, 23.847133310361905 ], [ -77.511724169641283, 23.848285550088956 ], [ -77.511523756664431, 23.853167935310282 ], [ -77.514064672504972, 23.861464311610678 ], [ -77.513801981293113, 23.879734683813918 ], [ -77.508680642113944, 23.888954785122188 ], [ -77.507324261729408, 23.895216080027453 ], [ -77.504174208963406, 23.899334668570141 ], [ -77.508689822679258, 23.904390043929908 ], [ -77.510669049404271, 23.91179192334647 ], [ -77.5132584878709, 23.912168215304042 ], [ -77.517116083215043, 23.916892642203923 ], [ -77.521196853536836, 23.946348113096345 ], [ -77.524345336311299, 23.945014305726396 ], [ -77.527961331780503, 23.938324725292048 ], [ -77.524176135445074, 23.931764713691958 ], [ -77.526142843310694, 23.926858094965858 ], [ -77.529072002297468, 23.925997510660903 ], [ -77.529035076372253, 23.924102567839981 ], [ -77.534030859327899, 23.923478646391171 ], [ -77.534898466913106, 23.922651954182832 ], [ -77.533120975111984, 23.922139691955621 ], [ -77.549794930510174, 23.91617722872088 ], [ -77.568919201762085, 23.915046285614739 ], [ -77.568597964892334, 23.91369771814562 ], [ -77.57008633432855, 23.914485191574197 ], [ -77.571799484933905, 23.91174865285371 ], [ -77.575884251747013, 23.909784723690581 ], [ -77.577790148959878, 23.906751545695766 ], [ -77.576071033974571, 23.904722392048583 ], [ -77.578303651103525, 23.904427707128537 ], [ -77.5788886050983, 23.905704129424027 ], [ -77.58026164974585, 23.904394847690345 ], [ -77.579107055268494, 23.902613497076775 ], [ -77.581283425707653, 23.899490000386674 ], [ -77.582707498774369, 23.900752312133587 ], [ -77.58465520412399, 23.900205081084668 ], [ -77.582199196240538, 23.903333321280918 ], [ -77.58388769160635, 23.903819436669547 ], [ -77.588219635639362, 23.896543659206138 ], [ -77.590731762106898, 23.896244098567685 ], [ -77.590203128735112, 23.897796481692833 ], [ -77.591606744442132, 23.898030069935217 ], [ -77.594062420497096, 23.894901707847087 ], [ -77.597659174531401, 23.893983492878256 ], [ -77.597632124436814, 23.892630029595225 ], [ -77.60438288571288, 23.893328173677904 ], [ -77.608421848172227, 23.887302484706765 ], [ -77.609326750305669, 23.888370262402933 ], [ -77.606715209526953, 23.890310036280404 ], [ -77.606480519550757, 23.893292625931963 ], [ -77.600357587476609, 23.896374928500027 ], [ -77.603639510478729, 23.898485643786582 ], [ -77.603661206386008, 23.899568408430493 ], [ -77.602183688470305, 23.899322644895562 ], [ -77.60396647517959, 23.900104803288539 ], [ -77.602510638505123, 23.90094180872882 ], [ -77.603172173253085, 23.902722288441769 ], [ -77.600690860691259, 23.904565001314015 ], [ -77.598717458345433, 23.90382664961064 ], [ -77.597859407566119, 23.903999112876438 ], [ -77.600852034566898, 23.906362982852631 ], [ -77.604358193059966, 23.90605538878803 ], [ -77.605460288278337, 23.901162620716761 ], [ -77.610776196011912, 23.901884764726653 ], [ -77.611414011510476, 23.904310965577192 ], [ -77.609919788352585, 23.904336347342699 ], [ -77.608807645888561, 23.906521486258519 ], [ -77.612182521099896, 23.913233695709394 ], [ -77.610972314164272, 23.914937625604701 ], [ -77.611964307579825, 23.917028344693161 ], [ -77.610729506354531, 23.916778552145853 ], [ -77.609381797637241, 23.919337771113941 ], [ -77.610273764502054, 23.920848018960751 ], [ -77.609811488390562, 23.926790499629423 ], [ -77.606030702523796, 23.929585084780587 ], [ -77.60397644686924, 23.929976461796173 ], [ -77.604623478273908, 23.932858342686206 ], [ -77.607301126404323, 23.934166807513755 ], [ -77.605561329983146, 23.935550249269873 ], [ -77.605059316602279, 23.939891275583545 ], [ -77.594267261393782, 23.945318194384743 ], [ -77.592856533199551, 23.946596661023172 ], [ -77.594032971904298, 23.949438056784263 ], [ -77.590038592918859, 23.945646851455276 ], [ -77.598896282126617, 23.941078863079607 ], [ -77.599143107782311, 23.939061866961517 ], [ -77.594712855489121, 23.941452003217201 ], [ -77.593858051601686, 23.940694717614527 ], [ -77.598540841060171, 23.938043089190941 ], [ -77.599086423007407, 23.936233149162334 ], [ -77.597342392146246, 23.937043419382437 ], [ -77.598182532192865, 23.934862941905124 ], [ -77.600527680170629, 23.93428167551021 ], [ -77.599024595036283, 23.933147271767979 ], [ -77.597931256337702, 23.934451993441247 ], [ -77.597325370112571, 23.932147049353222 ], [ -77.595071778336859, 23.931413417166073 ], [ -77.597785045007683, 23.929724791372532 ], [ -77.596242191481736, 23.926230699985748 ], [ -77.594124507172666, 23.926027291534435 ], [ -77.593321206812433, 23.927841569690365 ], [ -77.591642636575571, 23.927869905011498 ], [ -77.592751677353036, 23.928455935507436 ], [ -77.58983921872391, 23.930129783186292 ], [ -77.58832743104108, 23.928183058794041 ], [ -77.587212585495976, 23.930259806741255 ], [ -77.584394414487846, 23.929278276158009 ], [ -77.580259278607286, 23.932434765333142 ], [ -77.581032097731551, 23.92907757670476 ], [ -77.583560236077773, 23.92954955753272 ], [ -77.584928332132279, 23.927983063225778 ], [ -77.580742101953021, 23.928567958388832 ], [ -77.5784784238665, 23.927319747891389 ], [ -77.574327878629219, 23.929704599230707 ], [ -77.576769203126162, 23.925804955265942 ], [ -77.572862742917891, 23.926384938816362 ], [ -77.573346498036997, 23.922554228281367 ], [ -77.566161858484008, 23.924569939189606 ], [ -77.567607504199245, 23.923191841905744 ], [ -77.566708001304448, 23.922394512272977 ], [ -77.562296143561653, 23.922738958063288 ], [ -77.562409924744401, 23.921414709646324 ], [ -77.56019205853606, 23.920607732916032 ], [ -77.560534594485418, 23.923039121146154 ], [ -77.559661823915661, 23.923595244940241 ], [ -77.559897205351334, 23.921713854164896 ], [ -77.556658329273432, 23.920666586408824 ], [ -77.554634274886979, 23.922595786112204 ], [ -77.553440367431321, 23.921803268659136 ], [ -77.549354840431846, 23.923766658792207 ], [ -77.549981043926508, 23.925651794394998 ], [ -77.548471380208042, 23.923781319300787 ], [ -77.543491617589765, 23.925217815266215 ], [ -77.540031895355227, 23.929066147814293 ], [ -77.535614374813932, 23.929139146883063 ], [ -77.534244756615919, 23.926512504891893 ], [ -77.532942717407664, 23.928100064780534 ], [ -77.533205511330522, 23.9264709764531 ], [ -77.525601263011978, 23.929304142076525 ], [ -77.526279877043137, 23.933896464627725 ], [ -77.529593439665575, 23.937633010103582 ], [ -77.525421086485977, 23.944996610969149 ], [ -77.521217538879128, 23.947411843708455 ], [ -77.525279697517377, 23.963359943980016 ], [ -77.524352154075274, 23.967255422477589 ], [ -77.527021238856335, 23.971524420192992 ], [ -77.529080862409515, 23.971761262755933 ], [ -77.529565859678073, 23.981501756220204 ], [ -77.527362185567512, 23.989391050544 ], [ -77.535091770880996, 23.9927836842697 ], [ -77.538036013642213, 23.992621753246631 ], [ -77.539752967576035, 23.989998620594758 ], [ -77.541640706789735, 23.989696541347598 ], [ -77.541483582547826, 23.988074410126568 ], [ -77.551156936018032, 23.985399908947343 ], [ -77.557469053906985, 23.976706265340546 ], [ -77.567311945214271, 23.971126066931152 ], [ -77.570821956137152, 23.966463912948633 ], [ -77.574757924677058, 23.965454661556354 ], [ -77.575017322959624, 23.9644213220026 ], [ -77.572778566034529, 23.964458885561459 ], [ -77.570026031289871, 23.96682024499599 ], [ -77.569451026665831, 23.966058138532937 ], [ -77.571035944749198, 23.962398537894128 ], [ -77.572219595891625, 23.962649482303931 ], [ -77.573531255572945, 23.960073072782748 ], [ -77.570681880357043, 23.957548374458487 ], [ -77.572787789202039, 23.950824665211176 ], [ -77.57275206182797, 23.949024536541341 ], [ -77.570798478351065, 23.949314519079817 ], [ -77.570793378537559, 23.949057357746735 ], [ -77.574685204813491, 23.947705885235766 ], [ -77.57362212858915, 23.950553429466698 ], [ -77.57558083010332, 23.950520570259194 ], [ -77.575722695298012, 23.943572534226842 ], [ -77.578403085228018, 23.937610870993829 ], [ -77.579537572225988, 23.938363554148296 ], [ -77.576847003216812, 23.943810910691219 ], [ -77.577811715284653, 23.950099500851451 ], [ -77.578409266421971, 23.947923180559982 ], [ -77.580235740359825, 23.95087112093417 ], [ -77.584053973881851, 23.950265308798109 ], [ -77.582013769050434, 23.951382786118664 ], [ -77.583812945009015, 23.952954646324809 ], [ -77.585837404661049, 23.951047622324907 ], [ -77.584648448594422, 23.95052608249194 ], [ -77.585783407746561, 23.948340690159132 ], [ -77.587845143395555, 23.948305940574148 ], [ -77.588771989149009, 23.950456580214709 ], [ -77.586137345443703, 23.951313352255259 ], [ -77.587615451392409, 23.951559220427846 ], [ -77.587042668127935, 23.952385743299558 ], [ -77.591449887295255, 23.951765301612792 ], [ -77.589359685162535, 23.953696068973859 ], [ -77.590893272342228, 23.953399400223752 ], [ -77.59184186744119, 23.95663277947753 ], [ -77.593314623240246, 23.956607894992288 ], [ -77.595057083093124, 23.955337347770616 ], [ -77.593292955437562, 23.955525129457978 ], [ -77.593549584041185, 23.953625311466574 ], [ -77.595889669624597, 23.952773395223407 ], [ -77.59532226794073, 23.953866123286819 ], [ -77.595822589108096, 23.954940791017929 ], [ -77.598191740082669, 23.950026612274815 ], [ -77.597090247172432, 23.948357378901978 ], [ -77.602634702299255, 23.945691028514627 ], [ -77.605206154508537, 23.947199886018769 ], [ -77.603498791426972, 23.950207455512931 ], [ -77.606100617463952, 23.947726263508869 ], [ -77.607611369560487, 23.949596070931999 ], [ -77.613210003447335, 23.949627206092686 ], [ -77.614063754768083, 23.94813240279019 ], [ -77.616173890046284, 23.950862914870331 ], [ -77.612367508511895, 23.951681428741665 ], [ -77.611800255974643, 23.952774205515201 ], [ -77.615901926257166, 23.951621221454563 ], [ -77.618645386456194, 23.948505598340784 ], [ -77.62587473727686, 23.949411035380763 ], [ -77.630855589808036, 23.948039539752052 ], [ -77.643606919750496, 23.937273706022982 ], [ -77.642689782014656, 23.935998794575585 ], [ -77.649135429122012, 23.934263061795335 ], [ -77.656297255642414, 23.92830865116257 ], [ -77.657608977555626, 23.930867339077992 ], [ -77.669604509976025, 23.926868449328516 ], [ -77.671382445280742, 23.927379077791954 ], [ -77.670526900532934, 23.928747819461908 ], [ -77.67348274475053, 23.929237932640955 ], [ -77.679305055805898, 23.925887205070278 ], [ -77.687872416399131, 23.927091351681188 ], [ -77.692561323594816, 23.92592613714093 ], [ -77.694067327790791, 23.927524339705215 ], [ -77.705873920361412, 23.928670599748187 ], [ -77.70978104647908, 23.932392434691284 ], [ -77.712742703771127, 23.933152436423764 ], [ -77.711015484857469, 23.935078305971359 ], [ -77.705585596096313, 23.930029515435411 ], [ -77.698534895966361, 23.929882814409094 ], [ -77.691111487308575, 23.927034626527409 ], [ -77.692045409411705, 23.929455180829013 ], [ -77.678749659377175, 23.92752152058457 ], [ -77.67672749155426, 23.929452180119775 ], [ -77.669115804633677, 23.931750849961265 ], [ -77.662920667203281, 23.93131686496022 ], [ -77.660025842941423, 23.933804003694238 ], [ -77.650823118132806, 23.934319678685586 ], [ -77.65153005388818, 23.936117152490052 ], [ -77.649168597535677, 23.935887141712854 ], [ -77.645089880011412, 23.938123671595108 ], [ -77.644261578951941, 23.940845700023505 ], [ -77.644239502132152, 23.939762976512565 ], [ -77.642830486604979, 23.940373921021465 ], [ -77.642811128111418, 23.941953782146062 ], [ -77.640482637165704, 23.943347735005407 ], [ -77.641393736837401, 23.944685940870166 ], [ -77.62769420970902, 23.951961312218643 ], [ -77.627721649114832, 23.953314732512062 ], [ -77.622687148698049, 23.952046967542969 ], [ -77.611014806722253, 23.957661618884302 ], [ -77.600149022395343, 23.959470833063321 ], [ -77.599592497244331, 23.961104955198152 ], [ -77.595190359460574, 23.961991832518855 ], [ -77.588791101948217, 23.966161702165085 ], [ -77.589112730184382, 23.967510189933073 ], [ -77.585888594926033, 23.968376929507592 ], [ -77.583318371821676, 23.972481999209784 ], [ -77.581834629749906, 23.971965416668606 ], [ -77.577780438870903, 23.975553814266036 ], [ -77.581920992608218, 23.97629650784442 ], [ -77.581021008086779, 23.975499306161062 ], [ -77.58248319244619, 23.974933121105394 ], [ -77.583388582087153, 23.976001006632231 ], [ -77.58170887378256, 23.977112431303528 ], [ -77.586457554040322, 23.976576587594501 ], [ -77.588145421135025, 23.97808705994623 ], [ -77.576339769550117, 23.97720273393146 ], [ -77.576388254749617, 23.979638981968051 ], [ -77.571375130625668, 23.978369208495177 ], [ -77.572240393832544, 23.979645440048174 ], [ -77.569644509091205, 23.98137686290735 ], [ -77.575682206117236, 23.988586738583763 ], [ -77.578939292620049, 23.989344326943577 ], [ -77.579266298799482, 23.990963528764002 ], [ -77.582507249804294, 23.990908956404677 ], [ -77.581371932158504, 23.993094350259973 ], [ -77.582861328569436, 23.99388160775008 ], [ -77.584628975782721, 23.993842782381233 ], [ -77.585091661214946, 23.992291514652738 ], [ -77.585402399137706, 23.993829737136576 ], [ -77.586380744641346, 23.993009906547289 ], [ -77.592043890325343, 23.996163618701623 ], [ -77.612139440756252, 23.998800973702775 ], [ -77.615413348661633, 24.000369800277721 ], [ -77.62334677821579, 23.999151069740886 ], [ -77.618960050175119, 24.000850776517588 ], [ -77.619276626879085, 24.001928476733983 ], [ -77.603616572820627, 24.000029144937741 ], [ -77.602765319266808, 24.001668288717998 ], [ -77.59891308576394, 24.000650554865455 ], [ -77.598356420274143, 24.002284681232094 ], [ -77.596888587215432, 24.002580347632396 ], [ -77.597299876023428, 24.00067790853166 ], [ -77.592114415945389, 23.999682590940964 ], [ -77.585261711091093, 23.996007399726555 ], [ -77.581425950443702, 23.995801276110651 ], [ -77.573839235404591, 23.989651191611063 ], [ -77.570210757016412, 23.990226568325959 ], [ -77.569457378874418, 23.986795710530842 ], [ -77.567105745229696, 23.987105895300918 ], [ -77.561438176797267, 23.983680474696008 ], [ -77.558802650271957, 23.984536846413249 ], [ -77.560591807382593, 23.985590120840104 ], [ -77.558234809227827, 23.985629471631764 ], [ -77.561191770923344, 23.986121671886373 ], [ -77.560950717943655, 23.988833565916842 ], [ -77.556847262512903, 23.989985216427048 ], [ -77.556295430605559, 23.991889931230116 ], [ -77.552695657512785, 23.988700473363146 ], [ -77.550333252771424, 23.988469008202518 ], [ -77.544493804270758, 23.991273940269206 ], [ -77.544520424546334, 23.992627442827349 ], [ -77.535686060432838, 23.993028847788036 ], [ -77.536586234548224, 23.99384211822904 ], [ -77.534528995060811, 23.994146942953094 ], [ -77.529967478082213, 23.99210083107301 ], [ -77.525638433179168, 23.994075171689914 ], [ -77.523472356002159, 23.998046851611814 ], [ -77.526274018711504, 24.003361246590345 ], [ -77.526281515891696, 24.00730293149768 ], [ -77.522138894143637, 24.008856839250534 ], [ -77.525768392930232, 24.009454185105476 ], [ -77.527889983607679, 24.012933915617992 ], [ -77.532401759050785, 24.033178667038953 ], [ -77.540619146925721, 24.05884906643448 ], [ -77.540612056465392, 24.061661249032799 ], [ -77.540981917536755, 24.062893216382907 ], [ -77.540978752935942, 24.064172104603976 ], [ -77.536346340337516, 24.046676064381781 ], [ -77.533256567440731, 24.045362198843311 ], [ -77.534624024294899, 24.040925484318468 ], [ -77.533080514859677, 24.036376712777262 ], [ -77.529175107792625, 24.033052720605468 ], [ -77.524406780319026, 24.021960519803084 ], [ -77.521967508914656, 24.011662512026877 ], [ -77.519586887334071, 24.008885347088572 ], [ -77.518360334421828, 23.999998990098913 ], [ -77.511213326820751, 23.989053943781528 ], [ -77.509925975978291, 23.968418248722433 ], [ -77.505139175048384, 23.954110765841193 ], [ -77.501536547102447, 23.945560915753049 ], [ -77.492607472681883, 23.935772869697413 ], [ -77.492088584917525, 23.929542097287406 ], [ -77.496026837583656, 23.920144350430551 ], [ -77.491685747312388, 23.906747884226696 ], [ -77.485115075015088, 23.906400206412073 ], [ -77.479072753846893, 23.902604238896927 ], [ -77.480288682480108, 23.898162429991821 ], [ -77.485139847401882, 23.894430665548605 ], [ -77.491247571730938, 23.893901292316844 ], [ -77.495730327032049, 23.889799140565426 ], [ -77.492139426894525, 23.871364477891497 ], [ -77.492613920943498, 23.865682162934618 ], [ -77.497897042079188, 23.85331665297084 ], [ -77.494354749968991, 23.849897853001345 ], [ -77.488413553336528, 23.832421277258454 ], [ -77.485015688330421, 23.834535965218677 ], [ -77.490731392790835, 23.805203189733337 ], [ -77.489225983405305, 23.803235096908335 ], [ -77.492446808079194, 23.80260258946862 ], [ -77.496746736115639, 23.795884910824334 ], [ -77.510352734886837, 23.785310994107139 ], [ -77.514137592319898, 23.786652545389639 ], [ -77.524123166214267, 23.781528391429685 ], [ -77.526805464115697, 23.768708609883333 ], [ -77.530365087955559, 23.761978477418246 ], [ -77.52443980089221, 23.743984601549439 ], [ -77.521363055221485, 23.745092129713516 ], [ -77.528216930277367, 23.731452883089094 ], [ -77.557255743516095, 23.718620358494903 ], [ -77.556208989162656, 23.707044783066298 ], [ -77.55718454824428, 23.705105323026988 ], [ -77.572507423628764, 23.708881388942917 ], [ -77.574193944745446, 23.707686061251806 ], [ -77.593645880270998, 23.691043057965935 ], [ -77.598082073525703, 23.682762173268813 ], [ -77.607147964755811, 23.680973361752621 ], [ -77.612133446550118, 23.668984683878662 ], [ -77.619807080420514, 23.67182841283147 ], [ -77.626378546293395, 23.668651433501619 ], [ -77.634786052893418, 23.652964905394541 ], [ -77.653054165224177, 23.64209896103451 ], [ -77.646844781183219, 23.629231834546186 ], [ -77.646406514743461, 23.622429778453323 ], [ -77.629274506773584, 23.618300547304624 ], [ -77.628053122838324, 23.615635852852002 ], [ -77.645436723026677, 23.608935119739773 ], [ -77.646778752279587, 23.609507215840708 ], [ -77.64809210030603, 23.619356797428992 ], [ -77.677902537894482, 23.618394863653236 ], [ -77.679640780008, 23.620981141260724 ], [ -77.680350730638551, 23.62025199445555 ], [ -77.683473487023747, 23.615993777691397 ], [ -77.686753212717676, 23.600459510490211 ], [ -77.664082447991532, 23.575692174370239 ], [ -77.666958416405691, 23.573783034663403 ], [ -77.667835980862307, 23.577108847740895 ], [ -77.688945849934981, 23.59915622393051 ], [ -77.708372510958355, 23.597786330566837 ], [ -77.695080381029754, 23.563898358995942 ], [ -77.698425670314847, 23.564440287837442 ], [ -77.711005411515487, 23.595246529108103 ], [ -77.712654156159616, 23.59524892374268 ], [ -77.731031769397347, 23.573873269856154 ], [ -77.740290205463879, 23.57269215214458 ], [ -77.751421641672408, 23.574376993986711 ], [ -77.783814680319466, 23.553355659371682 ], [ -77.795007876254985, 23.578633190400993 ], [ -77.821395042882841, 23.593674353391574 ], [ -77.821406860672511, 23.577807538399433 ], [ -77.818325610248962, 23.570403601456754 ], [ -77.802227088195323, 23.548359914296615 ], [ -77.827889126121605, 23.54513784879618 ], [ -77.846923389674203, 23.554877892166772 ], [ -77.852061702053788, 23.582245892193146 ], [ -77.861852303954223, 23.599925563617862 ], [ -77.872453817228291, 23.601593190794436 ], [ -77.880815592212741, 23.607893818702102 ], [ -77.868854598717661, 23.631364542885844 ], [ -77.869117374086983, 23.631596849566069 ], [ -77.902855426735911, 23.621664518756727 ], [ -77.907436801044142, 23.611411779839948 ], [ -77.916422262068309, 23.607184331807993 ], [ -77.992695868669827, 23.627629237050442 ], [ -77.993192640313794, 23.636694355586592 ], [ -77.906358481743965, 23.631308915106054 ], [ -77.898966050696771, 23.645154051185294 ], [ -77.895974765949632, 23.642399955286727 ], [ -77.875456188138429, 23.654689704736143 ], [ -77.892598132879385, 23.687679001549931 ], [ -77.904542692577536, 23.686630056939265 ], [ -77.907530239984879, 23.69567393656131 ], [ -77.943436244058503, 23.712636566087685 ], [ -77.951159031385274, 23.71466314130295 ], [ -77.948234502663126, 23.718203062979082 ], [ -77.939103901480777, 23.766826388992275 ], [ -77.94381936673922, 23.768821747500837 ], [ -77.950156219601766, 23.779566525395673 ], [ -77.937412801281226, 23.809353033505019 ], [ -77.929091525374943, 23.820442327602922 ], [ -77.912148889616518, 23.822769442535531 ], [ -77.892482569419954, 23.810931738687973 ], [ -77.879269744704473, 23.798652507393779 ], [ -77.863046953409963, 23.799259460754765 ], [ -77.864567778710438, 23.814706547878039 ], [ -77.854559053414647, 23.823389863778111 ], [ -77.843798629802578, 23.835713578345771 ], [ -77.841671796798352, 23.845125386636525 ], [ -77.833292732366871, 23.859990181994959 ], [ -77.834985094528847, 23.870239537411241 ], [ -77.83180134946258, 23.874983141414084 ], [ -77.831173960255185, 23.889020493441176 ], [ -77.827889944038134, 23.892438065078203 ], [ -77.816565685154501, 23.895512643062872 ], [ -77.83103522824031, 23.900630339966291 ], [ -77.836081248758006, 23.916056639010549 ], [ -77.862705834568402, 23.946821659031979 ], [ -77.867459210506169, 23.962184735478306 ], [ -77.883228547550843, 23.996770195833935 ], [ -77.904990568404486, 24.015171713568208 ], [ -77.905648662682736, 24.020859437094245 ], [ -77.902193243527549, 24.041128481163426 ], [ -77.91700069672541, 24.052057908812667 ], [ -77.94237999688994, 24.078776873112162 ], [ -77.98306915478976, 24.061055382315075 ], [ -77.992521736199606, 24.043000086319662 ], [ -77.992394569338813, 24.02486757978863 ], [ -78.001818758425983, 24.024417630360983 ], [ -78.002739835322245, 24.051471273179189 ], [ -78.012383242776963, 24.060209952325419 ], [ -78.012887328165064, 24.069409607601532 ], [ -78.022624415038749, 24.069482804340215 ], [ -78.023116642284492, 24.078141165900135 ], [ -78.032559602894423, 24.078219492452419 ], [ -78.033262919165708, 24.0958043743871 ], [ -78.023763602087243, 24.105191390097371 ], [ -78.013735753105848, 24.105663268104202 ], [ -78.013649717375458, 24.114333082899922 ], [ -78.004216370110626, 24.114784458360123 ], [ -78.004338431082289, 24.132381149778347 ], [ -78.014272441493034, 24.141383877390737 ], [ -78.024321554799528, 24.141458560955375 ], [ -78.014795623815147, 24.150851375165811 ], [ -78.014709894313498, 24.159517178661918 ], [ -78.034474865243709, 24.159394385322411 ], [ -78.034975349148297, 24.168323088225417 ], [ -78.054877546454691, 24.186057350917078 ], [ -78.055373316321038, 24.194715233169241 ], [ -78.074556038721454, 24.194594509049633 ], [ -78.084372707448466, 24.185457598438123 ], [ -78.087275356478116, 24.293718590524684 ], [ -78.156430218407451, 24.341408294160285 ], [ -78.190048335911825, 24.354132064178604 ], [ -78.201901385018388, 24.363946694300907 ], [ -78.232345096399385, 24.37965676630499 ], [ -78.257353209105091, 24.390305989140586 ], [ -78.287193518218274, 24.406946436387763 ], [ -78.314438925987076, 24.424953201380905 ], [ -78.329868303800779, 24.43288797972766 ], [ -78.342958222184009, 24.437124948106199 ], [ -78.41660996511645, 24.481854808117564 ], [ -78.443502763421904, 24.506458669440967 ], [ -78.457363814351226, 24.52507754659953 ], [ -78.464662134310629, 24.548563534807769 ], [ -78.493747372080378, 24.596553776350124 ], [ -78.523161733905042, 24.606352812488396 ], [ -78.53862641515974, 24.626173964923705 ], [ -78.532544608685441, 24.652561563804159 ], [ -78.555052529369249, 24.67395418108395 ], [ -78.539966146214155, 24.683761531906178 ], [ -78.526846381824427, 24.684344031876883 ], [ -78.522936687021442, 24.688763814919017 ], [ -78.512182237419921, 24.673934970228444 ], [ -78.495260492517986, 24.673985847288598 ], [ -78.462957747139995, 24.679860792802785 ], [ -78.449102309230327, 24.723179755265527 ], [ -78.402191850618109, 24.692098595479255 ], [ -78.4219618597362, 24.729774875296052 ], [ -78.410913934976264, 24.737405210267831 ], [ -78.374858037681605, 24.741176165814551 ], [ -78.356721839887371, 24.74665078672702 ], [ -78.34461799274824, 24.76789655311531 ], [ -78.326043230108553, 24.777894546983923 ], [ -78.32166152609669, 24.784332484801681 ], [ -78.301818714831697, 24.784558495700921 ], [ -78.315377177363388, 24.792547137828748 ], [ -78.305211661812393, 24.815077378568056 ], [ -78.272081403726744, 24.825893400722013 ], [ -78.269623144031044, 24.844409150324228 ], [ -78.265728022191539, 24.852093542682535 ], [ -78.249040194015862, 24.861846086856016 ], [ -78.232769271922677, 24.866417157575388 ], [ -78.225402170302189, 24.880386261209935 ], [ -78.218042641569539, 24.929781744689073 ], [ -78.228677310452426, 24.961252774719028 ], [ -78.244364195614338, 24.990461256676184 ], [ -78.239855618502872, 25.036028114115524 ], [ -78.242066760108543, 25.061636047109936 ], [ -78.253440145546264, 25.097284536077606 ], [ -78.269411127587745, 25.120418726173206 ], [ -78.271014802466553, 25.12615418936911 ], [ -78.256697420087107, 25.148279300210646 ], [ -78.238740405689825, 25.160225979220069 ], [ -78.247536194760301, 25.188514618729151 ], [ -78.2512572551787, 25.206517571104175 ], [ -78.267765558795531, 25.221719469262652 ], [ -78.251523416315521, 25.264059136227008 ], [ -78.25247016919127, 25.268459479197592 ], [ -78.240326495676172, 25.333715077066536 ], [ -78.220716784734307, 25.342965062991141 ], [ -78.198646778417597, 25.340565793187377 ], [ -78.194397932328556, 25.338080947518947 ], [ -78.183736876293509, 25.34611982331338 ], [ -78.169770629357529, 25.346253132769956 ], [ -78.152485349338349, 25.352957355608236 ], [ -78.135546542132488, 25.348310289340819 ], [ -78.129236264594894, 25.339833390382733 ], [ -78.130960248913709, 25.330565519054144 ], [ -78.124812168206077, 25.319536034852629 ], [ -78.119114921618603, 25.319762686534702 ], [ -78.115807151973172, 25.302064073485102 ], [ -78.110724812872348, 25.296077902830955 ], [ -78.105078846917152, 25.28482893488944 ], [ -78.10110894934023, 25.276009647836492 ], [ -78.101785301790457, 25.272394519942612 ], [ -78.090859815933527, 25.264283634911408 ], [ -78.099302342644364, 25.256967024762183 ], [ -78.098210250151425, 25.253433193214732 ], [ -78.105438396775853, 25.244753037983646 ], [ -78.104090953988077, 25.241921650283196 ], [ -78.086966960546448, 25.223000578464422 ], [ -78.077071661629759, 25.224765737505063 ], [ -78.071067909632077, 25.221447551972929 ], [ -78.071563588719798, 25.213340510233582 ], [ -78.069183958117335, 25.210994733431296 ], [ -78.069410100063678, 25.201437474844465 ], [ -78.076051516082956, 25.20070672940038 ], [ -78.073702570174007, 25.194186181297642 ], [ -78.059404383061889, 25.191647491172024 ], [ -78.052752715790206, 25.19370106196736 ], [ -78.041979933618776, 25.185626985279956 ], [ -78.049594541360079, 25.178098432470055 ], [ -78.043172054607496, 25.176624780650073 ], [ -78.0309731873554, 25.180553218186457 ], [ -78.028862042335902, 25.184750965661582 ], [ -78.022680136769267, 25.179351338147349 ], [ -78.019001290152616, 25.171434871416672 ], [ -78.023372820617453, 25.179816291506999 ], [ -78.026067975271289, 25.181160699667277 ], [ -78.027158841218707, 25.180029332767514 ], [ -78.025507184429287, 25.173490336019878 ], [ -78.033401184865568, 25.17458171510264 ], [ -78.036668321532531, 25.178247373487288 ], [ -78.039827547208532, 25.174382077646683 ], [ -78.043719283863567, 25.175004763543004 ], [ -78.043639875531142, 25.172487664482482 ], [ -78.046172003629351, 25.171831518531206 ], [ -78.048825743252166, 25.172748002523651 ], [ -78.056354919497821, 25.181203815326143 ], [ -78.056359450473465, 25.182979257284117 ], [ -78.05794984082209, 25.183220880058972 ], [ -78.064686522350797, 25.179553585684069 ], [ -78.065755234980628, 25.177095069676945 ], [ -78.063647627466693, 25.176193761700919 ], [ -78.063607001630018, 25.174709312715748 ], [ -78.068990193094209, 25.163749063667513 ], [ -78.064889235787959, 25.162245580559418 ], [ -78.055098308279526, 25.16362361882414 ], [ -78.052960494112099, 25.165460614045028 ], [ -78.051133616147467, 25.162903589475203 ], [ -78.060011556690725, 25.159635944323632 ], [ -78.068081222483698, 25.16005985318332 ], [ -78.070364351206479, 25.161543500274281 ], [ -78.067382683463222, 25.168752930753787 ], [ -78.069243885615109, 25.170338774978479 ], [ -78.072324719896287, 25.169576701841564 ], [ -78.075755637710841, 25.171213896082705 ], [ -78.082492671393595, 25.16853855808429 ], [ -78.083939967815951, 25.166425724803727 ], [ -78.075674124276759, 25.163884213311658 ], [ -78.070681650564396, 25.159138357257945 ], [ -78.064834163869804, 25.157837501024456 ], [ -78.055278246573494, 25.158224950365604 ], [ -78.059698214353205, 25.154519089758544 ], [ -78.058592291481844, 25.152069894906944 ], [ -78.064745372107794, 25.148147665344684 ], [ -78.078242904674667, 25.153019344143281 ], [ -78.078589889757168, 25.155190483294021 ], [ -78.081893664866641, 25.15459224570402 ], [ -78.083253035124173, 25.156441334747143 ], [ -78.084843605599772, 25.155410725945135 ], [ -78.092070954920047, 25.158151488612468 ], [ -78.095321000619961, 25.157542309494406 ], [ -78.097332746588236, 25.154777089625586 ], [ -78.095572414542531, 25.150788727420753 ], [ -78.10560583245082, 25.151919814012629 ], [ -78.10565074002298, 25.154505976772917 ], [ -78.1099528538507, 25.153882858257923 ], [ -78.109082987926456, 25.150445197078728 ], [ -78.106527096716675, 25.148513647353727 ], [ -78.107006726368255, 25.146841751151189 ], [ -78.11304063611037, 25.151256335468428 ], [ -78.112607237761949, 25.156329549634396 ], [ -78.115763747413737, 25.156418132770536 ], [ -78.116698334792247, 25.154094716560621 ], [ -78.118176219587752, 25.155697107983006 ], [ -78.119306697035469, 25.152925219564388 ], [ -78.118339656190244, 25.145979436479315 ], [ -78.120553294587523, 25.151288532200098 ], [ -78.121931188711173, 25.152670432461225 ], [ -78.126953600859935, 25.152615917186733 ], [ -78.130343424749881, 25.15838710753772 ], [ -78.128754521099623, 25.16051403185363 ], [ -78.127383129281043, 25.159319609099107 ], [ -78.126691428491881, 25.160114250692061 ], [ -78.129342620141983, 25.162230399386861 ], [ -78.129446984762708, 25.167395977448393 ], [ -78.137106549262583, 25.16979392618774 ], [ -78.138244845000941, 25.167765950933688 ], [ -78.139909668831933, 25.17000364763437 ], [ -78.13918720657793, 25.171931088165561 ], [ -78.154729615017729, 25.179294122815499 ], [ -78.159110837668521, 25.177311222326672 ], [ -78.166584391697825, 25.178770022834509 ], [ -78.178681360950634, 25.176304586707872 ], [ -78.191770173691182, 25.176010187287844 ], [ -78.194565846317374, 25.177632157506693 ], [ -78.197128011128115, 25.175687471049176 ], [ -78.201832751074861, 25.175654515327594 ], [ -78.201427153386206, 25.177748978539015 ], [ -78.198438045630525, 25.176736340128077 ], [ -78.196438362175144, 25.177919167821074 ], [ -78.195282060923716, 25.182181484293483 ], [ -78.196778709615998, 25.183533327700463 ], [ -78.204002405427829, 25.180870206954317 ], [ -78.204692224658601, 25.178766539498728 ], [ -78.209729881866025, 25.177563274295242 ], [ -78.213615001024223, 25.178382549398812 ], [ -78.207450387663158, 25.181265512398404 ], [ -78.208910497694532, 25.184881037039744 ], [ -78.210956801104061, 25.184430090990297 ], [ -78.212577172153075, 25.18660939769422 ], [ -78.207863379583273, 25.185209175771913 ], [ -78.206573662761343, 25.181172728977511 ], [ -78.203488626035039, 25.182631211233836 ], [ -78.202935389630639, 25.184899489108084 ], [ -78.193671680602549, 25.185931855595335 ], [ -78.188065446169276, 25.18314873897868 ], [ -78.173740369749325, 25.180701237057534 ], [ -78.159887515038704, 25.181609220592232 ], [ -78.15937483534006, 25.184585958761424 ], [ -78.157617845765799, 25.185457689504247 ], [ -78.156066243185734, 25.18332896522594 ], [ -78.152104082850784, 25.182396668641896 ], [ -78.149350743326423, 25.185487494480917 ], [ -78.145725107716615, 25.186783081423876 ], [ -78.146738309863579, 25.189273347571337 ], [ -78.158926152482465, 25.191527683645138 ], [ -78.158447552073838, 25.188978389272265 ], [ -78.163199996223739, 25.188322084555438 ], [ -78.16394510451633, 25.18992891129303 ], [ -78.166331312844093, 25.190180187374775 ], [ -78.16545626017016, 25.190973908882345 ], [ -78.160327887769668, 25.189354891929923 ], [ -78.159857482138804, 25.19268055174868 ], [ -78.167699151071233, 25.198232218399724 ], [ -78.184831744046988, 25.203825126306253 ], [ -78.195171450703739, 25.204757168882331 ], [ -78.197024804262654, 25.206245055531301 ], [ -78.209403500166388, 25.202938269118548 ], [ -78.213377647080932, 25.205096258192398 ], [ -78.21707230061152, 25.204720216396272 ], [ -78.222563249081091, 25.202075875813509 ], [ -78.21977964416422, 25.197681000990858 ], [ -78.221855302655541, 25.19612735333406 ], [ -78.225606620548092, 25.196970188685558 ], [ -78.227641231729208, 25.190329857743034 ], [ -78.229659858277472, 25.189061623180827 ], [ -78.225492668141158, 25.176987364397721 ], [ -78.217039449791244, 25.163931918476944 ], [ -78.21809428523234, 25.156259606230062 ], [ -78.221314984035757, 25.154508639414011 ], [ -78.21824203250921, 25.154786305422661 ], [ -78.215350100003988, 25.15324773596172 ], [ -78.216297412806554, 25.147726997269562 ], [ -78.214925175802108, 25.147332468661265 ], [ -78.212718524548066, 25.150438727143825 ], [ -78.209931503432102, 25.143284859180607 ], [ -78.211320119021195, 25.141108267880959 ], [ -78.205249304122219, 25.131837643772037 ], [ -78.200694252315856, 25.128489428849548 ], [ -78.199307310707951, 25.117257559533478 ], [ -78.192412497811432, 25.110853328102522 ], [ -78.179616296435952, 25.092332987880319 ], [ -78.183736668485878, 25.079765099067643 ], [ -78.175707376464715, 25.070041229612734 ], [ -78.170016678773692, 25.058959275935631 ], [ -78.168431457515993, 25.051287823502051 ], [ -78.165351640749819, 25.049220619176449 ], [ -78.164805909015897, 25.046727425491888 ], [ -78.165735285308699, 25.041348903351729 ], [ -78.170172037226678, 25.036910378926795 ], [ -78.172914860306392, 25.026693715758118 ], [ -78.171547918869223, 25.022759042815292 ], [ -78.167324222317134, 25.019803017290698 ], [ -78.164051004378479, 25.019830755836068 ], [ -78.164457412628721, 25.016523896509803 ], [ -78.167689350703796, 25.012723723833375 ], [ -78.166368045719793, 25.007439036776827 ], [ -78.169938010848398, 25.006837973663362 ], [ -78.176337028573528, 25.002233123173017 ], [ -78.172076365342193, 24.996413398634754 ], [ -78.173867110482476, 24.983063330723077 ], [ -78.170636740639367, 24.977044273967564 ], [ -78.172317360057448, 24.972938813168298 ], [ -78.186450660848749, 24.956439614434736 ], [ -78.194090369407533, 24.954383433950301 ], [ -78.197047352253165, 24.946346266554542 ], [ -78.197177197358073, 24.943057612434337 ], [ -78.188679297284835, 24.924814320747167 ], [ -78.182877177023897, 24.920257839795916 ], [ -78.183929196456617, 24.913666065992413 ], [ -78.182029085407777, 24.913007531535747 ], [ -78.189746017792416, 24.896068116756464 ], [ -78.191943848231276, 24.894837181730075 ], [ -78.192498004997361, 24.891772554318845 ], [ -78.195024851896548, 24.890015808754988 ], [ -78.196350922592515, 24.886649562089474 ], [ -78.197975755592608, 24.886619743502283 ], [ -78.19994135628626, 24.881404855605318 ], [ -78.20909678793501, 24.870597758593071 ], [ -78.210642094741587, 24.862632344493043 ], [ -78.224944758139586, 24.84383900935374 ], [ -78.228959860845308, 24.842721657556169 ], [ -78.24047774309561, 24.843528691659202 ], [ -78.24156966247493, 24.842358662358503 ], [ -78.245996035476367, 24.848297916958884 ], [ -78.247869811617051, 24.838449876854856 ], [ -78.254423092126473, 24.833095373635047 ], [ -78.25302281847236, 24.82369130038601 ], [ -78.253842083321288, 24.820965325476273 ], [ -78.259399743398333, 24.815962756062 ], [ -78.259523809229734, 24.811256383523986 ], [ -78.26472694138721, 24.807688006682636 ], [ -78.264959236607893, 24.804796936014387 ], [ -78.268508241237456, 24.804271492757913 ], [ -78.271704598021486, 24.80151697676094 ], [ -78.273576072932329, 24.802098314747685 ], [ -78.273830440519305, 24.798512425253168 ], [ -78.277301140832492, 24.791811105215025 ], [ -78.284658660854873, 24.791172443656183 ], [ -78.290119111242007, 24.793374177091255 ], [ -78.294110453636009, 24.790148724524428 ], [ -78.287749466085486, 24.777719916188602 ], [ -78.2805278039298, 24.772417519997038 ], [ -78.293974445881588, 24.776030164480751 ], [ -78.297602606773879, 24.774884944080018 ], [ -78.303856416230857, 24.775595231714199 ], [ -78.305396001076474, 24.775112431761816 ], [ -78.308740913950743, 24.766444807486884 ], [ -78.314851939350646, 24.762167669130704 ], [ -78.311331383246042, 24.752512140413764 ], [ -78.306205652179045, 24.746824109305386 ], [ -78.304858140352195, 24.742522578254874 ], [ -78.30589636878814, 24.739520159629119 ], [ -78.310910301414069, 24.734760288603582 ], [ -78.304216167892434, 24.730016177906794 ], [ -78.305268314916191, 24.729128783883336 ], [ -78.307131900833284, 24.730099779862943 ], [ -78.317371072936211, 24.738921080556928 ], [ -78.31893479633932, 24.736996804603422 ], [ -78.315150644986559, 24.728304853007987 ], [ -78.321855735574729, 24.72393250443367 ], [ -78.328216868762297, 24.727041290393803 ], [ -78.330597142666178, 24.719295534770321 ], [ -78.328846577469719, 24.717291394943235 ], [ -78.324846876475618, 24.716811422834276 ], [ -78.318753564445757, 24.713587748865883 ], [ -78.31640679439829, 24.707153305182089 ], [ -78.314417317641286, 24.706425968643064 ], [ -78.315767303353553, 24.714880871706495 ], [ -78.314916560325344, 24.714642579659476 ], [ -78.312051323989863, 24.702107317271768 ], [ -78.301562441097659, 24.699253289559898 ], [ -78.299129297203933, 24.692364689656326 ], [ -78.296042152272889, 24.692689695627813 ], [ -78.292754844065342, 24.696104453231033 ], [ -78.291992141309308, 24.699206620212451 ], [ -78.295167443298624, 24.702222276359421 ], [ -78.292374851515376, 24.703054988354271 ], [ -78.286091956077613, 24.699593177856137 ], [ -78.285842320027498, 24.690085232069677 ], [ -78.284019925111906, 24.684982753626933 ], [ -78.284735606930752, 24.680081804757474 ], [ -78.282672627579487, 24.676527278812479 ], [ -78.283401824926003, 24.672140277232501 ], [ -78.281948587330632, 24.670372226712633 ], [ -78.282336019527193, 24.663678616416902 ], [ -78.284230382868969, 24.66080885040159 ], [ -78.278163940169094, 24.654770549152289 ], [ -78.28021849253706, 24.647269152505203 ], [ -78.276590147400228, 24.648376858190677 ], [ -78.275244684423114, 24.650720312178318 ], [ -78.268797670149709, 24.651632179469779 ], [ -78.270659036138639, 24.658276837203804 ], [ -78.272948854298164, 24.659769662460597 ], [ -78.271917968059213, 24.663391852002675 ], [ -78.275125402096705, 24.667692966789772 ], [ -78.273244157788369, 24.671076599215191 ], [ -78.270980947090663, 24.67061170705086 ], [ -78.272179666490175, 24.673413916140184 ], [ -78.268778088320644, 24.672459569719024 ], [ -78.266976808886128, 24.668127706895408 ], [ -78.26311334926055, 24.67104012736154 ], [ -78.258305753668949, 24.670116099756925 ], [ -78.252553437776342, 24.676154779110611 ], [ -78.252345595246695, 24.678987664270185 ], [ -78.254910210432485, 24.680217667193165 ], [ -78.250818207539751, 24.685191782952742 ], [ -78.252244539670329, 24.68593223841232 ], [ -78.255017081996584, 24.684329345903695 ], [ -78.254789263405527, 24.686391288128728 ], [ -78.256758104283534, 24.686348549956378 ], [ -78.256242363822892, 24.688159619481457 ], [ -78.259383127604679, 24.689891263435342 ], [ -78.258043661712009, 24.692491610343051 ], [ -78.254989716444527, 24.694100678110708 ], [ -78.25696536528352, 24.69431490384229 ], [ -78.256656943769983, 24.70409232152895 ], [ -78.26073584218372, 24.709403243221498 ], [ -78.265551703345935, 24.710584007203931 ], [ -78.263904054362669, 24.712162633827766 ], [ -78.266482905716188, 24.713906304043853 ], [ -78.265980670802762, 24.716231350588703 ], [ -78.266729988324172, 24.715141419817275 ], [ -78.267401679049712, 24.716750704411805 ], [ -78.269444676020839, 24.716976797853523 ], [ -78.267680002998105, 24.717479913862871 ], [ -78.273348968860944, 24.718127546029287 ], [ -78.272900683764448, 24.722508394900469 ], [ -78.276852899017655, 24.722936246162046 ], [ -78.276323900429063, 24.72423341709143 ], [ -78.271266450698889, 24.724601055606406 ], [ -78.270348455914757, 24.721792763127961 ], [ -78.269913514575876, 24.726687562595096 ], [ -78.271729445406706, 24.731533211898267 ], [ -78.286698104676489, 24.744061412112863 ], [ -78.290603612858192, 24.742690041601392 ], [ -78.288749009248363, 24.747101790144807 ], [ -78.291891724264417, 24.748832540106743 ], [ -78.293407160697413, 24.752913077908229 ], [ -78.286518177851804, 24.747922133119303 ], [ -78.285592852778692, 24.744857024960098 ], [ -78.281070407439145, 24.744184843407467 ], [ -78.279301113366273, 24.741138172694065 ], [ -78.275006288713413, 24.738403846730154 ], [ -78.274965862988338, 24.736862009446874 ], [ -78.268962906352556, 24.733393466116336 ], [ -78.265017072383657, 24.733222413825711 ], [ -78.269230822400985, 24.73287337575751 ], [ -78.269465114014281, 24.731068412613755 ], [ -78.266436569795118, 24.722906587612609 ], [ -78.266515599204865, 24.718276667864725 ], [ -78.264285997042364, 24.716011153704358 ], [ -78.260883256924089, 24.715056745942359 ], [ -78.262149364412096, 24.720428769618476 ], [ -78.260401017952191, 24.718152716554471 ], [ -78.258431684214244, 24.718195553972933 ], [ -78.255377157133623, 24.719804689192586 ], [ -78.254600047956075, 24.722392811059905 ], [ -78.254720819935898, 24.716219210531261 ], [ -78.25292587315667, 24.712144193912003 ], [ -78.248049955169378, 24.708650191021938 ], [ -78.247393922472114, 24.705064648141224 ], [ -78.243756910502185, 24.705914772496612 ], [ -78.241178507071936, 24.704170659541369 ], [ -78.237266799719976, 24.705283693584409 ], [ -78.233857850154749, 24.704071634559764 ], [ -78.232967437526653, 24.702290943858355 ], [ -78.227956974775594, 24.704455942301674 ], [ -78.222847014132213, 24.702765980241786 ], [ -78.219812135292244, 24.705145364443208 ], [ -78.222525991017989, 24.701230102433023 ], [ -78.227321430581256, 24.701641207435404 ], [ -78.229800105678251, 24.699530799595486 ], [ -78.231146882976162, 24.697187624967793 ], [ -78.230230037516407, 24.69437896461724 ], [ -78.232073153720677, 24.692616037892378 ], [ -78.233572292417108, 24.693021288564172 ], [ -78.231517055738635, 24.689722920826011 ], [ -78.234183778848347, 24.684008615563751 ], [ -78.235127166882094, 24.687845192926432 ], [ -78.23905831828715, 24.687503218015046 ], [ -78.239273102647772, 24.68492730547749 ], [ -78.236145981256215, 24.683709166747988 ], [ -78.235785036199914, 24.680631416806349 ], [ -78.234084228126846, 24.680153836866324 ], [ -78.234540555129129, 24.676029944769045 ], [ -78.232565201184002, 24.675815389173664 ], [ -78.22930287814539, 24.680256838681 ], [ -78.224849081472001, 24.68215255635528 ], [ -78.229759364562909, 24.676132945036372 ], [ -78.228594634517421, 24.674615237056166 ], [ -78.225514176425847, 24.675195750948834 ], [ -78.222800886592708, 24.679111011392024 ], [ -78.222665116940902, 24.684770793214934 ], [ -78.224420102381742, 24.683036921888625 ], [ -78.227972906730855, 24.682960510001877 ], [ -78.226854393271111, 24.683525900782016 ], [ -78.227464441760475, 24.686219401045047 ], [ -78.226238323305893, 24.684621803481637 ], [ -78.222691573760414, 24.685798745409496 ], [ -78.219296493892998, 24.685100261076041 ], [ -78.217112359229418, 24.68771843318649 ], [ -78.215672971992916, 24.686463644509587 ], [ -78.218439471755147, 24.684604390928939 ], [ -78.218078952072617, 24.681526554412859 ], [ -78.220577269130473, 24.680187285886621 ], [ -78.219942077430275, 24.677372482540086 ], [ -78.222728153759505, 24.676284140246722 ], [ -78.222662042624648, 24.673714256289657 ], [ -78.227277692685348, 24.667186807163084 ], [ -78.230384443271774, 24.667634224343011 ], [ -78.229874977753511, 24.669702224844553 ], [ -78.229901475344079, 24.670730171772629 ], [ -78.230323327935068, 24.67072109107848 ], [ -78.233405011475028, 24.66474075737861 ], [ -78.235955900010822, 24.665457164928551 ], [ -78.240127708310141, 24.663567262765799 ], [ -78.239220980293595, 24.659711870967929 ], [ -78.240497488987899, 24.65610257347587 ], [ -78.237391019276714, 24.655655339748453 ], [ -78.235938596905839, 24.65388675300219 ], [ -78.244890263186264, 24.651893653082411 ], [ -78.24483042115763, 24.649580800853034 ], [ -78.234975682652291, 24.649279184108813 ], [ -78.232322792817442, 24.655507419419681 ], [ -78.234311080102771, 24.656235983757057 ], [ -78.235128160998229, 24.655189862839947 ], [ -78.236345824498486, 24.658763417898882 ], [ -78.233613302129868, 24.66190785241448 ], [ -78.227896354152577, 24.658431088023949 ], [ -78.226692154331985, 24.655371415287725 ], [ -78.229431361486647, 24.652484088926307 ], [ -78.231955483909672, 24.65217264579648 ], [ -78.230777747512874, 24.650140956369789 ], [ -78.233784682509565, 24.64673354692226 ], [ -78.233417389513775, 24.643398774965306 ], [ -78.236999695177985, 24.640493187715855 ], [ -78.235133820190285, 24.633590901087693 ], [ -78.238461205631609, 24.63171930651017 ], [ -78.239397497367079, 24.635298920821963 ], [ -78.243634709619613, 24.635978869561409 ], [ -78.244692883439086, 24.633384739278242 ], [ -78.241520617676528, 24.630367684211166 ], [ -78.237859141978007, 24.630189510160726 ], [ -78.232411555013741, 24.626192736106493 ], [ -78.227370933678472, 24.627072479690327 ], [ -78.230850403419652, 24.631111784474413 ], [ -78.229256088294477, 24.634745886071865 ], [ -78.231538408595327, 24.63598245525662 ], [ -78.231932083365294, 24.640345190945528 ], [ -78.230833886165783, 24.641397337671624 ], [ -78.227975909535672, 24.63965887809697 ], [ -78.226040781886155, 24.640986107668024 ], [ -78.222683931649129, 24.630772920977826 ], [ -78.222545401047611, 24.625376130609745 ], [ -78.220008586362624, 24.625173381919314 ], [ -78.213746377889649, 24.633278565785204 ], [ -78.208698699903863, 24.633900730600757 ], [ -78.206082934372645, 24.630613834623208 ], [ -78.20795249051308, 24.626716918566107 ], [ -78.206533649455181, 24.626232935170549 ], [ -78.206186885187492, 24.623668991704061 ], [ -78.201989490153821, 24.624529893254969 ], [ -78.200681535043259, 24.617357969718306 ], [ -78.199027518091739, 24.618678861339504 ], [ -78.198073166345296, 24.625384699896287 ], [ -78.195850189502224, 24.626460538696726 ], [ -78.194660219811652, 24.623914481246004 ], [ -78.190312161050812, 24.629921002321058 ], [ -78.191332254821077, 24.625785151398066 ], [ -78.189338125233306, 24.624798941598506 ], [ -78.187553409506776, 24.620979749095309 ], [ -78.189227168038343, 24.620429965115019 ], [ -78.190423520337575, 24.623233079499631 ], [ -78.194026036569682, 24.621099462199123 ], [ -78.19334615342369, 24.61648545231731 ], [ -78.194974067063498, 24.614136630033276 ], [ -78.194372623336136, 24.612606593449687 ], [ -78.19183605703806, 24.612403337255373 ], [ -78.190521855904692, 24.616031155743517 ], [ -78.187998262611572, 24.616341839258865 ], [ -78.186475300076665, 24.611745653148049 ], [ -78.187423747742287, 24.604782826060852 ], [ -78.184573680130697, 24.603300386846321 ], [ -78.185227058919963, 24.606886482617263 ], [ -78.183586005249623, 24.60872120903246 ], [ -78.181605225260043, 24.608248862881489 ], [ -78.181834276989761, 24.606186905725991 ], [ -78.179827532464103, 24.604686525303528 ], [ -78.181187503808772, 24.60285778605413 ], [ -78.178919228419545, 24.602134338568977 ], [ -78.179011857752116, 24.594675338034019 ], [ -78.180417251580323, 24.594645626690681 ], [ -78.180345752745168, 24.591818606340187 ], [ -78.182326263248513, 24.592290996692466 ], [ -78.181405028665566, 24.589224814149201 ], [ -78.183084919867483, 24.588932138236419 ], [ -78.185738194167641, 24.593761602827957 ], [ -78.183175986464178, 24.592530155689431 ], [ -78.181803133805474, 24.593844897889539 ], [ -78.182698402978417, 24.595883067350989 ], [ -78.184966575911631, 24.596606467482118 ], [ -78.1855873454424, 24.59890756499739 ], [ -78.19220894964289, 24.604938446701215 ], [ -78.195307559317428, 24.605129765559408 ], [ -78.192738503656329, 24.60364151795924 ], [ -78.186235227385183, 24.591179691149776 ], [ -78.194125156117195, 24.580726870339209 ], [ -78.193197240024574, 24.577403777638168 ], [ -78.196537032426761, 24.576047185899437 ], [ -78.197131742832013, 24.57732023701951 ], [ -78.194687243352604, 24.580714937270521 ], [ -78.197804843890665, 24.581677259554656 ], [ -78.197347259189172, 24.585801171526516 ], [ -78.199118554539538, 24.589106288642771 ], [ -78.196628193725658, 24.590702049875208 ], [ -78.196804598960426, 24.59764098824645 ], [ -78.201275704126559, 24.596517337761878 ], [ -78.201589502782909, 24.597796336519984 ], [ -78.204413396594077, 24.598250463448945 ], [ -78.20532871575945, 24.601059442572275 ], [ -78.207570843254061, 24.600754498716931 ], [ -78.212173268056361, 24.604770397771617 ], [ -78.215788008995148, 24.603150330905486 ], [ -78.216519477824704, 24.598763421851164 ], [ -78.218774677224815, 24.598972301760298 ], [ -78.225215544350306, 24.608862437664051 ], [ -78.222751573963421, 24.611486596650742 ], [ -78.224034279062437, 24.617630249933143 ], [ -78.229716092788991, 24.61982243671638 ], [ -78.236357027508319, 24.615565502725843 ], [ -78.234336323620298, 24.613551959672829 ], [ -78.234263550541939, 24.610725096173731 ], [ -78.23777878160908, 24.605249707184889 ], [ -78.237586818728886, 24.59779708155256 ], [ -78.233231982494573, 24.592491031236033 ], [ -78.233741233833172, 24.590423039378386 ], [ -78.231079702321679, 24.585337613209095 ], [ -78.233020587239366, 24.58426739286184 ], [ -78.232071829311039, 24.580173682084489 ], [ -78.237189899417075, 24.582377828226861 ], [ -78.238373577960687, 24.58466652489134 ], [ -78.243700073169194, 24.584037518104015 ], [ -78.24628246062548, 24.58603884718077 ], [ -78.245786693800724, 24.588620830385448 ], [ -78.249427018353032, 24.588027982190617 ], [ -78.252248860002581, 24.599280604822017 ], [ -78.254504062126884, 24.599488940971121 ], [ -78.253374929319307, 24.588456905664565 ], [ -78.250484785349386, 24.585433851311588 ], [ -78.251509305533091, 24.581554795690437 ], [ -78.249997949193457, 24.577473400615094 ], [ -78.253691083198305, 24.578936355601922 ], [ -78.256413186399413, 24.586334149959853 ], [ -78.257825035781778, 24.586560708238661 ], [ -78.263647906333489, 24.572549702821046 ], [ -78.256328418241011, 24.572193999200501 ], [ -78.256241995576531, 24.568853215113986 ], [ -78.252843428187575, 24.567898190105343 ], [ -78.251847773464348, 24.562005757522908 ], [ -78.256584647115417, 24.56036060063381 ], [ -78.257916425565284, 24.557503387956402 ], [ -78.251761510128574, 24.558664954006225 ], [ -78.254498248034267, 24.555777416088432 ], [ -78.252746059961964, 24.553243995693634 ], [ -78.24991650507917, 24.552533703119298 ], [ -78.249228653737575, 24.547663097612872 ], [ -78.246753031550043, 24.54977351986058 ], [ -78.248217459399854, 24.552056103179336 ], [ -78.246303681022539, 24.55415440501924 ], [ -78.246898740382065, 24.555427221160855 ], [ -78.242723835200181, 24.557059966168307 ], [ -78.243894075490658, 24.558834666008138 ], [ -78.249801289329085, 24.558964405854674 ], [ -78.247867565788724, 24.560291776760106 ], [ -78.247666113514541, 24.563381668916033 ], [ -78.249940563543873, 24.564361097902847 ], [ -78.250883070461597, 24.568197670408676 ], [ -78.246820519044689, 24.574199320523679 ], [ -78.244010369086666, 24.574259922662851 ], [ -78.241408424330402, 24.571487561721163 ], [ -78.243712381994911, 24.562695523870488 ], [ -78.240059507439966, 24.562774186655563 ], [ -78.236459460456743, 24.564908670663176 ], [ -78.234092677366107, 24.560331177205271 ], [ -78.232740516768743, 24.562417267960758 ], [ -78.229590280644402, 24.560170694180076 ], [ -78.227087725808829, 24.561252884961061 ], [ -78.227474106342285, 24.565358717709817 ], [ -78.229801217378181, 24.568394386737509 ], [ -78.228246992246014, 24.573570366800119 ], [ -78.229704841566587, 24.575596140451328 ], [ -78.228359063380537, 24.577939202850729 ], [ -78.230196976526415, 24.583813781507608 ], [ -78.229648090465759, 24.584339827974929 ], [ -78.225842983749516, 24.578507426701037 ], [ -78.226181057500938, 24.569757684936917 ], [ -78.22395929906088, 24.570833821281109 ], [ -78.22461144769467, 24.563363005322174 ], [ -78.218337550341317, 24.559897388132804 ], [ -78.224747668959608, 24.557703167445915 ], [ -78.222831650655664, 24.548744528410847 ], [ -78.21972133592412, 24.548039651213319 ], [ -78.219297301158349, 24.55344852647362 ], [ -78.215697088142804, 24.555582524238325 ], [ -78.2172004574943, 24.559407422224783 ], [ -78.214952536205118, 24.559455439069431 ], [ -78.213913834666926, 24.562820363619732 ], [ -78.211266888659239, 24.558248418899488 ], [ -78.212606284053479, 24.555648498342801 ], [ -78.214573160658546, 24.555606522135427 ], [ -78.216977306307186, 24.550669629409612 ], [ -78.215023626987701, 24.551225618232316 ], [ -78.212978179186564, 24.548183651904921 ], [ -78.209874455243721, 24.547735559754326 ], [ -78.207763782224688, 24.542123537115526 ], [ -78.203601720858373, 24.544269200122837 ], [ -78.20280455896156, 24.546086108966563 ], [ -78.204830128165398, 24.548357251407619 ], [ -78.202608504054112, 24.549433054742462 ], [ -78.203529830370229, 24.552499098011939 ], [ -78.200857176460858, 24.557955801616405 ], [ -78.205398805704448, 24.559659137593421 ], [ -78.204366379177486, 24.563281019218785 ], [ -78.20315085383902, 24.559706978875834 ], [ -78.198635351679854, 24.559031565869724 ], [ -78.197472228768234, 24.557513447216074 ], [ -78.19671460050732, 24.549815407970787 ], [ -78.198060766177633, 24.547472592020256 ], [ -78.194179315138044, 24.549612061369249 ], [ -78.194042521178886, 24.54421506174981 ], [ -78.19595060563455, 24.541860349142269 ], [ -78.197642863128181, 24.542081575440672 ], [ -78.197172219011563, 24.545691492554742 ], [ -78.198864529318968, 24.54591269953643 ], [ -78.199616080876197, 24.542296814824564 ], [ -78.202138157102354, 24.541986087849935 ], [ -78.205117573945017, 24.537551406129818 ], [ -78.2062674952751, 24.538555484080305 ], [ -78.204921566483179, 24.540898350462488 ], [ -78.206914381499175, 24.541884485836029 ], [ -78.20854122728467, 24.539535621335947 ], [ -78.210540587480295, 24.54077870426087 ], [ -78.212775085517265, 24.540216796325733 ], [ -78.215982565646001, 24.533719990412425 ], [ -78.223842081250154, 24.533294903329502 ], [ -78.226115817438867, 24.534274771225125 ], [ -78.225646002646243, 24.537884693790897 ], [ -78.222020054333498, 24.538990817697641 ], [ -78.2207138325887, 24.542875755905648 ], [ -78.223040310620632, 24.5459115967376 ], [ -78.228391665340666, 24.54631125731045 ], [ -78.230318841461312, 24.544727144913931 ], [ -78.231730197567202, 24.544954002505435 ], [ -78.229789865307779, 24.546024149516853 ], [ -78.230953224350927, 24.547541990997093 ], [ -78.228679207079395, 24.546562226252007 ], [ -78.225614976510158, 24.547656411872836 ], [ -78.226804632355766, 24.550202255517519 ], [ -78.226453320498408, 24.558438025080726 ], [ -78.231557194819459, 24.560128489093366 ], [ -78.231157534986465, 24.555508695900937 ], [ -78.232509663433362, 24.553422622728426 ], [ -78.231065254770272, 24.551910830410197 ], [ -78.233888135833809, 24.552364500543604 ], [ -78.237428474536628, 24.547917207286414 ], [ -78.239735607983604, 24.55018177171965 ], [ -78.235025211113125, 24.552854340480081 ], [ -78.236829892294224, 24.557443915807337 ], [ -78.238803358097925, 24.557658608933796 ], [ -78.245206282070015, 24.555206576883876 ], [ -78.243427812754078, 24.551645078610846 ], [ -78.245315134685455, 24.548518864070719 ], [ -78.24439286263744, 24.545453177321679 ], [ -78.253389886487128, 24.54551624139831 ], [ -78.252051460922033, 24.548116430047319 ], [ -78.252372215322993, 24.549652274038213 ], [ -78.254057963268721, 24.549615859560507 ], [ -78.255991461434277, 24.548288431258129 ], [ -78.255871947661717, 24.543662713547796 ], [ -78.25781198250796, 24.542592256492082 ], [ -78.259062012360801, 24.547450635956206 ], [ -78.257710405760321, 24.549536897035843 ], [ -78.262285546808769, 24.5525233815682 ], [ -78.260701172553723, 24.545615268249783 ], [ -78.263189766590102, 24.544018613269508 ], [ -78.264621106371536, 24.545016103473266 ], [ -78.265123075136614, 24.542691085697044 ], [ -78.269578093004682, 24.541051698623431 ], [ -78.270353355339068, 24.549262883789343 ], [ -78.26747616183178, 24.557553358486807 ], [ -78.264438754849849, 24.55967625299629 ], [ -78.268900247069908, 24.56909308391193 ], [ -78.268438344023721, 24.572959992504316 ], [ -78.270412059191031, 24.573174239323887 ], [ -78.270492196147345, 24.57625799462955 ], [ -78.27244591619673, 24.575701271489539 ], [ -78.273864339309242, 24.576184667453127 ], [ -78.271683059207206, 24.578803352652116 ], [ -78.268859524187562, 24.578350469482071 ], [ -78.271187835065845, 24.581385364601143 ], [ -78.266503834192434, 24.585086883019841 ], [ -78.266316226931039, 24.588690708613658 ], [ -78.263050408532919, 24.592875597254995 ], [ -78.262628341189838, 24.598284390557083 ], [ -78.257153542054979, 24.60405985089993 ], [ -78.255384339212128, 24.622611266380158 ], [ -78.25065850269668, 24.624770584757378 ], [ -78.251601713122966, 24.628607077778799 ], [ -78.250229305799962, 24.629922407490692 ], [ -78.245456589503362, 24.630282710671054 ], [ -78.243528447908318, 24.631867117860828 ], [ -78.244666310314642, 24.632356802331277 ], [ -78.245295047292487, 24.634914497488015 ], [ -78.260222602816555, 24.635619761375875 ], [ -78.257611265266732, 24.643390177368886 ], [ -78.262638825374481, 24.641995414647219 ], [ -78.25983388190555, 24.642313448857703 ], [ -78.261735214042304, 24.639700920108861 ], [ -78.260262659974458, 24.637161642165957 ], [ -78.26223739834586, 24.637375891575466 ], [ -78.264393023147107, 24.633729317885738 ], [ -78.267231203663087, 24.634696111293334 ], [ -78.267947411568969, 24.640594377342776 ], [ -78.272994814981445, 24.63997022140887 ], [ -78.272552820140234, 24.633808901803988 ], [ -78.27586613591852, 24.631422581823589 ], [ -78.276668751507444, 24.619063196646913 ], [ -78.273195015593316, 24.615282044616038 ], [ -78.270122992491451, 24.616120285132371 ], [ -78.270899382772129, 24.613532153499854 ], [ -78.266341708916784, 24.611317142164737 ], [ -78.267098117423373, 24.607958085727343 ], [ -78.27014991328862, 24.606348989260521 ], [ -78.273268559783659, 24.60730961685071 ], [ -78.271033287349695, 24.607872515641066 ], [ -78.270250231787998, 24.610203667218926 ], [ -78.27058483640667, 24.612253378767438 ], [ -78.271996992231209, 24.612479770183366 ], [ -78.271655672359401, 24.610173086210395 ], [ -78.274426365116781, 24.608570020520833 ], [ -78.273181547316199, 24.603968904914101 ], [ -78.279043845803315, 24.602298433657083 ], [ -78.277631802406091, 24.602072097679876 ], [ -78.278428088374227, 24.600254878437223 ], [ -78.276714909364969, 24.599263727576709 ], [ -78.278876271860796, 24.595874019021934 ], [ -78.278514809935245, 24.592796424208533 ], [ -78.281392339521474, 24.59530489666086 ], [ -78.28185452319083, 24.602237112713777 ], [ -78.28323972070352, 24.601435506462241 ], [ -78.2831591783319, 24.598351800908326 ], [ -78.284811953491428, 24.597030098452265 ], [ -78.284751528823691, 24.59471732173602 ], [ -78.28669200516282, 24.593646441343154 ], [ -78.286779334859318, 24.596987112498148 ], [ -78.283741432365744, 24.599110453473699 ], [ -78.28576258522375, 24.601123276513775 ], [ -78.283259858392654, 24.602206432614661 ], [ -78.282778270001231, 24.605302411628553 ], [ -78.280790625105951, 24.604574431128309 ], [ -78.280871132508196, 24.607658141481863 ], [ -78.279184652858476, 24.607694936885657 ], [ -78.280288848323508, 24.606899480829501 ], [ -78.279412082832508, 24.605632995997667 ], [ -78.278321299121473, 24.606942398119269 ], [ -78.280135229689961, 24.61178815646899 ], [ -78.283213773180123, 24.611206703684864 ], [ -78.284826391634184, 24.608343136555799 ], [ -78.282885684750184, 24.60941401648385 ], [ -78.281460135005545, 24.60867377469534 ], [ -78.28508731696283, 24.607566070516704 ], [ -78.28805276740249, 24.61341502338357 ], [ -78.286976857686028, 24.626037480064216 ], [ -78.289180354668503, 24.634988470023607 ], [ -78.291510340250994, 24.63802286984626 ], [ -78.291624944961796, 24.64239139253397 ], [ -78.289128239075211, 24.643731694646448 ], [ -78.287569254380557, 24.648651115731575 ], [ -78.285085842785563, 24.650505313422638 ], [ -78.289552890530658, 24.659920937154453 ], [ -78.289312155236928, 24.66146893032689 ], [ -78.286801587491979, 24.662295288531201 ], [ -78.289179322979834, 24.66712847077816 ], [ -78.286187092315359, 24.671050823084936 ], [ -78.289896927772048, 24.673026483850744 ], [ -78.290299644481863, 24.677645796557091 ], [ -78.293735261901773, 24.67988447212495 ], [ -78.293971856541788, 24.688878415910231 ], [ -78.297085990886458, 24.689581337052616 ], [ -78.298438117634987, 24.687494664647932 ], [ -78.29868924092014, 24.675661735659787 ], [ -78.300423996043705, 24.677423404920187 ], [ -78.299522497335431, 24.685928108295652 ], [ -78.304103859990406, 24.688912649045719 ], [ -78.308329465803169, 24.689076607093781 ], [ -78.308583554453861, 24.68804253890076 ], [ -78.30516103834745, 24.686318190845721 ], [ -78.305401583664931, 24.684770191961107 ], [ -78.313673278497589, 24.688958626038197 ], [ -78.316299854693725, 24.692500166973126 ], [ -78.317059890362174, 24.699939664126283 ], [ -78.320194835003178, 24.70141294886659 ], [ -78.326873529128477, 24.701085720251665 ], [ -78.328351622089656, 24.703728214903904 ], [ -78.333245465504973, 24.69978323943911 ], [ -78.340665142841473, 24.703114497057108 ], [ -78.345240515293597, 24.707713661566835 ], [ -78.346713043795589, 24.704627225371553 ], [ -78.346051282663964, 24.699929039476629 ], [ -78.339136415122667, 24.694050262566495 ], [ -78.339836198895242, 24.688635361172814 ], [ -78.33665347651565, 24.685363766256884 ], [ -78.334993426833464, 24.686429133274618 ], [ -78.333731631977287, 24.681314956155276 ], [ -78.331756186520124, 24.681101735265493 ], [ -78.333429882672149, 24.680550327341297 ], [ -78.333073429285605, 24.677730019250866 ], [ -78.328292647410734, 24.677836162912762 ], [ -78.329197791664072, 24.680130089915203 ], [ -78.321296107503841, 24.679276795227409 ], [ -78.321048949788576, 24.68056783597439 ], [ -78.317687780557378, 24.681156441969883 ], [ -78.317172961020674, 24.682967628204672 ], [ -78.316569650242911, 24.68143828260456 ], [ -78.313757298492519, 24.681500438113066 ], [ -78.313319706696646, 24.675596457188838 ], [ -78.310137982160683, 24.67232418618444 ], [ -78.309172169287919, 24.66771740212225 ], [ -78.310106955886184, 24.660497538089786 ], [ -78.307755729841801, 24.656692624393045 ], [ -78.309381774032772, 24.654342738899267 ], [ -78.306502248164108, 24.651835020244135 ], [ -78.3082096114302, 24.652568758124989 ], [ -78.309300393112053, 24.651259136398156 ], [ -78.312227470886171, 24.655565559421731 ], [ -78.313921328856935, 24.655785291781076 ], [ -78.314168544813612, 24.654494256672447 ], [ -78.310746943573548, 24.652769941711792 ], [ -78.30831453739259, 24.645881413836975 ], [ -78.310665535008155, 24.649686342835494 ], [ -78.311454751631032, 24.647612009822556 ], [ -78.313175652673252, 24.648859626672699 ], [ -78.31483546043863, 24.647794529898729 ], [ -78.316576779461244, 24.649812999425855 ], [ -78.318517726082959, 24.64874165295296 ], [ -78.318708142283327, 24.655936658166048 ], [ -78.317349852006345, 24.657766485064446 ], [ -78.319633322861961, 24.659001575770858 ], [ -78.321039239312597, 24.658970476065324 ], [ -78.321272767268724, 24.657165509524408 ], [ -78.32268547125588, 24.657391359884695 ], [ -78.321882788050445, 24.658951809945741 ], [ -78.324968977211526, 24.658626364516689 ], [ -78.327259346054035, 24.660118291384613 ], [ -78.33481025981807, 24.658408044784974 ], [ -78.331964328283902, 24.65718568350858 ], [ -78.328905504163643, 24.6585391137491 ], [ -78.323481324751441, 24.655573944278746 ], [ -78.323420024560647, 24.653261276053279 ], [ -78.327329115268867, 24.65214623488249 ], [ -78.328124874494634, 24.65032880418461 ], [ -78.330675799835618, 24.651043574834631 ], [ -78.329496571401322, 24.649012826722338 ], [ -78.334872727257903, 24.650179073851127 ], [ -78.336428939092187, 24.65580095767357 ], [ -78.339021072644584, 24.658057323517742 ], [ -78.338355479949243, 24.664757019529311 ], [ -78.33581107734301, 24.664299374411076 ], [ -78.334727338734169, 24.665866129765067 ], [ -78.335228180874296, 24.66354099450615 ], [ -78.333191517759474, 24.66101512078524 ], [ -78.335742686653361, 24.661729778292944 ], [ -78.335111946688443, 24.65917267743469 ], [ -78.330379671498306, 24.661077539308305 ], [ -78.323624388280564, 24.660970166814543 ], [ -78.321291185900705, 24.668478122468429 ], [ -78.319837507879328, 24.666710490361432 ], [ -78.317875903973643, 24.667010987464437 ], [ -78.320098284530445, 24.665933378459396 ], [ -78.319193435781699, 24.663639364511575 ], [ -78.321114128853665, 24.661797075153419 ], [ -78.318837395384207, 24.660818978423411 ], [ -78.317225075159655, 24.663682883944773 ], [ -78.316875878013747, 24.661119453175118 ], [ -78.315476728482381, 24.661407481443028 ], [ -78.317039099598631, 24.66728660116075 ], [ -78.315508273306889, 24.673234073951374 ], [ -78.316261196566487, 24.680416644092841 ], [ -78.319087137613394, 24.680868371011922 ], [ -78.320713210663271, 24.678518358175218 ], [ -78.327174579724115, 24.678118077194338 ], [ -78.328827776349314, 24.676795839527209 ], [ -78.331941706083356, 24.67749804776464 ], [ -78.331317755261878, 24.675197895915911 ], [ -78.333011889713418, 24.67541738045092 ], [ -78.335014610619695, 24.676658431626951 ], [ -78.334205155661053, 24.677961981736036 ], [ -78.33634485019067, 24.684342187860217 ], [ -78.340083164089933, 24.687344309338648 ], [ -78.340782799312137, 24.692470928987646 ], [ -78.343725416255467, 24.697277568930016 ], [ -78.354704032549293, 24.700084006604875 ], [ -78.35722152108994, 24.699576232769829 ], [ -78.355234119488955, 24.687434941147888 ], [ -78.349997232417479, 24.679547363131466 ], [ -78.352211092653519, 24.674355736377791 ], [ -78.346479089474386, 24.669037566067985 ], [ -78.345641004434128, 24.660613096858711 ], [ -78.341035115991147, 24.651002807664369 ], [ -78.343185571230677, 24.652457215772074 ], [ -78.348873788128103, 24.660308418650544 ], [ -78.347369597908539, 24.661212836548128 ], [ -78.34837983216228, 24.666999183498103 ], [ -78.355312066780598, 24.671623229228857 ], [ -78.357212432087366, 24.678063649779013 ], [ -78.362511258107801, 24.682163919246264 ], [ -78.362330457229589, 24.685680458369841 ], [ -78.366894975216724, 24.692365272109626 ], [ -78.370475936986182, 24.706425984849734 ], [ -78.36918109963689, 24.709996763509988 ], [ -78.36968037072333, 24.711179484449733 ], [ -78.372387548733514, 24.710716466983353 ], [ -78.372995829780223, 24.709256698933572 ], [ -78.37561132486347, 24.708823837927188 ], [ -78.372170393645661, 24.703107596690735 ], [ -78.373846016708299, 24.699308342183219 ], [ -78.379285729224492, 24.700199382690919 ], [ -78.380927983704538, 24.695816868509809 ], [ -78.389320002231514, 24.691643083833362 ], [ -78.391454776050878, 24.687860264544515 ], [ -78.391417671181586, 24.683788920433134 ], [ -78.388014889523632, 24.679990528310924 ], [ -78.381964228238004, 24.679300893965131 ], [ -78.368720058108863, 24.671478990720964 ], [ -78.366287674624346, 24.666438370774614 ], [ -78.375618225993364, 24.668331624382564 ], [ -78.383176716902653, 24.664658470343564 ], [ -78.38245109689737, 24.666304056623012 ], [ -78.387002937505571, 24.670240156418259 ], [ -78.393738832752135, 24.665480714683095 ], [ -78.395836167935371, 24.665996338007005 ], [ -78.396399098289876, 24.660472626951112 ], [ -78.388904353392761, 24.651560067686418 ], [ -78.388609458826906, 24.647255204418816 ], [ -78.395005470304355, 24.646258911192128 ], [ -78.403765673214693, 24.637960389451564 ], [ -78.40790459588203, 24.637599863216117 ], [ -78.417699143077883, 24.626811644361712 ], [ -78.425524457058529, 24.622005521289807 ], [ -78.434117153865387, 24.614186769210878 ], [ -78.440800697371287, 24.612470802057036 ], [ -78.442612352317354, 24.613767115138199 ], [ -78.450796534648788, 24.610400915430045 ], [ -78.452926085789542, 24.607248031255004 ], [ -78.459248690735222, 24.604259279976485 ], [ -78.461604414106574, 24.600718417570462 ], [ -78.453573517438628, 24.593748623076589 ], [ -78.449604019377048, 24.587232554234131 ], [ -78.436983606525899, 24.580605676399216 ], [ -78.41447907363667, 24.561299121757955 ], [ -78.409767301377883, 24.55901700854589 ], [ -78.402800893240681, 24.551621194636908 ], [ -78.395582892456375, 24.547713502477713 ], [ -78.392321008279112, 24.55454868935912 ], [ -78.391674291890055, 24.567877810754457 ], [ -78.392174349171441, 24.579771997915437 ], [ -78.394503784956783, 24.584301092857967 ], [ -78.393458769533467, 24.584305112656669 ], [ -78.394733119812813, 24.591855060239244 ], [ -78.396947497564128, 24.592486536385014 ], [ -78.394867971392173, 24.591903685349841 ], [ -78.394296544501756, 24.593756582456237 ], [ -78.392985362942568, 24.59302091296604 ], [ -78.387546660329605, 24.56794302060867 ], [ -78.385621990833343, 24.539437792940408 ], [ -78.380967234294161, 24.53101273123341 ], [ -78.37487670287274, 24.525180660011536 ], [ -78.364851901640819, 24.521310312605593 ], [ -78.353099736423744, 24.512841837297991 ], [ -78.329828336092888, 24.499659215987506 ], [ -78.326434656202451, 24.498128179526198 ], [ -78.324941373187329, 24.498913849885877 ], [ -78.309115586753308, 24.485271744109529 ], [ -78.28649088689626, 24.471664830994175 ], [ -78.285901189380866, 24.470053724191306 ], [ -78.283181453705367, 24.470127964626148 ], [ -78.270527770412613, 24.462515952893273 ], [ -78.250927721910088, 24.447655679062045 ], [ -78.237991718198444, 24.443983992942808 ], [ -78.235985767944371, 24.441358627607752 ], [ -78.233995696162438, 24.442217730144133 ], [ -78.220318748406626, 24.438955194718567 ], [ -78.218342186048389, 24.439361017220545 ], [ -78.218048511796951, 24.44198991725661 ], [ -78.21340858256039, 24.447509220489692 ], [ -78.21821638383895, 24.438290531652115 ], [ -78.215514771991067, 24.436095449438586 ], [ -78.212668980802178, 24.436214653942951 ], [ -78.207714573958384, 24.433680578603436 ], [ -78.204925043951107, 24.434493094599897 ], [ -78.19597888324337, 24.442021403992783 ], [ -78.175407189724368, 24.463754308243203 ], [ -78.171642047939542, 24.463177890847696 ], [ -78.169113564079808, 24.467899644664779 ], [ -78.161569815915087, 24.470883805949967 ], [ -78.158438755379436, 24.473893778067794 ], [ -78.146638946556664, 24.476843846439884 ], [ -78.133691768126269, 24.487352649830768 ], [ -78.123282791437191, 24.505358864416898 ], [ -78.120946610452563, 24.519286976957734 ], [ -78.122962523543109, 24.497898659715169 ], [ -78.127418695531077, 24.480172453602535 ], [ -78.133472083546593, 24.473106925334463 ], [ -78.154587114761824, 24.458516712618565 ], [ -78.172721213833753, 24.43693647960901 ], [ -78.178813010791799, 24.42416937145077 ], [ -78.181492180139969, 24.412137932980677 ], [ -78.18053556944399, 24.408410598375387 ], [ -78.178086730352064, 24.403049305192255 ], [ -78.166044042131915, 24.392131763249633 ], [ -78.155655071545411, 24.386982692087599 ], [ -78.132549670902677, 24.370721594987106 ], [ -78.131743425791981, 24.371555618117203 ], [ -78.127470744450079, 24.369534461723621 ], [ -78.119527603111905, 24.369095585713151 ], [ -78.119729482137132, 24.372069798134806 ], [ -78.117074738789398, 24.375305331096079 ], [ -78.115668001600028, 24.38112529285425 ], [ -78.114778458203759, 24.391389084133824 ], [ -78.111266615164553, 24.396582486434568 ], [ -78.113350103950296, 24.380599878237536 ], [ -78.10942409781245, 24.364067722248766 ], [ -78.106174339934981, 24.362959642408295 ], [ -78.098106079715961, 24.371116129089323 ], [ -78.091733995330742, 24.373349519309475 ], [ -78.088691010205849, 24.375955984555816 ], [ -78.081921119521851, 24.377085247354607 ], [ -78.087894878050633, 24.375421317776599 ], [ -78.099356277565619, 24.364910353165687 ], [ -78.10159917936231, 24.360886005853359 ], [ -78.100189889747725, 24.354747875344071 ], [ -78.095673510230071, 24.348369219696956 ], [ -78.090542107661008, 24.345865614849437 ], [ -78.08915083111863, 24.342101080955523 ], [ -78.082687056487273, 24.336564190550057 ], [ -78.081110164746647, 24.332303701386426 ], [ -78.079102322795123, 24.331190064180589 ], [ -78.077325806458404, 24.324068780771896 ], [ -78.069900755254196, 24.320574350773558 ], [ -78.067694647137557, 24.31625951640904 ], [ -78.066098389582976, 24.298618066588073 ], [ -78.063283152980333, 24.294147555189181 ], [ -78.063557401552686, 24.291120168737045 ], [ -78.056607648842402, 24.286167417481533 ], [ -78.056062696128024, 24.27805785805986 ], [ -78.051344998426515, 24.277536762643475 ], [ -78.04644708121684, 24.269300638127422 ], [ -78.036899841745281, 24.26911561116755 ], [ -78.033224011731249, 24.270817779674832 ], [ -78.032523373948493, 24.274415980337618 ], [ -78.024874870801355, 24.274413838867655 ], [ -78.021310976289811, 24.272854442800988 ], [ -78.016984842584876, 24.277768242128818 ], [ -78.015057583492435, 24.27807748749861 ], [ -78.013942708023194, 24.274416756256457 ], [ -78.015222040614105, 24.269742255894151 ], [ -78.011564221475169, 24.269625263134785 ], [ -78.01008184130292, 24.276291791748633 ], [ -78.007863757335386, 24.278933123147485 ], [ -78.003396460316878, 24.280834026250794 ], [ -78.003915699494215, 24.282088218248244 ], [ -78.008230456165137, 24.280523419000833 ], [ -78.014762675404882, 24.28606555066305 ], [ -78.027731468654636, 24.289046197377623 ], [ -78.029087337842483, 24.295124316481701 ], [ -78.027427181019831, 24.297884855318628 ], [ -78.033723609463451, 24.298275961925469 ], [ -78.037516245418473, 24.302462119272136 ], [ -78.013422940985151, 24.310136305318355 ], [ -78.00462423084798, 24.321888923653269 ], [ -77.988525015155261, 24.32381778334323 ], [ -77.978537709943794, 24.329692364224275 ], [ -77.975183983233165, 24.33824286453164 ], [ -77.975870802945991, 24.344181383632606 ], [ -77.973947404447173, 24.343605798068626 ], [ -77.970897998811111, 24.3460724179184 ], [ -77.970296802790614, 24.342581567927905 ], [ -77.962517575990461, 24.340574160787803 ], [ -77.963269316980686, 24.334486338862767 ], [ -77.956171904053662, 24.332665360486359 ], [ -77.963068041953875, 24.332812045076849 ], [ -77.964071633601904, 24.33015744434638 ], [ -77.958096921158699, 24.327645728481798 ], [ -77.955258788282521, 24.328250428614417 ], [ -77.95201665635976, 24.32097537329301 ], [ -77.950520524233426, 24.32105894441656 ], [ -77.949343827931202, 24.323474938099249 ], [ -77.943148011618135, 24.321733039962663 ], [ -77.934170585986678, 24.327048551867954 ], [ -77.923499908333326, 24.330840908459823 ], [ -77.920807797641487, 24.329472284928492 ], [ -77.918671308280594, 24.332213249695496 ], [ -77.899268714939069, 24.342919598333889 ], [ -77.89942998244247, 24.348077754459077 ], [ -77.895568081768687, 24.350060946568938 ], [ -77.895792912665001, 24.35596213144736 ], [ -77.894016915892465, 24.356260972253935 ], [ -77.893490006013906, 24.359275993303417 ], [ -77.891436943653673, 24.359240632660242 ], [ -77.890492061525961, 24.355190883409687 ], [ -77.893103209002433, 24.353545773952611 ], [ -77.894228901191894, 24.354296007297947 ], [ -77.89516373426261, 24.353196830320584 ], [ -77.893872293007149, 24.352188295610365 ], [ -77.883926932609, 24.357085753472425 ], [ -77.888986820945448, 24.360624086652273 ], [ -77.890265471249563, 24.364380621834606 ], [ -77.888732650635134, 24.366514867856747 ], [ -77.876109690755001, 24.373091288059385 ], [ -77.870996869665504, 24.379942524661335 ], [ -77.864092644789977, 24.382846679488605 ], [ -77.863660472846234, 24.384131306290673 ], [ -77.870798272370379, 24.386557480675503 ], [ -77.864460284453898, 24.389425820765446 ], [ -77.86441124672001, 24.392568699404265 ], [ -77.871594509251068, 24.395106300783304 ], [ -77.872209744897063, 24.396760243035445 ], [ -77.870907524138644, 24.397912020039016 ], [ -77.873074451935764, 24.402349021848988 ], [ -77.87933269427198, 24.39740561218764 ], [ -77.881234886158808, 24.393968258841689 ], [ -77.881092947494579, 24.396831184845301 ], [ -77.875911425946541, 24.402916691747297 ], [ -77.879768150639535, 24.403071764789811 ], [ -77.879688130928841, 24.401861094882793 ], [ -77.881440879537166, 24.401751639881084 ], [ -77.878987701460517, 24.406126761810146 ], [ -77.872892177984426, 24.407967454721181 ], [ -77.8723208237177, 24.409747027577218 ], [ -77.874342091716912, 24.412801651731581 ], [ -77.871061258875542, 24.411085716439086 ], [ -77.870313286776877, 24.411856311890709 ], [ -77.869118686497572, 24.420190136541439 ], [ -77.866900032417746, 24.419848591293498 ], [ -77.86829036381657, 24.412420013791422 ], [ -77.866556234547261, 24.411997352426543 ], [ -77.866102826075149, 24.413915590339695 ], [ -77.862597436261495, 24.416299830382147 ], [ -77.860078550165852, 24.421935257088045 ], [ -77.861079775068902, 24.426450513300381 ], [ -77.854895367257456, 24.428111420345285 ], [ -77.855425605525511, 24.425973633881203 ], [ -77.853930333148881, 24.424649795697938 ], [ -77.855007024728991, 24.420728726186777 ], [ -77.848051277206878, 24.425469726186552 ], [ -77.847732836607619, 24.427188419930534 ], [ -77.844023637111249, 24.42812145804653 ], [ -77.834509539167158, 24.435931427496516 ], [ -77.825926751008453, 24.43995829304265 ], [ -77.828289439397466, 24.442177799045368 ], [ -77.825193232595666, 24.443494468037809 ], [ -77.824151108313416, 24.442013005752489 ], [ -77.822811107041119, 24.443609044356069 ], [ -77.818137557511761, 24.444430479171611 ], [ -77.813785339007723, 24.443039974670178 ], [ -77.811374990596818, 24.444466542404587 ], [ -77.809698005249018, 24.443639778730894 ], [ -77.808413698112801, 24.445295213608734 ], [ -77.806411241896527, 24.44394779134689 ], [ -77.790656766744107, 24.445098547547332 ], [ -77.78611220383749, 24.446488512543656 ], [ -77.787600368213347, 24.447755546386936 ], [ -77.773384758783507, 24.449200031015785 ], [ -77.76866582902727, 24.45360947133091 ], [ -77.767615682124983, 24.453038046979891 ], [ -77.769673536511633, 24.449540430608341 ], [ -77.764938716011969, 24.45286549379118 ], [ -77.763505065012197, 24.456411394462847 ], [ -77.760835337757882, 24.454289492755343 ], [ -77.759124263926168, 24.457650062998038 ], [ -77.744770432687645, 24.465416827063496 ], [ -77.739449746975268, 24.463583030787138 ], [ -77.742638539707357, 24.461103775383204 ], [ -77.740540131020367, 24.459797378771807 ], [ -77.738795285964429, 24.460938718514093 ], [ -77.733724338342753, 24.458973258624532 ], [ -77.730583751500632, 24.466564487640809 ], [ -77.719008239732446, 24.477552831332307 ], [ -77.718865333680895, 24.484597811186649 ], [ -77.720837820864674, 24.485116659254185 ], [ -77.726400925601865, 24.479026136003132 ], [ -77.741163484521692, 24.477675832387202 ], [ -77.744345878591147, 24.474369063941364 ], [ -77.751401618944172, 24.472345441567988 ], [ -77.754773905043322, 24.474720660295564 ], [ -77.758758698359131, 24.470586743378963 ], [ -77.761999518940357, 24.469986014969688 ], [ -77.76676018709793, 24.471252582438947 ], [ -77.756166809252363, 24.474158263295571 ], [ -77.757693928607353, 24.476021078460743 ], [ -77.756877604849379, 24.479284918310054 ], [ -77.75984657129176, 24.479772159923648 ], [ -77.765128020319622, 24.477780315043333 ], [ -77.773147772072591, 24.479257670698871 ], [ -77.774300929429089, 24.477882775373985 ], [ -77.781669791417485, 24.476664222849521 ], [ -77.782302878765279, 24.478547740891866 ], [ -77.781131952252352, 24.479110797187925 ], [ -77.783508584391029, 24.479565137662881 ], [ -77.805115717781575, 24.466754627829776 ], [ -77.810100093250412, 24.464766808808751 ], [ -77.813955811712901, 24.465236491693496 ], [ -77.811035198464111, 24.466915298758408 ] ], [ [ -77.780848146640196, 24.479657506536 ], [ -77.78083029132263, 24.478845613400903 ], [ -77.780534681813918, 24.478855570927632 ], [ -77.780256725366129, 24.479668399613036 ], [ -77.780848146640196, 24.479657506536 ] ], [ [ -77.74058757729567, 24.45083488491106 ], [ -77.754991696540429, 24.44416389151338 ], [ -77.747052934570149, 24.425716226141365 ], [ -77.731239091076361, 24.428010034887375 ], [ -77.722881935495195, 24.430983547072429 ], [ -77.72963117691242, 24.441546143595144 ], [ -77.734000245859065, 24.441792920757276 ], [ -77.74058757729567, 24.45083488491106 ] ], [ [ -77.809879908737301, 24.424396585717393 ], [ -77.814832771813585, 24.424713485010216 ], [ -77.816327128904362, 24.423498014390468 ], [ -77.812908000192564, 24.421798159660188 ], [ -77.809879908737301, 24.424396585717393 ] ], [ [ -77.8065270357218, 24.422817764719166 ], [ -77.812139278277598, 24.420722103371887 ], [ -77.811743478257284, 24.418290973606759 ], [ -77.806274891839479, 24.419279842773154 ], [ -77.805652531874713, 24.416117349817544 ], [ -77.799417527876543, 24.419253313343546 ], [ -77.800030414080936, 24.416795001594618 ], [ -77.801694688184469, 24.416399319459913 ], [ -77.801219869772339, 24.414067170543738 ], [ -77.799428133929396, 24.413926104737495 ], [ -77.79563422464814, 24.418414040615982 ], [ -77.796157435965213, 24.424639318655746 ], [ -77.804142570226986, 24.422282184259505 ], [ -77.8065270357218, 24.422817764719166 ] ], [ [ -77.825002422618283, 24.414122197875898 ], [ -77.824845536320694, 24.415478806323044 ], [ -77.827203457479968, 24.414865784404814 ], [ -77.83002689720098, 24.411358470201385 ], [ -77.829939711870423, 24.4092365233161 ], [ -77.835421917251054, 24.40921054610909 ], [ -77.838721980894434, 24.400470635475411 ], [ -77.845047065831196, 24.399104468521035 ], [ -77.846180849576669, 24.39646756276036 ], [ -77.842902479496516, 24.397540201262043 ], [ -77.840029514483206, 24.393128356352594 ], [ -77.834680511895982, 24.394174878510945 ], [ -77.832612140520212, 24.392873146798888 ], [ -77.827669801577073, 24.396523196961674 ], [ -77.828284218835947, 24.398029051832399 ], [ -77.825951193987763, 24.400310172612709 ], [ -77.820463854552315, 24.400959572761121 ], [ -77.819717820998093, 24.401998786046651 ], [ -77.821532499638394, 24.404341307430631 ], [ -77.816917311415892, 24.406628889720391 ], [ -77.816018020874111, 24.408466761464975 ], [ -77.818064698978745, 24.408702032640065 ], [ -77.819204793123305, 24.411503961970933 ], [ -77.824900398580724, 24.410844340555805 ], [ -77.826767915908221, 24.412230552609731 ], [ -77.825002422618283, 24.414122197875898 ] ], [ [ -77.754084075114847, 24.41353007170046 ], [ -77.75666175996372, 24.4125410606085 ], [ -77.75593972699248, 24.410845659161808 ], [ -77.754414984571781, 24.41069125557172 ], [ -77.754084075114847, 24.41353007170046 ] ], [ [ -77.757246216935911, 24.411214223454497 ], [ -77.76192306093408, 24.411170686549049 ], [ -77.763973451069475, 24.408859402935605 ], [ -77.761492378829416, 24.409604576266812 ], [ -77.760438611071805, 24.408456216384049 ], [ -77.761888089154297, 24.403204426573769 ], [ -77.758922939912651, 24.405238877291158 ], [ -77.759073686433709, 24.40871219985122 ], [ -77.757246216935911, 24.411214223454497 ] ], [ [ -77.76690902333776, 24.405184532801769 ], [ -77.769743877852932, 24.404872498139831 ], [ -77.771976283638153, 24.402187896303246 ], [ -77.771717604669234, 24.399214183954889 ], [ -77.775164125983551, 24.398870759486474 ], [ -77.776989424103007, 24.396728967625609 ], [ -77.775320563246666, 24.390146449223735 ], [ -77.771898436568662, 24.39058486198897 ], [ -77.773932040613872, 24.387738903584264 ], [ -77.770759312013453, 24.387379518891464 ], [ -77.765215749227949, 24.391606836646975 ], [ -77.766945152248141, 24.395870140494349 ], [ -77.763720588215449, 24.396361350197971 ], [ -77.766576744504604, 24.399035127034161 ], [ -77.76385722862679, 24.399858716149513 ], [ -77.762386413339584, 24.402978257875688 ], [ -77.76690902333776, 24.405184532801769 ] ], [ [ -77.8728736243296, 24.404228370299712 ], [ -77.873270336526758, 24.405625505287766 ], [ -77.875935774989145, 24.40492077964981 ], [ -77.874390771771317, 24.403794256641326 ], [ -77.8728736243296, 24.404228370299712 ] ], [ [ -77.835007716872568, 24.424243256600537 ], [ -77.832113201613524, 24.42562102703473 ], [ -77.830714635140737, 24.424725290428992 ], [ -77.828250592571834, 24.426205974957725 ], [ -77.831109832862268, 24.428617894988985 ], [ -77.838506098325809, 24.42347144731982 ], [ -77.835007716872568, 24.424243256600537 ] ], [ [ -77.821855993275108, 24.42720507502214 ], [ -77.811564567628935, 24.430762500841414 ], [ -77.81088017947441, 24.432761867938645 ], [ -77.805169457969029, 24.435879638710084 ], [ -77.803451873529809, 24.434568385940693 ], [ -77.799189207609245, 24.435837412781304 ], [ -77.796248674342309, 24.432570781106861 ], [ -77.78910925997333, 24.432425578084217 ], [ -77.781543234175615, 24.440775533084107 ], [ -77.7840587728994, 24.442544030108046 ], [ -77.796768613321177, 24.439595365099446 ], [ -77.811096160041927, 24.439841173494013 ], [ -77.82860811883431, 24.430658478830036 ], [ -77.828632438021089, 24.429496825778934 ], [ -77.82400214288144, 24.431197219757443 ], [ -77.821554034136938, 24.430011133881003 ], [ -77.821855993275108, 24.42720507502214 ] ], [ [ -77.83613137523929, 24.3793577574782 ], [ -77.841620755390565, 24.378666048045972 ], [ -77.847026595604973, 24.37488105264303 ], [ -77.847434893132956, 24.373116782537135 ], [ -77.846100754556872, 24.372445197133928 ], [ -77.842506669125171, 24.376448385034749 ], [ -77.836894815404037, 24.377616464310126 ], [ -77.83613137523929, 24.3793577574782 ] ], [ [ -77.801410386188579, 24.369076659498592 ], [ -77.806180273955576, 24.36223044561687 ], [ -77.809357217175673, 24.36272282987921 ], [ -77.815019906947285, 24.360651161254125 ], [ -77.819744357701069, 24.349830023456715 ], [ -77.818048206533575, 24.344953640803077 ], [ -77.799335301403062, 24.361544851841618 ], [ -77.799711761356207, 24.367734795896141 ], [ -77.801410386188579, 24.369076659498592 ] ], [ [ -77.835227966092873, 24.345279980264767 ], [ -77.83365586002995, 24.348710765121311 ], [ -77.830066247036513, 24.346868929257749 ], [ -77.82682933082755, 24.353706485596639 ], [ -77.830448033966974, 24.351557123859415 ], [ -77.831776856039028, 24.35304699585258 ], [ -77.835522244619469, 24.352565835512369 ], [ -77.839802260066165, 24.350173340438172 ], [ -77.845731966707461, 24.354211962845145 ], [ -77.854337377165606, 24.348719270986521 ], [ -77.861583166083548, 24.348770353525182 ], [ -77.866611820096097, 24.346705387237517 ], [ -77.874604241377853, 24.348255067592639 ], [ -77.879488384774518, 24.344005447263182 ], [ -77.884795756354322, 24.342617517140113 ], [ -77.879781436681142, 24.349436667313885 ], [ -77.882845478198703, 24.349545505427919 ], [ -77.888109272219168, 24.342429105469716 ], [ -77.885819286735583, 24.335694201883257 ], [ -77.887108667301291, 24.329745890315124 ], [ -77.881137112961483, 24.327343054394102 ], [ -77.876867215711911, 24.317441734007385 ], [ -77.866393519224246, 24.315479688211401 ], [ -77.856816989166177, 24.320012409108291 ], [ -77.851384451402296, 24.324298308320159 ], [ -77.839085789169985, 24.329254995307657 ], [ -77.839188554354124, 24.332938144305711 ], [ -77.83748501990712, 24.332876965656521 ], [ -77.835386197361089, 24.335330378040616 ], [ -77.835227966092873, 24.345279980264767 ] ], [ [ -77.839626690915509, 24.316774361042995 ], [ -77.836305785573145, 24.317651600993276 ], [ -77.837538382364556, 24.32035442203799 ], [ -77.840193431546723, 24.318862220007912 ], [ -77.839626690915509, 24.316774361042995 ] ], [ [ -77.824126876639596, 24.31629403558788 ], [ -77.825303477905123, 24.314662505110995 ], [ -77.824387074816983, 24.313018649935977 ], [ -77.822300438766149, 24.315161784172542 ], [ -77.822690590269445, 24.316617414022716 ], [ -77.824126876639596, 24.31629403558788 ] ], [ [ -77.889793054460426, 24.311019282424084 ], [ -77.891470461191872, 24.312288883420841 ], [ -77.897560615547661, 24.310956808901281 ], [ -77.906152775449854, 24.306693793222159 ], [ -77.911147251988439, 24.300997173639733 ], [ -77.923567132512474, 24.299617657488561 ], [ -77.935580590663164, 24.292459125384369 ], [ -77.924066147435553, 24.293421331749077 ], [ -77.916735206015176, 24.298244513946187 ], [ -77.909926096858314, 24.297966998433601 ], [ -77.897609621607529, 24.30106983548691 ], [ -77.889871017557923, 24.301415927302372 ], [ -77.87993809208767, 24.30645618738339 ], [ -77.887258191426994, 24.305715092505068 ], [ -77.890284244827527, 24.306759175340133 ], [ -77.891479247468112, 24.308740962207004 ], [ -77.889793054460426, 24.311019282424084 ] ], [ [ -77.83357842256089, 24.308621769991095 ], [ -77.835843358777737, 24.302952415556625 ], [ -77.834800390906807, 24.299341270755694 ], [ -77.836840902272598, 24.294172630166983 ], [ -77.835470752030588, 24.293318859029899 ], [ -77.828611812121608, 24.296667903331873 ], [ -77.833172163115137, 24.298221828524134 ], [ -77.831668053889302, 24.303495172685086 ], [ -77.834458388085139, 24.304044314330536 ], [ -77.834383584679244, 24.305792019047949 ], [ -77.831814040434807, 24.30628125756057 ], [ -77.828051282271829, 24.310821509318082 ], [ -77.83357842256089, 24.308621769991095 ] ], [ [ -77.793531442681697, 24.305608498405341 ], [ -77.800901815595168, 24.303579574076966 ], [ -77.80634422925246, 24.305297292921686 ], [ -77.810327200826478, 24.303315449490654 ], [ -77.811731369221263, 24.304176224771762 ], [ -77.823822221049483, 24.302336569100515 ], [ -77.827207649674691, 24.30070648937841 ], [ -77.821053300764817, 24.299264509120093 ], [ -77.804719708971561, 24.301691080940412 ], [ -77.79307045461232, 24.299519698920626 ], [ -77.78977834995402, 24.303939906878099 ], [ -77.790954436552028, 24.30672196452177 ], [ -77.793531442681697, 24.305608498405341 ] ], [ [ -77.668159060052133, 24.303119448861857 ], [ -77.66939953449743, 24.300798275426768 ], [ -77.66337791361066, 24.300920439583837 ], [ -77.662717118796124, 24.302144649112254 ], [ -77.668159060052133, 24.303119448861857 ] ], [ [ -77.767832555143613, 24.300038564581346 ], [ -77.77166887333415, 24.299261820105929 ], [ -77.773070087127621, 24.297134239771275 ], [ -77.771744740955, 24.29693238071059 ], [ -77.767832555143613, 24.300038564581346 ] ], [ [ -77.749447435491788, 24.297467934777789 ], [ -77.754420195981027, 24.294648876969354 ], [ -77.769656749817997, 24.292371219983671 ], [ -77.780660264193642, 24.286711290461007 ], [ -77.787500307769633, 24.28979490197397 ], [ -77.796799468516696, 24.287473026953112 ], [ -77.800898162552087, 24.283453466664579 ], [ -77.80538057873548, 24.283392941867966 ], [ -77.806581859802691, 24.2802082990526 ], [ -77.809879307583188, 24.278329608152085 ], [ -77.80418379192129, 24.272902353242927 ], [ -77.810272187901916, 24.271891959336507 ], [ -77.813336471863749, 24.274377939861907 ], [ -77.820318250451862, 24.275653737560045 ], [ -77.824938250614835, 24.278319174181391 ], [ -77.83259000068621, 24.276908643819592 ], [ -77.82818077164255, 24.273345874239379 ], [ -77.8208357789443, 24.271990193933231 ], [ -77.807704725400185, 24.266489948883265 ], [ -77.800245218197148, 24.268331382641861 ], [ -77.797050151489231, 24.267368598238335 ], [ -77.785101872656526, 24.27502538562133 ], [ -77.78221729633961, 24.278850179274833 ], [ -77.772862966199583, 24.283578725229258 ], [ -77.768042714619227, 24.288673906123211 ], [ -77.764000278179225, 24.288265535475883 ], [ -77.750420427740266, 24.293190751350881 ], [ -77.74770136658347, 24.298083618666247 ], [ -77.749447435491788, 24.297467934777789 ] ], [ [ -77.873889904544015, 24.269827513413528 ], [ -77.879455896595061, 24.269429448795499 ], [ -77.881824151128285, 24.271188447193797 ], [ -77.886141741209443, 24.265339722834234 ], [ -77.895791337164212, 24.26393705641857 ], [ -77.899412546317237, 24.259037463067319 ], [ -77.897338500059035, 24.253395683735651 ], [ -77.9006967424273, 24.247030330055743 ], [ -77.907063513701218, 24.236560272268189 ], [ -77.909592369262583, 24.234943861673109 ], [ -77.911322934849991, 24.229393360317289 ], [ -77.916694764121445, 24.22453080001327 ], [ -77.919560996448354, 24.224563332485189 ], [ -77.921071834270307, 24.221187009385545 ], [ -77.913690953650587, 24.225090683594196 ], [ -77.902209645152126, 24.238207286519533 ], [ -77.891004386927222, 24.244940710772596 ], [ -77.885344150152278, 24.243195418089954 ], [ -77.880137478286443, 24.248463677174541 ], [ -77.873618696945726, 24.251851159857281 ], [ -77.872257351537186, 24.248875298376166 ], [ -77.874175796005076, 24.244618627598957 ], [ -77.872902960774383, 24.243511898022565 ], [ -77.877378143300419, 24.237987780818361 ], [ -77.88721131052273, 24.235432519137117 ], [ -77.891249649131936, 24.232739184663995 ], [ -77.889346646501082, 24.22870090547184 ], [ -77.893403591048241, 24.220524100780665 ], [ -77.894075302537644, 24.213569372004191 ], [ -77.892195541609439, 24.200203408399272 ], [ -77.897999561811318, 24.200775685273776 ], [ -77.908365241133765, 24.199172564923494 ], [ -77.919368450532005, 24.202027222704501 ], [ -77.927056326278645, 24.19788561491595 ], [ -77.92592696300612, 24.188536090044735 ], [ -77.923175903666149, 24.186213451977238 ], [ -77.927527006648432, 24.188014388631441 ], [ -77.930360075112006, 24.186324188057551 ], [ -77.934998961564673, 24.195118009400336 ], [ -77.922211433667016, 24.206255119688574 ], [ -77.929473592472718, 24.2034188608866 ], [ -77.930845058652721, 24.206089133497205 ], [ -77.932245507299939, 24.203079965268419 ], [ -77.936289978828029, 24.200351877912887 ], [ -77.942960839272388, 24.202432214736742 ], [ -77.945018441221436, 24.200740330738444 ], [ -77.948646523033915, 24.20064340388026 ], [ -77.949593997062067, 24.195820004967921 ], [ -77.954506269234329, 24.194430649126222 ], [ -77.955855653232135, 24.182919708501711 ], [ -77.957042999285648, 24.182313450756975 ], [ -77.960196735693685, 24.181373942634899 ], [ -77.970390497555172, 24.182978014221966 ], [ -77.972960221976152, 24.186982310534944 ], [ -77.982334692083157, 24.19101179882848 ], [ -77.986240745127674, 24.190597387838519 ], [ -77.988994690306114, 24.188429189151552 ], [ -77.994727029879058, 24.174016813746114 ], [ -77.983680550948591, 24.170485001597054 ], [ -77.978150543538618, 24.164741550313146 ], [ -77.974574373613436, 24.156588839583563 ], [ -77.965643856268542, 24.151698192680605 ], [ -77.96269191077711, 24.14594195583966 ], [ -77.944165992577936, 24.147630828830604 ], [ -77.94120076097812, 24.149060705606988 ], [ -77.936442642084018, 24.153899082955661 ], [ -77.935944678287768, 24.158959650191086 ], [ -77.929990855785306, 24.161966261341632 ], [ -77.92539007945625, 24.162729858234247 ], [ -77.918603202451195, 24.160582043167423 ], [ -77.877015136213799, 24.175440229625497 ], [ -77.869496030169344, 24.174605626604492 ], [ -77.864743272660192, 24.177833370840318 ], [ -77.862684126896113, 24.177518054731195 ], [ -77.858892383153673, 24.182005906440271 ], [ -77.855422214578596, 24.19203220937947 ], [ -77.861751314830826, 24.200549195596892 ], [ -77.862837786435406, 24.205555619183215 ], [ -77.859579861526612, 24.208743534953388 ], [ -77.85035760874149, 24.212292528301731 ], [ -77.851871423871401, 24.21509738959206 ], [ -77.849718776081261, 24.220844608985086 ], [ -77.844071610184244, 24.222550106529617 ], [ -77.844524305434021, 24.224148091959265 ], [ -77.849725418929225, 24.226560365870757 ], [ -77.85492389239036, 24.226223361632499 ], [ -77.856238454953868, 24.22692179491964 ], [ -77.855178119821701, 24.229889389929642 ], [ -77.865766165243883, 24.233510177138189 ], [ -77.870052773433486, 24.2331752731839 ], [ -77.871573875008266, 24.230474922274443 ], [ -77.873298564723967, 24.233567680970364 ], [ -77.870708647801308, 24.241347554589296 ], [ -77.867989768927472, 24.240326500173119 ], [ -77.856806763398595, 24.244116049955423 ], [ -77.852470931081882, 24.242303093970321 ], [ -77.850320163368863, 24.245225551011782 ], [ -77.844912543574011, 24.248178822774918 ], [ -77.838590586028957, 24.245005832306706 ], [ -77.834985566804917, 24.23795668098111 ], [ -77.830173087278084, 24.235860305036649 ], [ -77.826575159112522, 24.23605809005058 ], [ -77.824863712314809, 24.232740795092258 ], [ -77.823300344892033, 24.233038711648192 ], [ -77.819276169234357, 24.234439563824377 ], [ -77.812897735042881, 24.244338225417128 ], [ -77.808922436186464, 24.246797635179067 ], [ -77.807277037496135, 24.25083443792564 ], [ -77.803534683847616, 24.25272017674806 ], [ -77.802000455968539, 24.255261831855691 ], [ -77.810610797830122, 24.259803572593032 ], [ -77.814302535043382, 24.260139516735602 ], [ -77.82123974045831, 24.263656902050329 ], [ -77.825600019541127, 24.263891310649875 ], [ -77.834461181659847, 24.26207277075574 ], [ -77.840826073768739, 24.263567768818856 ], [ -77.846582944118637, 24.259922749243021 ], [ -77.852893664522611, 24.26034218490614 ], [ -77.858408510839467, 24.263238054347354 ], [ -77.863452319583331, 24.260607609489238 ], [ -77.866042863354878, 24.255253563210513 ], [ -77.867247535442743, 24.255915343744739 ], [ -77.866841107384317, 24.258300652090572 ], [ -77.869448527913278, 24.260594448737859 ], [ -77.869136567507582, 24.263556720687408 ], [ -77.866564447478993, 24.264708025790313 ], [ -77.870281513243341, 24.264969928524334 ], [ -77.875771551351733, 24.261296642032629 ], [ -77.879212234978951, 24.263496223382656 ], [ -77.873465068024643, 24.268506741409059 ], [ -77.873889904544015, 24.269827513413528 ] ], [ [ -77.985640759471309, 24.198787203493321 ], [ -77.98214435926424, 24.19888798147241 ], [ -77.979344913869085, 24.201134167197761 ], [ -77.979169362882317, 24.205519565120984 ], [ -77.975508923553789, 24.210316287227688 ], [ -77.964971677950373, 24.215951903649678 ], [ -77.968065104501392, 24.209576248374503 ], [ -77.958527661814031, 24.210128626897312 ], [ -77.956592518133277, 24.20812102397624 ], [ -77.951054114734305, 24.208653885585441 ], [ -77.943755769871331, 24.214228694973603 ], [ -77.936107491769235, 24.213386616418802 ], [ -77.934002875905406, 24.217078011120979 ], [ -77.936084294412893, 24.219343507479209 ], [ -77.930578305288762, 24.223478261060517 ], [ -77.930637661182047, 24.224792138748668 ], [ -77.93557294182078, 24.221431915991161 ], [ -77.944185533055972, 24.221000065067887 ], [ -77.950193080349976, 24.227917152657469 ], [ -77.951816612754911, 24.233544877835378 ], [ -77.932832010343972, 24.242934325763198 ], [ -77.935579463817561, 24.245053432703997 ], [ -77.936179110571842, 24.247835795165546 ], [ -77.933173387208228, 24.253079061432725 ], [ -77.923667339555621, 24.254662356881372 ], [ -77.91692122171392, 24.259452731965151 ], [ -77.917013776910707, 24.261504131978892 ], [ -77.925565562203346, 24.258613988207664 ], [ -77.928289012293448, 24.259070993820323 ], [ -77.928307470400554, 24.262039607727335 ], [ -77.924754571103037, 24.264446727813205 ], [ -77.928120530003966, 24.267230841757979 ], [ -77.936659018105289, 24.265026377589049 ], [ -77.937778662766092, 24.265527935493424 ], [ -77.93790986782281, 24.271343007833323 ], [ -77.941540761349884, 24.268989593815608 ], [ -77.945685068365577, 24.268621126791345 ], [ -77.946451779161151, 24.272658603655341 ], [ -77.96519614283828, 24.261970396378338 ], [ -77.966543813353169, 24.258523907209863 ], [ -77.965480750443632, 24.257945586605832 ], [ -77.960513011456356, 24.260409111317927 ], [ -77.95977590977455, 24.259293801797241 ], [ -77.961442884343128, 24.254981123200533 ], [ -77.980731352942541, 24.243532503086453 ], [ -77.987770735057481, 24.235134108844214 ], [ -77.995918105005359, 24.231905038354885 ], [ -78.001295169822541, 24.232945588423675 ], [ -78.002152083303855, 24.239353329095241 ], [ -78.0078121738064, 24.235962802866602 ], [ -78.015972879947398, 24.237692707489824 ], [ -78.015209002904541, 24.240008889667028 ], [ -78.016919601196818, 24.239607756366038 ], [ -78.019297870654995, 24.241768522007181 ], [ -78.018406034237998, 24.243444059031585 ], [ -78.004683970828609, 24.251032738516312 ], [ -78.007472664835774, 24.253643454859457 ], [ -78.00315265427156, 24.259106091079651 ], [ -77.995560080441308, 24.261473727240837 ], [ -77.981213506970576, 24.259873820454736 ], [ -77.978972224330235, 24.262699478094675 ], [ -77.97942970677957, 24.266882626727334 ], [ -77.963694207455774, 24.277780624899147 ], [ -77.958697905852219, 24.277857415216008 ], [ -77.956206863833756, 24.28194422626315 ], [ -77.962797663258186, 24.278754352010449 ], [ -77.966243797809852, 24.281748513014996 ], [ -77.971518669795302, 24.27948495044846 ], [ -77.974854167467356, 24.281145198645955 ], [ -77.978023753778231, 24.280426117714327 ], [ -77.993823447373842, 24.27058925256533 ], [ -78.006406976632348, 24.269588091800671 ], [ -78.007753203116593, 24.266897961149194 ], [ -78.012210603582858, 24.266501402471981 ], [ -78.01651289121294, 24.263263499701822 ], [ -78.02167774059194, 24.256016187241929 ], [ -78.020763168186036, 24.252701798263839 ], [ -78.015946538530372, 24.249480201142145 ], [ -78.023974658432152, 24.248210909237276 ], [ -78.025240585412277, 24.243765831575935 ], [ -78.028335956594319, 24.241081992155383 ], [ -78.03023363693238, 24.241775939750582 ], [ -78.028625585382485, 24.243839079153304 ], [ -78.032427270619593, 24.246898634420589 ], [ -78.031306453126248, 24.249927050848189 ], [ -78.033488520678645, 24.255026943014222 ], [ -78.032855043865709, 24.257517184270782 ], [ -78.038188574800358, 24.262207212645368 ], [ -78.036613872940691, 24.262784067386747 ], [ -78.036694441684432, 24.264535170467916 ], [ -78.040295654557198, 24.268107623351842 ], [ -78.045626813772159, 24.267880556452063 ], [ -78.047648794940088, 24.254150692139003 ], [ -78.040719466580072, 24.247069265844186 ], [ -78.03711173190645, 24.245973437791658 ], [ -78.036473908945027, 24.24248788313302 ], [ -78.033403647213717, 24.24105975415269 ], [ -78.033068322601451, 24.237358499760926 ], [ -78.031250353284918, 24.235530994088418 ], [ -78.034422566858709, 24.232204972847494 ], [ -78.030041764866979, 24.23030932831508 ], [ -78.028247159381735, 24.232098325761569 ], [ -78.02555829933074, 24.231862097267665 ], [ -78.022644339795704, 24.229981190856225 ], [ -78.0167155561291, 24.223062024886506 ], [ -78.01291204385771, 24.222350381750264 ], [ -78.010737888001429, 24.219434107196374 ], [ -78.007390657649779, 24.218831721201969 ], [ -77.999999815273924, 24.211028074966062 ], [ -77.99752106072728, 24.211559124527028 ], [ -77.992801634443992, 24.208647182513207 ], [ -77.985640759471309, 24.198787203493321 ] ], [ [ -78.029669764786263, 24.256421226282882 ], [ -78.027757746649911, 24.256038201175798 ], [ -78.026766462855988, 24.257129409008133 ], [ -78.031189031358991, 24.25858910197087 ], [ -78.029669764786263, 24.256421226282882 ] ], [ [ -77.876547827525116, 24.279816746039522 ], [ -77.874844154391127, 24.2781035252011 ], [ -77.87725472636042, 24.276329060714257 ], [ -77.876711504226165, 24.275216237585632 ], [ -77.869312548167088, 24.279112591393922 ], [ -77.864464822781741, 24.280017880336555 ], [ -77.864943620984363, 24.285651411503157 ], [ -77.860322837295357, 24.288020454185919 ], [ -77.864428132358398, 24.287178192527215 ], [ -77.867500646493809, 24.28904573351338 ], [ -77.873769579515823, 24.282705412037874 ], [ -77.876676915630938, 24.284276341974518 ], [ -77.876547827525116, 24.279816746039522 ] ], [ [ -77.941788490382351, 24.286813246521298 ], [ -77.94068101603149, 24.288638005842543 ], [ -77.942162991401986, 24.290326150395636 ], [ -77.94768685133451, 24.286468850872676 ], [ -77.944273203490397, 24.285021268123554 ], [ -77.941788490382351, 24.286813246521298 ] ], [ [ -77.837326236720074, 24.290165429646262 ], [ -77.830984519863009, 24.285160401125854 ], [ -77.826125679540198, 24.284829459216802 ], [ -77.825485905990718, 24.285832311377423 ], [ -77.827698314819131, 24.286867740085441 ], [ -77.828085025224112, 24.289413519026752 ], [ -77.822483319126121, 24.291856050140186 ], [ -77.818098222972651, 24.291181865471749 ], [ -77.815591214444979, 24.29293980489982 ], [ -77.815046199518022, 24.296235018898553 ], [ -77.822551130368552, 24.296516846429498 ], [ -77.830961913516234, 24.290614980570826 ], [ -77.834757548747831, 24.290139907562708 ], [ -77.836365778933072, 24.292511344646783 ], [ -77.841845176581799, 24.292502474908339 ], [ -77.843392872265881, 24.296278872418725 ], [ -77.844511871780767, 24.295918167260087 ], [ -77.843762981337505, 24.292372177869403 ], [ -77.837326236720074, 24.290165429646262 ] ], [ [ -77.774522385250123, 24.297814183303856 ], [ -77.776656886175147, 24.296324389882304 ], [ -77.782883943707759, 24.295978490188677 ], [ -77.783354668394708, 24.294997134060846 ], [ -77.778465586014647, 24.293560569882281 ], [ -77.773280912647493, 24.29467092847565 ], [ -77.772777134628711, 24.296112656310058 ], [ -77.774522385250123, 24.297814183303856 ] ], [ [ -77.852660885172909, 24.276579568588314 ], [ -77.852303652417234, 24.274468250220767 ], [ -77.84527538348047, 24.276495208442423 ], [ -77.842908215757134, 24.273454877455229 ], [ -77.840333647276751, 24.272922696442542 ], [ -77.837289951729048, 24.275010104942151 ], [ -77.837766593068508, 24.277878315437281 ], [ -77.842718680144515, 24.279999199498306 ], [ -77.852660885172909, 24.276579568588314 ] ], [ [ -77.915537888022087, 24.262560101991145 ], [ -77.914514988711204, 24.262312964502577 ], [ -77.90944950800106, 24.265144529895778 ], [ -77.912357345207454, 24.265588767071289 ], [ -77.915537888022087, 24.262560101991145 ] ], [ [ -77.930643768814775, 24.214711246375391 ], [ -77.936186990676248, 24.212856061485262 ], [ -77.939621215921633, 24.206007414283579 ], [ -77.931903816827855, 24.209117565549661 ], [ -77.929309860018748, 24.20613401835142 ], [ -77.928163721736837, 24.206648345361572 ], [ -77.929228974453892, 24.210668627570993 ], [ -77.923763805217064, 24.215261039694944 ], [ -77.921368928793981, 24.219325089561988 ], [ -77.930643768814775, 24.214711246375391 ] ], [ [ -77.923282194961544, 24.310588754162815 ], [ -77.915430019567552, 24.314372928503747 ], [ -77.912112933255884, 24.318426914628002 ], [ -77.915269193823946, 24.319170532248474 ], [ -77.91874505171883, 24.325707070181664 ], [ -77.921908814243338, 24.324580443956982 ], [ -77.929716296656508, 24.326054952859764 ], [ -77.941141504743868, 24.32216112025532 ], [ -77.941710673521825, 24.318816845512796 ], [ -77.937483063404301, 24.317883568929052 ], [ -77.937577125609607, 24.315638256876916 ], [ -77.929580222015304, 24.317455029932255 ], [ -77.925944264047899, 24.315892672615107 ], [ -77.926427393386689, 24.310719271041631 ], [ -77.923282194961544, 24.310588754162815 ] ], [ [ -77.907939256577862, 24.326009554719583 ], [ -77.912077020025791, 24.321752439661903 ], [ -77.911126176806178, 24.32074701395177 ], [ -77.908201591645422, 24.322658003550867 ], [ -77.898360000955364, 24.318121090894007 ], [ -77.891854746798757, 24.327246935272306 ], [ -77.893312828116365, 24.332306365375175 ], [ -77.901173460370089, 24.331434943307656 ], [ -77.907939256577862, 24.326009554719583 ] ], [ [ -77.867335430490456, 24.355103390542382 ], [ -77.867490026303926, 24.356865501993649 ], [ -77.870262781275059, 24.356661511152218 ], [ -77.871833846551127, 24.354025438069339 ], [ -77.867335430490456, 24.355103390542382 ] ], [ [ -77.85719059196127, 24.360176391560572 ], [ -77.851728644263858, 24.36363886985162 ], [ -77.848113235962643, 24.368198573010819 ], [ -77.853188107064923, 24.364097862418209 ], [ -77.862313673817269, 24.363353320268104 ], [ -77.866063634219444, 24.36048363773472 ], [ -77.859103456815248, 24.359205170813535 ], [ -77.85719059196127, 24.360176391560572 ] ], [ [ -78.453355087689687, 24.636528640965931 ], [ -78.451941055972554, 24.638703800637071 ], [ -78.452653820470829, 24.64085345588779 ], [ -78.43821797573959, 24.643892640356782 ], [ -78.431554547610162, 24.648122307399948 ], [ -78.429416636787693, 24.647325842977164 ], [ -78.426898724861644, 24.650077451304931 ], [ -78.42636490430796, 24.653442482897365 ], [ -78.43059171199441, 24.663760841171189 ], [ -78.429535666702805, 24.669820294847309 ], [ -78.431950170555439, 24.66789211096253 ], [ -78.433906108498562, 24.669179083573912 ], [ -78.435249071400392, 24.667248282111771 ], [ -78.439133404418826, 24.666382051863639 ], [ -78.440561115245004, 24.667673507084913 ], [ -78.441817606654809, 24.666026231113118 ], [ -78.444717006779172, 24.666766286101748 ], [ -78.449533150407106, 24.671460390575866 ], [ -78.451296541327963, 24.680687461152196 ], [ -78.453061538697597, 24.679876728474486 ], [ -78.454224135071101, 24.668728434098377 ], [ -78.456347669498115, 24.66415732401191 ], [ -78.458168028562753, 24.66296749139871 ], [ -78.462339699435219, 24.663276704461587 ], [ -78.465844114346424, 24.660314791506629 ], [ -78.467912569789419, 24.660305462167759 ], [ -78.468615373869667, 24.658500331090089 ], [ -78.472675446868664, 24.657573976107614 ], [ -78.476696469154732, 24.661695814927857 ], [ -78.478602715058898, 24.66168718636062 ], [ -78.483836751691243, 24.646691764578669 ], [ -78.4817937486104, 24.645999715945571 ], [ -78.481372848541213, 24.642919971495669 ], [ -78.465261336848855, 24.633139490883469 ], [ -78.461993449364186, 24.632949643829633 ], [ -78.453355087689687, 24.636528640965931 ] ], [ [ -78.512645314082732, 24.660586099522106 ], [ -78.513199781212208, 24.663927084526271 ], [ -78.514929381204198, 24.664655337018157 ], [ -78.519592068248244, 24.672600776893844 ], [ -78.526746525885798, 24.665168219854284 ], [ -78.521058358375043, 24.657331244441529 ], [ -78.517760332546075, 24.64907026787451 ], [ -78.510332760406527, 24.646440758795883 ], [ -78.513182044560267, 24.656361622752932 ], [ -78.512645314082732, 24.660586099522106 ] ], [ [ -78.327977223796509, 24.708307711376328 ], [ -78.328502283551401, 24.706885190365604 ], [ -78.326787214176136, 24.705894818168595 ], [ -78.326074910329496, 24.703121646605442 ], [ -78.317670138725177, 24.701725957657363 ], [ -78.317223412439034, 24.70610677913756 ], [ -78.320077230175798, 24.70758627418035 ], [ -78.319441225905095, 24.711818079557631 ], [ -78.326788117440216, 24.716246209603611 ], [ -78.327977223796509, 24.708307711376328 ] ], [ [ -78.329016092508894, 24.704301215328627 ], [ -78.330478636434648, 24.704509240669523 ], [ -78.330669377177159, 24.703178849260031 ], [ -78.329257240691334, 24.703525970088503 ], [ -78.329016092508894, 24.704301215328627 ] ], [ [ -78.327493253084256, 24.704871577953504 ], [ -78.327919196592589, 24.706126801827857 ], [ -78.328756218606657, 24.705851103691344 ], [ -78.328080685809567, 24.704778169969394 ], [ -78.327493253084256, 24.704871577953504 ] ], [ [ -78.327203444055257, 24.7051142431039 ], [ -78.327198237313311, 24.704918487660169 ], [ -78.327043353916423, 24.70494311503256 ], [ -78.327047997174361, 24.705117693478897 ], [ -78.327203444055257, 24.7051142431039 ] ], [ [ -78.316855479133821, 24.660348559249787 ], [ -78.316807885046643, 24.658549806388258 ], [ -78.315127578851289, 24.658844041525242 ], [ -78.315161557413077, 24.660128867193524 ], [ -78.316855479133821, 24.660348559249787 ] ], [ [ -78.329687619250976, 24.656207751229079 ], [ -78.329941494204903, 24.655173668626475 ], [ -78.329365503189237, 24.654672218468342 ], [ -78.329111623847197, 24.655706300547152 ], [ -78.329687619250976, 24.656207751229079 ] ], [ [ -78.333850562902768, 24.654058457420575 ], [ -78.333521574647364, 24.652265977485563 ], [ -78.332383258692232, 24.651777023633279 ], [ -78.332410573806385, 24.652804867092922 ], [ -78.333850562902768, 24.654058457420575 ] ], [ [ -78.316678724377567, 24.653667474588133 ], [ -78.315753669711341, 24.650602525187878 ], [ -78.313243541000844, 24.651429286245616 ], [ -78.313579031371575, 24.653478807405772 ], [ -78.316678724377567, 24.653667474588133 ] ], [ [ -78.330701173572919, 24.702957072045702 ], [ -78.330734903280515, 24.702721809652946 ], [ -78.330694933696748, 24.702722697733236 ], [ -78.330701173572919, 24.702957072045702 ] ], [ [ -78.312793115103787, 24.698234206018267 ], [ -78.314015757016122, 24.691265090770134 ], [ -78.311155596696764, 24.689528465763487 ], [ -78.303554912175571, 24.689438975442688 ], [ -78.302409549342812, 24.688692851637544 ], [ -78.30377874659041, 24.697918885003808 ], [ -78.307997866105723, 24.697825854592221 ], [ -78.310570118623545, 24.699311769564975 ], [ -78.312793115103787, 24.698234206018267 ] ], [ [ -78.293792022874413, 24.692739137719748 ], [ -78.292304582390031, 24.689686382191375 ], [ -78.290329005010236, 24.689472621374914 ], [ -78.288004680443422, 24.68669528861583 ], [ -78.288987950497045, 24.681274228134235 ], [ -78.285311570302113, 24.680583431575325 ], [ -78.287095589858652, 24.694943032216042 ], [ -78.289159056593846, 24.698497445278544 ], [ -78.290853497757908, 24.698717380997056 ], [ -78.293792022874413, 24.692739137719748 ] ], [ [ -78.273771715639057, 24.648181211856247 ], [ -78.273738179275568, 24.646896330476139 ], [ -78.270096367990249, 24.647489929770863 ], [ -78.264138240873805, 24.645562572381227 ], [ -78.26104537448866, 24.645629769015756 ], [ -78.260261977864147, 24.647960902369039 ], [ -78.264533111853694, 24.649925097620688 ], [ -78.273771715639057, 24.648181211856247 ] ], [ [ -78.259197375827128, 24.650298137824308 ], [ -78.258876129776041, 24.648762360912794 ], [ -78.255749815040119, 24.647544553033445 ], [ -78.253901591439927, 24.65221287886671 ], [ -78.250580634109838, 24.654341826098737 ], [ -78.25094844702032, 24.657676501622142 ], [ -78.248718821848456, 24.658496150223616 ], [ -78.248638915835642, 24.655412361509718 ], [ -78.246945085965365, 24.655191878879148 ], [ -78.245665509353145, 24.660104960920872 ], [ -78.254302828960803, 24.656832443475704 ], [ -78.259692329167734, 24.658515383982685 ], [ -78.264733827602356, 24.657634449940431 ], [ -78.263816652554354, 24.654826030522401 ], [ -78.261051534257945, 24.656685991304993 ], [ -78.259023050526366, 24.654415919702103 ], [ -78.258092678981299, 24.651093488314896 ], [ -78.259197375827128, 24.650298137824308 ] ], [ [ -78.250527341642808, 24.652285969799905 ], [ -78.249355978759084, 24.650511439835181 ], [ -78.250936508230581, 24.64636320593177 ], [ -78.248118102598141, 24.646167068426902 ], [ -78.246337946735082, 24.642605782348827 ], [ -78.243499691871193, 24.641638596202856 ], [ -78.241425305738531, 24.637569331324414 ], [ -78.239731723719089, 24.637348740635357 ], [ -78.238719853832009, 24.641741747212858 ], [ -78.239957350880374, 24.646086236385834 ], [ -78.243599355453952, 24.645493358610722 ], [ -78.245627420776302, 24.647763684897392 ], [ -78.245111604683871, 24.649574724108835 ], [ -78.248177995789192, 24.648479914142026 ], [ -78.246838621856014, 24.651080151198297 ], [ -78.250527341642808, 24.652285969799905 ] ], [ [ -78.268583369279369, 24.6434088968814 ], [ -78.268349072319054, 24.645213860592303 ], [ -78.270625207981396, 24.646192796690489 ], [ -78.271093732004076, 24.642582868942267 ], [ -78.268583369279369, 24.6434088968814 ] ], [ [ -78.282801537091686, 24.638470586405344 ], [ -78.28221235426355, 24.637454977538948 ], [ -78.279708903199818, 24.638538148851254 ], [ -78.281307447332097, 24.624361546307465 ], [ -78.279888436561635, 24.623878282997563 ], [ -78.278255413278714, 24.625970897187614 ], [ -78.278148763798683, 24.632658400899214 ], [ -78.27482205694379, 24.634530816990601 ], [ -78.27432011626874, 24.636855862995972 ], [ -78.276816883441683, 24.635515804203688 ], [ -78.276080795343276, 24.639645817457698 ], [ -78.278075716105988, 24.640630777871394 ], [ -78.281161686356228, 24.640306269051631 ], [ -78.282801537091686, 24.638470586405344 ] ], [ [ -78.243362461195531, 24.625442500467887 ], [ -78.24438074233872, 24.621306469581143 ], [ -78.24209860439521, 24.620070079317383 ], [ -78.241348111345687, 24.623686067331558 ], [ -78.243362461195531, 24.625442500467887 ] ], [ [ -78.224500148735061, 24.624819933697019 ], [ -78.225853000199379, 24.622733848547288 ], [ -78.223865303875343, 24.622005109866706 ], [ -78.223656746867235, 24.624838029686025 ], [ -78.224500148735061, 24.624819933697019 ] ], [ [ -78.261511853525448, 24.5877664506929 ], [ -78.261204160410614, 24.586744617581651 ], [ -78.260086666349935, 24.587025965510929 ], [ -78.260394351628889, 24.588047801751753 ], [ -78.261511853525448, 24.5877664506929 ] ], [ [ -78.265121803019696, 24.553490415823319 ], [ -78.266232329497825, 24.552952080143157 ], [ -78.265081840581843, 24.551948525419988 ], [ -78.262298856208432, 24.553037346475662 ], [ -78.265121803019696, 24.553490415823319 ] ], [ [ -78.224244911578694, 24.560028129872709 ], [ -78.223094646333266, 24.559024226667347 ], [ -78.222284560169186, 24.560327231782821 ], [ -78.22342167686439, 24.560817156293613 ], [ -78.224244911578694, 24.560028129872709 ] ], [ [ -78.21904781003667, 24.543682769725031 ], [ -78.219309071475621, 24.54290578419706 ], [ -78.217342402086373, 24.542947801877279 ], [ -78.217362082875468, 24.54371878459088 ], [ -78.21904781003667, 24.543682769725031 ] ], [ [ -78.248387222885881, 24.569537197789877 ], [ -78.248407117765851, 24.570308154084277 ], [ -78.248975761362473, 24.570553008526733 ], [ -78.249230233571737, 24.569519001413671 ], [ -78.248387222885881, 24.569537197789877 ] ], [ [ -78.213266271090319, 24.614518115654519 ], [ -78.215495445592282, 24.61369904651227 ], [ -78.214278951118132, 24.610125198617091 ], [ -78.211527028668385, 24.612498216322983 ], [ -78.211860700462509, 24.614548156288699 ], [ -78.213266271090319, 24.614518115654519 ] ], [ [ -78.20058986336872, 24.61376002569655 ], [ -78.201975790548573, 24.612959104032562 ], [ -78.201668480264061, 24.61193710838327 ], [ -78.200537487550775, 24.611704056767969 ], [ -78.20058986336872, 24.61376002569655 ] ], [ [ -78.206453918539054, 24.612092245262971 ], [ -78.206473595410202, 24.612863229173065 ], [ -78.207591481647228, 24.612582245163033 ], [ -78.207297249203748, 24.612074254435452 ], [ -78.206453918539054, 24.612092245262971 ] ], [ [ -78.203904261038858, 24.611375203547883 ], [ -78.203596940975572, 24.610353212870056 ], [ -78.202479061421812, 24.610634166086736 ], [ -78.202773271416277, 24.611142168672473 ], [ -78.203904261038858, 24.611375203547883 ] ], [ [ -78.220195283411527, 24.610512848776782 ], [ -78.219378313465441, 24.611558876506248 ], [ -78.220790428249842, 24.611785760105988 ], [ -78.220764076891086, 24.6107577958802 ], [ -78.220195283411527, 24.610512848776782 ] ], [ [ -78.197660967445003, 24.609193911582594 ], [ -78.197902832023786, 24.607645950677629 ], [ -78.196464632400961, 24.606390853304106 ], [ -78.196536541498929, 24.609217823683252 ], [ -78.197660967445003, 24.609193911582594 ] ], [ [ -78.205093500253213, 24.602864401280847 ], [ -78.205067287961526, 24.601836419956793 ], [ -78.203942935938045, 24.601860380698845 ], [ -78.204250229504282, 24.602882373471257 ], [ -78.205093500253213, 24.602864401280847 ] ], [ [ -78.190771447029988, 24.59262636146908 ], [ -78.190470815142518, 24.591861325604665 ], [ -78.189634124449242, 24.59213620796838 ], [ -78.189934752303529, 24.592901245934744 ], [ -78.190771447029988, 24.59262636146908 ] ], [ [ -78.209737901112533, 24.630535794492538 ], [ -78.209476462386775, 24.631312780472456 ], [ -78.210326492068376, 24.631551752581188 ], [ -78.210300202320894, 24.630523780455324 ], [ -78.209737901112533, 24.630535794492538 ] ], [ [ -78.227870142361937, 24.635547064582624 ], [ -78.227909802301269, 24.637088994963904 ], [ -78.229322215941522, 24.637315766582216 ], [ -78.228988157194053, 24.635265906084427 ], [ -78.227870142361937, 24.635547064582624 ] ], [ [ -78.259471265064889, 24.660834305955966 ], [ -78.258935580162813, 24.661874436327242 ], [ -78.26007377554437, 24.662363967880538 ], [ -78.260870602366424, 24.660546787886908 ], [ -78.259471265064889, 24.660834305955966 ] ], [ [ -78.25476417372343, 24.663764827425798 ], [ -78.255400024129713, 24.666579414106348 ], [ -78.258178801204593, 24.665233487786939 ], [ -78.256163559208559, 24.663477348909574 ], [ -78.25476417372343, 24.663764827425798 ] ], [ [ -78.260461945738356, 24.666469525789072 ], [ -78.259350444225731, 24.66700791876751 ], [ -78.259671770488012, 24.668543686104115 ], [ -78.26078997021213, 24.668262268477037 ], [ -78.260461945738356, 24.666469525789072 ] ], [ [ -78.244204425766995, 24.668878866733937 ], [ -78.242503762603974, 24.668401368668203 ], [ -78.241551892771454, 24.669675992673337 ], [ -78.239383693934229, 24.667440240415228 ], [ -78.23580075620589, 24.670345949314502 ], [ -78.235853851557394, 24.672401830761917 ], [ -78.238398267907257, 24.672861194091396 ], [ -78.23646279711825, 24.674188594567944 ], [ -78.237124892836448, 24.678031231078251 ], [ -78.240453342821169, 24.676159483407872 ], [ -78.241498524284708, 24.673051378203898 ], [ -78.24546912128919, 24.674251180906136 ], [ -78.244953240840516, 24.676062225679683 ], [ -78.240499880095186, 24.677958370018711 ], [ -78.240612917988557, 24.682327092508515 ], [ -78.242796438196592, 24.679708636044825 ], [ -78.246512656802253, 24.681942395985729 ], [ -78.24903728667077, 24.681630609491929 ], [ -78.248113545357654, 24.67856510151196 ], [ -78.249787694104583, 24.678014593468721 ], [ -78.250256832916648, 24.674404669311723 ], [ -78.248033580470818, 24.675481319162671 ], [ -78.247364518058362, 24.671381780559919 ], [ -78.245127973475761, 24.671944419328035 ], [ -78.244204425766995, 24.668878866733937 ] ], [ [ -78.226875306039062, 24.684337438777838 ], [ -78.226870891045166, 24.68416611409852 ], [ -78.226819078865532, 24.684167228711555 ], [ -78.226823493788828, 24.684338553399616 ], [ -78.226875306039062, 24.684337438777838 ] ], [ [ -78.225325491085812, 24.68368509242346 ], [ -78.225322239586745, 24.683558852982202 ], [ -78.225026170928089, 24.68356521875948 ], [ -78.225029422129936, 24.683691458237565 ], [ -78.225325491085812, 24.68368509242346 ] ], [ [ -78.242681544598057, 24.686139291884125 ], [ -78.243264046971106, 24.686898077393 ], [ -78.243819924120018, 24.68662892944479 ], [ -78.243518685418437, 24.685864064176037 ], [ -78.242681544598057, 24.686139291884125 ] ], [ [ -78.247248442237577, 24.688611747925382 ], [ -78.247830983516806, 24.68937051143061 ], [ -78.248668130223678, 24.689095253975673 ], [ -78.248078918567444, 24.688079512616085 ], [ -78.247248442237577, 24.688611747925382 ] ], [ [ -78.240269866094735, 24.690819701087673 ], [ -78.240657679347763, 24.692354083446418 ], [ -78.241153621393181, 24.692343365252167 ], [ -78.24195752828571, 24.690783227028518 ], [ -78.240269866094735, 24.690819701087673 ] ], [ [ -78.239771407980157, 24.692449920316921 ], [ -78.237778248975161, 24.692416280676401 ], [ -78.237543496960029, 24.694221241544032 ], [ -78.23949919195087, 24.693664749974921 ], [ -78.239771407980157, 24.692449920316921 ] ], [ [ -78.239757405154762, 24.691908902492287 ], [ -78.239756121582872, 24.691859309189365 ], [ -78.23973391528375, 24.691859788927946 ], [ -78.239735198846887, 24.691909382231959 ], [ -78.239757405154762, 24.691908902492287 ] ], [ [ -78.240046487308533, 24.691631996799813 ], [ -78.240045553730027, 24.6915959289522 ], [ -78.240008543319561, 24.69159672857807 ], [ -78.240009476887451, 24.691632796427005 ], [ -78.240046487308533, 24.691631996799813 ] ], [ [ -78.238721839680807, 24.696252813996036 ], [ -78.238460499731019, 24.697029840461781 ], [ -78.239036385841018, 24.697531655430463 ], [ -78.239840345991169, 24.695971523353286 ], [ -78.238721839680807, 24.696252813996036 ] ], [ [ -78.249209571620725, 24.699111420793173 ], [ -78.250120201731306, 24.701662935640851 ], [ -78.252102650977278, 24.702134194002127 ], [ -78.251767921493851, 24.700084455253545 ], [ -78.249209571620725, 24.699111420793173 ] ], [ [ -78.348554327611794, 24.723153904167376 ], [ -78.350165597543921, 24.724766959652552 ], [ -78.350867096723007, 24.724419445669806 ], [ -78.349304468095951, 24.722521455859969 ], [ -78.348554327611794, 24.723153904167376 ] ], [ [ -78.236705200135418, 25.139654655581001 ], [ -78.239093942871321, 25.140917450374989 ], [ -78.243918744849623, 25.13759769299832 ], [ -78.248034090263033, 25.131025636388799 ], [ -78.246732789358958, 25.12950561965711 ], [ -78.242394466546884, 25.131372470799953 ], [ -78.236705200135418, 25.139654655581001 ] ], [ [ -78.224421774398834, 25.146063052341727 ], [ -78.226509241299496, 25.149597336635455 ], [ -78.229156161681772, 25.147472445245668 ], [ -78.225093609582402, 25.145435745303431 ], [ -78.224421774398834, 25.146063052341727 ] ], [ [ -78.081602421523456, 25.209284219273201 ], [ -78.082140930204545, 25.207565677923537 ], [ -78.076448942018374, 25.205983883535868 ], [ -78.078929837318, 25.211726850550658 ], [ -78.081602421523456, 25.209284219273201 ] ], [ [ -78.143269775984834, 25.20913403627905 ], [ -78.146774322773737, 25.209846828407276 ], [ -78.14717206286187, 25.208898302808894 ], [ -78.14345737340085, 25.208633254822011 ], [ -78.143269775984834, 25.20913403627905 ] ], [ [ -78.213287641582738, 25.207767997015296 ], [ -78.212539850192897, 25.210455365233901 ], [ -78.210044006397055, 25.211992137807439 ], [ -78.210864629173898, 25.213325050444695 ], [ -78.216370293500688, 25.213687878879977 ], [ -78.21994026529137, 25.210290124482825 ], [ -78.22034970833225, 25.20835783351011 ], [ -78.217396563407647, 25.206378030159513 ], [ -78.214499847103554, 25.20629241973883 ], [ -78.213287641582738, 25.207767997015296 ] ], [ [ -78.094455392233201, 25.20548992872035 ], [ -78.095526432676792, 25.207422194842657 ], [ -78.101301118298238, 25.207116973851921 ], [ -78.100836627772324, 25.20510977765581 ], [ -78.094857856159791, 25.204516701323211 ], [ -78.094455392233201, 25.20548992872035 ] ], [ [ -78.117907279462102, 25.19414487848902 ], [ -78.115417439919725, 25.194069851474051 ], [ -78.115028351476511, 25.195013102865296 ], [ -78.118184792964783, 25.196188066140401 ], [ -78.117907279462102, 25.19414487848902 ] ], [ [ -78.104815030488339, 25.189007241458942 ], [ -78.108655836227527, 25.188348297596423 ], [ -78.108157824247385, 25.18680030342729 ], [ -78.105413489211827, 25.186701635170984 ], [ -78.104815030488339, 25.189007241458942 ] ], [ [ -78.133359936186238, 25.184470562392011 ], [ -78.133906639022328, 25.180556784386702 ], [ -78.129360131293822, 25.181483198605925 ], [ -78.131379337773694, 25.18495011765356 ], [ -78.133359936186238, 25.184470562392011 ] ], [ [ -78.121844366539634, 25.171318519021685 ], [ -78.11888627284695, 25.172614805843729 ], [ -78.118659275006337, 25.174718861635355 ], [ -78.123282455948882, 25.175226582551932 ], [ -78.121844366539634, 25.171318519021685 ] ], [ [ -78.110651286036102, 25.173453970913755 ], [ -78.112880508429825, 25.170782964623648 ], [ -78.111507322156754, 25.168979951259907 ], [ -78.108468297507315, 25.171851139925302 ], [ -78.110651286036102, 25.173453970913755 ] ], [ [ -78.115473856179534, 25.167563715324942 ], [ -78.11502462152994, 25.163746535213274 ], [ -78.108338709345176, 25.15641295038423 ], [ -78.103690756217901, 25.155952800667215 ], [ -78.099387398130602, 25.153258447997082 ], [ -78.096523068151839, 25.157651168715653 ], [ -78.098011962540866, 25.159668147180401 ], [ -78.097223038440987, 25.161536553556733 ], [ -78.099262019656862, 25.160812276544867 ], [ -78.099308740704572, 25.157055852389554 ], [ -78.100152924750915, 25.159388835858124 ], [ -78.104258092139503, 25.161954349971008 ], [ -78.106647843139314, 25.158926401820956 ], [ -78.108693126616259, 25.162598813693151 ], [ -78.107369087226758, 25.163906637677055 ], [ -78.112109221269591, 25.164524757475068 ], [ -78.112476567488017, 25.168546017735498 ], [ -78.115473856179534, 25.167563715324942 ] ], [ [ -78.119075083188008, 25.166524874314359 ], [ -78.120622515200694, 25.167286660180324 ], [ -78.122573433748556, 25.166101618772451 ], [ -78.121680682777978, 25.164582755985126 ], [ -78.119075083188008, 25.166524874314359 ] ], [ [ -78.232023376983889, 25.216465355717016 ], [ -78.231061467125116, 25.218874800192012 ], [ -78.234928757799395, 25.217857662780336 ], [ -78.234811748284827, 25.216587466531831 ], [ -78.232023376983889, 25.216465355717016 ] ], [ [ -78.183040665186041, 25.234031386976962 ], [ -78.186956707627544, 25.233458306667625 ], [ -78.188461893362117, 25.229609795540142 ], [ -78.18691553928582, 25.228411754908095 ], [ -78.17974114746994, 25.229484416812937 ], [ -78.177767344106314, 25.231086501668237 ], [ -78.183040665186041, 25.234031386976962 ] ], [ [ -78.136050288628539, 25.238172727926496 ], [ -78.13075766102024, 25.240224151365819 ], [ -78.131840516758913, 25.244999396084403 ], [ -78.135492485584692, 25.245692469319664 ], [ -78.14182663882886, 25.24292181571764 ], [ -78.140508942907658, 25.239543444061084 ], [ -78.136050288628539, 25.238172727926496 ] ], [ [ -78.140817058405005, 25.249631910767658 ], [ -78.142105837044852, 25.250431128761335 ], [ -78.143835203115643, 25.248075551401485 ], [ -78.141181746846954, 25.248393079692601 ], [ -78.140817058405005, 25.249631910767658 ] ], [ [ -78.168159731855098, 25.248498871792076 ], [ -78.168551783008056, 25.250043170889704 ], [ -78.171259247525811, 25.250923449139581 ], [ -78.174109818234442, 25.250136342902675 ], [ -78.173609907610768, 25.24821337524606 ], [ -78.168159731855098, 25.248498871792076 ] ], [ [ -78.180091670230951, 25.250020877548728 ], [ -78.179861317073701, 25.252038453815558 ], [ -78.181961390938355, 25.252314445962732 ], [ -78.181583827978557, 25.24961602664548 ], [ -78.180091670230951, 25.250020877548728 ] ], [ [ -78.117553164568633, 25.259646745665275 ], [ -78.120892816726425, 25.260006307699992 ], [ -78.124635919857539, 25.26614034003352 ], [ -78.128161531661533, 25.265685109106304 ], [ -78.127018026472498, 25.268236534600558 ], [ -78.133472304591365, 25.267119035557407 ], [ -78.133943422673141, 25.263762467498914 ], [ -78.129962469950499, 25.261501687224715 ], [ -78.131815515177095, 25.259974756284024 ], [ -78.129670858730535, 25.258513911880531 ], [ -78.120399645116777, 25.256186180150703 ], [ -78.116028023896675, 25.258201141398093 ], [ -78.115759300910696, 25.259333231050867 ], [ -78.117553164568633, 25.259646745665275 ] ], [ [ -78.177556167848309, 25.256732501971861 ], [ -78.175878202410104, 25.258773587774424 ], [ -78.179567095652189, 25.258636627806801 ], [ -78.178810220088337, 25.256438790995837 ], [ -78.177556167848309, 25.256732501971861 ] ], [ [ -78.175178744750895, 25.266622104770658 ], [ -78.179098069846503, 25.267264789429145 ], [ -78.180494485971991, 25.266273770498977 ], [ -78.175582078160815, 25.265596210138931 ], [ -78.175178744750895, 25.266622104770658 ] ], [ [ -78.119260436619342, 25.295054538113181 ], [ -78.120852538070423, 25.295007214687825 ], [ -78.125431835469101, 25.300676180913523 ], [ -78.126699981301854, 25.297522098195184 ], [ -78.131400455413683, 25.293773078083465 ], [ -78.138623665865381, 25.297352510238543 ], [ -78.142833398526705, 25.296848326079566 ], [ -78.145204809428137, 25.294097721564562 ], [ -78.134721059222272, 25.291304836746516 ], [ -78.131236833135588, 25.293345977970716 ], [ -78.131628117177442, 25.289685555996844 ], [ -78.129852284246724, 25.290788094149569 ], [ -78.127013052593796, 25.28972275666921 ], [ -78.124466823336178, 25.285836393822699 ], [ -78.127509129115893, 25.286509721963725 ], [ -78.12919896520647, 25.284833482874788 ], [ -78.134061104754025, 25.285129963865195 ], [ -78.136021192793251, 25.283623019367873 ], [ -78.134488776593344, 25.282028462829885 ], [ -78.129402468770579, 25.281612911772228 ], [ -78.129190679999937, 25.277016115910683 ], [ -78.132271270207994, 25.280453996189536 ], [ -78.133843985020448, 25.279338709923657 ], [ -78.133829220701685, 25.276169829103679 ], [ -78.130108849765975, 25.275322815577329 ], [ -78.127981212035209, 25.276433315427706 ], [ -78.124594344888166, 25.273722622546671 ], [ -78.116610793819731, 25.276920465072774 ], [ -78.112682117309888, 25.282108997062132 ], [ -78.119260436619342, 25.295054538113181 ] ], [ [ -78.139907247792365, 25.279916745000108 ], [ -78.144099970350098, 25.280647164681554 ], [ -78.146905587146122, 25.27946910245344 ], [ -78.146416421532237, 25.277491081225492 ], [ -78.136861950578023, 25.276168770858977 ], [ -78.136843272710834, 25.278187775142616 ], [ -78.139385025292071, 25.278428650456313 ], [ -78.139907247792365, 25.279916745000108 ] ], [ [ -78.185569302995518, 25.295519839813284 ], [ -78.186589177181844, 25.295873769083343 ], [ -78.188062453244981, 25.293983796172569 ], [ -78.18522749768114, 25.292994997084119 ], [ -78.185569302995518, 25.295519839813284 ] ], [ [ -78.135796023232857, 25.298253118365942 ], [ -78.127332559415208, 25.300897127698928 ], [ -78.126258159029774, 25.303036079316879 ], [ -78.131461157069538, 25.313320201823245 ], [ -78.134120513339639, 25.313181430136638 ], [ -78.133365801320821, 25.319460922356555 ], [ -78.138473300729473, 25.331211565155215 ], [ -78.141327319558073, 25.327904473654772 ], [ -78.137838767568098, 25.323110532057832 ], [ -78.139763651231874, 25.324146194907613 ], [ -78.141725683009469, 25.322875396660258 ], [ -78.137456908985911, 25.317376489540973 ], [ -78.138532899207533, 25.312248123910038 ], [ -78.136688504513003, 25.310711284990592 ], [ -78.138125259186083, 25.307987276338654 ], [ -78.135037445367558, 25.303481368388788 ], [ -78.138103326526661, 25.303025429261108 ], [ -78.140014970911679, 25.300443805064891 ], [ -78.135796023232857, 25.298253118365942 ] ], [ [ -78.186783156129806, 25.303562732111246 ], [ -78.188391527421118, 25.304374515531286 ], [ -78.190034290787935, 25.30203760235505 ], [ -78.188139098746859, 25.301863612214188 ], [ -78.186783156129806, 25.303562732111246 ] ], [ [ -78.14310378508037, 25.315146289219392 ], [ -78.146743840282312, 25.315321902898223 ], [ -78.147358693608282, 25.313859250766441 ], [ -78.142868998485852, 25.312850813068831 ], [ -78.14310378508037, 25.315146289219392 ] ], [ [ -78.164957433365601, 25.319901618575049 ], [ -78.167675548877199, 25.320197084650626 ], [ -78.169045468040053, 25.318269574860818 ], [ -78.167122483485414, 25.31801504844147 ], [ -78.164957433365601, 25.319901618575049 ] ], [ [ -77.881175306632556, 24.000062962479554 ], [ -77.869171897916431, 24.010909474425468 ], [ -77.877740369257253, 24.018943827834025 ], [ -77.881175306632556, 24.000062962479554 ] ], [ [ -77.808819167137059, 23.963326336527537 ], [ -77.808458073279255, 23.963240142376748 ], [ -77.808566032863069, 23.963568142674003 ], [ -77.808819167137059, 23.963326336527537 ] ], [ [ -77.781215968791003, 23.920438332874088 ], [ -77.781249027007377, 23.921981040383844 ], [ -77.779844993007515, 23.921749240767387 ], [ -77.78071165248619, 23.923019643616449 ], [ -77.782077121678398, 23.921451607662203 ], [ -77.781210459359713, 23.920181214921524 ], [ -77.784577906747131, 23.920634637981653 ], [ -77.784550326789599, 23.919349049528126 ], [ -77.786250594815527, 23.920347087338719 ], [ -77.78929967376969, 23.919005661828773 ], [ -77.789612525937542, 23.92054328163093 ], [ -77.791861187887051, 23.9210168571826 ], [ -77.792941261091798, 23.919196706720182 ], [ -77.794087722398217, 23.92046193781875 ], [ -77.796879168993215, 23.920153917405855 ], [ -77.796829308503192, 23.917839884047996 ], [ -77.801841568624994, 23.916719680110429 ], [ -77.801908166255615, 23.919805046472774 ], [ -77.804403207732207, 23.91873065266175 ], [ -77.805264512286499, 23.919743784080424 ], [ -77.802315553799431, 23.925713553290937 ], [ -77.800576263206381, 23.92291591717807 ], [ -77.798075565143847, 23.923733142184428 ], [ -77.795508369634391, 23.921464950372311 ], [ -77.79356152911123, 23.922014806490608 ], [ -77.796671496101268, 23.923501501213387 ], [ -77.798125461715415, 23.926047173609348 ], [ -77.802337764924332, 23.926742008052017 ], [ -77.805173778533515, 23.928490728870958 ], [ -77.804071592210661, 23.929282502077911 ], [ -77.803489938122112, 23.928264265945081 ], [ -77.802711895786601, 23.931107828223467 ], [ -77.806405014800688, 23.933665364990016 ], [ -77.814250581015472, 23.932373454277293 ], [ -77.817166352420401, 23.929748651104578 ], [ -77.816620652098266, 23.926136586804787 ], [ -77.821849629338843, 23.921709923535172 ], [ -77.817350485402358, 23.917991970400049 ], [ -77.811121734406228, 23.91649215727973 ], [ -77.805956632125145, 23.912419812025878 ], [ -77.796764073577819, 23.910256145434076 ], [ -77.790059085896445, 23.914970300589218 ], [ -77.781109050419758, 23.91397790912934 ], [ -77.778034690414273, 23.915608750544898 ], [ -77.779368198815845, 23.912549367986671 ], [ -77.77628624295977, 23.912351968671853 ], [ -77.777721991322466, 23.914071094789655 ], [ -77.775808142842635, 23.916163438201032 ], [ -77.774393185224355, 23.915417340470924 ], [ -77.773883244954632, 23.917741521357179 ], [ -77.775846628357485, 23.917963272877536 ], [ -77.773115561648652, 23.921099232811212 ], [ -77.775386193005701, 23.922601533812482 ], [ -77.776461020861205, 23.920524358105901 ], [ -77.777047933963573, 23.9217998393149 ], [ -77.780097160710611, 23.920458587290256 ], [ -77.779795432233769, 23.919435174224262 ], [ -77.781215968791003, 23.920438332874088 ] ], [ [ -77.76908997385965, 23.916027463403079 ], [ -77.769901630301646, 23.914726733133033 ], [ -77.772435332067985, 23.915452686546505 ], [ -77.773515657615476, 23.913632650732271 ], [ -77.769046101647206, 23.913970494819239 ], [ -77.766770216826217, 23.91221095877814 ], [ -77.767927335182932, 23.913990655587913 ], [ -77.765442969902566, 23.9155787193693 ], [ -77.76908997385965, 23.916027463403079 ] ], [ [ -77.769846778115948, 23.912155524218758 ], [ -77.771239725749368, 23.911873183637038 ], [ -77.76898030261691, 23.910885041924558 ], [ -77.769281920753428, 23.911908484645686 ], [ -77.769846778115948, 23.912155524218758 ] ], [ [ -77.781840201333665, 23.91039552487749 ], [ -77.787905697220538, 23.911828890126444 ], [ -77.793596369013855, 23.911005994719321 ], [ -77.793622658717752, 23.909788180758348 ], [ -77.786547202870395, 23.907463472960288 ], [ -77.776217498527515, 23.906787677050676 ], [ -77.775374559977152, 23.90896913743239 ], [ -77.778982867648324, 23.907617825650291 ], [ -77.780721477812349, 23.910415775903473 ], [ -77.781532981854227, 23.909114994960841 ], [ -77.782942390470566, 23.909603909714725 ], [ -77.781840201333665, 23.91039552487749 ] ], [ [ -77.772238606586654, 23.910311847684206 ], [ -77.774480592383426, 23.906413089630988 ], [ -77.768278436272468, 23.904209963985679 ], [ -77.769759030660055, 23.908041586997637 ], [ -77.771129990884603, 23.906730768764074 ], [ -77.772276131183375, 23.907996194507231 ], [ -77.772238606586654, 23.910311847684206 ] ], [ [ -77.762717826297788, 23.905853355021716 ], [ -77.765772347592289, 23.904769528058299 ], [ -77.764363043531574, 23.904280444515614 ], [ -77.764884076031763, 23.902470525102316 ], [ -77.768880142660464, 23.901369699564089 ], [ -77.772341791509149, 23.897963439347517 ], [ -77.780967065158961, 23.895749878057419 ], [ -77.784076255563065, 23.897236904124142 ], [ -77.794387059897957, 23.88918056021253 ], [ -77.796828044062252, 23.890832214330509 ], [ -77.799655620151313, 23.89068861160823 ], [ -77.801391695988031, 23.888682655054389 ], [ -77.799739074659527, 23.884068959630856 ], [ -77.803614910896158, 23.882539606835707 ], [ -77.795871494862183, 23.879895568256615 ], [ -77.793404132900847, 23.880091346877897 ], [ -77.79387272108967, 23.881357850083468 ], [ -77.792421328926423, 23.882020379826916 ], [ -77.787380880256862, 23.881743941673978 ], [ -77.787419463578658, 23.883543768954997 ], [ -77.784858813507284, 23.88153241594679 ], [ -77.779123167344125, 23.882912256680065 ], [ -77.769383341342618, 23.881811878171977 ], [ -77.768969763145321, 23.884134311886086 ], [ -77.771223217801349, 23.884865378365134 ], [ -77.772303353433699, 23.883045366596196 ], [ -77.77655260884157, 23.885540900974021 ], [ -77.780160279088918, 23.884189619122946 ], [ -77.781032150473266, 23.885717167705245 ], [ -77.783252654968422, 23.884905333996031 ], [ -77.784448255218422, 23.888484746705974 ], [ -77.778323795487495, 23.889881635764624 ], [ -77.777282166116194, 23.893501526369878 ], [ -77.777238210841119, 23.891444566084054 ], [ -77.775286213698038, 23.891737035324955 ], [ -77.774244485568786, 23.89535691148426 ], [ -77.772561101018326, 23.895130063460545 ], [ -77.771634413222614, 23.891031253044549 ], [ -77.770307456495715, 23.894399034588432 ], [ -77.765816650093825, 23.893708237068196 ], [ -77.765026940383848, 23.896037432172893 ], [ -77.76809764881547, 23.895724945974681 ], [ -77.768404689947985, 23.897005517627342 ], [ -77.76617839654925, 23.897560038848741 ], [ -77.767593106704211, 23.898306236161872 ], [ -77.76733535478904, 23.899339758182258 ], [ -77.765344897314918, 23.89783225930595 ], [ -77.765684759567037, 23.90065557268256 ], [ -77.762613927211945, 23.900968021654162 ], [ -77.759466617907336, 23.897680678544209 ], [ -77.760974189253034, 23.90279803737025 ], [ -77.762383469722039, 23.903287154716907 ], [ -77.76159912622434, 23.905873463291343 ], [ -77.762717826297788, 23.905853355021716 ] ], [ [ -77.756932745810317, 23.896927250444485 ], [ -77.756352190044183, 23.895936005014121 ], [ -77.754959365141517, 23.896218195924931 ], [ -77.75526082901284, 23.897241681194487 ], [ -77.756932745810317, 23.896927250444485 ] ], [ [ -77.753522943993474, 23.894443373986192 ], [ -77.755990742376696, 23.892084149878965 ], [ -77.760169060060605, 23.891237522832721 ], [ -77.76236249709622, 23.889140355166941 ], [ -77.761764979820626, 23.887350537276323 ], [ -77.753704535145914, 23.889810112186662 ], [ -77.750129018300868, 23.892703565320261 ], [ -77.753522943993474, 23.894443373986192 ] ], [ [ -77.762598421303167, 23.887078343774295 ], [ -77.762395283102464, 23.890683095948337 ], [ -77.764319970759274, 23.889105173723518 ], [ -77.766293856490023, 23.889841336465917 ], [ -77.765120600383483, 23.887290228317475 ], [ -77.762598421303167, 23.887078343774295 ] ], [ [ -77.767637309154452, 23.887244948658932 ], [ -77.767659205950523, 23.888273438980558 ], [ -77.768498115777604, 23.888258335872298 ], [ -77.76875036957766, 23.886967689370412 ], [ -77.767637309154452, 23.887244948658932 ] ], [ [ -77.777682109333441, 23.886034939775552 ], [ -77.778274336057223, 23.887567556651558 ], [ -77.780215262920862, 23.886760814830897 ], [ -77.779069261855867, 23.88549543742176 ], [ -77.777682109333441, 23.886034939775552 ] ], [ [ -77.776316908706463, 23.887602913483008 ], [ -77.774951678311524, 23.889170875462849 ], [ -77.777753532400055, 23.889377501872286 ], [ -77.778005693498514, 23.888086848622684 ], [ -77.776316908706463, 23.887602913483008 ] ], [ [ -77.773202550564989, 23.88585857593085 ], [ -77.771782473081061, 23.884855298559238 ], [ -77.771256102271963, 23.886408108417747 ], [ -77.772665226547701, 23.886897145122202 ], [ -77.773202550564989, 23.88585857593085 ] ], [ [ -77.765882923036642, 23.883675422945576 ], [ -77.765855575722625, 23.882389807894363 ], [ -77.76417782980478, 23.882419973732109 ], [ -77.765329136100192, 23.883942603531015 ], [ -77.765882923036642, 23.883675422945576 ] ], [ [ -77.766420293309707, 23.882636871020061 ], [ -77.766995956312513, 23.883398178775199 ], [ -77.768394085693586, 23.883373015268713 ], [ -77.768097920705998, 23.882601131463645 ], [ -77.766420293309707, 23.882636871020061 ] ], [ [ -77.79526948698286, 23.890773710242478 ], [ -77.793203077900415, 23.891625382431421 ], [ -77.795464467687964, 23.893429182360894 ], [ -77.792128146855674, 23.894391909521499 ], [ -77.791613581899384, 23.896483837310843 ], [ -77.796946804478381, 23.897512055558643 ], [ -77.798260449268042, 23.894419426790616 ], [ -77.79526948698286, 23.890773710242478 ] ], [ [ -77.778784855369196, 23.89836153094237 ], [ -77.77965682736118, 23.899889077505716 ], [ -77.781888586060347, 23.899591481103794 ], [ -77.780121463174908, 23.898080652152615 ], [ -77.778784855369196, 23.89836153094237 ] ], [ [ -77.794666932581165, 23.899627809140679 ], [ -77.786984259348415, 23.902383784552701 ], [ -77.787860686026519, 23.904113186230568 ], [ -77.782302349894692, 23.905847912082375 ], [ -77.788738325832753, 23.905897783553304 ], [ -77.7898012845138, 23.907679009215759 ], [ -77.79159001146563, 23.907628681999032 ], [ -77.799912326057211, 23.903923359707093 ], [ -77.802020177010348, 23.900520094137942 ], [ -77.794666932581165, 23.899627809140679 ] ], [ [ -77.774732801222811, 23.905122438217774 ], [ -77.776377850409304, 23.90354941075271 ], [ -77.785343694080296, 23.904158826861835 ], [ -77.785880968105289, 23.903120215818078 ], [ -77.779130952824204, 23.903098836980568 ], [ -77.774502670463946, 23.900641734224202 ], [ -77.769912627536073, 23.90212435439409 ], [ -77.774398213308231, 23.902556285569734 ], [ -77.774732801222811, 23.905122438217774 ] ], [ [ -77.767704172036773, 23.903519724157178 ], [ -77.766304314653766, 23.903473849106337 ], [ -77.766353598049093, 23.90578794696307 ], [ -77.767730050879763, 23.904734281612978 ], [ -77.767704172036773, 23.903519724157178 ] ], [ [ -77.791351556079448, 23.923341067723822 ], [ -77.792190672818606, 23.923325814514293 ], [ -77.792448248876113, 23.922292267491233 ], [ -77.790506907535686, 23.923099200591562 ], [ -77.791351556079448, 23.923341067723822 ] ], [ [ -77.789382559098769, 23.922862408680825 ], [ -77.788801048600874, 23.92184410041067 ], [ -77.787693278621973, 23.922378646453318 ], [ -77.788269259513356, 23.923139840828743 ], [ -77.789382559098769, 23.922862408680825 ] ], [ [ -77.771088704449667, 23.878553506510215 ], [ -77.766782615511701, 23.873370390462913 ], [ -77.767309005624796, 23.871817593553775 ], [ -77.76507219573287, 23.871857815012429 ], [ -77.765001157138016, 23.868515209338142 ], [ -77.763882780243691, 23.868535304724841 ], [ -77.762566699266003, 23.872417272639115 ], [ -77.763981105188819, 23.873163532430599 ], [ -77.764518457054507, 23.872124988508897 ], [ -77.765400992564949, 23.874166898283573 ], [ -77.763443745382688, 23.874202072830254 ], [ -77.763207835896964, 23.876264085181873 ], [ -77.765993010147895, 23.875699582945284 ], [ -77.7660203501529, 23.876985196652974 ], [ -77.764337209291583, 23.876758234795187 ], [ -77.764923763571417, 23.878033800253025 ], [ -77.771088704449667, 23.878553506510215 ] ], [ [ -77.760527637151327, 23.868595542328904 ], [ -77.76106500557303, 23.867557011403552 ], [ -77.759096946476731, 23.867077872609709 ], [ -77.759946630672189, 23.867577077488402 ], [ -77.760527637151327, 23.868595542328904 ] ], [ [ -77.751273756289564, 23.867475188348752 ], [ -77.751192568997723, 23.866962190861685 ], [ -77.748508911290131, 23.864902315771836 ], [ -77.749009830503852, 23.866229533962827 ], [ -77.751273756289564, 23.867475188348752 ] ], [ [ -77.765593139675161, 23.870047899293724 ], [ -77.765900068437929, 23.871328489893838 ], [ -77.767292597749346, 23.871046225683809 ], [ -77.767276190518331, 23.870274855416394 ], [ -77.765593139675161, 23.870047899293724 ] ], [ [ -77.798876321893999, 23.837918356645424 ], [ -77.803561958371446, 23.837561841046163 ], [ -77.802856430492909, 23.833232296655417 ], [ -77.805687471761829, 23.828902620614496 ], [ -77.80398961938279, 23.827044334342283 ], [ -77.801039139704656, 23.828672832474695 ], [ -77.801926942654745, 23.831397816214405 ], [ -77.798876321893999, 23.837918356645424 ] ], [ [ -77.735236070861518, 23.838471678701392 ], [ -77.744051277495458, 23.838149860132184 ], [ -77.745998731523159, 23.836898298137825 ], [ -77.736413612050853, 23.832754382654652 ], [ -77.724565291770602, 23.833180981811434 ], [ -77.729622642409922, 23.836527841361541 ], [ -77.727331770868219, 23.837812788700258 ], [ -77.727918399646825, 23.841063227204444 ], [ -77.733606965214008, 23.840071519870889 ], [ -77.735236070861518, 23.838471678701392 ] ], [ [ -77.723217215148196, 23.838720905969566 ], [ -77.721285821969175, 23.838634735636546 ], [ -77.720353576386799, 23.841388230057429 ], [ -77.724303823758717, 23.843491401773885 ], [ -77.727446071140818, 23.842394223196781 ], [ -77.723217215148196, 23.838720905969566 ] ], [ [ -77.723883368073231, 23.843723862246591 ], [ -77.721093320841021, 23.843511946142353 ], [ -77.721006514777116, 23.845163995972008 ], [ -77.72343563778648, 23.844941242079486 ], [ -77.723883368073231, 23.843723862246591 ] ], [ [ -77.709628277956568, 23.839780578601367 ], [ -77.708061219313123, 23.839680163066706 ], [ -77.707084263250962, 23.840946210561096 ], [ -77.70984447106845, 23.841792468945414 ], [ -77.709628277956568, 23.839780578601367 ] ], [ [ -77.702938037738051, 23.839156707103037 ], [ -77.708731745952392, 23.837426592362267 ], [ -77.707015462902362, 23.83524751295468 ], [ -77.701286142380269, 23.835330917267409 ], [ -77.695672555897758, 23.830816640128177 ], [ -77.691983535882386, 23.831775440405295 ], [ -77.696340685776335, 23.838359036971116 ], [ -77.702938037738051, 23.839156707103037 ] ], [ [ -77.715055041929489, 23.831479714053312 ], [ -77.721040310722131, 23.831013429793231 ], [ -77.721863566201989, 23.828797578089301 ], [ -77.716092167503703, 23.828859252200875 ], [ -77.714500695270132, 23.83007852659355 ], [ -77.715055041929489, 23.831479714053312 ] ], [ [ -77.748462086288328, 23.827622757814233 ], [ -77.744804137799065, 23.829804112574614 ], [ -77.748268495830871, 23.83179448595213 ], [ -77.753409861103407, 23.832019966186436 ], [ -77.759533204164171, 23.827211454656741 ], [ -77.758545187829128, 23.820548946172224 ], [ -77.753991960414766, 23.822217687291719 ], [ -77.748462086288328, 23.827622757814233 ] ], [ [ -77.703525970360246, 23.826153654668648 ], [ -77.708585090590148, 23.824891282252107 ], [ -77.709301099347897, 23.823556840990673 ], [ -77.707723834973876, 23.823439928385255 ], [ -77.703525970360246, 23.826153654668648 ] ], [ [ -77.701825419182484, 23.827190679096237 ], [ -77.702854091749018, 23.825842052732419 ], [ -77.700108876110505, 23.82748466952566 ], [ -77.699610808796081, 23.825690286697107 ], [ -77.697759431454273, 23.825510118733749 ], [ -77.697280842929331, 23.827031273562756 ], [ -77.698895256203002, 23.828683683145606 ], [ -77.701825419182484, 23.827190679096237 ] ], [ [ -77.687116660691373, 23.825827001284566 ], [ -77.689111558740862, 23.823293631177044 ], [ -77.702139886620145, 23.819367986907761 ], [ -77.72087754948582, 23.820370166353001 ], [ -77.723796692122505, 23.821929182561465 ], [ -77.72697292920563, 23.821072335561748 ], [ -77.734980259756227, 23.823355670965121 ], [ -77.730870347352024, 23.817529358168681 ], [ -77.725443785799129, 23.816001353342052 ], [ -77.725050611023207, 23.814412524448187 ], [ -77.726520782548889, 23.813488020032011 ], [ -77.722612375286602, 23.810397803181605 ], [ -77.727129010826204, 23.811889940148365 ], [ -77.736977687278937, 23.812225167129871 ], [ -77.738283743899331, 23.808621731391213 ], [ -77.741087962843153, 23.80701314114625 ], [ -77.738831402618857, 23.811799575507717 ], [ -77.744282656836845, 23.814060430635873 ], [ -77.7461510911792, 23.816832624280352 ], [ -77.750977861256928, 23.814931839688846 ], [ -77.750288747127357, 23.809107652335861 ], [ -77.75452820932766, 23.811169761594627 ], [ -77.754192861876831, 23.814663677066569 ], [ -77.758892747203745, 23.812895547003901 ], [ -77.759919531721465, 23.808577494093498 ], [ -77.763257021314772, 23.804561778072959 ], [ -77.75918266442585, 23.802032632653859 ], [ -77.751835119253272, 23.800864604082101 ], [ -77.749446317756082, 23.799281843894708 ], [ -77.749691343194982, 23.797278210636879 ], [ -77.746673860190327, 23.795796775494871 ], [ -77.742808112366319, 23.798499195049061 ], [ -77.739382777895983, 23.797258878504945 ], [ -77.736042497274099, 23.798154542875054 ], [ -77.732907031913555, 23.797332799110631 ], [ -77.728558333420338, 23.793403300352949 ], [ -77.725148568816181, 23.793069337279881 ], [ -77.720481489124651, 23.796805258921417 ], [ -77.718857739984514, 23.796544882686536 ], [ -77.722362280587205, 23.788160365549864 ], [ -77.724991839309382, 23.786962640141336 ], [ -77.727631247446425, 23.782599043669837 ], [ -77.724864729217146, 23.78150245575776 ], [ -77.721161715312363, 23.783297401738771 ], [ -77.719658135778261, 23.782196681318435 ], [ -77.713025870034798, 23.784885241129377 ], [ -77.713405026537188, 23.780458200577161 ], [ -77.710220488567415, 23.781282590780634 ], [ -77.713685323156639, 23.776888573279134 ], [ -77.707768469135658, 23.775409142382905 ], [ -77.704933729458048, 23.768543873044049 ], [ -77.702349671221043, 23.768655772981273 ], [ -77.696202785834359, 23.774302870910478 ], [ -77.692312244121098, 23.775399734159414 ], [ -77.689459917993318, 23.772619887618919 ], [ -77.688068170993077, 23.772901370512038 ], [ -77.688115767544701, 23.775215658755489 ], [ -77.68670284519439, 23.774468559611211 ], [ -77.686460433379821, 23.776273428590226 ], [ -77.68305465851617, 23.77376032514919 ], [ -77.681135707091826, 23.775594328306251 ], [ -77.682000335806876, 23.776865484581524 ], [ -77.681483712872804, 23.77893235225288 ], [ -77.679438128539815, 23.774594869104916 ], [ -77.674382372134403, 23.773396383123206 ], [ -77.675463174108657, 23.771576989130995 ], [ -77.67829413025305, 23.773328543966798 ], [ -77.680518866968796, 23.77277544530514 ], [ -77.6804925013912, 23.771489720248486 ], [ -77.677682630833473, 23.770766787629757 ], [ -77.677355828661675, 23.768457325016641 ], [ -77.672300327735613, 23.767258746879797 ], [ -77.674746533831211, 23.763872291828605 ], [ -77.669443335142233, 23.764221326128268 ], [ -77.670033625307966, 23.765754546553815 ], [ -77.66701271373671, 23.76837915470178 ], [ -77.669274184367694, 23.769626251028388 ], [ -77.668947531491099, 23.76731675675579 ], [ -77.671731020750201, 23.766754127086724 ], [ -77.670344531642655, 23.767292594795002 ], [ -77.67207348485033, 23.769835052936976 ], [ -77.670707980176715, 23.771402112966566 ], [ -77.672684867767629, 23.772396842097638 ], [ -77.67273219100008, 23.77471115971985 ], [ -77.670517885893801, 23.775778444873524 ], [ -77.671978065477475, 23.778840019429332 ], [ -77.677302911787748, 23.779519425913879 ], [ -77.679232518053112, 23.778199750540772 ], [ -77.6787316624429, 23.781038046952041 ], [ -77.680940696630387, 23.779713495953658 ], [ -77.680434598436733, 23.782294652739914 ], [ -77.682659471546003, 23.781741508534228 ], [ -77.682701711875339, 23.783798660734714 ], [ -77.691164101894913, 23.787509790964716 ], [ -77.695888002848633, 23.786141135614866 ], [ -77.701207872760563, 23.786562537597085 ], [ -77.69122768225462, 23.790595496288766 ], [ -77.686745978241063, 23.790159160931964 ], [ -77.680803733660653, 23.786661251745969 ], [ -77.677471546838589, 23.787748069550279 ], [ -77.67603219234455, 23.785715153211385 ], [ -77.671329069123573, 23.788111803388425 ], [ -77.672773647827171, 23.790401915180325 ], [ -77.664970048949499, 23.791565894891491 ], [ -77.664163167099062, 23.793123264492436 ], [ -77.653253866730211, 23.792796849405011 ], [ -77.652768087880617, 23.796406560733136 ], [ -77.651101733380642, 23.796949698048977 ], [ -77.651211399595354, 23.802349848389408 ], [ -77.653504734369719, 23.805140032284271 ], [ -77.654453031409872, 23.810525729277806 ], [ -77.652082666109848, 23.813576065267824 ], [ -77.656141271330497, 23.817703757739974 ], [ -77.670363616375695, 23.81690795830119 ], [ -77.676099532283601, 23.820058550252313 ], [ -77.678332598325738, 23.818891439304668 ], [ -77.678757149226925, 23.81564561085144 ], [ -77.681347653529457, 23.812751090146968 ], [ -77.689425700914569, 23.811018499784847 ], [ -77.69236985919845, 23.814115622640649 ], [ -77.688231359614605, 23.817816853105747 ], [ -77.682509809455183, 23.820130869276657 ], [ -77.681352022282624, 23.822436202059187 ], [ -77.687116660691373, 23.825827001284566 ] ], [ [ -77.65417389508093, 23.810548319249623 ], [ -77.654211587640631, 23.810529886917504 ], [ -77.654173533466306, 23.810530542172419 ], [ -77.65417389508093, 23.810548319249623 ] ], [ [ -77.636103848817058, 23.801837160155845 ], [ -77.637480472345004, 23.800784650041631 ], [ -77.63658490823542, 23.797970305833189 ], [ -77.639131350577117, 23.799470196401955 ], [ -77.641568583837682, 23.795569844097972 ], [ -77.644120232883438, 23.797326803121006 ], [ -77.648280977312737, 23.795711962595174 ], [ -77.64712662197482, 23.793931097196992 ], [ -77.645170389301427, 23.79396466164301 ], [ -77.648798176367308, 23.793645157445184 ], [ -77.646779406520011, 23.79059292668822 ], [ -77.652089036137085, 23.790501722257112 ], [ -77.656466143133812, 23.785796089426825 ], [ -77.653935486746349, 23.785067928460485 ], [ -77.653413164612914, 23.786877592961023 ], [ -77.651705173126501, 23.78536352119901 ], [ -77.654690207545315, 23.7809391059088 ], [ -77.653520256452751, 23.778386831663365 ], [ -77.651279619367472, 23.77816810530167 ], [ -77.650141051914432, 23.77715870319911 ], [ -77.654917392410965, 23.778362798724888 ], [ -77.655998516363823, 23.776543514336122 ], [ -77.656920435310511, 23.780643477142277 ], [ -77.658607486450137, 23.781128894346839 ], [ -77.657390398580119, 23.7762623115017 ], [ -77.661323242769853, 23.777223488854506 ], [ -77.66074869104574, 23.776461680638104 ], [ -77.6610071691222, 23.775428265956322 ], [ -77.663827562773392, 23.776665799624613 ], [ -77.660116573910258, 23.772871228680742 ], [ -77.659019843609371, 23.773919085572434 ], [ -77.657876031526811, 23.772652592932317 ], [ -77.650632103180428, 23.773806140496255 ], [ -77.641928527673031, 23.771897450935551 ], [ -77.641907739410186, 23.770868840287214 ], [ -77.651687177506801, 23.77070113013076 ], [ -77.654528282312469, 23.772967451945469 ], [ -77.656753149883457, 23.77241468780727 ], [ -77.655045327878398, 23.770900637190497 ], [ -77.655758197265513, 23.764714610842205 ], [ -77.65406615277189, 23.763971991348804 ], [ -77.656301320611135, 23.763933546608996 ], [ -77.656833989103887, 23.762638178999566 ], [ -77.655058445719988, 23.757781159925067 ], [ -77.65456796241422, 23.749491978044961 ], [ -77.638969554444898, 23.744458684110402 ], [ -77.638013110575997, 23.745464275518994 ], [ -77.641214438325974, 23.748566925939315 ], [ -77.641648887445527, 23.750990448217941 ], [ -77.640439251614538, 23.751358866781981 ], [ -77.637599583095579, 23.74985436070968 ], [ -77.636287011856254, 23.746560744386855 ], [ -77.629189311393048, 23.742154296456398 ], [ -77.628787664432096, 23.73752369518963 ], [ -77.625114384231154, 23.733016662556523 ], [ -77.626816125545076, 23.731947710123432 ], [ -77.626577542361474, 23.728064528922335 ], [ -77.629250855518407, 23.724316418128691 ], [ -77.629554477014281, 23.720095588250317 ], [ -77.626567324694108, 23.717460736370946 ], [ -77.628666492004925, 23.716061881755504 ], [ -77.626973860596905, 23.712143645354068 ], [ -77.62313376034426, 23.708829836332029 ], [ -77.621283561982125, 23.708364856207375 ], [ -77.621421526403026, 23.709986438588626 ], [ -77.617883774978864, 23.71057207497018 ], [ -77.615376351386189, 23.713031219872956 ], [ -77.609689465549749, 23.71262830461669 ], [ -77.611898742974248, 23.720157434014499 ], [ -77.617319458795137, 23.724171439463145 ], [ -77.620495424284428, 23.731118910594535 ], [ -77.616145147511816, 23.726042131397996 ], [ -77.613826646019405, 23.727483152711383 ], [ -77.615648790404563, 23.730780825399119 ], [ -77.611312908285541, 23.73045114512486 ], [ -77.608488286554945, 23.726706506537603 ], [ -77.608512872496064, 23.725640396144765 ], [ -77.610623862554419, 23.72641076945477 ], [ -77.610508960665683, 23.723678661868988 ], [ -77.607221015063772, 23.721532156184889 ], [ -77.607373306857411, 23.714259312612636 ], [ -77.602674757398574, 23.716255939612378 ], [ -77.59947171206079, 23.715550612053118 ], [ -77.602512223222035, 23.719526116495413 ], [ -77.605017150405004, 23.720043749432243 ], [ -77.604086775663433, 23.725199634019109 ], [ -77.610480783871367, 23.731676868262138 ], [ -77.607107497365078, 23.73446717003436 ], [ -77.600705740575023, 23.734113488105407 ], [ -77.600709803835059, 23.732332419482482 ], [ -77.60328954372865, 23.730365701419114 ], [ -77.601458294475137, 23.728467173361253 ], [ -77.599727407612207, 23.729032321973264 ], [ -77.598953135845136, 23.725752249522582 ], [ -77.600796413859726, 23.723312180494453 ], [ -77.599111785318229, 23.719487330836564 ], [ -77.594764574886057, 23.72040128415302 ], [ -77.586496872721284, 23.718720459703462 ], [ -77.584256768713146, 23.719830770975829 ], [ -77.58154626141463, 23.718242053682904 ], [ -77.575935827126656, 23.719000449936296 ], [ -77.558752570526792, 23.733288566653563 ], [ -77.550045986311702, 23.745560886704627 ], [ -77.541098850491423, 23.766701368773035 ], [ -77.533639927631853, 23.77914442557508 ], [ -77.529421920269712, 23.793591158355753 ], [ -77.530824337819496, 23.793825409180425 ], [ -77.53299040486695, 23.790188261483816 ], [ -77.535241211548424, 23.79092305428966 ], [ -77.540711437901919, 23.799065216614128 ], [ -77.543241932099548, 23.799795267460564 ], [ -77.541300465839868, 23.800599039302181 ], [ -77.547096883745766, 23.80844668956005 ], [ -77.551815084348419, 23.808910248466535 ], [ -77.549471847737436, 23.809490605118857 ], [ -77.550668426608311, 23.810477258356833 ], [ -77.554468418216786, 23.809137097454986 ], [ -77.55397257504076, 23.812124032339426 ], [ -77.55799912870232, 23.809078551653226 ], [ -77.558556498870772, 23.810861043539752 ], [ -77.563658537157025, 23.812504825963899 ], [ -77.562794718916891, 23.813105905685962 ], [ -77.568151936099596, 23.816491884635731 ], [ -77.572769248153648, 23.822643039882273 ], [ -77.573833283556581, 23.82100053355839 ], [ -77.575320561769388, 23.821788053020345 ], [ -77.57595183799765, 23.823943814829498 ], [ -77.574780163296708, 23.824234187538202 ], [ -77.573248151420799, 23.832740001031098 ], [ -77.575267568323696, 23.835869971940888 ], [ -77.577653251509147, 23.835559276974067 ], [ -77.577263709210456, 23.837817854323983 ], [ -77.577833025499004, 23.838322824014647 ], [ -77.578955512364402, 23.838516149807088 ], [ -77.57769608459995, 23.837724868414991 ], [ -77.579510459350473, 23.838294738515014 ], [ -77.581996032917601, 23.83670959708612 ], [ -77.580269618954418, 23.833890740410673 ], [ -77.589369485762589, 23.82778072391363 ], [ -77.586503754466008, 23.824286057155593 ], [ -77.582051467416306, 23.825389727985346 ], [ -77.575850687488085, 23.822921021051599 ], [ -77.578620659960521, 23.821588443866649 ], [ -77.58733727198701, 23.82401481515873 ], [ -77.590349882376955, 23.822677961203027 ], [ -77.584661420307825, 23.817840628021404 ], [ -77.584815574693621, 23.809651213811751 ], [ -77.586772139425278, 23.809618394061118 ], [ -77.586741553525599, 23.808075415108839 ], [ -77.591213634792012, 23.808000310975125 ], [ -77.589836527442301, 23.809052445836354 ], [ -77.591310666024285, 23.81288639214095 ], [ -77.589959038485674, 23.815224341338368 ], [ -77.592195198150819, 23.815186748218682 ], [ -77.596174394839409, 23.819542616307867 ], [ -77.6014437092782, 23.818099826636363 ], [ -77.602350203984216, 23.819646050950951 ], [ -77.606212191946668, 23.817008328752415 ], [ -77.60619164073826, 23.815979692271927 ], [ -77.605522267742089, 23.81599100997175 ], [ -77.6026044479771, 23.817267872206887 ], [ -77.596719762235111, 23.817367137291093 ], [ -77.597570125027033, 23.815728089638721 ], [ -77.600812060170426, 23.815944201956491 ], [ -77.600850019863344, 23.814526449777244 ], [ -77.595701042994293, 23.808696562633706 ], [ -77.597678053357669, 23.809692248195184 ], [ -77.596798594522525, 23.807649088029926 ], [ -77.600996249779485, 23.807835569455271 ], [ -77.599247533010129, 23.804263608223081 ], [ -77.594211505743928, 23.804091179386795 ], [ -77.594460331771728, 23.802543505772299 ], [ -77.598388572055171, 23.803249097103802 ], [ -77.596686035075805, 23.801991544282014 ], [ -77.596858103063212, 23.796586448854047 ], [ -77.598322028566955, 23.799906006377725 ], [ -77.600563033767031, 23.800125475026153 ], [ -77.599765546102148, 23.802196898686148 ], [ -77.603729699276613, 23.80470247179532 ], [ -77.605681026580584, 23.804412259546744 ], [ -77.609127482876261, 23.80898439364152 ], [ -77.605814530925741, 23.811098398572646 ], [ -77.60670956878937, 23.813912967719919 ], [ -77.611399526231892, 23.810746638125242 ], [ -77.609696775662343, 23.809489247347095 ], [ -77.611001679753329, 23.804836735894774 ], [ -77.612983873819786, 23.806089380206515 ], [ -77.613781159369523, 23.804017905326184 ], [ -77.617963200044798, 23.803432460094761 ], [ -77.617735287589369, 23.806008775792165 ], [ -77.620312693372625, 23.809051917366563 ], [ -77.629836392462224, 23.809918710020455 ], [ -77.631756583960509, 23.808085242000892 ], [ -77.631150931331092, 23.805780398327226 ], [ -77.634478863550996, 23.804437354248442 ], [ -77.632175549762451, 23.801132542387112 ], [ -77.63472720513245, 23.802889657444364 ], [ -77.636103848817058, 23.801837160155845 ] ], [ [ -77.602796369083805, 23.813979099404232 ], [ -77.603055362462868, 23.812945741814925 ], [ -77.604188809570928, 23.813698333267098 ], [ -77.604447788828978, 23.812664974353762 ], [ -77.602216823197878, 23.812959900851041 ], [ -77.602796369083805, 23.813979099404232 ] ], [ [ -77.601088519550885, 23.812464452998672 ], [ -77.601357776581665, 23.811945414310905 ], [ -77.600229482221337, 23.811449959100045 ], [ -77.60024998206292, 23.812478601073476 ], [ -77.601088519550885, 23.812464452998672 ] ], [ [ -77.599949972615164, 23.811454673871243 ], [ -77.599085831232529, 23.8101830142141 ], [ -77.597688292256549, 23.810206571517671 ], [ -77.597983160163295, 23.810973342352224 ], [ -77.599949972615164, 23.811454673871243 ] ], [ [ -77.602993798794941, 23.809859824827758 ], [ -77.605768312341979, 23.808783966657252 ], [ -77.60346559376103, 23.805478670108808 ], [ -77.600726998052437, 23.808354607145564 ], [ -77.600752624132198, 23.809640406706649 ], [ -77.602993798794941, 23.809859824827758 ] ], [ [ -77.604788912762103, 23.815746160499025 ], [ -77.604791525245787, 23.815876996666027 ], [ -77.605071043241509, 23.815872272298098 ], [ -77.605068430478241, 23.815741436160188 ], [ -77.604788912762103, 23.815746160499025 ] ], [ [ -77.602563026965143, 23.816298257966682 ], [ -77.602566177316689, 23.816456162052955 ], [ -77.602588245506666, 23.816455789390641 ], [ -77.602585095128475, 23.81629788530714 ], [ -77.602563026965143, 23.816298257966682 ] ], [ [ -77.599122186352218, 23.819763712863164 ], [ -77.599126052312997, 23.819957710076636 ], [ -77.599420292637532, 23.819952747048614 ], [ -77.599416426240296, 23.819758749880464 ], [ -77.599122186352218, 23.819763712863164 ] ], [ [ -77.589928406823944, 23.813681367403948 ], [ -77.587936079368177, 23.811914093357291 ], [ -77.58598457893288, 23.812204093666686 ], [ -77.586020259245217, 23.814004235476329 ], [ -77.589928406823944, 23.813681367403948 ] ], [ [ -77.597045827380086, 23.82006950530991 ], [ -77.597054541544949, 23.820507130378378 ], [ -77.59707660926648, 23.820506758466443 ], [ -77.597067895027763, 23.820069133405639 ], [ -77.597045827380086, 23.82006950530991 ] ], [ [ -77.597367526909153, 23.820334869565755 ], [ -77.597370851308739, 23.820501799241672 ], [ -77.597613600740971, 23.820497707462536 ], [ -77.597610276031531, 23.820330777818775 ], [ -77.597367526909153, 23.820334869565755 ] ], [ [ -77.596495482059922, 23.82051655127086 ], [ -77.593428090885681, 23.82094279212658 ], [ -77.593296580567653, 23.822840512183696 ], [ -77.591536469201714, 23.823140911654441 ], [ -77.592960528204131, 23.825554034296129 ], [ -77.596846701624727, 23.824112087210416 ], [ -77.596495482059922, 23.82051655127086 ] ], [ [ -77.592409876995703, 23.825987532342598 ], [ -77.592674079346708, 23.825211345519172 ], [ -77.591276372332899, 23.82523485865293 ], [ -77.592184160210351, 23.826108671494538 ], [ -77.592691751877183, 23.826100130692996 ], [ -77.592409876995703, 23.825987532342598 ] ], [ [ -77.593949693919654, 23.826078957193719 ], [ -77.593952476285423, 23.826218815891234 ], [ -77.594092246593306, 23.826216462650589 ], [ -77.594089464078024, 23.826076603968556 ], [ -77.593949693919654, 23.826078957193719 ] ], [ [ -77.591007136139226, 23.826128469815565 ], [ -77.590999695064625, 23.825754006166932 ], [ -77.590727508960782, 23.825758583169041 ], [ -77.590734949255832, 23.826133046898327 ], [ -77.591007136139226, 23.826128469815565 ] ], [ [ -77.592965911292922, 23.825824730333398 ], [ -77.592968961735139, 23.825978124234641 ], [ -77.5930645946124, 23.825976514750476 ], [ -77.593061544057988, 23.82582312086085 ], [ -77.592965911292922, 23.825824730333398 ] ], [ [ -77.593660823166402, 23.82635460684811 ], [ -77.593663336015766, 23.826480930491282 ], [ -77.593817819765732, 23.826478329789303 ], [ -77.593815306767112, 23.826352006161592 ], [ -77.593660823166402, 23.82635460684811 ] ], [ [ -77.58554878761835, 23.832534028755454 ], [ -77.585552456770287, 23.832719006099968 ], [ -77.585832015120857, 23.832714313488406 ], [ -77.58582834557329, 23.832529336184724 ], [ -77.58554878761835, 23.832534028755454 ] ], [ [ -77.585557826304864, 23.832989703476297 ], [ -77.585563195919136, 23.833260400841965 ], [ -77.585850111526057, 23.833255584623362 ], [ -77.585844741317544, 23.832984887319036 ], [ -77.585557826304864, 23.832989703476297 ] ], [ [ -77.58232418727637, 23.833585522325517 ], [ -77.582773581560346, 23.833609580135626 ], [ -77.582767591855429, 23.833307300398264 ], [ -77.582618462259347, 23.833580588709509 ], [ -77.58232418727637, 23.833585522325517 ] ], [ [ -77.572982162745177, 23.837532901555004 ], [ -77.572979045081908, 23.837374994216599 ], [ -77.572684759297744, 23.837379910163872 ], [ -77.572687876605372, 23.837537817538792 ], [ -77.572982162745177, 23.837532901555004 ] ], [ [ -77.576797170406337, 23.836927544523242 ], [ -77.576781113602962, 23.836115447152576 ], [ -77.575892916905801, 23.835859515025863 ], [ -77.575840435189292, 23.836555416821078 ], [ -77.576797170406337, 23.836927544523242 ] ], [ [ -77.575607283886796, 23.836302066710413 ], [ -77.575603984888019, 23.836135135638855 ], [ -77.575552485264524, 23.836135996808778 ], [ -77.575555784197519, 23.836302927887097 ], [ -77.575607283886796, 23.836302066710413 ] ], [ [ -77.570366141258617, 23.824298857407872 ], [ -77.569941839464391, 23.82106548127739 ], [ -77.568836377615568, 23.821354703615381 ], [ -77.569091050524761, 23.820461362611557 ], [ -77.567134295970931, 23.82049397202843 ], [ -77.567985607675396, 23.822993625800706 ], [ -77.569451545388389, 23.822698398052133 ], [ -77.570366141258617, 23.824298857407872 ] ], [ [ -77.570310385891432, 23.821470033050133 ], [ -77.57031296449145, 23.82160087153532 ], [ -77.570511583846582, 23.821597558447497 ], [ -77.570509005047839, 23.821466719982709 ], [ -77.570310385891432, 23.821470033050133 ] ], [ [ -77.573876023843582, 23.823166135609306 ], [ -77.573887065910853, 23.823725582755149 ], [ -77.574485729417731, 23.824230080527343 ], [ -77.574764128659325, 23.823422087540081 ], [ -77.573876023843582, 23.823166135609306 ] ], [ [ -77.556035088392946, 23.813989904327006 ], [ -77.557506183576606, 23.813960988942696 ], [ -77.557495570556313, 23.813419580884343 ], [ -77.556008483267291, 23.812631871045919 ], [ -77.556035088392946, 23.813989904327006 ] ], [ [ -77.55513726771153, 23.813233032887883 ], [ -77.555136384117887, 23.813187914836032 ], [ -77.554967198563503, 23.813190719314427 ], [ -77.554968082098796, 23.813235837372243 ], [ -77.55513726771153, 23.813233032887883 ] ], [ [ -77.559533973578809, 23.812302578281376 ], [ -77.559544594492422, 23.812843985553268 ], [ -77.560273972031197, 23.812890544708981 ], [ -77.560253786751389, 23.811861870294557 ], [ -77.559533973578809, 23.812302578281376 ] ], [ [ -77.559528663240314, 23.812031874629554 ], [ -77.558637828210962, 23.811631449910017 ], [ -77.558348639550758, 23.811893501950916 ], [ -77.558652957316511, 23.81240295500298 ], [ -77.559528663240314, 23.812031874629554 ] ], [ [ -77.558294938500211, 23.811781563455835 ], [ -77.558292107750574, 23.811637188074638 ], [ -77.557174027748559, 23.811655740322749 ], [ -77.557179067835165, 23.811912908990724 ], [ -77.558294938500211, 23.811781563455835 ] ], [ [ -77.557435701323485, 23.81036513547415 ], [ -77.557431899054592, 23.810171131642761 ], [ -77.557424542811333, 23.81017125368427 ], [ -77.557428345069312, 23.810365257516768 ], [ -77.557435701323485, 23.81036513547415 ] ], [ [ -77.552696670164096, 23.811472698746513 ], [ -77.553042339996637, 23.811464266092553 ], [ -77.553029063154185, 23.810785698389044 ], [ -77.552445897545383, 23.811066148518929 ], [ -77.552696670164096, 23.811472698746513 ] ], [ [ -77.542903158229464, 23.804688693921868 ], [ -77.542893313588749, 23.804183374478875 ], [ -77.542768271696247, 23.80418543669931 ], [ -77.542778115854162, 23.80469075619137 ], [ -77.542903158229464, 23.804688693921868 ] ], [ [ -77.640484300197144, 23.721613577946819 ], [ -77.643138470535277, 23.72304429795776 ], [ -77.641739293325898, 23.723664784073982 ], [ -77.643502701300264, 23.726519363501154 ], [ -77.642363625465748, 23.728537710800428 ], [ -77.643066023414363, 23.732906073420715 ], [ -77.63975464965867, 23.7355969868057 ], [ -77.637624578080946, 23.725906075701136 ], [ -77.638758769171744, 23.723763557634552 ], [ -77.637000764034198, 23.722176529884813 ], [ -77.63402563410439, 23.722449646156679 ], [ -77.635311988916939, 23.729854954986408 ], [ -77.633057721110461, 23.730674790459116 ], [ -77.630061790778669, 23.727797956295731 ], [ -77.629305208925246, 23.729392959048688 ], [ -77.634269469292136, 23.735403157772271 ], [ -77.633488659159624, 23.738334790828883 ], [ -77.635556526799576, 23.740892063221715 ], [ -77.65018827269671, 23.740851448197365 ], [ -77.654791082691204, 23.742264617024521 ], [ -77.656963000565014, 23.752095915867287 ], [ -77.655917480775216, 23.758795345763023 ], [ -77.658293682062947, 23.765699927242753 ], [ -77.659669752815219, 23.764647266575462 ], [ -77.65902207459078, 23.760285349176581 ], [ -77.661319963732041, 23.763332627878793 ], [ -77.664403762851421, 23.763793913843131 ], [ -77.668020134345937, 23.762959737398692 ], [ -77.669074722311549, 23.759854648864028 ], [ -77.671910585586659, 23.761863500562395 ], [ -77.677192618229071, 23.760485805716424 ], [ -77.676322897148694, 23.758957460278634 ], [ -77.680518866365205, 23.759141905497312 ], [ -77.683354866674094, 23.761150532502189 ], [ -77.685157891032119, 23.767292846551587 ], [ -77.686549586099972, 23.767011394611966 ], [ -77.689159348579224, 23.771596185783633 ], [ -77.692195725196257, 23.769742604458813 ], [ -77.694720921717007, 23.770213004442173 ], [ -77.692248683861081, 23.772314027840245 ], [ -77.693387497737405, 23.773323094089072 ], [ -77.6955750283078, 23.770969791509895 ], [ -77.710880067992733, 23.764762195117413 ], [ -77.711326329118094, 23.763463701104168 ], [ -77.710034531221453, 23.763160613381707 ], [ -77.69801355142161, 23.767958977253716 ], [ -77.698293990854893, 23.762663783801138 ], [ -77.702996489119471, 23.756609159106958 ], [ -77.704891169215927, 23.758750033160887 ], [ -77.70011805629548, 23.760742740080566 ], [ -77.703859910865674, 23.763243767013147 ], [ -77.712631075037507, 23.762098560936366 ], [ -77.715071687049388, 23.767351539741039 ], [ -77.71899999948532, 23.767094913145232 ], [ -77.719377596935374, 23.769170594140839 ], [ -77.716880804194005, 23.770501250886049 ], [ -77.716584751460218, 23.77281805315662 ], [ -77.724209842658354, 23.775167093356114 ], [ -77.723415403257761, 23.777580221110338 ], [ -77.726020702636461, 23.780980161981329 ], [ -77.728014250564883, 23.78121516383985 ], [ -77.731584619866865, 23.778697633889191 ], [ -77.735145151114068, 23.779340824923121 ], [ -77.73660617430798, 23.781506169354397 ], [ -77.742428683226422, 23.781676453403456 ], [ -77.742580866561624, 23.78017263893156 ], [ -77.740192972034038, 23.778526747264181 ], [ -77.73526430322687, 23.777751131313966 ], [ -77.734703340779404, 23.77681947243509 ], [ -77.738132679414946, 23.777175382086273 ], [ -77.738890274335674, 23.775793826604406 ], [ -77.738298229625727, 23.774181587046549 ], [ -77.734280671264045, 23.772540700835144 ], [ -77.733592686782302, 23.770300814950296 ], [ -77.736225391338266, 23.768774463247571 ], [ -77.738420177898547, 23.772377398890143 ], [ -77.741785768408917, 23.771096814506546 ], [ -77.745018120994487, 23.759011705534501 ], [ -77.734998676920199, 23.758872674146712 ], [ -77.749471140839091, 23.753064628123422 ], [ -77.759014803289972, 23.762818578982912 ], [ -77.757190436739222, 23.765015494314707 ], [ -77.754142279551886, 23.761784515730199 ], [ -77.750539885016806, 23.760769385636021 ], [ -77.74638530889564, 23.761549879512142 ], [ -77.747340546275225, 23.76734084956712 ], [ -77.744671248979344, 23.769551819322249 ], [ -77.752574409781602, 23.769119945192756 ], [ -77.756803548885273, 23.770708441652864 ], [ -77.758542493539522, 23.772520093038441 ], [ -77.755110352914585, 23.772298743107566 ], [ -77.755160759041885, 23.775787099608099 ], [ -77.758352937055903, 23.777179075492526 ], [ -77.761061814711795, 23.776071636438889 ], [ -77.761920871224206, 23.777226041528753 ], [ -77.758015225908608, 23.778957236373035 ], [ -77.755688850079565, 23.777517537192097 ], [ -77.753764012868047, 23.780043511325179 ], [ -77.754912229768152, 23.78251937930964 ], [ -77.748487690752128, 23.783295811327594 ], [ -77.748613313634564, 23.784452519261471 ], [ -77.756217054368548, 23.783577010947212 ], [ -77.75888955003353, 23.786937044134383 ], [ -77.767652605191358, 23.787608209900036 ], [ -77.76989266074186, 23.791906787303805 ], [ -77.772365612227205, 23.788861510480892 ], [ -77.773013207081291, 23.79012990017106 ], [ -77.779170047307446, 23.790373395428279 ], [ -77.781439270358717, 23.791927165100503 ], [ -77.783108709116874, 23.789915271661702 ], [ -77.786468892973375, 23.789436036040382 ], [ -77.788363763379508, 23.786541642785764 ], [ -77.784071171125518, 23.78417256628331 ], [ -77.777603153649991, 23.784415025078598 ], [ -77.778178031940357, 23.781749691712825 ], [ -77.776360084647905, 23.781403777498085 ], [ -77.774886628779242, 23.776822069044368 ], [ -77.79003646140832, 23.773959481060999 ], [ -77.79036104876036, 23.772610396931633 ], [ -77.783297474629435, 23.772940499232394 ], [ -77.776180908603394, 23.770880131947447 ], [ -77.775282961337993, 23.768452032013172 ], [ -77.773830036840906, 23.768957271304707 ], [ -77.775557790289369, 23.767458707332498 ], [ -77.775898703916496, 23.764151886262699 ], [ -77.77442634948207, 23.762913130725504 ], [ -77.770387506273707, 23.764586969399073 ], [ -77.767901888457402, 23.763237823462088 ], [ -77.764778645020442, 23.764067477042413 ], [ -77.7622118148212, 23.762216503064995 ], [ -77.760048870238663, 23.762805421065874 ], [ -77.760934864682852, 23.758749454540961 ], [ -77.770257639484171, 23.761969204666002 ], [ -77.770640054177747, 23.75921823501216 ], [ -77.765367361848917, 23.757725477430021 ], [ -77.76423470949122, 23.755968879492642 ], [ -77.762454049055805, 23.756434256496139 ], [ -77.764103268964632, 23.754448240873767 ], [ -77.767491341479698, 23.75674107374163 ], [ -77.770922823510602, 23.756028800855887 ], [ -77.771386515438422, 23.752599731448932 ], [ -77.773536763566767, 23.750387629451176 ], [ -77.771951137736281, 23.761370575944671 ], [ -77.778585998001418, 23.763894649203365 ], [ -77.780227860486718, 23.767853773527129 ], [ -77.793175381035496, 23.768349778325835 ], [ -77.790869666046163, 23.765455188588451 ], [ -77.790439008771116, 23.76067551904217 ], [ -77.7814715152481, 23.753628098499842 ], [ -77.780738198585723, 23.748576447316253 ], [ -77.779280545610803, 23.747305996501968 ], [ -77.774544264507227, 23.747932678616905 ], [ -77.77409340407722, 23.743148244727717 ], [ -77.77121840034836, 23.742084015521147 ], [ -77.770902123269892, 23.738792154444727 ], [ -77.767097641109217, 23.740474346282827 ], [ -77.766088116361871, 23.73644235077926 ], [ -77.760730520529549, 23.739103825280445 ], [ -77.753814654316471, 23.735202276155555 ], [ -77.745504757919264, 23.737350502613644 ], [ -77.734298140289013, 23.736101008593835 ], [ -77.723434726500869, 23.737204084979432 ], [ -77.718092014653053, 23.734301980456017 ], [ -77.707923664297979, 23.73298307782655 ], [ -77.695669879487269, 23.734350241334766 ], [ -77.686830974800117, 23.731009499159629 ], [ -77.680111793169843, 23.733031661938064 ], [ -77.678598268444915, 23.730387689238054 ], [ -77.676145808207536, 23.730467992494464 ], [ -77.674054752149857, 23.727562130842404 ], [ -77.664918441576575, 23.725757851249718 ], [ -77.662311027629428, 23.723708214057218 ], [ -77.666458828221408, 23.72340877594177 ], [ -77.672592731784732, 23.725434156337531 ], [ -77.671155754781097, 23.722228701448561 ], [ -77.667363420977836, 23.720707066556429 ], [ -77.662751277257698, 23.713104009838339 ], [ -77.66341533790434, 23.71192695197804 ], [ -77.661941193176673, 23.710463841952432 ], [ -77.660040709597439, 23.711128806422774 ], [ -77.657265794847049, 23.708248968350038 ], [ -77.653061758985714, 23.707663764066123 ], [ -77.650205096540546, 23.702461327679643 ], [ -77.647753597089761, 23.703824960870225 ], [ -77.647404779437551, 23.705743329570939 ], [ -77.644067003523318, 23.704404206233747 ], [ -77.639760416459453, 23.705957027062649 ], [ -77.640962258456582, 23.710162202354368 ], [ -77.63638492327982, 23.708145437826236 ], [ -77.640553055497946, 23.696900028329427 ], [ -77.637772700285467, 23.696469621709053 ], [ -77.63448755206646, 23.701402356678454 ], [ -77.630392562465005, 23.703598922026707 ], [ -77.640484300197144, 23.721613577946819 ] ], [ [ -77.603063200639852, 23.700263098611579 ], [ -77.601663397010569, 23.700163681917942 ], [ -77.602305251226412, 23.703659916784748 ], [ -77.604185548008729, 23.702255024024581 ], [ -77.603063200639852, 23.700263098611579 ] ], [ [ -77.692261517707465, 23.695921278805752 ], [ -77.695916484471141, 23.697050467232483 ], [ -77.697275086398733, 23.695580625903624 ], [ -77.692074748069047, 23.692388845257945 ], [ -77.690922810319947, 23.694899280594235 ], [ -77.692261517707465, 23.695921278805752 ] ], [ [ -77.622892444661673, 23.696139264199985 ], [ -77.623759740586635, 23.695424322920207 ], [ -77.619521056361464, 23.690511456661064 ], [ -77.61964790922687, 23.688623587842919 ], [ -77.618192707466804, 23.688511764412784 ], [ -77.615722409140076, 23.691020505530574 ], [ -77.617805375648516, 23.692284738936277 ], [ -77.614940559535356, 23.694453465437437 ], [ -77.620306912206246, 23.696704816385537 ], [ -77.622892444661673, 23.696139264199985 ] ], [ [ -77.692418859565464, 23.688195883708868 ], [ -77.695632240831102, 23.687177682859691 ], [ -77.694522478839062, 23.684961262243437 ], [ -77.691902626705868, 23.683997791518053 ], [ -77.692418859565464, 23.688195883708868 ] ], [ [ -77.610109685008041, 23.687938021587797 ], [ -77.611553820694397, 23.685524166699796 ], [ -77.611431021681526, 23.685060028910456 ], [ -77.608658472308235, 23.686747911469613 ], [ -77.610109685008041, 23.687938021587797 ] ], [ [ -77.679450042809677, 23.685320002836484 ], [ -77.681062343169316, 23.685660167515778 ], [ -77.681680648682857, 23.682707130031694 ], [ -77.680700710240785, 23.682567562809474 ], [ -77.679450042809677, 23.685320002836484 ] ], [ [ -77.612173813251644, 23.681573000765759 ], [ -77.615661041739443, 23.681003209974474 ], [ -77.617664600335218, 23.678473285591021 ], [ -77.616463821964231, 23.676613677250241 ], [ -77.615348224172095, 23.676254113545589 ], [ -77.612173813251644, 23.681573000765759 ], [ -77.610668536843505, 23.680938880127684 ], [ -77.611170944383076, 23.684587365008678 ], [ -77.613798179721115, 23.682887881200696 ], [ -77.612173813251644, 23.681573000765759 ] ], [ [ -77.631809980991775, 23.681438959992494 ], [ -77.633832982189361, 23.681962513293616 ], [ -77.638395992928267, 23.675850333795783 ], [ -77.636983829787766, 23.674335895453254 ], [ -77.632291752815064, 23.673108624723952 ], [ -77.627199608866533, 23.676299105581936 ], [ -77.631809980991775, 23.681438959992494 ] ], [ [ -77.642662443582651, 23.674568027153356 ], [ -77.6448006562198, 23.674336623535236 ], [ -77.642426584909089, 23.672156684615803 ], [ -77.643840814602939, 23.670470290839287 ], [ -77.641769867957052, 23.668739991099091 ], [ -77.632866718640642, 23.668640943048686 ], [ -77.631947191979634, 23.66966144243548 ], [ -77.632702910337159, 23.672163934677485 ], [ -77.639253779175661, 23.671358255606194 ], [ -77.639516024294451, 23.673206963470552 ], [ -77.642662443582651, 23.674568027153356 ] ], [ [ -77.631291219213566, 23.669557031426507 ], [ -77.629549078227228, 23.668281091083969 ], [ -77.628295590775522, 23.670541114921278 ], [ -77.630946860989468, 23.670855459989074 ], [ -77.631291219213566, 23.669557031426507 ] ], [ [ -77.72980672651336, 23.66871226280589 ], [ -77.729114157890734, 23.670226666485576 ], [ -77.730584013313617, 23.671619121971926 ], [ -77.736180312442585, 23.672294286032979 ], [ -77.738861199080631, 23.675446927061348 ], [ -77.741486528419699, 23.672143564593181 ], [ -77.74676836863604, 23.672784772590131 ], [ -77.746842785110303, 23.671662039971778 ], [ -77.73950794145172, 23.66935904795044 ], [ -77.72980672651336, 23.66871226280589 ] ], [ [ -77.755843238659082, 23.672560036442611 ], [ -77.750347577905345, 23.673423265771838 ], [ -77.755604514822437, 23.67613739705801 ], [ -77.758221786972811, 23.684490605435215 ], [ -77.760877102708108, 23.681319671930595 ], [ -77.761616354167799, 23.676253166622651 ], [ -77.755843238659082, 23.672560036442611 ] ], [ [ -77.75518814088845, 23.683322759450093 ], [ -77.753030956061977, 23.683961911585847 ], [ -77.753400035583951, 23.686828801215853 ], [ -77.754614394080591, 23.687073724545456 ], [ -77.75518814088845, 23.683322759450093 ] ], [ [ -77.777418276416483, 23.686204699902333 ], [ -77.776848906980987, 23.690484983211622 ], [ -77.778580834624208, 23.690985631723681 ], [ -77.779944039871694, 23.684489557122436 ], [ -77.778349509870864, 23.684365359790707 ], [ -77.777418276416483, 23.686204699902333 ] ], [ [ -77.754469010604268, 23.688122358432139 ], [ -77.748673675940665, 23.691762570715557 ], [ -77.756495829370024, 23.695441364138407 ], [ -77.757954230699283, 23.693987242040432 ], [ -77.754469010604268, 23.688122358432139 ] ], [ [ -77.777403023488247, 23.694898196505328 ], [ -77.780612744285776, 23.698696250918363 ], [ -77.781537738851114, 23.698172999758242 ], [ -77.777910682713383, 23.691413063519171 ], [ -77.777403023488247, 23.694898196505328 ] ], [ [ -77.721090628192556, 23.698762129884468 ], [ -77.722242482161136, 23.6945800829102 ], [ -77.718518777418609, 23.693776129707818 ], [ -77.716916918539383, 23.691424437742644 ], [ -77.722852006412523, 23.690632601145936 ], [ -77.72489981859394, 23.688998898047092 ], [ -77.726710192348961, 23.691002808866731 ], [ -77.729976568352754, 23.690405258300903 ], [ -77.730174730336586, 23.687957428951574 ], [ -77.732941921769793, 23.685943651049087 ], [ -77.728448034393566, 23.680496484779898 ], [ -77.726136015477138, 23.679692652086377 ], [ -77.728907702683415, 23.67807921231552 ], [ -77.735871402153037, 23.678653835520784 ], [ -77.734593976338289, 23.674107437031658 ], [ -77.732554183303861, 23.673184918946937 ], [ -77.729190312009905, 23.674547603994931 ], [ -77.723721467031453, 23.672477486094195 ], [ -77.718673361900301, 23.676016708177983 ], [ -77.718123868326089, 23.67906910572022 ], [ -77.715508714191245, 23.67878473887998 ], [ -77.714065365795705, 23.682129926502522 ], [ -77.710297989159926, 23.684795790177038 ], [ -77.71017893259463, 23.688763483548797 ], [ -77.712859215494433, 23.690792791572711 ], [ -77.710110214985903, 23.698705276354271 ], [ -77.707333190831477, 23.697852737266775 ], [ -77.71138456467942, 23.693451269499612 ], [ -77.709203955924082, 23.688735075373152 ], [ -77.709664926092145, 23.6805974630118 ], [ -77.708442158303498, 23.679514881176182 ], [ -77.703183265698783, 23.680939265433985 ], [ -77.700625492203585, 23.686257408824748 ], [ -77.705419749697114, 23.690897928860586 ], [ -77.70285832491615, 23.695295967293781 ], [ -77.704737113533469, 23.698344503379452 ], [ -77.70573974458344, 23.706905775091922 ], [ -77.710204514502337, 23.708701319114351 ], [ -77.719147794855758, 23.722371352090164 ], [ -77.721941457149242, 23.721929247804397 ], [ -77.719253764983662, 23.719686107872242 ], [ -77.721000196584555, 23.71910352349321 ], [ -77.720968945840596, 23.715654922230385 ], [ -77.716860681221377, 23.713508116365976 ], [ -77.715194032767229, 23.714591657011454 ], [ -77.714880011427866, 23.709677007891987 ], [ -77.716134808518348, 23.706494032280194 ], [ -77.717756609309475, 23.706279120200499 ], [ -77.719894817508106, 23.708843733887278 ], [ -77.72281721012537, 23.708101099787715 ], [ -77.721059412012465, 23.706855662281619 ], [ -77.722451008639979, 23.705387677607209 ], [ -77.718260654567189, 23.704488036508774 ], [ -77.718797096507814, 23.700450884443253 ], [ -77.721090628192556, 23.698762129884468 ] ], [ [ -77.737661135770821, 23.713062154675896 ], [ -77.738292731864448, 23.715918360632774 ], [ -77.739896982677948, 23.714009371583288 ], [ -77.744972078164594, 23.714056056808602 ], [ -77.737158087536329, 23.711093183834272 ], [ -77.736174249915777, 23.71196864661729 ], [ -77.737661135770821, 23.713062154675896 ] ], [ [ -77.810156968892684, 23.720493699337812 ], [ -77.807667730994112, 23.72595275052921 ], [ -77.814919495949397, 23.730248378328973 ], [ -77.814506496209347, 23.726312492420345 ], [ -77.811827953893953, 23.723537347380351 ], [ -77.811221384692971, 23.72020385236624 ], [ -77.810156968892684, 23.720493699337812 ] ], [ [ -77.679655811087542, 23.724137528091799 ], [ -77.680234088682013, 23.723061847797002 ], [ -77.676047136077585, 23.718487283098067 ], [ -77.674917610820685, 23.711333869411515 ], [ -77.671485350980802, 23.707638537164783 ], [ -77.671494715865151, 23.705744249249452 ], [ -77.667770714579021, 23.704853929884052 ], [ -77.664357527070621, 23.709852374530278 ], [ -77.665290065424074, 23.712291033647595 ], [ -77.671790624503828, 23.715318180075862 ], [ -77.675912114700978, 23.722993143586535 ], [ -77.679655811087542, 23.724137528091799 ] ], [ [ -77.660646381643829, 23.706217375806599 ], [ -77.656996997498183, 23.701020784321209 ], [ -77.654767719976249, 23.701482949449122 ], [ -77.654617153772222, 23.704238032570068 ], [ -77.662948081616278, 23.709530773836555 ], [ -77.66329272502044, 23.706696990739982 ], [ -77.660646381643829, 23.706217375806599 ] ], [ [ -77.661824392031562, 23.697989353867179 ], [ -77.665117040695392, 23.703885051098538 ], [ -77.668984449119932, 23.701762929009899 ], [ -77.666902208119424, 23.697223363197931 ], [ -77.661824392031562, 23.697989353867179 ] ], [ [ -77.685488888238567, 23.703173844794279 ], [ -77.687196227713699, 23.703270588591412 ], [ -77.687707500016288, 23.701510387097358 ], [ -77.68910189110116, 23.70339691899029 ], [ -77.690665640841047, 23.703066422900172 ], [ -77.689135300330548, 23.700103397582879 ], [ -77.686046256524378, 23.699533807331665 ], [ -77.684490568444502, 23.701442498500395 ], [ -77.685488888238567, 23.703173844794279 ] ], [ [ -77.684183895354721, 23.70731499697397 ], [ -77.685888914078916, 23.707485038677049 ], [ -77.686829570600111, 23.705579083976605 ], [ -77.68381652138703, 23.705529594170137 ], [ -77.684183895354721, 23.70731499697397 ] ], [ [ -77.699582841516829, 23.711152197095739 ], [ -77.704751987865251, 23.714560497276814 ], [ -77.70735728462094, 23.714812642702761 ], [ -77.706829306743501, 23.712060216108515 ], [ -77.703058758364293, 23.710733174821733 ], [ -77.703264061511518, 23.708934918466795 ], [ -77.698271002984512, 23.710030121428698 ], [ -77.699582841516829, 23.711152197095739 ] ], [ [ -77.703444736602364, 23.722915717640834 ], [ -77.706052290668481, 23.723512381027767 ], [ -77.70926873926868, 23.722108257005328 ], [ -77.706932092197164, 23.720130828357771 ], [ -77.69985089753375, 23.719780812047969 ], [ -77.703444736602364, 23.722915717640834 ] ], [ [ -77.664804496341119, 23.690061902071985 ], [ -77.6626097692142, 23.689378572566774 ], [ -77.661751012091401, 23.690437596089595 ], [ -77.662013046556595, 23.694627800560504 ], [ -77.667560220080688, 23.694779500670343 ], [ -77.667214044692415, 23.692215180877078 ], [ -77.664804496341119, 23.690061902071985 ] ], [ [ -77.632474007557263, 23.691548246071783 ], [ -77.632646800026635, 23.690041711501948 ], [ -77.630184133824045, 23.69132036890413 ], [ -77.627636705296752, 23.690247189326868 ], [ -77.625825359309061, 23.691380912731855 ], [ -77.626133680276894, 23.693363996595814 ], [ -77.62345775190262, 23.693670394009249 ], [ -77.62587919513706, 23.695713889026781 ], [ -77.632474007557263, 23.691548246071783 ] ], [ [ -77.697728525964095, 23.688361490291221 ], [ -77.698515264459019, 23.689422145265844 ], [ -77.70035082086882, 23.687476985276383 ], [ -77.697372808080132, 23.686477555322906 ], [ -77.69625214110124, 23.688057215073776 ], [ -77.697728525964095, 23.688361490291221 ] ], [ [ -77.709276253456167, 23.678695367660779 ], [ -77.711739098861969, 23.679946345114431 ], [ -77.71220808069944, 23.678298418141406 ], [ -77.709114871848044, 23.677469663646413 ], [ -77.709276253456167, 23.678695367660779 ] ], [ [ -77.704723178365896, 23.678358784259096 ], [ -77.706559837118263, 23.676193014556617 ], [ -77.703204675766898, 23.67485995509761 ], [ -77.702239020813337, 23.676611992203025 ], [ -77.704723178365896, 23.678358784259096 ], [ -77.701671414563833, 23.677554273702974 ], [ -77.702083136523996, 23.679298395243382 ], [ -77.704723178365896, 23.678358784259096 ] ], [ [ -77.649176996886482, 23.679027199815842 ], [ -77.653084886386935, 23.678828844729399 ], [ -77.653606317575878, 23.678069703679657 ], [ -77.648538173745948, 23.676893290526184 ], [ -77.649176996886482, 23.679027199815842 ] ], [ [ -77.646322459564203, 23.677846662531223 ], [ -77.644580107557331, 23.675710173439484 ], [ -77.642595756293375, 23.676547418770081 ], [ -77.643174275042426, 23.677680173865308 ], [ -77.646322459564203, 23.677846662531223 ] ], [ [ -77.705653047282425, 23.674411286456245 ], [ -77.707630057348467, 23.67572794547414 ], [ -77.706895461689896, 23.674131486142048 ], [ -77.708553874203972, 23.674275944032622 ], [ -77.710154473640827, 23.670554413175935 ], [ -77.707939599616395, 23.671455465122495 ], [ -77.706823660611803, 23.670348252897107 ], [ -77.705342394695435, 23.672334346173511 ], [ -77.707123288398506, 23.673964879438778 ], [ -77.705653047282425, 23.674411286456245 ] ], [ [ -77.743865405229599, 23.676143377327396 ], [ -77.748490714296722, 23.67652617517976 ], [ -77.750655957962493, 23.675426328982162 ], [ -77.748438647869818, 23.673126376592958 ], [ -77.744308026200102, 23.673329749396636 ], [ -77.742417098024305, 23.674018231822036 ], [ -77.743865405229599, 23.676143377327396 ] ], [ [ -77.738345472926042, 23.683453781422671 ], [ -77.734379998827478, 23.684931420097403 ], [ -77.734001727812725, 23.68879815338353 ], [ -77.732765153659798, 23.687761774937375 ], [ -77.731279778690393, 23.688786727719741 ], [ -77.730987907915178, 23.691683879956344 ], [ -77.72862070678049, 23.692524205261176 ], [ -77.729716293648167, 23.695229501030333 ], [ -77.734370473298071, 23.693954761899487 ], [ -77.741526799121942, 23.688618208711468 ], [ -77.739612033675172, 23.687391884676227 ], [ -77.740024441779838, 23.684336322060989 ], [ -77.738345472926042, 23.683453781422671 ] ], [ [ -77.798912364839097, 23.731252266453318 ], [ -77.797935391960863, 23.736648369915894 ], [ -77.807635860941176, 23.745924007856232 ], [ -77.811611274309215, 23.744859358946357 ], [ -77.812374320711115, 23.743341768248975 ], [ -77.798912364839097, 23.731252266453318 ] ], [ [ -77.853074160808603, 23.739636145512073 ], [ -77.853650984968283, 23.742143140545505 ], [ -77.855861090272739, 23.74059122969086 ], [ -77.852841367439112, 23.73540522678358 ], [ -77.850886749362616, 23.734759409545767 ], [ -77.849308357836904, 23.7363027701333 ], [ -77.853074160808603, 23.739636145512073 ] ], [ [ -77.816615676791145, 23.761235036833682 ], [ -77.821048405766092, 23.761877250611899 ], [ -77.82838974953215, 23.765615944789513 ], [ -77.835476617258792, 23.763815402198784 ], [ -77.829203214888608, 23.755345755229261 ], [ -77.823790198422586, 23.7562304037282 ], [ -77.819543775257031, 23.754287400834269 ], [ -77.812783568777348, 23.756199957649059 ], [ -77.812207195735269, 23.75773768609616 ], [ -77.816615676791145, 23.761235036833682 ] ], [ [ -77.886833234427812, 23.758611675917788 ], [ -77.887705740054969, 23.758160952391687 ], [ -77.885171943234724, 23.755782474246512 ], [ -77.884986125952182, 23.757340343232872 ], [ -77.886833234427812, 23.758611675917788 ] ], [ [ -77.816148022025288, 23.778526104364939 ], [ -77.813768715990804, 23.780464796202143 ], [ -77.809385911487539, 23.780496546996691 ], [ -77.806708470005248, 23.784299104065937 ], [ -77.803904690038109, 23.785415665322208 ], [ -77.811634289116313, 23.791920882618218 ], [ -77.820456319839408, 23.788069195893431 ], [ -77.820147717585968, 23.777913655281942 ], [ -77.816148022025288, 23.778526104364939 ] ], [ [ -77.79734399426593, 23.788801314591161 ], [ -77.794728581714253, 23.789168664877209 ], [ -77.792754999800209, 23.793570112730194 ], [ -77.789688089607083, 23.79556032494116 ], [ -77.795975330660269, 23.801418704510109 ], [ -77.800816702563438, 23.801429455136809 ], [ -77.804477100041368, 23.806781458008498 ], [ -77.808322188129168, 23.808462369904028 ], [ -77.811594655828898, 23.805864129246814 ], [ -77.817394963203725, 23.80470958810287 ], [ -77.820307758811197, 23.800447230232049 ], [ -77.818954076205614, 23.796944527950838 ], [ -77.810036448617225, 23.797919563145534 ], [ -77.807214664827711, 23.797408564092034 ], [ -77.806334988286579, 23.795820933966077 ], [ -77.800142537051059, 23.798555927748492 ], [ -77.797971470625455, 23.797608295190386 ], [ -77.79905401324406, 23.793683833571681 ], [ -77.797292234774915, 23.793192796135976 ], [ -77.79734399426593, 23.788801314591161 ] ], [ [ -77.79372941176473, 23.806554090873533 ], [ -77.790085532598084, 23.805328965355418 ], [ -77.780271365388302, 23.811504224613707 ], [ -77.770113941203576, 23.812225465199326 ], [ -77.768256205974112, 23.811351636346835 ], [ -77.771519512372024, 23.804840751480619 ], [ -77.76913518579299, 23.804749011534604 ], [ -77.762364663209041, 23.809773011483252 ], [ -77.761584712082666, 23.813874855147567 ], [ -77.758471820348333, 23.816570533472092 ], [ -77.760656441528738, 23.817420907966326 ], [ -77.763976775864251, 23.823077781468911 ], [ -77.766102194120023, 23.821828353692315 ], [ -77.764307963278938, 23.819461251446217 ], [ -77.765073844045645, 23.818224061497929 ], [ -77.771016564091028, 23.817639779692467 ], [ -77.769487708896733, 23.818831480813905 ], [ -77.769621404260974, 23.822501263990461 ], [ -77.773953681245587, 23.824089396878172 ], [ -77.773435831828351, 23.828815593937879 ], [ -77.778339570757268, 23.825322648137128 ], [ -77.778594878514255, 23.821151689672558 ], [ -77.783324845931645, 23.815178386353576 ], [ -77.791827990574561, 23.813297709854478 ], [ -77.800042334190209, 23.814665079539925 ], [ -77.800945384474048, 23.813442696532483 ], [ -77.797732616983879, 23.807733999376097 ], [ -77.79372941176473, 23.806554090873533 ] ], [ [ -77.781346332074435, 23.828489730549641 ], [ -77.782103288416764, 23.830160102801219 ], [ -77.77998826275865, 23.829691145337343 ], [ -77.772234017497766, 23.832995660613015 ], [ -77.767407725943713, 23.833287109191399 ], [ -77.763472985227921, 23.829901324328628 ], [ -77.759821921306411, 23.830768224958096 ], [ -77.752596937650694, 23.836563950938732 ], [ -77.763795893102099, 23.837206073192437 ], [ -77.766734172502808, 23.835267246247675 ], [ -77.777602161508057, 23.832632947589421 ], [ -77.780291189667366, 23.83388058096801 ], [ -77.784689291377404, 23.832768332785172 ], [ -77.787536144240718, 23.83463223149392 ], [ -77.791874938119022, 23.82937833183891 ], [ -77.798212520086679, 23.830069521551994 ], [ -77.802931101730678, 23.823430880638611 ], [ -77.792865067267186, 23.821405059339106 ], [ -77.788267587341622, 23.822466119643291 ], [ -77.783913015755758, 23.82154062568269 ], [ -77.781346332074435, 23.828489730549641 ] ], [ [ -77.770877051327744, 23.825175182055933 ], [ -77.768060611546645, 23.823450797163837 ], [ -77.765017969052693, 23.824935123439641 ], [ -77.772822289588035, 23.827226936520422 ], [ -77.770877051327744, 23.825175182055933 ] ], [ [ -77.762020713979339, 23.824637478889539 ], [ -77.761575242863444, 23.822963253355883 ], [ -77.76068820914476, 23.822770790306247 ], [ -77.760031399360585, 23.825226022908449 ], [ -77.762020713979339, 23.824637478889539 ] ], [ [ -77.774955908746918, 23.806850351874907 ], [ -77.778286354484052, 23.807199410147952 ], [ -77.78154041236175, 23.805481006884285 ], [ -77.776771929066243, 23.804070127850785 ], [ -77.774955908746918, 23.806850351874907 ] ], [ [ -77.782770072677451, 23.801941331409846 ], [ -77.785694291843612, 23.801076248076072 ], [ -77.787422614416798, 23.800353573267127 ], [ -77.783116501193831, 23.797999028944339 ], [ -77.778070767469771, 23.802364000482434 ], [ -77.780234518246019, 23.803206020894962 ], [ -77.782770072677451, 23.801941331409846 ] ], [ [ -77.765906420611529, 23.799091636187899 ], [ -77.764156676856132, 23.79718669728825 ], [ -77.76072679592113, 23.796776952983365 ], [ -77.761751009971775, 23.799278762617831 ], [ -77.757159503871748, 23.799337137303297 ], [ -77.761185770189712, 23.800801081755932 ], [ -77.765906420611529, 23.799091636187899 ] ], [ [ -77.752424637705019, 23.794600078027926 ], [ -77.751294434075078, 23.7931469100632 ], [ -77.749667085982452, 23.794693692988176 ], [ -77.75311949618316, 23.796665731395311 ], [ -77.754064637826133, 23.795718898330019 ], [ -77.752424637705019, 23.794600078027926 ] ], [ [ -77.752930432905217, 23.793927361636097 ], [ -77.756214645445297, 23.793729616414815 ], [ -77.756944623159015, 23.792502101167841 ], [ -77.752837983373183, 23.788185332056202 ], [ -77.746702430092455, 23.787550638796894 ], [ -77.744572745618541, 23.789464071096639 ], [ -77.74949301013109, 23.791414575020021 ], [ -77.75421893296776, 23.791406139622712 ], [ -77.753327247967761, 23.792944841376176 ], [ -77.752001884764368, 23.792600428117559 ], [ -77.752930432905217, 23.793927361636097 ] ], [ [ -77.728334749891232, 23.792336614266659 ], [ -77.729052110652702, 23.790925662896122 ], [ -77.739031740434797, 23.791586702943615 ], [ -77.736306560623021, 23.789527648358234 ], [ -77.741324677396406, 23.788012792387693 ], [ -77.74238490643711, 23.785517923409301 ], [ -77.740810263155893, 23.784825894624145 ], [ -77.733760547795853, 23.787780552770286 ], [ -77.730014917290404, 23.786926177235554 ], [ -77.727716867152836, 23.790111860770185 ], [ -77.728334749891232, 23.792336614266659 ] ], [ [ -77.750832164871952, 23.777623237859252 ], [ -77.746816195846122, 23.778270158766677 ], [ -77.747357678672728, 23.78032086910272 ], [ -77.752231048719125, 23.780476746696621 ], [ -77.750832164871952, 23.777623237859252 ] ], [ [ -77.688321135585028, 23.77161078902725 ], [ -77.687746465108134, 23.770849090549937 ], [ -77.686618280701339, 23.770354263163778 ], [ -77.68663942000974, 23.771382836352782 ], [ -77.688321135585028, 23.77161078902725 ] ], [ [ -77.67974921833374, 23.762499345545507 ], [ -77.679717604313467, 23.760956472886267 ], [ -77.678600069040414, 23.760975866390755 ], [ -77.678336483519203, 23.761752151915935 ], [ -77.67974921833374, 23.762499345545507 ] ], [ [ -77.64422813738075, 23.743975541567679 ], [ -77.644878432426665, 23.743253872030987 ], [ -77.647377817380757, 23.743746008883157 ], [ -77.643104038217828, 23.742786311279382 ], [ -77.64422813738075, 23.743975541567679 ] ], [ [ -77.662816426630101, 23.768194367012324 ], [ -77.663116781792596, 23.76921813985965 ], [ -77.663949756965039, 23.768946526641887 ], [ -77.663934037984632, 23.768175082179361 ], [ -77.662816426630101, 23.768194367012324 ] ], [ [ -77.659510660523239, 23.77056651701443 ], [ -77.659821462636557, 23.772104597976305 ], [ -77.662367595888838, 23.773604127843036 ], [ -77.661176645214695, 23.770023322514362 ], [ -77.659510660523239, 23.77056651701443 ] ], [ [ -77.663853770913775, 23.777951539047475 ], [ -77.663874738805319, 23.778980132721884 ], [ -77.66499244386597, 23.778960831968352 ], [ -77.664971467202122, 23.777932239229564 ], [ -77.663853770913775, 23.777951539047475 ] ], [ [ -77.65970427480795, 23.780081033259716 ], [ -77.660425462132451, 23.788043008018441 ], [ -77.658516445324338, 23.790391072984651 ], [ -77.659950363201617, 23.792167023458958 ], [ -77.668587166200425, 23.790731641720502 ], [ -77.668260435595116, 23.788422155205186 ], [ -77.676274756308729, 23.783910288033002 ], [ -77.675684288271597, 23.782377110989142 ], [ -77.672589507417285, 23.781401802700628 ], [ -77.668972678046856, 23.782236127635304 ], [ -77.665282359167747, 23.779470300568498 ], [ -77.65970427480795, 23.780081033259716 ] ], [ [ -77.657952306613026, 23.790143556611348 ], [ -77.657356781358502, 23.788353142539894 ], [ -77.655701007602858, 23.789410617549887 ], [ -77.655727151632775, 23.790696365675036 ], [ -77.657952306613026, 23.790143556611348 ] ], [ [ -77.717601229018243, 23.823108430846329 ], [ -77.715580266024148, 23.82499687066603 ], [ -77.721395814431133, 23.825158148967247 ], [ -77.720724695211871, 23.823734192991825 ], [ -77.717601229018243, 23.823108430846329 ] ], [ [ -77.703185702554592, 23.823938198189854 ], [ -77.704415800168448, 23.822803122002409 ], [ -77.700742965169397, 23.822370690615855 ], [ -77.700310869911448, 23.824788494051926 ], [ -77.7010056842701, 23.825840094354202 ], [ -77.703185702554592, 23.823938198189854 ] ], [ [ -77.714139158473401, 23.834699331062797 ], [ -77.713481934183378, 23.83820789635962 ], [ -77.71677225736336, 23.838029839258297 ], [ -77.717509723110666, 23.834796435774834 ], [ -77.714139158473401, 23.834699331062797 ] ], [ [ -77.752246846802251, 23.652201714064205 ], [ -77.745051745710398, 23.643631194856738 ], [ -77.730403019597645, 23.640812357556328 ], [ -77.72794126768629, 23.658039640107024 ], [ -77.736207842633704, 23.662231431516663 ], [ -77.76369870628703, 23.665899425406995 ], [ -77.752246846802251, 23.652201714064205 ] ], [ [ -77.69276111267618, 23.661914609537885 ], [ -77.689843902088612, 23.661904484258102 ], [ -77.690753486580476, 23.659793337842295 ], [ -77.688547360753446, 23.660651119236892 ], [ -77.688662357137034, 23.658926357072254 ], [ -77.685650152440246, 23.65807875653196 ], [ -77.686426216742575, 23.656939615503642 ], [ -77.697501451157521, 23.652618866614255 ], [ -77.704399898962137, 23.651874807958652 ], [ -77.704438021813942, 23.648453229658841 ], [ -77.701425318601764, 23.650381117584271 ], [ -77.6971225233697, 23.650064727384343 ], [ -77.693787380672163, 23.646868672830784 ], [ -77.693293419958309, 23.649099003092662 ], [ -77.689214533505265, 23.651601823928015 ], [ -77.688856113183803, 23.654126484360624 ], [ -77.680781376626001, 23.656612734272517 ], [ -77.678535229557426, 23.654775443788427 ], [ -77.679202862806108, 23.657919103026288 ], [ -77.683598672881089, 23.657815241063034 ], [ -77.685629076452969, 23.661458287408983 ], [ -77.690711692640335, 23.665189499942162 ], [ -77.69276111267618, 23.661914609537885 ] ], [ [ -77.6445613133302, 23.663247055004053 ], [ -77.64236050604967, 23.662105758325165 ], [ -77.642022525829901, 23.662887119294393 ], [ -77.643432296229349, 23.664971685404655 ], [ -77.6445613133302, 23.663247055004053 ] ], [ [ -77.651197825335316, 23.662075050395565 ], [ -77.652740072746013, 23.662133261690308 ], [ -77.654209868607694, 23.659713085473399 ], [ -77.648395507219476, 23.655233099529912 ], [ -77.643903692603828, 23.661361475222439 ], [ -77.647726055527059, 23.660968540809289 ], [ -77.649445427289578, 23.659375261300077 ], [ -77.651197825335316, 23.662075050395565 ] ], [ [ -77.670355993065613, 23.657035031076873 ], [ -77.670979652318763, 23.658546356693918 ], [ -77.673884517843106, 23.658671556469994 ], [ -77.671767960535618, 23.654959474393909 ], [ -77.67014085311834, 23.654859807625147 ], [ -77.670355993065613, 23.657035031076873 ] ], [ [ -77.665953531996536, 23.657760049556583 ], [ -77.66363685349053, 23.659488318762502 ], [ -77.668334501697331, 23.66079917546325 ], [ -77.667445957909607, 23.660472303707067 ], [ -77.665953531996536, 23.657760049556583 ] ], [ [ -77.655890470728451, 23.652256280867924 ], [ -77.663314912148977, 23.651852754932712 ], [ -77.66402376876097, 23.650646645476815 ], [ -77.660007401799731, 23.647993822906372 ], [ -77.658755419804024, 23.648788784636288 ], [ -77.660494006073748, 23.650528540840501 ], [ -77.656497288617146, 23.648844969915643 ], [ -77.653893194738046, 23.650277885053757 ], [ -77.65346678217621, 23.651338173074059 ], [ -77.655890470728451, 23.652256280867924 ] ], [ [ -77.670878527461454, 23.649705445725946 ], [ -77.678741092906009, 23.651354096253947 ], [ -77.680566681651584, 23.650976378783099 ], [ -77.672781850349566, 23.644417010252365 ], [ -77.670529368741413, 23.645403839668294 ], [ -77.670878527461454, 23.649705445725946 ] ], [ [ -77.680422967757949, 23.644384190046345 ], [ -77.682457056630355, 23.6447485490967 ], [ -77.686548171743098, 23.642474696780337 ], [ -77.685995679773896, 23.639293642275831 ], [ -77.680709756979255, 23.641379244549192 ], [ -77.680422967757949, 23.644384190046345 ] ], [ [ -77.780221481752861, 23.613537207444796 ], [ -77.779788712746736, 23.61339953404196 ], [ -77.784042569215032, 23.616426443134863 ], [ -77.783416209522287, 23.613864373598052 ], [ -77.780221481752861, 23.613537207444796 ] ], [ [ -77.740705298299289, 23.609204791044 ], [ -77.754099942402519, 23.586510694521444 ], [ -77.73536411613938, 23.582509066512245 ], [ -77.713798628044231, 23.597990080098214 ], [ -77.721542621120236, 23.606697446375762 ], [ -77.740705298299289, 23.609204791044 ] ], [ [ -77.754426902050511, 23.601246187613 ], [ -77.757636667086501, 23.60295154964674 ], [ -77.75890199295965, 23.602783624334197 ], [ -77.755516862303622, 23.59716530991296 ], [ -77.753124275517067, 23.599017217746447 ], [ -77.754426902050511, 23.601246187613 ] ], [ [ -77.506683887372787, 23.831570776116124 ], [ -77.508412008010723, 23.835429028332889 ], [ -77.510296903073339, 23.836218913983327 ], [ -77.504485017582354, 23.838426760097388 ], [ -77.50460022516738, 23.844345701146864 ], [ -77.503134980934931, 23.84653274347378 ], [ -77.504170062388837, 23.847588794547004 ], [ -77.509975840789309, 23.845237172695434 ], [ -77.510257198012269, 23.841291735809264 ], [ -77.513618886936612, 23.834588610888293 ], [ -77.512391037316164, 23.826749946995545 ], [ -77.508700180143848, 23.827240878704576 ], [ -77.506683887372787, 23.831570776116124 ] ], [ [ -77.500084510719816, 23.89803323137874 ], [ -77.491832206185265, 23.901103956431538 ], [ -77.487227350895495, 23.898252366571555 ], [ -77.485077300348806, 23.900387687840475 ], [ -77.490956167877357, 23.902999731920477 ], [ -77.495250486681968, 23.901276727310474 ], [ -77.499288590893045, 23.901821476296163 ], [ -77.5019604510628, 23.899409060560213 ], [ -77.500084510719816, 23.89803323137874 ] ], [ [ -77.527276534924653, 23.971903835471476 ], [ -77.527293874129427, 23.9719296045029 ], [ -77.52729336580704, 23.971903558126218 ], [ -77.527276534924653, 23.971903835471476 ] ], [ [ -77.527685890217427, 23.972318596284268 ], [ -77.527496868860723, 23.972157456852997 ], [ -77.527871030740741, 23.97281249218209 ], [ -77.527685890217427, 23.972318596284268 ] ], [ [ -77.528109259311975, 23.978133034004593 ], [ -77.5285576286024, 23.97929881569171 ], [ -77.5281681241364, 23.973689906113471 ], [ -77.528055109143594, 23.973691769129157 ], [ -77.528109259311975, 23.978133034004593 ] ], [ [ -77.528326204155931, 23.981784628625817 ], [ -77.52817952609054, 23.98269353853745 ], [ -77.528343905484405, 23.98269082786927 ], [ -77.528326204155931, 23.981784628625817 ] ], [ [ -77.527612699928497, 23.983966488859814 ], [ -77.528089127362378, 23.983981288587074 ], [ -77.528076449889141, 23.983332258378539 ], [ -77.527608376417035, 23.983429579551334 ], [ -77.527612699928497, 23.983966488859814 ] ], [ [ -77.527624192216493, 23.984241693329366 ], [ -77.527635492547219, 23.984512298512225 ], [ -77.527856281167615, 23.984508658174182 ], [ -77.527850993816585, 23.984237953894027 ], [ -77.527624192216493, 23.984241693329366 ] ], [ [ -77.527646792981272, 23.984782903681719 ], [ -77.52765809351861, 23.985053508837812 ], [ -77.527866856104481, 23.985050066702595 ], [ -77.527861568596919, 23.984779362443714 ], [ -77.527646792981272, 23.984782903681719 ] ], [ [ -77.5500332846524, 23.988203210406212 ], [ -77.551111401347868, 23.987201407996473 ], [ -77.551104107973259, 23.986831452664028 ], [ -77.549724338998558, 23.987481733665682 ], [ -77.5500332846524, 23.988203210406212 ] ], [ [ -77.55091300256889, 23.987976457170305 ], [ -77.550917182794336, 23.988188503872301 ], [ -77.55150644782745, 23.988178696691389 ], [ -77.55150226663892, 23.987966650086747 ], [ -77.55091300256889, 23.987976457170305 ] ], [ [ -77.585807706099686, 23.99383192461335 ], [ -77.585972490941259, 23.994334605943429 ], [ -77.586407083415821, 23.994327272273395 ], [ -77.586391568563883, 23.993551289663092 ], [ -77.585807706099686, 23.99383192461335 ] ], [ [ -77.59694929624807, 23.997163695032555 ], [ -77.596950745576194, 23.997235877872779 ], [ -77.59707596914042, 23.997233755698407 ], [ -77.597074519742606, 23.997161572865348 ], [ -77.59694929624807, 23.997163695032555 ] ], [ [ -77.596390925317252, 23.997245363942941 ], [ -77.5963894763007, 23.997173181070675 ], [ -77.596109566218189, 23.997177923324653 ], [ -77.596111015078947, 23.997250106212938 ], [ -77.596390925317252, 23.997245363942941 ] ], [ [ -77.602694497456326, 23.998149347202865 ], [ -77.602405391699463, 23.99842955068241 ], [ -77.603583966789188, 23.998409530460755 ], [ -77.602994588606791, 23.998415030304248 ], [ -77.602694497456326, 23.998149347202865 ] ], [ [ -77.564323322322821, 23.980549792434289 ], [ -77.564320015390763, 23.980382862873103 ], [ -77.564135883750723, 23.980385942291853 ], [ -77.564139190445971, 23.980552871877109 ], [ -77.564323322322821, 23.980549792434289 ] ], [ [ -77.565786187289561, 23.980010826242854 ], [ -77.565182393246999, 23.979285292304606 ], [ -77.564887784158316, 23.97929022073226 ], [ -77.564903874961828, 23.980102310608288 ], [ -77.565786187289561, 23.980010826242854 ] ], [ [ -77.566655437499392, 23.979260641695298 ], [ -77.567255391598025, 23.979792169759811 ], [ -77.568881856066866, 23.979701745913417 ], [ -77.567823132377953, 23.978699518988705 ], [ -77.566655437499392, 23.979260641695298 ] ], [ [ -77.580455103579496, 23.976677714476583 ], [ -77.580453395068744, 23.976591995559012 ], [ -77.580158795649666, 23.97659695278649 ], [ -77.580160503965914, 23.976682671723971 ], [ -77.580455103579496, 23.976677714476583 ] ], [ [ -77.575449404847262, 23.972072776102102 ], [ -77.576505094202432, 23.970701119761994 ], [ -77.576483552495262, 23.969618341804129 ], [ -77.575926689110304, 23.971252405376628 ], [ -77.573580739594576, 23.971833359721909 ], [ -77.57419682570584, 23.973176946305578 ], [ -77.575449404847262, 23.972072776102102 ] ], [ [ -77.576772751061611, 23.969342698530571 ], [ -77.577368650840867, 23.970041239777839 ], [ -77.57645662715511, 23.968264869116418 ], [ -77.576183583394268, 23.969352595480906 ], [ -77.576772751061611, 23.969342698530571 ] ], [ [ -77.575309454857859, 23.965034711715116 ], [ -77.57530739191661, 23.964930946384793 ], [ -77.575211654928083, 23.964932553608218 ], [ -77.575213717792849, 23.965036318946357 ], [ -77.575309454857859, 23.965034711715116 ] ], [ [ -77.578410927462286, 23.96281633308465 ], [ -77.577189569770013, 23.961040649026724 ], [ -77.576611212887499, 23.961221859959903 ], [ -77.576954237627064, 23.963653164536652 ], [ -77.578410927462286, 23.96281633308465 ] ], [ [ -77.571084182766029, 23.963715554527301 ], [ -77.571079526626079, 23.96348095124505 ], [ -77.571057433650054, 23.963481321518515 ], [ -77.5710620897501, 23.963715924804834 ], [ -77.571084182766029, 23.963715554527301 ] ], [ [ -77.595948760888163, 23.961238862818778 ], [ -77.595952738351883, 23.96143736909147 ], [ -77.596063199035441, 23.96143549993208 ], [ -77.596059221402911, 23.961236993676764 ], [ -77.595948760888163, 23.961238862818778 ] ], [ [ -77.595672905381988, 23.961442103926426 ], [ -77.595389095731065, 23.961248331891408 ], [ -77.595184937102488, 23.961721141744285 ], [ -77.59547949920011, 23.961716158569647 ], [ -77.595672905381988, 23.961442103926426 ] ], [ [ -77.580659639561659, 23.957362828816898 ], [ -77.579899718801997, 23.956563253639509 ], [ -77.581879212723067, 23.95941832658999 ], [ -77.584989049493274, 23.959108717560593 ], [ -77.582983708697441, 23.955699015879862 ], [ -77.581221791091878, 23.955999449582098 ], [ -77.58294543106436, 23.954887306871083 ], [ -77.581200224876966, 23.954916673587014 ], [ -77.580659639561659, 23.957362828816898 ] ], [ [ -77.580913581459257, 23.955318646203498 ], [ -77.580321964274944, 23.955202229469336 ], [ -77.580160232233183, 23.955588560799381 ], [ -77.58071987971698, 23.955579149330415 ], [ -77.580913581459257, 23.955318646203498 ] ], [ [ -77.588814198112019, 23.954413824117612 ], [ -77.588834745871452, 23.955442454029793 ], [ -77.588560060824733, 23.95570433229285 ], [ -77.58887670162315, 23.955698990287885 ], [ -77.58943136665647, 23.953965642961112 ], [ -77.588814198112019, 23.954413824117612 ] ], [ [ -77.595109032518735, 23.95793146977714 ], [ -77.593046704309387, 23.957943771715108 ], [ -77.596003539025801, 23.958457902673999 ], [ -77.595987269800474, 23.957645830469872 ], [ -77.596870927513422, 23.957630877020613 ], [ -77.597792572927048, 23.959510750831555 ], [ -77.601283771269436, 23.957285344002635 ], [ -77.600962055075016, 23.955936888885557 ], [ -77.601742254319134, 23.95700678864144 ], [ -77.601834828316029, 23.955380528687286 ], [ -77.603612980607195, 23.955891930420727 ], [ -77.603874894701164, 23.954262797389557 ], [ -77.598578532383073, 23.954623362247073 ], [ -77.597743731391304, 23.957074537730293 ], [ -77.596669729220778, 23.955310066159111 ], [ -77.595109032518735, 23.95793146977714 ] ], [ [ -77.592503292341689, 23.956923980288245 ], [ -77.592502660524687, 23.956892399137256 ], [ -77.592436385311785, 23.956893518921973 ], [ -77.592437017112672, 23.956925100074621 ], [ -77.592503292341689, 23.956923980288245 ] ], [ [ -77.604458541112265, 23.953982110999551 ], [ -77.604485740630722, 23.955335556133964 ], [ -77.606236680886425, 23.954493483143459 ], [ -77.606231237382289, 23.95422279448653 ], [ -77.604458541112265, 23.953982110999551 ] ], [ [ -77.60513149899046, 23.958510786835593 ], [ -77.605132768839127, 23.958573946780021 ], [ -77.605412593510422, 23.958569195235224 ], [ -77.605411323525729, 23.958506035304847 ], [ -77.60513149899046, 23.958510786835593 ] ], [ [ -77.585523053638909, 23.95781349473155 ], [ -77.585517832570147, 23.957551825226496 ], [ -77.585377920120834, 23.957554182821887 ], [ -77.585383140907837, 23.957815852355854 ], [ -77.585523053638909, 23.95781349473155 ] ], [ [ -77.622092605171602, 23.951786348620278 ], [ -77.622082292276247, 23.951276557246199 ], [ -77.622060202825821, 23.951276934670062 ], [ -77.621790709328693, 23.951791506688476 ], [ -77.622092605171602, 23.951786348620278 ] ], [ [ -77.639556905482422, 23.944546047128465 ], [ -77.639554884974416, 23.944446797554402 ], [ -77.63899530932062, 23.944456419308111 ], [ -77.638997329401505, 23.944555668926945 ], [ -77.639556905482422, 23.944546047128465 ] ], [ [ -77.646669107729537, 23.936471800543384 ], [ -77.646388879763791, 23.936454065692431 ], [ -77.646115094328238, 23.936752125756474 ], [ -77.645956803615348, 23.937296405414518 ], [ -77.646669107729537, 23.936471800543384 ] ], [ [ -77.646948415051071, 23.936444420071691 ], [ -77.64694887538478, 23.936466977473646 ], [ -77.6471182087421, 23.936464057994339 ], [ -77.647117748379031, 23.936441500595471 ], [ -77.646948415051071, 23.936444420071691 ] ], [ [ -77.655891983936698, 23.933334015481591 ], [ -77.655889305481807, 23.93320318795891 ], [ -77.655837770812028, 23.933204079345678 ], [ -77.655840449215091, 23.933334906873828 ], [ -77.655891983936698, 23.933334015481591 ] ], [ [ -77.657030370568364, 23.931382797453612 ], [ -77.657020022776678, 23.930877530957879 ], [ -77.656142131576971, 23.931163493144961 ], [ -77.656146934353359, 23.931398081410837 ], [ -77.657030370568364, 23.931382797453612 ] ], [ [ -77.60609049078424, 23.950519996122747 ], [ -77.605844178019495, 23.949626086939016 ], [ -77.603521445178487, 23.951335327495464 ], [ -77.604704123875351, 23.951540910200698 ], [ -77.60609049078424, 23.950519996122747 ] ], [ [ -77.599087918159611, 23.950638750362259 ], [ -77.598202591470383, 23.950567993342119 ], [ -77.598209464185771, 23.950910868174645 ], [ -77.598820626891197, 23.950900519816134 ], [ -77.599087918159611, 23.950638750362259 ] ], [ [ -77.599647752456903, 23.950272737742932 ], [ -77.600196508752461, 23.949721876995252 ], [ -77.599064489587221, 23.94947026987208 ], [ -77.599375307030456, 23.950277352536435 ], [ -77.599647752456903, 23.950272737742932 ] ], [ [ -77.613906965324418, 23.949488973941612 ], [ -77.613904327156064, 23.949358141120438 ], [ -77.613793879022055, 23.949360022215444 ], [ -77.613796517079237, 23.949490855048161 ], [ -77.613906965324418, 23.949488973941612 ] ], [ [ -77.604338887154242, 23.948026949229462 ], [ -77.604337890222638, 23.947977323901885 ], [ -77.604080177952426, 23.94798169672265 ], [ -77.604081174785634, 23.948031322060388 ], [ -77.604338887154242, 23.948026949229462 ] ], [ [ -77.586453582297096, 23.952395673080257 ], [ -77.586737230689593, 23.95184481001419 ], [ -77.585264521298456, 23.95186962678109 ], [ -77.585275409675617, 23.952415525873768 ], [ -77.586453582297096, 23.952395673080257 ] ], [ [ -77.579662819982815, 23.951693107450655 ], [ -77.57965743265396, 23.951422412982808 ], [ -77.577833248331487, 23.951182280423371 ], [ -77.578123831284387, 23.951718969597788 ], [ -77.579662819982815, 23.951693107450655 ] ], [ [ -77.526597302520571, 23.935067960012372 ], [ -77.526595481134606, 23.934974444170543 ], [ -77.526539570413703, 23.934975364156422 ], [ -77.526582401558443, 23.935050698817445 ], [ -77.526597302520571, 23.935067960012372 ] ], [ [ -77.574957990566361, 23.919146902727054 ], [ -77.575231761874775, 23.921439486797762 ], [ -77.577019393290286, 23.922456547451528 ], [ -77.577496131772804, 23.920133326875593 ], [ -77.579220608667015, 23.922419601990473 ], [ -77.579759669344369, 23.921381562155482 ], [ -77.583686407016856, 23.921830059137548 ], [ -77.585531978618405, 23.916139596283919 ], [ -77.582683444748355, 23.913615045309285 ], [ -77.583074843475586, 23.915892089954315 ], [ -77.58047113049146, 23.914938448447945 ], [ -77.579972976658993, 23.91803377554395 ], [ -77.57914907451763, 23.918819349158156 ], [ -77.578279196626781, 23.91729046927605 ], [ -77.576041258397538, 23.917328011025734 ], [ -77.574957990566361, 23.919146902727054 ] ], [ [ -77.570753866254321, 23.91844557102808 ], [ -77.571860394700465, 23.9181698029663 ], [ -77.572643575985083, 23.915326963964088 ], [ -77.569572415198238, 23.918284811792738 ], [ -77.570753866254321, 23.91844557102808 ] ], [ [ -77.576280735422671, 23.914923022631097 ], [ -77.576291477611534, 23.915464415567616 ], [ -77.577404233246682, 23.915504423672367 ], [ -77.576861150019511, 23.91448454367352 ], [ -77.576280735422671, 23.914923022631097 ] ], [ [ -77.57966257519972, 23.916495507354551 ], [ -77.579672794403308, 23.917009828589933 ], [ -77.579856835096166, 23.917006738184568 ], [ -77.579846615165494, 23.916492417023765 ], [ -77.57966257519972, 23.916495507354551 ] ], [ [ -77.570939680715483, 23.914069247374155 ], [ -77.570936911553716, 23.913929386488281 ], [ -77.570664537476787, 23.913933943828631 ], [ -77.570667306345968, 23.914073804744419 ], [ -77.570939680715483, 23.914069247374155 ] ], [ [ -77.592481338877292, 23.914921298460563 ], [ -77.592492148570827, 23.915462684455125 ], [ -77.591614177949353, 23.915748281226175 ], [ -77.592525043126244, 23.91600369774061 ], [ -77.592481338877292, 23.914921298460563 ] ], [ [ -77.610992908518185, 23.915961731305302 ], [ -77.611003795878645, 23.916503109241081 ], [ -77.611070048930131, 23.916501983235054 ], [ -77.611059161294179, 23.915960605327875 ], [ -77.610992908518185, 23.915961731305302 ] ], [ [ -77.609407008950967, 23.920591963604959 ], [ -77.609412813222718, 23.920880697697743 ], [ -77.609685195464706, 23.920876070419418 ], [ -77.609679390588752, 23.920587336389314 ], [ -77.609407008950967, 23.920591963604959 ] ], [ [ -77.573061377693065, 23.92228821786308 ], [ -77.573060930521507, 23.92226566022784 ], [ -77.572597128507468, 23.922273428697171 ], [ -77.57259757559865, 23.922295986340629 ], [ -77.573061377693065, 23.92228821786308 ] ], [ [ -77.571936998953731, 23.92203626132558 ], [ -77.571936820176234, 23.922027238815932 ], [ -77.571414121827956, 23.922035989775278 ], [ -77.571414300569231, 23.922045012288628 ], [ -77.571936998953731, 23.92203626132558 ] ], [ [ -77.596006369246069, 23.922172934654547 ], [ -77.596326550784653, 23.92418937275151 ], [ -77.59767666928235, 23.924310962309036 ], [ -77.597938635753778, 23.922681832485068 ], [ -77.596006369246069, 23.922172934654547 ] ], [ [ -77.593824188544914, 23.925003384455813 ], [ -77.593806245402561, 23.924105588765727 ], [ -77.592133133027787, 23.92440461794623 ], [ -77.592710306031847, 23.925279435916444 ], [ -77.593824188544914, 23.925003384455813 ] ], [ [ -77.575339779573412, 23.924285447175958 ], [ -77.576738568142844, 23.924261987359806 ], [ -77.576983300314907, 23.92249325765594 ], [ -77.574754756812169, 23.923009018308093 ], [ -77.575339779573412, 23.924285447175958 ] ], [ [ -77.591840225027326, 23.92375065382803 ], [ -77.591842567479858, 23.92386795332482 ], [ -77.592365262976656, 23.923859132294066 ], [ -77.592362920053006, 23.923741832845806 ], [ -77.591840225027326, 23.92375065382803 ] ], [ [ -77.593553539864757, 23.925463774941388 ], [ -77.593554711985007, 23.925522425983793 ], [ -77.593576798837759, 23.925522053015161 ], [ -77.593575626707548, 23.925463401973779 ], [ -77.593553539864757, 23.925463774941388 ] ], [ [ -77.593838706029629, 23.925729742974429 ], [ -77.593839607769539, 23.925774859096318 ], [ -77.59411936674897, 23.92577013416717 ], [ -77.594118464912057, 23.925725018055278 ], [ -77.593838706029629, 23.925729742974429 ] ], [ [ -77.592171340631225, 23.926317513263662 ], [ -77.593013709637731, 23.926826808827943 ], [ -77.59328523338462, 23.926041464882907 ], [ -77.593002891989101, 23.926285423856875 ], [ -77.592171340631225, 23.926317513263662 ] ], [ [ -77.587161311125854, 23.927688217636714 ], [ -77.586016638676512, 23.926421267683349 ], [ -77.585213221155584, 23.928235513220915 ], [ -77.586612038843271, 23.928211959942892 ], [ -77.587161311125854, 23.927688217636714 ] ], [ [ -77.591373146054508, 23.928388941488496 ], [ -77.591374948016423, 23.928479172254438 ], [ -77.591573727935568, 23.92847581796466 ], [ -77.591571925835822, 23.928385587212915 ], [ -77.591373146054508, 23.928388941488496 ] ], [ [ -77.605371533842657, 23.928666584304082 ], [ -77.60538475958495, 23.929325263076834 ], [ -77.60543629360032, 23.929324388765444 ], [ -77.605717552256422, 23.928660713674351 ], [ -77.605371533842657, 23.928666584304082 ] ], [ [ -77.603497037368754, 23.93287744577442 ], [ -77.603500930525797, 23.933071439570419 ], [ -77.604038383276887, 23.933062325977112 ], [ -77.604034489318366, 23.932868332264029 ], [ -77.603497037368754, 23.93287744577442 ] ], [ [ -77.602381847138858, 23.93309040984553 ], [ -77.601683958836446, 23.933178958427316 ], [ -77.600816751675552, 23.934005996910756 ], [ -77.602000172103715, 23.934256729563305 ], [ -77.602381847138858, 23.93309040984553 ] ], [ [ -77.603236641340999, 23.933847650953147 ], [ -77.604056223647817, 23.933951091731245 ], [ -77.604339852065706, 23.933404717385038 ], [ -77.603796184805759, 23.933838163459598 ], [ -77.603236641340999, 23.933847650953147 ] ], [ [ -77.601416603920342, 23.93453740003222 ], [ -77.601418865753459, 23.93465018757048 ], [ -77.601573478267341, 23.934647567965964 ], [ -77.601571216300144, 23.93453478044156 ], [ -77.601416603920342, 23.93453740003222 ] ], [ [ -77.604941090372563, 23.935104956713662 ], [ -77.604950240904572, 23.935560618250459 ], [ -77.605266829658959, 23.935555246665171 ], [ -77.605261393021394, 23.935284557132249 ], [ -77.604941090372563, 23.935104956713662 ] ], [ [ -77.604977240783967, 23.936905042699049 ], [ -77.604977422006257, 23.936914066095493 ], [ -77.604999510585785, 23.936913691318196 ], [ -77.604999329361959, 23.936904667921912 ], [ -77.604977240783967, 23.936905042699049 ] ], [ [ -77.604719387945863, 23.938001571143975 ], [ -77.604730260429946, 23.938542950242041 ], [ -77.605032130841252, 23.938537828350686 ], [ -77.605026693930668, 23.938267138872014 ], [ -77.604719387945863, 23.938001571143975 ] ], [ [ -77.577114778789635, 23.912422312560309 ], [ -77.577110391587524, 23.912201243985518 ], [ -77.576227029254369, 23.912216057308548 ], [ -77.576231414956752, 23.912437126037027 ], [ -77.577114778789635, 23.912422312560309 ] ], [ [ -77.577982826469892, 23.911636010667994 ], [ -77.577876918646638, 23.911123291586588 ], [ -77.577678165107912, 23.911126625856483 ], [ -77.577688553011711, 23.911649973056974 ], [ -77.577982826469892, 23.911636010667994 ] ], [ [ -77.576799823584977, 23.911394092894433 ], [ -77.577032629845974, 23.910880206592253 ], [ -77.576473173398782, 23.910889588172061 ], [ -77.576483287800812, 23.911399400769923 ], [ -77.576799823584977, 23.911394092894433 ] ], [ [ -77.580900628609612, 23.910242125043428 ], [ -77.582626558013644, 23.910754698513696 ], [ -77.583982104197389, 23.908565624807583 ], [ -77.582051514137405, 23.908868861395813 ], [ -77.582629639264468, 23.908317574715728 ], [ -77.58256734786373, 23.907777049915211 ], [ -77.580900628609612, 23.910242125043428 ] ], [ [ -77.584091086710529, 23.907751435409178 ], [ -77.584369371071972, 23.90693439896468 ], [ -77.582902551048193, 23.907229844752223 ], [ -77.58290793394967, 23.907500540080171 ], [ -77.584091086710529, 23.907751435409178 ] ], [ [ -77.57976861341777, 23.907747335777351 ], [ -77.580577123507638, 23.906190279504798 ], [ -77.579453144703209, 23.90595190199322 ], [ -77.578644624233263, 23.907508953376386 ], [ -77.57976861341777, 23.907747335777351 ] ], [ [ -77.5784751741636, 23.906762620049445 ], [ -77.578469621557204, 23.906482900096478 ], [ -77.578344484974153, 23.906484999581508 ], [ -77.578180732771287, 23.906767559946108 ], [ -77.5784751741636, 23.906762620049445 ] ], [ [ -77.583094578579448, 23.906147986957428 ], [ -77.58309969244776, 23.90640514722779 ], [ -77.583180662877481, 23.90640378624876 ], [ -77.583175548849312, 23.906146625994818 ], [ -77.583094578579448, 23.906147986957428 ] ], [ [ -77.608290461323719, 23.906801047081963 ], [ -77.608294628674528, 23.907008576706339 ], [ -77.608818519311484, 23.907062865803706 ], [ -77.60881308255972, 23.906792176036454 ], [ -77.608290461323719, 23.906801047081963 ] ], [ [ -77.609118391651251, 23.907328556882049 ], [ -77.609122016661644, 23.907509016809957 ], [ -77.609144098226508, 23.907508641902339 ], [ -77.609140473185519, 23.907328181977611 ], [ -77.609118391651251, 23.907328556882049 ] ], [ [ -77.579555290796549, 23.911095125128146 ], [ -77.579560398897669, 23.911352288262762 ], [ -77.579744431593625, 23.911349198677733 ], [ -77.579739323129061, 23.911092035580403 ], [ -77.579555290796549, 23.911095125128146 ] ], [ [ -77.610525287255967, 23.904055281839327 ], [ -77.610521842198168, 23.903883844712531 ], [ -77.610470317231375, 23.90388471987686 ], [ -77.610473762221361, 23.904056157010693 ], [ -77.610525287255967, 23.904055281839327 ] ], [ [ -77.598176396304993, 23.905122020512096 ], [ -77.597586627903723, 23.90508685845402 ], [ -77.597286782522019, 23.904821142291087 ], [ -77.597344622144263, 23.905136079934017 ], [ -77.598176396304993, 23.905122020512096 ] ], [ [ -77.59249482400179, 23.900840282026142 ], [ -77.592159447045432, 23.89879248878011 ], [ -77.591067858293059, 23.89906813776204 ], [ -77.591372573707659, 23.900317636647028 ], [ -77.59249482400179, 23.900840282026142 ] ], [ [ -77.599712797866147, 23.897635951618902 ], [ -77.599779592483657, 23.896926271623737 ], [ -77.599485178340899, 23.89693125038805 ], [ -77.599433103204902, 23.897640681463393 ], [ -77.599712797866147, 23.897635951618902 ] ], [ [ -77.602385951628435, 23.894715905091619 ], [ -77.602376556638447, 23.894246705298734 ], [ -77.602163110100761, 23.894250318201426 ], [ -77.601892816481509, 23.89472425184865 ], [ -77.602385951628435, 23.894715905091619 ] ], [ [ -77.602669518524721, 23.894169538143789 ], [ -77.602665814387038, 23.893984564846232 ], [ -77.602437650185976, 23.893988427254435 ], [ -77.602441353999822, 23.894173400585537 ], [ -77.602669518524721, 23.894169538143789 ] ], [ [ -77.602157961464215, 23.893993161417839 ], [ -77.602156245281037, 23.893907443132107 ], [ -77.601876559183012, 23.89391217672636 ], [ -77.60187827518223, 23.893997895031141 ], [ -77.602157961464215, 23.893993161417839 ] ], [ [ -77.600474697431835, 23.893764398347798 ], [ -77.600472711570973, 23.893665145054335 ], [ -77.599913337082043, 23.893674605566492 ], [ -77.599915322516907, 23.893773858904041 ], [ -77.600474697431835, 23.893764398347798 ] ], [ [ -77.574475874886062, 23.838636227573993 ], [ -77.574480331589839, 23.838861811026746 ], [ -77.574487689850002, 23.838861688024604 ], [ -77.57448323313352, 23.838636104573162 ], [ -77.574475874886062, 23.838636227573993 ] ], [ [ -77.58179288949961, 23.840571730089767 ], [ -77.581794141036767, 23.840634893437262 ], [ -77.581875070653254, 23.840633536657567 ], [ -77.581873819076975, 23.840570373314108 ], [ -77.58179288949961, 23.840571730089767 ] ], [ [ -77.670678109391019, 23.846415399662991 ], [ -77.668634671350873, 23.847230631275789 ], [ -77.66973134779569, 23.849505006403035 ], [ -77.673462211364296, 23.848939965353541 ], [ -77.670678109391019, 23.846415399662991 ] ], [ [ -77.652793822743874, 23.866375074270874 ], [ -77.652796489700521, 23.866505904474941 ], [ -77.653054031582727, 23.866501464109014 ], [ -77.653051364367911, 23.866370633932252 ], [ -77.652793822743874, 23.866375074270874 ] ], [ [ -77.651701559554255, 23.867680092470952 ], [ -77.651705604536829, 23.867878592348589 ], [ -77.651904280900098, 23.867875168202698 ], [ -77.651900235615329, 23.867676668356999 ], [ -77.651701559554255, 23.867680092470952 ] ], [ [ -77.643749336129162, 23.875534106999829 ], [ -77.643750619768952, 23.875597265741135 ], [ -77.643816850207244, 23.875596127453104 ], [ -77.643815566535395, 23.87553296871517 ], [ -77.643749336129162, 23.875534106999829 ] ], [ [ -77.79195221517891, 23.873172839565537 ], [ -77.791908070196087, 23.871115899591942 ], [ -77.789117643616535, 23.871423734545829 ], [ -77.7894192904824, 23.872447136136831 ], [ -77.79195221517891, 23.873172839565537 ] ], [ [ -77.786864358426783, 23.870692917173837 ], [ -77.78770314123399, 23.870677719862556 ], [ -77.788519877241214, 23.869634043640442 ], [ -77.78683682066999, 23.869407322895803 ], [ -77.786864358426783, 23.870692917173837 ] ], [ [ -77.716452158314183, 23.860923019878804 ], [ -77.714580759391637, 23.861296352334062 ], [ -77.713431174352607, 23.863517108001719 ], [ -77.715356155876094, 23.861939779095962 ], [ -77.717904466758071, 23.862104194720708 ], [ -77.716452158314183, 23.860923019878804 ] ], [ [ -77.767137466916125, 23.929438087645718 ], [ -77.767729827564295, 23.930970730808646 ], [ -77.768848740485851, 23.930950558049052 ], [ -77.769112003426784, 23.930174150530817 ], [ -77.767137466916125, 23.929438087645718 ] ], [ [ -77.78409740754276, 23.937362476055053 ], [ -77.784344025780044, 23.935814699948995 ], [ -77.782950870522072, 23.936097177489813 ], [ -77.782693201622379, 23.937130718777912 ], [ -77.78409740754276, 23.937362476055053 ] ], [ [ -77.768805364843928, 23.955129947197015 ], [ -77.76880035295018, 23.954895382740652 ], [ -77.768292333002023, 23.954904549532159 ], [ -77.768297343979043, 23.955139114089299 ], [ -77.768805364843928, 23.955129947197015 ] ], [ [ -77.770193271236465, 23.954590457897922 ], [ -77.771866441175703, 23.954303021928123 ], [ -77.771809016814643, 23.954028790482553 ], [ -77.770631008492813, 23.954050066633737 ], [ -77.770193271236465, 23.954590457897922 ] ], [ [ -77.767709103977566, 23.955185828274828 ], [ -77.767719316772641, 23.955663982052457 ], [ -77.767977010331307, 23.955659333252651 ], [ -77.767966796588311, 23.955181179579203 ], [ -77.767709103977566, 23.955185828274828 ] ], [ [ -77.767131651888107, 23.955737757798865 ], [ -77.766831365855538, 23.955472416221763 ], [ -77.76630380993663, 23.955946729112437 ], [ -77.767422939607258, 23.955926546998494 ], [ -77.767131651888107, 23.955737757798865 ] ], [ [ -77.766246782481787, 23.955690538313732 ], [ -77.766242352822744, 23.955483036931682 ], [ -77.765058550464204, 23.955233618326321 ], [ -77.765368748101693, 23.955963585531823 ], [ -77.766246782481787, 23.955690538313732 ] ], [ [ -77.765374235399932, 23.956220705748628 ], [ -77.765676446274696, 23.956576267779266 ], [ -77.765970955457874, 23.956570958564374 ], [ -77.76574973393565, 23.956213937229137 ], [ -77.765374235399932, 23.956220705748628 ] ], [ [ -77.770791312259036, 23.956380189972784 ], [ -77.770525322804914, 23.957030296422555 ], [ -77.771572402860969, 23.95674062808375 ], [ -77.771566613675446, 23.956469976360804 ], [ -77.770791312259036, 23.956380189972784 ] ], [ [ -77.7663257669915, 23.956975209108503 ], [ -77.766322781541049, 23.956835372447397 ], [ -77.766271242702587, 23.95683630172207 ], [ -77.7662742280976, 23.956976138389265 ], [ -77.7663257669915, 23.956975209108503 ] ], [ [ -77.770248239859626, 23.957161651877804 ], [ -77.770251326068006, 23.957306000580733 ], [ -77.770405943390458, 23.957303208631579 ], [ -77.770402857010367, 23.95715885994753 ], [ -77.770248239859626, 23.957161651877804 ] ], [ [ -77.769425375771462, 23.957948165536934 ], [ -77.769430871625573, 23.958205284803324 ], [ -77.768875538420104, 23.958413863270923 ], [ -77.769545555029779, 23.958401769147507 ], [ -77.769425375771462, 23.957948165536934 ] ], [ [ -77.763412732218143, 23.960949177652143 ], [ -77.763895464896791, 23.961134523015637 ], [ -77.763995996970337, 23.960667912213939 ], [ -77.763701477988747, 23.960673218491603 ], [ -77.763412732218143, 23.960949177652143 ] ], [ [ -77.762540715832827, 23.961506398876416 ], [ -77.762875645073208, 23.963395669266291 ], [ -77.763943299101115, 23.963376435021068 ], [ -77.763628854929735, 23.961757556445903 ], [ -77.762540715832827, 23.961506398876416 ] ], [ [ -77.766144795014725, 23.961608419662721 ], [ -77.766152789663977, 23.961982821623774 ], [ -77.766381043752247, 23.961978705451529 ], [ -77.766373048445345, 23.961604303562691 ], [ -77.766144795014725, 23.961608419662721 ] ], [ [ -77.764319392404644, 23.962015871488401 ], [ -77.764316889703153, 23.961898589204761 ], [ -77.764191717637985, 23.961900844818341 ], [ -77.764194220226514, 23.962018127114373 ], [ -77.764319392404644, 23.962015871488401 ] ], [ [ -77.765875980333618, 23.96212770456593 ], [ -77.765878773420724, 23.962258519621212 ], [ -77.766092301632568, 23.96225466936389 ], [ -77.766089508330495, 23.962123854332209 ], [ -77.765875980333618, 23.96212770456593 ] ], [ [ -77.759310207089868, 24.034353137300542 ], [ -77.749473088885964, 24.036213416589813 ], [ -77.746494817072588, 24.035335369567193 ], [ -77.743293283812108, 24.038533481257872 ], [ -77.744365617614932, 24.039875713703609 ], [ -77.753573003185267, 24.041792282872017 ], [ -77.760787045355798, 24.036969282446989 ], [ -77.765504532974674, 24.036384902242744 ], [ -77.760918052717003, 24.033537257265763 ], [ -77.759310207089868, 24.034353137300542 ] ], [ [ -77.6945732536131, 24.097146064100933 ], [ -77.695620432981357, 24.091120539521086 ], [ -77.700672669302108, 24.084998105005724 ], [ -77.704076823641415, 24.072681109823971 ], [ -77.708261241867362, 24.066594726224395 ], [ -77.704014440750896, 24.061113152182095 ], [ -77.694602251496534, 24.079453320807136 ], [ -77.691410599400413, 24.080046327283458 ], [ -77.687660505132087, 24.083388212239271 ], [ -77.691008981726299, 24.093252133723929 ], [ -77.690513650530505, 24.098672716066723 ], [ -77.694365231939472, 24.098320048028594 ], [ -77.6945732536131, 24.097146064100933 ] ], [ [ -77.683938425874501, 24.10213488366978 ], [ -77.685276872666407, 24.103377133040031 ], [ -77.686406957804849, 24.10177100907659 ], [ -77.684610495516679, 24.100299900018111 ], [ -77.683938425874501, 24.10213488366978 ] ], [ [ -77.692166096337601, 24.119408093802868 ], [ -77.679759787811022, 24.127607098904779 ], [ -77.668132379909423, 24.129108073081774 ], [ -77.665079763450777, 24.131748513237863 ], [ -77.669363705355821, 24.134867308187786 ], [ -77.672982082555635, 24.144036454654248 ], [ -77.67804115698442, 24.143290106899816 ], [ -77.679487580832429, 24.141428051076833 ], [ -77.678962869841484, 24.136349840199298 ], [ -77.682845073168977, 24.133398401856471 ], [ -77.690482535564271, 24.134649209140292 ], [ -77.683047590617861, 24.13404531120732 ], [ -77.684345410893485, 24.137463363257847 ], [ -77.679955592655091, 24.138654799463676 ], [ -77.679494123317326, 24.14012540753895 ], [ -77.693030211715751, 24.142789298862759 ], [ -77.700013389686632, 24.147092178721781 ], [ -77.703586975570701, 24.146443987553425 ], [ -77.709229150328412, 24.142189386893293 ], [ -77.705984298065943, 24.139798497367842 ], [ -77.704583435510159, 24.136475309624359 ], [ -77.712724767125025, 24.126078626399657 ], [ -77.702216339414818, 24.129344967529253 ], [ -77.699413210747053, 24.128395347897516 ], [ -77.707970092998679, 24.124447802130799 ], [ -77.705955891268658, 24.123321683109136 ], [ -77.705552152629593, 24.120906791213045 ], [ -77.698630376285735, 24.122574572826196 ], [ -77.694125928338693, 24.120642457415396 ], [ -77.693125754005735, 24.119188886648974 ], [ -77.694236968785589, 24.117382608604313 ], [ -77.692947127943341, 24.117083570472133 ], [ -77.692166096337601, 24.119408093802868 ] ], [ [ -77.720823078666186, 24.124709703722189 ], [ -77.718997414779025, 24.125855420965028 ], [ -77.718003755016341, 24.129534723689794 ], [ -77.718824480379482, 24.132253611851777 ], [ -77.716817413333033, 24.138043534747361 ], [ -77.718151259130707, 24.141261485513429 ], [ -77.721993964553434, 24.140484074313125 ], [ -77.72299468502365, 24.138493695110299 ], [ -77.727246484752683, 24.13655231753274 ], [ -77.731257815344748, 24.138594001713159 ], [ -77.734229587291836, 24.137828973603934 ], [ -77.732149484359851, 24.137241435176101 ], [ -77.732693040760182, 24.136137565386562 ], [ -77.741020208732863, 24.138154501125342 ], [ -77.743895905692, 24.135673937778584 ], [ -77.748624222162505, 24.134708874281081 ], [ -77.74974702308181, 24.1326085370528 ], [ -77.746790787409623, 24.131541744753779 ], [ -77.742605664488011, 24.133242618107452 ], [ -77.733105673144891, 24.13305083817432 ], [ -77.731786848763804, 24.13183938846171 ], [ -77.729443242279075, 24.13294135579882 ], [ -77.730095521820132, 24.129956637913867 ], [ -77.722323445931153, 24.133011436391417 ], [ -77.723485213313097, 24.131967955119517 ], [ -77.721769404853589, 24.130481631422835 ], [ -77.730803513027723, 24.125716815398274 ], [ -77.733083832743432, 24.126096146662515 ], [ -77.730822603068489, 24.130337866311145 ], [ -77.733490638802564, 24.132321305579048 ], [ -77.736019040846458, 24.132323319500511 ], [ -77.734653277312916, 24.130958056982351 ], [ -77.742235458419231, 24.131670743288513 ], [ -77.744252754091661, 24.130898359153992 ], [ -77.744658914512968, 24.128877837313418 ], [ -77.739883108159546, 24.126248690496261 ], [ -77.737822487282344, 24.127108782151932 ], [ -77.736628106212336, 24.125875044777622 ], [ -77.737476464133081, 24.123868021559904 ], [ -77.724318624401633, 24.12288212708679 ], [ -77.720823078666186, 24.124709703722189 ] ], [ [ -77.706424618678568, 24.146392339425063 ], [ -77.700787627318306, 24.14836485372691 ], [ -77.690289533364549, 24.149338361906121 ], [ -77.689703425509961, 24.147550396781586 ], [ -77.694263901204579, 24.147218971692045 ], [ -77.695303750093302, 24.145257400916194 ], [ -77.680744713936605, 24.141253394778271 ], [ -77.678169347245742, 24.146287163385846 ], [ -77.674438582238693, 24.148729229827005 ], [ -77.677759627628404, 24.148486392209335 ], [ -77.680203629739765, 24.150942219848563 ], [ -77.676440334644383, 24.153894448598304 ], [ -77.681513077779343, 24.157124309375028 ], [ -77.673302682539529, 24.158107485668115 ], [ -77.673597391313734, 24.16072430165654 ], [ -77.678992948811043, 24.163627564217276 ], [ -77.688969941273839, 24.16499583634717 ], [ -77.692283334279594, 24.163450537241339 ], [ -77.692883276107608, 24.158680969855823 ], [ -77.695690390042841, 24.15926120359563 ], [ -77.697005073331582, 24.1557360256629 ], [ -77.699236502411964, 24.157967607966562 ], [ -77.697492497330984, 24.159752873531968 ], [ -77.699321338672974, 24.163529148184345 ], [ -77.70164165916934, 24.16160329165362 ], [ -77.704320395277762, 24.16371130766386 ], [ -77.707624837571899, 24.163392466695015 ], [ -77.715133110293053, 24.158008465087093 ], [ -77.718028739633837, 24.153539057762956 ], [ -77.717018500233848, 24.152936483457065 ], [ -77.714090299425365, 24.155634881567046 ], [ -77.715346327874528, 24.153667757659509 ], [ -77.714759142174984, 24.149249811814887 ], [ -77.71212094915596, 24.143554467051196 ], [ -77.706424618678568, 24.146392339425063 ] ], [ [ -77.675472786757069, 24.164774826237878 ], [ -77.669254474110247, 24.162357305453558 ], [ -77.669464582377799, 24.158540689513345 ], [ -77.662144351490355, 24.154328733930846 ], [ -77.663124570226415, 24.152987397055085 ], [ -77.661681320342339, 24.151239120501693 ], [ -77.659108592254441, 24.150838186258881 ], [ -77.655638910155147, 24.156161440146061 ], [ -77.649752009397488, 24.160905269892385 ], [ -77.645145839989198, 24.172370797182772 ], [ -77.64712790691415, 24.17655948092078 ], [ -77.64861103185757, 24.176896497611189 ], [ -77.655404570886688, 24.171632884193734 ], [ -77.662204382615016, 24.169344686017169 ], [ -77.674961550858001, 24.167762214843371 ], [ -77.676960497652829, 24.166434113396353 ], [ -77.675472786757069, 24.164774826237878 ] ], [ [ -77.683216248129199, 24.167346361684316 ], [ -77.675982549297487, 24.168261232364824 ], [ -77.672241180114142, 24.170273527318784 ], [ -77.657902526029019, 24.171965877700522 ], [ -77.655062871161562, 24.175962397238347 ], [ -77.65205581294741, 24.175726011118794 ], [ -77.648888315883738, 24.177950425616554 ], [ -77.651652197140834, 24.181429480196996 ], [ -77.651509021678734, 24.18466691068642 ], [ -77.650213936671136, 24.184967088745367 ], [ -77.649908263547914, 24.188070375722287 ], [ -77.646814441792898, 24.192635740083649 ], [ -77.64270086322631, 24.204786533730999 ], [ -77.639825167407679, 24.206711445005023 ], [ -77.632611556055735, 24.206952701222658 ], [ -77.631543153378104, 24.209192335436288 ], [ -77.63293442706086, 24.210947851912113 ], [ -77.640397886768, 24.212214201135247 ], [ -77.642767710244868, 24.210296204419727 ], [ -77.640559655128655, 24.210188296179261 ], [ -77.64186521670932, 24.209481053801923 ], [ -77.64745919329377, 24.210241919696067 ], [ -77.669397718974309, 24.205965225786553 ], [ -77.681070030216247, 24.192533701452231 ], [ -77.673996686657816, 24.192256927188932 ], [ -77.676644390236348, 24.191830715420124 ], [ -77.680471861608709, 24.187101721245249 ], [ -77.683090313347762, 24.187198673659267 ], [ -77.686153292180833, 24.179786496573769 ], [ -77.693944597083373, 24.173098560534815 ], [ -77.703822435226655, 24.169176606664209 ], [ -77.694412959636765, 24.166299808491427 ], [ -77.690063152838817, 24.168099576161538 ], [ -77.685872637284717, 24.166191138619642 ], [ -77.683216248129199, 24.167346361684316 ] ], [ [ -77.678698203031004, 24.191050007894773 ], [ -77.67934508029785, 24.191499510270155 ], [ -77.681545660829073, 24.189854182883689 ], [ -77.679691648410582, 24.189738737136864 ], [ -77.678698203031004, 24.191050007894773 ] ], [ [ -77.648129854940521, 24.156348621587835 ], [ -77.638898577017088, 24.14943530370061 ], [ -77.638420937111263, 24.149302100162128 ], [ -77.636433074630332, 24.157824252876097 ], [ -77.645161206110956, 24.159498929463798 ], [ -77.648129854940521, 24.156348621587835 ] ], [ [ -77.695472065718846, 24.14628882458145 ], [ -77.695327698150976, 24.147551850089194 ], [ -77.699001490122981, 24.147295708885828 ], [ -77.696295375555636, 24.146305209162044 ], [ -77.695472065718846, 24.14628882458145 ] ], [ [ -77.682142946347199, 24.135670998277785 ], [ -77.681505285943729, 24.135283198248516 ], [ -77.679673198813688, 24.138094431680639 ], [ -77.682619550995895, 24.137314972240578 ], [ -77.682142946347199, 24.135670998277785 ] ], [ [ -77.653791089018, 24.138548687896414 ], [ -77.651388853249003, 24.140308412564281 ], [ -77.652270851692066, 24.142191638408473 ], [ -77.652838617977906, 24.142064362036106 ], [ -77.653791089018, 24.138548687896414 ] ], [ [ -77.621327650052891, 24.229080958646446 ], [ -77.620779834789616, 24.230498195522458 ], [ -77.62268450479003, 24.229299787492081 ], [ -77.622990951157291, 24.226384773632635 ], [ -77.621327650052891, 24.229080958646446 ] ], [ [ -77.826177555181104, 24.044621565185114 ], [ -77.82456533525027, 24.047737839688327 ], [ -77.826867038137806, 24.050524611555975 ], [ -77.829302207135726, 24.046621475378792 ], [ -77.826177555181104, 24.044621565185114 ] ], [ [ -77.832067978018131, 24.045027058700896 ], [ -77.832947369071334, 24.04681122793545 ], [ -77.830959421381195, 24.045561989551448 ], [ -77.829873413731192, 24.047125327359058 ], [ -77.833541173539416, 24.048343471083619 ], [ -77.833467771126678, 24.045001140647891 ], [ -77.832067978018131, 24.045027058700896 ] ], [ [ -77.835707438493102, 24.044959645153408 ], [ -77.837969720283411, 24.045946521808137 ], [ -77.840181098866893, 24.044619455350389 ], [ -77.837638873728068, 24.043637800875295 ], [ -77.835707438493102, 24.044959645153408 ] ], [ [ -77.829499584296599, 24.055620089455221 ], [ -77.827819688381211, 24.055651158909722 ], [ -77.827853514181569, 24.057193779819627 ], [ -77.829259085017171, 24.057424990774056 ], [ -77.829499584296599, 24.055620089455221 ] ], [ [ -77.797055640783555, 24.072421228261337 ], [ -77.797044088331234, 24.071888965245641 ], [ -77.79680090887507, 24.071893414529974 ], [ -77.796812460326194, 24.072425677656248 ], [ -77.797055640783555, 24.072421228261337 ] ], [ [ -77.658884418942051, 24.264819924320776 ], [ -77.656746234837996, 24.264601361757951 ], [ -77.656923129036102, 24.267711273651791 ], [ -77.657523823431816, 24.267962279649485 ], [ -77.658884418942051, 24.264819924320776 ] ], [ [ -77.741884796616176, 24.316294485894414 ], [ -77.72489334681768, 24.318684132640321 ], [ -77.722774292659281, 24.320667427681165 ], [ -77.722551607316916, 24.325064826890536 ], [ -77.720408561501671, 24.327113308163696 ], [ -77.718210391924686, 24.326467636046864 ], [ -77.714991642971086, 24.32811729147334 ], [ -77.714004993450644, 24.330869732505892 ], [ -77.729052312527372, 24.32735596060326 ], [ -77.732780833281652, 24.329174572874322 ], [ -77.739123162747873, 24.327996720940202 ], [ -77.741223377947819, 24.327015907954138 ], [ -77.740821166728537, 24.324550459233055 ], [ -77.735579831236436, 24.324806892366158 ], [ -77.734192672639608, 24.323633085389972 ], [ -77.735454019639775, 24.322381649348713 ], [ -77.741165094606899, 24.321700301699625 ], [ -77.748498644399774, 24.318341875665027 ], [ -77.751816191342257, 24.318902292595947 ], [ -77.756749800288958, 24.315693559641783 ], [ -77.754774860068324, 24.313672900519222 ], [ -77.749924826574329, 24.312491208181104 ], [ -77.741884796616176, 24.316294485894414 ] ], [ [ -77.769069546968225, 24.37539188970511 ], [ -77.766143598285765, 24.375553764184374 ], [ -77.764944725936161, 24.376061624563313 ], [ -77.767136564178102, 24.377136301879922 ], [ -77.769069546968225, 24.37539188970511 ] ], [ [ -77.715400495627733, 24.489457768965426 ], [ -77.715466268529951, 24.489541661304386 ], [ -77.715459662913759, 24.489234201309845 ], [ -77.715400495627733, 24.489457768965426 ] ], [ [ -77.715478007305165, 24.489556633918081 ], [ -77.715755259735445, 24.489910263399363 ], [ -77.715747557050179, 24.489551783899017 ], [ -77.715478007305165, 24.489556633918081 ] ], [ [ -77.716281550981137, 24.490581529066496 ], [ -77.716342125674331, 24.49106054681274 ], [ -77.716331585104356, 24.490570123976575 ], [ -77.716281550981137, 24.490581529066496 ] ], [ [ -77.716818162639669, 24.494824811684424 ], [ -77.717282771109168, 24.495591325040422 ], [ -77.71641003527651, 24.49159756199769 ], [ -77.716818162639669, 24.494824811684424 ] ], [ [ -77.726468163678248, 24.546874927605288 ], [ -77.727285483484181, 24.547770203789582 ], [ -77.729072322410175, 24.545140107770653 ], [ -77.727149570200851, 24.544935109875048 ], [ -77.726468163678248, 24.546874927605288 ] ], [ [ -77.719256505960772, 24.572528251894969 ], [ -77.721159506600742, 24.570502131108469 ], [ -77.719384814354868, 24.569171998642823 ], [ -77.719256505960772, 24.572528251894969 ] ], [ [ -77.742737333236079, 24.61570980952855 ], [ -77.742412344355571, 24.618940457094908 ], [ -77.746066038712101, 24.618897954728869 ], [ -77.746300171919572, 24.616119629298215 ], [ -77.742737333236079, 24.61570980952855 ] ], [ [ -77.740419674463382, 24.619474521941907 ], [ -77.740557790746522, 24.618261857546521 ], [ -77.736726727414876, 24.617862471665177 ], [ -77.731188589383677, 24.624741834727388 ], [ -77.73322218854149, 24.626168975098398 ], [ -77.734413766642888, 24.622225220800242 ], [ -77.740419674463382, 24.619474521941907 ] ], [ [ -77.726846875994056, 24.651855306715397 ], [ -77.73085011442322, 24.652753571303073 ], [ -77.732829963696517, 24.649480141903517 ], [ -77.729381702592889, 24.645849596437028 ], [ -77.731012509734754, 24.644012928045765 ], [ -77.731100325262645, 24.639008787414554 ], [ -77.73301496817416, 24.638555033425966 ], [ -77.731003063848817, 24.633487672463303 ], [ -77.734933370170822, 24.633999189523305 ], [ -77.735417232914628, 24.632787901612449 ], [ -77.729856863183073, 24.628817143136821 ], [ -77.727371490008423, 24.636773212317934 ], [ -77.726528042928109, 24.648306785807762 ], [ -77.728116864309982, 24.650369856531608 ], [ -77.726846875994056, 24.651855306715397 ] ], [ [ -77.736707009795865, 24.645802248138818 ], [ -77.739842787267833, 24.646334955200011 ], [ -77.740219950517996, 24.644417677227409 ], [ -77.737287142371159, 24.643572857273266 ], [ -77.736707009795865, 24.645802248138818 ] ], [ [ -77.734491221125893, 24.651204579775413 ], [ -77.733066966848924, 24.652842932301482 ], [ -77.733833189643875, 24.654608513038237 ], [ -77.730062253584407, 24.658298701832994 ], [ -77.732113220823607, 24.662860195851117 ], [ -77.730439767885017, 24.670087274531703 ], [ -77.732355231166807, 24.669589989508864 ], [ -77.738610057046316, 24.661602679017896 ], [ -77.735636688610484, 24.658154681484305 ], [ -77.733662583526566, 24.659695978759611 ], [ -77.735271214387609, 24.656267859710628 ], [ -77.737685008788787, 24.6557080357967 ], [ -77.734491221125893, 24.651204579775413 ] ] ], [ [ [ -77.604353107551631, 23.821927427144523 ], [ -77.604463449074572, 23.821925562186667 ], [ -77.604467143200736, 23.822110537014254 ], [ -77.604356801521703, 23.822112401988353 ], [ -77.604353107551631, 23.821927427144523 ] ] ] ] } } +] +} diff --git a/src/ckanext-mappreview/ckanext/mappreview/public/data/recreation/bonefish.qmd b/src/ckanext-mappreview/ckanext/mappreview/public/data/recreation/bonefish.qmd new file mode 100644 index 00000000..b190199d --- /dev/null +++ b/src/ckanext-mappreview/ckanext/mappreview/public/data/recreation/bonefish.qmd @@ -0,0 +1,26 @@ + + + + + + dataset + + + + + + + + + + 0 + 0 + + + + + false + + + + diff --git a/src/ckanext-mappreview/ckanext/mappreview/public/data/recreation/dredged-ports.geojson b/src/ckanext-mappreview/ckanext/mappreview/public/data/recreation/dredged-ports.geojson new file mode 100644 index 00000000..b6033e61 --- /dev/null +++ b/src/ckanext-mappreview/ckanext/mappreview/public/data/recreation/dredged-ports.geojson @@ -0,0 +1,21 @@ +{ +"type": "FeatureCollection", +"name": "dredged-ports", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, +"features": [ +{ "type": "Feature", "properties": { "Id": 0, "Descrptn": "KW added Oct 29, 2015, uncertain", "Source": "Current_digitized_from_aerial", "Type": "Dredging" }, "geometry": { "type": "Point", "coordinates": [ -77.890631680209268, 24.843223761790842 ] } }, +{ "type": "Feature", "properties": { "Id": 0, "Descrptn": "TNC digitized", "Source": "Current_digitized_from_aerial", "Type": "Dredging" }, "geometry": { "type": "Point", "coordinates": [ -78.029037158162481, 25.173967449943031 ] } }, +{ "type": "Feature", "properties": { "Id": 0, "Descrptn": "TNC digitized", "Source": "Current_digitized_from_aerial", "Type": "Dredging" }, "geometry": { "type": "Point", "coordinates": [ -77.522060795518797, 24.008305575323647 ] } }, +{ "type": "Feature", "properties": { "Id": 0, "Descrptn": "TNC digitized", "Source": "Current_digitized_from_aerial", "Type": "Dredging" }, "geometry": { "type": "Point", "coordinates": [ -77.599612256819597, 24.211647873720285 ] } }, +{ "type": "Feature", "properties": { "Id": 0, "Descrptn": "TNC digitized", "Source": "Current_digitized_from_aerial", "Type": "Dredging" }, "geometry": { "type": "Point", "coordinates": [ -77.632558974987973, 24.213967974377802 ] } }, +{ "type": "Feature", "properties": { "Id": 0, "Descrptn": "TNC digitized", "Source": "Current_digitized_from_aerial", "Type": "Dredging" }, "geometry": { "type": "Point", "coordinates": [ -77.714873601882687, 24.498180125451857 ] } }, +{ "type": "Feature", "properties": { "Id": 0, "Descrptn": "TNC digitized", "Source": "Current_digitized_from_aerial", "Type": "Dredging" }, "geometry": { "type": "Point", "coordinates": [ -78.024890628126684, 25.181805810034515 ] } }, +{ "type": "Feature", "properties": { "Id": 0, "Descrptn": "TNC digitized", "Source": "Current_digitized_from_aerial", "Type": "Dredging" }, "geometry": { "type": "Point", "coordinates": [ -77.796831037430437, 24.713705659601292 ] } }, +{ "type": "Feature", "properties": { "Id": 0, "Descrptn": "TNC digitized", "Source": "Current_digitized_from_aerial", "Type": "Dredging" }, "geometry": { "type": "Point", "coordinates": [ -77.512348004257191, 23.860459331002154 ] } }, +{ "type": "Feature", "properties": { "Id": 0, "Descrptn": "TNC digitized", "Source": "Current_digitized_from_aerial", "Type": "Dredging" }, "geometry": { "type": "Point", "coordinates": [ -77.965175135545877, 25.071725244512944 ] } }, +{ "type": "Feature", "properties": { "Id": 0, "Descrptn": "TNC digitized", "Source": "Current_digitized_from_aerial", "Type": "Dredging" }, "geometry": { "type": "Point", "coordinates": [ -77.682595774556447, 24.337804345769058 ] } }, +{ "type": "Feature", "properties": { "Id": 0, "Descrptn": "dredging at stafford creek", "Source": "Current_digitized_from_aerial", "Type": "Dredging" }, "geometry": { "type": "Point", "coordinates": [ -77.935221924440853, 24.89776489610561 ] } }, +{ "type": "Feature", "properties": { "Id": 0, "Descrptn": "TNC digitized", "Source": "Current_digitized_from_aerial", "Type": "Dredging" }, "geometry": { "type": "Point", "coordinates": [ -77.76050283739437, 24.709820217690609 ] } }, +{ "type": "Feature", "properties": { "Id": 0, "Descrptn": "Dredging to open Sandy Creek", "Source": "Stakeholder_Proposed_ID", "Type": "Dredging" }, "geometry": { "type": "Point", "coordinates": [ -77.794558935711692, 24.720677535045898 ] } } +] +} diff --git a/src/ckanext-mappreview/ckanext/mappreview/public/data/recreation/dredged-ports.qmd b/src/ckanext-mappreview/ckanext/mappreview/public/data/recreation/dredged-ports.qmd new file mode 100644 index 00000000..b190199d --- /dev/null +++ b/src/ckanext-mappreview/ckanext/mappreview/public/data/recreation/dredged-ports.qmd @@ -0,0 +1,26 @@ + + + + + + dataset + + + + + + + + + + 0 + 0 + + + + + false + + + + diff --git a/src/ckanext-mappreview/ckanext/mappreview/public/data/recreation/roads-simple-buf.geojson b/src/ckanext-mappreview/ckanext/mappreview/public/data/recreation/roads-simple-buf.geojson new file mode 100644 index 00000000..578e9f81 --- /dev/null +++ b/src/ckanext-mappreview/ckanext/mappreview/public/data/recreation/roads-simple-buf.geojson @@ -0,0 +1,8 @@ +{ +"type": "FeatureCollection", +"name": "roads-simple-buf", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, +"features": [ +{ "type": "Feature", "properties": { "id": null, "Descrptn": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -77.527316160380224, 24.007189120728494 ], [ -77.527164349979401, 24.007211109089475 ], [ -77.527012573091909, 24.007188926263481 ], [ -77.526875686844477, 24.007124743669241 ], [ -77.52676709071622, 24.007024843994106 ], [ -77.526697414866248, 24.006899006182476 ], [ -77.526673479574598, 24.006759548178607 ], [ -77.526697627655196, 24.006620121136486 ], [ -77.526767495178248, 24.006494373137272 ], [ -77.526876242924303, 24.006394613223446 ], [ -77.527013225892844, 24.006330606522262 ], [ -77.528759981484185, 24.005810456613204 ], [ -77.524288893154804, 23.997297374141116 ], [ -77.524247877755244, 23.997181291732982 ], [ -77.52424222268337, 23.997059357355571 ], [ -77.524272341507952, 23.996940490467143 ], [ -77.524819315943873, 23.995622891978559 ], [ -77.524818058215558, 23.995622018176096 ], [ -77.524730129021066, 23.995506232260652 ], [ -77.524685448979866, 23.995371150289277 ], [ -77.524688391568205, 23.995229995074851 ], [ -77.524738668594011, 23.995096583883196 ], [ -77.524831358464951, 23.994983975899029 ], [ -77.52495738799648, 23.994903193914325 ], [ -77.525104420579083, 23.994862145364323 ], [ -77.525136835859769, 23.994858011395692 ], [ -77.525396757441484, 23.994231874322388 ], [ -77.525498163273994, 23.994083258560742 ], [ -77.525653587430696, 23.993981393209623 ], [ -77.525720312434146, 23.993953718885486 ], [ -77.525782615852435, 23.993919721205337 ], [ -77.525821914397113, 23.993911579198951 ], [ -77.52924645050517, 23.992491189987085 ], [ -77.52887903886662, 23.990853642203689 ], [ -77.528100673692876, 23.989996096888746 ], [ -77.528021932365547, 23.989874860042551 ], [ -77.527987822147068, 23.98973720137209 ], [ -77.527996837287731, 23.989645743606044 ], [ -77.526978438616482, 23.989192221366689 ], [ -77.526858953509489, 23.989117250226773 ], [ -77.526768430421328, 23.98901354465605 ], [ -77.526714725608556, 23.988890105060111 ], [ -77.526702499894185, 23.988757644500286 ], [ -77.526732814194872, 23.988627658917839 ], [ -77.527516025585342, 23.986709559842449 ], [ -77.528465924429668, 23.978126787737974 ], [ -77.527139213313831, 23.969098011026798 ], [ -77.524505036207017, 23.957689480297681 ], [ -77.52158225164176, 23.947403384164506 ], [ -77.521581626460431, 23.947397560347593 ], [ -77.521579224291685, 23.947392140675049 ], [ -77.521575507943126, 23.94734522486182 ], [ -77.521566432487987, 23.947298930276101 ], [ -77.521265221273765, 23.934225300499719 ], [ -77.51840359408763, 23.919640153236131 ], [ -77.513299034050092, 23.906128808195469 ], [ -77.50802525047682, 23.898377749896916 ], [ -77.507961489526991, 23.898233184893069 ], [ -77.50795507663301, 23.89807729737614 ], [ -77.508006777987305, 23.897928717133105 ], [ -77.515016243527143, 23.885649442388001 ], [ -77.515577682436415, 23.875196892539321 ], [ -77.514571372041402, 23.875088633178034 ], [ -77.51442354990057, 23.875050493139636 ], [ -77.514295779409281, 23.874972213522476 ], [ -77.514200567703611, 23.874861456938593 ], [ -77.514147234747426, 23.874729065082878 ], [ -77.514141001037459, 23.874587997446231 ], [ -77.514182476624711, 23.874452062729752 ], [ -77.514267601454918, 23.874334567146096 ], [ -77.514388042846377, 23.874247011923959 ], [ -77.514532011177849, 23.874197967509705 ], [ -77.514685413930536, 23.874192234658718 ], [ -77.515626208963937, 23.87429344660578 ], [ -77.515632733366928, 23.874171978007535 ], [ -77.515567476403064, 23.874097313087034 ], [ -77.515512983475588, 23.873965321519321 ], [ -77.514405375186513, 23.869085105505008 ], [ -77.514396610013591, 23.868956671426741 ], [ -77.514427621419657, 23.868831184547169 ], [ -77.514495887312719, 23.86871885000016 ], [ -77.514595855940016, 23.868628803288523 ], [ -77.514719397402956, 23.868568367356936 ], [ -77.515901525745988, 23.868176693240908 ], [ -77.51358104967116, 23.847839128031193 ], [ -77.513585801253839, 23.847713803167366 ], [ -77.513627866336904, 23.847594520071318 ], [ -77.518877040791907, 23.837676189938087 ], [ -77.522545825830889, 23.82513989375072 ], [ -77.522608411647056, 23.825010982794193 ], [ -77.522711236510972, 23.824906172901382 ], [ -77.522844235179704, 23.824835723528953 ], [ -77.522994388879937, 23.824806530687543 ], [ -77.523146999652212, 23.824821451937073 ], [ -77.523287129039545, 23.824879026683568 ], [ -77.52340106031086, 23.824973619151613 ], [ -77.5234776411084, 23.825095970037307 ], [ -77.523509375107039, 23.825234102848235 ], [ -77.523493155831034, 23.825374496221269 ], [ -77.519812305809026, 23.837952335758256 ], [ -77.519779688536701, 23.838032532797833 ], [ -77.514571578523515, 23.84787341587732 ], [ -77.516917693727862, 23.868434243415717 ], [ -77.516916748231097, 23.868450789323802 ], [ -77.516920128552229, 23.868467063826163 ], [ -77.516917626046464, 23.868485316993262 ], [ -77.516919777097868, 23.868503608010069 ], [ -77.515991227961266, 23.885793320589634 ], [ -77.515935613944833, 23.885980768410423 ], [ -77.50900689459111, 23.898118772001059 ], [ -77.514160648459864, 23.905693333264946 ], [ -77.514208199030904, 23.905784614166542 ], [ -77.519343590271063, 23.919377321100669 ], [ -77.519362974088878, 23.919445297056054 ], [ -77.522238374493426, 23.93410009667442 ], [ -77.522246060941839, 23.934170643592161 ], [ -77.522530193136859, 23.946499182210029 ], [ -77.525629564329805, 23.94477642297112 ], [ -77.525771823918248, 23.94472315750906 ], [ -77.525925029862066, 23.944712902331258 ], [ -77.526074185442624, 23.944746661263672 ], [ -77.52620469041176, 23.944821129767206 ], [ -77.526303770112719, 23.944929018401215 ], [ -77.526361725922285, 23.945059766343565 ], [ -77.52637288462418, 23.945200575131185 ], [ -77.526336153780349, 23.945337661441151 ], [ -77.526255128722354, 23.945457606289899 ], [ -77.52613774066856, 23.945548668584593 ], [ -77.522624955734003, 23.947501218957118 ], [ -77.525458099352136, 23.957471561105077 ], [ -77.525459227833025, 23.957482068810165 ], [ -77.525463341379677, 23.95749192764498 ], [ -77.528032787929817, 23.968619794750531 ], [ -77.52868453114894, 23.968707274631509 ], [ -77.528831212386166, 23.968749282394079 ], [ -77.528956588019128, 23.968830885425572 ], [ -77.529048385470119, 23.968944095912679 ], [ -77.529097618935211, 23.969077832092932 ], [ -77.529099468988633, 23.969219002988503 ], [ -77.529053754384307, 23.969353789822769 ], [ -77.528964949854711, 23.969468998692999 ], [ -77.528841748143094, 23.969553352092245 ], [ -77.528696209121307, 23.969598592853291 ], [ -77.528542579273946, 23.969600292443932 ], [ -77.528197257736409, 23.969553942413992 ], [ -77.52944707365738, 23.978058931673633 ], [ -77.529448971658766, 23.978164966705545 ], [ -77.528497990172866, 23.986758116713379 ], [ -77.529547656507447, 23.989477948504462 ], [ -77.529553038044654, 23.989504564003987 ], [ -77.529563921862874, 23.989529720297128 ], [ -77.529739361006492, 23.990246250463109 ], [ -77.536375424828464, 23.99106606186249 ], [ -77.539903382848294, 23.988145309355119 ], [ -77.540047288882974, 23.988062475514482 ], [ -77.542527527369131, 23.987136583993223 ], [ -77.543273967003898, 23.982134845893892 ], [ -77.543318397237712, 23.981999697234837 ], [ -77.543406106219649, 23.981883778220944 ], [ -77.543528508318161, 23.981798435753564 ], [ -77.543673621990251, 23.981752023679032 ], [ -77.543827242607989, 23.981749085082413 ], [ -77.543974332864721, 23.981789907598522 ], [ -77.544100494674197, 23.981870495262193 ], [ -77.544193378504829, 23.981982959650821 ], [ -77.544243892212862, 23.982116292035421 ], [ -77.54424709105524, 23.982257440965405 ], [ -77.54357747914375, 23.986744613562848 ], [ -77.55071988702089, 23.984077946981916 ], [ -77.553496509271611, 23.980834798084132 ], [ -77.547419113219021, 23.977232450965982 ], [ -77.547416962396596, 23.977230682256199 ], [ -77.547414335738353, 23.977229582696449 ], [ -77.547359767264112, 23.977183648314409 ], [ -77.547304621585539, 23.977138299668155 ], [ -77.547303170868275, 23.977136006820054 ], [ -77.54730104256295, 23.977134215262286 ], [ -77.547264593088357, 23.977075034880244 ], [ -77.54722739766288, 23.97701624767322 ], [ -77.547226789056324, 23.977013655128097 ], [ -77.547225367437321, 23.977011346943705 ], [ -77.547210604864645, 23.97694471358292 ], [ -77.547195000604233, 23.976878242346221 ], [ -77.547195293680772, 23.976875603881457 ], [ -77.547194717904461, 23.976873005012685 ], [ -77.547203087235886, 23.976805441232411 ], [ -77.547210601528036, 23.976737792649722 ], [ -77.547211767596451, 23.976735366536872 ], [ -77.547212094021091, 23.976732731379578 ], [ -77.547242775935274, 23.976670850795674 ], [ -77.54727267315711, 23.976608646777244 ], [ -77.547274598072093, 23.97660667050058 ], [ -77.547275794742234, 23.976604257002005 ], [ -77.548105940057354, 23.975451524184678 ], [ -77.547454474730145, 23.975056444401257 ], [ -77.547453548183839, 23.975055666315072 ], [ -77.547452407948995, 23.975055184100594 ], [ -77.547396862832016, 23.975008063602171 ], [ -77.547341059446424, 23.974961201480799 ], [ -77.54734043992292, 23.974960198388523 ], [ -77.54733951766687, 23.974959416011092 ], [ -77.547302537983114, 23.974898829989044 ], [ -77.547265225767617, 23.974838416360946 ], [ -77.547264973909833, 23.974837286452846 ], [ -77.547264359909448, 23.974836280497563 ], [ -77.547249565459893, 23.97476815956794 ], [ -77.547234396757261, 23.974700108169646 ], [ -77.547234537217818, 23.974698962049406 ], [ -77.547234291574995, 23.97469783098666 ], [ -77.547243130479742, 23.97462884332289 ], [ -77.547251590040844, 23.974559815514727 ], [ -77.547252109069248, 23.974558765372674 ], [ -77.547252255828028, 23.974557619918976 ], [ -77.547283862798253, 23.974494518516035 ], [ -77.547315122470295, 23.974431271215956 ], [ -77.547315969259401, 23.974430419847081 ], [ -77.547316494052808, 23.974429372127251 ], [ -77.550111444245488, 23.970580496302876 ], [ -77.550215663025071, 23.970476764033631 ], [ -77.550349665091346, 23.970407702092096 ], [ -77.550500333455076, 23.970380070677617 ], [ -77.550652919780561, 23.970396574507738 ], [ -77.550792488004575, 23.970455598076018 ], [ -77.550905376325233, 23.970551363787774 ], [ -77.550980534472899, 23.970674497494691 ], [ -77.55101060537784, 23.970812946076311 ], [ -77.550992645356843, 23.970953157258663 ], [ -77.550928412312402, 23.971081406190862 ], [ -77.548407434139037, 23.974553044167756 ], [ -77.548647938747479, 23.974698896859543 ], [ -77.54878229280952, 23.974512329313317 ], [ -77.548886079730764, 23.974408229313049 ], [ -77.549019795819902, 23.974338694101647 ], [ -77.549170352080083, 23.974310530205226 ], [ -77.549323011148587, 23.974326494463909 ], [ -77.549462829841787, 23.974385024187761 ], [ -77.549576121840929, 23.974480390122615 ], [ -77.549651797362699, 23.974603257253015 ], [ -77.54968244869417, 23.97474159855301 ], [ -77.549665075336435, 23.974881872250574 ], [ -77.549601377765157, 23.975010347375918 ], [ -77.549467673230524, 23.97519601473731 ], [ -77.549504746417284, 23.975218497110976 ], [ -77.552196133933109, 23.97160835753677 ], [ -77.552301721656747, 23.971505800420712 ], [ -77.552436630751785, 23.971438244590452 ], [ -77.552587655445961, 23.971412302817292 ], [ -77.552740012525135, 23.971430514426302 ], [ -77.552878788365788, 23.971491096743438 ], [ -77.552990398727403, 23.971588119594117 ], [ -77.553063918432329, 23.971712085772932 ], [ -77.553092150789695, 23.971850860670639 ], [ -77.553072332084426, 23.971990860069788 ], [ -77.553006402160619, 23.972118379848624 ], [ -77.550324608701317, 23.975715683482306 ], [ -77.555297447434413, 23.978731160888742 ], [ -77.555872487294238, 23.978059451556575 ], [ -77.555985202854913, 23.977963508459169 ], [ -77.556124668312677, 23.977904265269292 ], [ -77.556277231903707, 23.977887521063057 ], [ -77.556427959783633, 23.977914914851642 ], [ -77.556562097801788, 23.977983765154299 ], [ -77.556666515685009, 23.978087332474978 ], [ -77.556730992285679, 23.978215478991554 ], [ -77.556749216097998, 23.978355660890241 ], [ -77.556719403105333, 23.978494156218485 ], [ -77.55664447146674, 23.978617408074442 ], [ -77.555921627015223, 23.979461774449785 ], [ -77.555919183555758, 23.979481723352812 ], [ -77.555855658055904, 23.97961027063112 ], [ -77.555752009147625, 23.979714489232581 ], [ -77.555667591411762, 23.979758514374804 ], [ -77.554805459876164, 23.980765560989891 ], [ -77.55479065360953, 23.980898927474957 ], [ -77.554728588161908, 23.981028075868888 ], [ -77.554626125199292, 23.981133280922013 ], [ -77.554493294479968, 23.981204244364466 ], [ -77.554416939457468, 23.981219381264008 ], [ -77.551411398241143, 23.984729941725163 ], [ -77.551320706755263, 23.98481150274479 ], [ -77.55121029713807, 23.984868989671604 ], [ -77.540496902943516, 23.988868768798895 ], [ -77.536864087646393, 23.991876339763255 ], [ -77.536746458781764, 23.99194852753347 ], [ -77.536611314672854, 23.991986920183642 ], [ -77.536469865612077, 23.991988333005906 ], [ -77.529956037975253, 23.991183639127964 ], [ -77.530164023032128, 23.992110592227593 ], [ -77.530335809120729, 23.992039336646375 ], [ -77.530484031430163, 23.992002087034631 ], [ -77.530637528037872, 23.992008741702776 ], [ -77.530781273777578, 23.992058649239397 ], [ -77.5309011979367, 23.99214692438267 ], [ -77.530985561549187, 23.992264926210243 ], [ -77.531026106469682, 23.99240110394857 ], [ -77.531018863756216, 23.992542127617309 ], [ -77.530964542224936, 23.992674192843328 ], [ -77.530868459123809, 23.992784372126561 ], [ -77.530740019690001, 23.992861880287375 ], [ -77.526597450555741, 23.994580118491406 ], [ -77.526635070485526, 23.994666931637031 ], [ -77.543005306223833, 23.992578147304183 ], [ -77.545553266811098, 23.991208560230451 ], [ -77.54783879749435, 23.989025333888033 ], [ -77.54794501246748, 23.98894852369358 ], [ -77.548069994467483, 23.98890122432385 ], [ -77.548204276872823, 23.988887018402679 ], [ -77.551532733834421, 23.988958571098237 ], [ -77.551555950528396, 23.988962462796263 ], [ -77.551579533306864, 23.98896163619165 ], [ -77.551631137109325, 23.988975065919718 ], [ -77.551683900232419, 23.98898391029525 ], [ -77.551704671701046, 23.988994203031289 ], [ -77.551727378287381, 23.989000112329784 ], [ -77.556118707118756, 23.990865555284415 ], [ -77.556246040056905, 23.990943830718951 ], [ -77.55634092674903, 23.991054343969065 ], [ -77.558663745117698, 23.994857921336539 ], [ -77.56287112126482, 23.999574949103682 ], [ -77.562948731495283, 23.999696799332654 ], [ -77.562981556758032, 23.999834718510268 ], [ -77.56296638375656, 23.999975206186502 ], [ -77.562904697579597, 24.000104510447901 ], [ -77.562802536387636, 24.000209974050975 ], [ -77.562669900398717, 24.000281273417269 ], [ -77.562519773009186, 24.000311429202387 ], [ -77.562366849865029, 24.000297489507965 ], [ -77.562226100299455, 24.000240818849285 ], [ -77.562111301972905, 24.000146964586737 ], [ -77.557876597315484, 23.995399269275364 ], [ -77.557854849660615, 23.995365120661635 ], [ -77.55782816178187, 23.995334069680645 ], [ -77.555562089477917, 23.991623381640775 ], [ -77.551407748428517, 23.98985861088056 ], [ -77.548397116365663, 23.989793893450191 ], [ -77.546214045810615, 23.99187925438628 ], [ -77.546160258933199, 23.9919166481892 ], [ -77.54610808600745, 23.991955924757942 ], [ -77.54341733632144, 23.993402268560718 ], [ -77.54323690620005, 23.993459735837181 ], [ -77.525847584930347, 23.995678514089967 ], [ -77.525265644484946, 23.997080371142061 ], [ -77.529889471685351, 24.005884110511271 ], [ -77.529899139764979, 24.005913604948834 ], [ -77.529914342089043, 24.005941059788825 ], [ -77.52991955394819, 24.005971422267727 ], [ -77.529930547038404, 24.006000453624655 ], [ -77.530142936844229, 24.007086940530691 ], [ -77.534108201462729, 24.005724015652433 ], [ -77.534258791776935, 24.005695833690542 ], [ -77.534411491644732, 24.005711779898352 ], [ -77.534551353889071, 24.005770293352949 ], [ -77.534664687928228, 24.005865646392841 ], [ -77.534740399863679, 24.005988505264884 ], [ -77.534771078417918, 24.006126843751609 ], [ -77.534753720427034, 24.006267120356316 ], [ -77.534690024862243, 24.0063956038246 ], [ -77.534586226579947, 24.006499717256229 ], [ -77.534452486052345, 24.006569269236355 ], [ -77.530319446219508, 24.007989862062512 ], [ -77.530378080244844, 24.008289796783835 ], [ -77.53037835081787, 24.008301856116731 ], [ -77.53038200162635, 24.008313442395487 ], [ -77.531075915743926, 24.0133994641347 ], [ -77.531923602920145, 24.015918464436734 ], [ -77.533220313916587, 24.019578959628877 ], [ -77.533244423854981, 24.019718391776379 ], [ -77.533220445821101, 24.019857843115176 ], [ -77.533150726804294, 24.019983663167586 ], [ -77.533042091287911, 24.020083535742522 ], [ -77.532905173259309, 24.020147684548327 ], [ -77.532779981177953, 24.020165948696892 ], [ -77.533615413982119, 24.020749137354713 ], [ -77.533735661660984, 24.020870582154554 ], [ -77.533800655342972, 24.021023501823699 ], [ -77.533896744811187, 24.021484212208932 ], [ -77.533922696587595, 24.021533174368425 ], [ -77.53394397982882, 24.021672994138772 ], [ -77.533940204185342, 24.021692581069022 ], [ -77.535115692654585, 24.027328214037141 ], [ -77.535173342260094, 24.027376735492496 ], [ -77.535249030421284, 24.027499612916444 ], [ -77.535279673131697, 24.027637958663931 ], [ -77.535262270735899, 24.02777823052752 ], [ -77.53522516315553, 24.027853015522677 ], [ -77.535474110065138, 24.029046446569271 ], [ -77.535561048609054, 24.02912297781511 ], [ -77.535633722927486, 24.029247381114796 ], [ -77.535660985353289, 24.029386322363155 ], [ -77.535640167113726, 24.029526201058378 ], [ -77.535592924585856, 24.029616023725239 ], [ -77.53592245971889, 24.031195727153644 ], [ -77.535953879401447, 24.031226314054056 ], [ -77.536019652023072, 24.031353916367788 ], [ -77.536039273522761, 24.03149394088928 ], [ -77.536012205876673, 24.031625937740728 ], [ -77.536407532979595, 24.033520949283304 ], [ -77.536407689269467, 24.03352540146664 ], [ -77.536409246479707, 24.03352962012163 ], [ -77.537033020752261, 24.036871395590321 ], [ -77.540759539172797, 24.051066304733002 ], [ -77.541684428890065, 24.052018809417692 ], [ -77.541767536696625, 24.05213758180928 ], [ -77.541806609276421, 24.052274124758245 ], [ -77.541797821808359, 24.052415072533996 ], [ -77.541742034319441, 24.052546628190957 ], [ -77.541644707557154, 24.052655914107952 ], [ -77.541515368499716, 24.052732232553549 ], [ -77.541366677805399, 24.052768112879182 ], [ -77.541235246538989, 24.052761202496864 ], [ -77.54279734070191, 24.054858627518581 ], [ -77.542860373522771, 24.054977635043851 ], [ -77.542883098784586, 24.055108316544437 ], [ -77.542863561758026, 24.055239432050225 ], [ -77.542803442711389, 24.055359704229353 ], [ -77.542707912431325, 24.05545878836034 ], [ -77.541969262493851, 24.056028903136106 ], [ -77.543026976623281, 24.064800309221585 ], [ -77.545716582559351, 24.06380202976948 ], [ -77.545699651683933, 24.063554663883558 ], [ -77.545714131199091, 24.063414113283507 ], [ -77.545775202475795, 24.06328455023127 ], [ -77.545876887318514, 24.06317865721995 ], [ -77.546009232073743, 24.063106799729109 ], [ -77.546159281975505, 24.063076011604625 ], [ -77.546312349224792, 24.063089306562098 ], [ -77.546453450683813, 24.06314538319883 ], [ -77.546568774472135, 24.063238752384056 ], [ -77.54664703192644, 24.063360274557596 ], [ -77.546668910784831, 24.063450176295508 ], [ -77.562632571269617, 24.057565422473637 ], [ -77.56278244738948, 24.057533961482324 ], [ -77.562935575342451, 24.057546569052423 ], [ -77.563076966048726, 24.057602011066724 ], [ -77.56319277931533, 24.057694860515106 ], [ -77.563271678566963, 24.057816028712619 ], [ -77.563305940535869, 24.057953654938064 ], [ -77.563292211291781, 24.058094267418774 ], [ -77.56323183459763, 24.058224102025825 ], [ -77.563130720430408, 24.058330449602717 ], [ -77.562998766515165, 24.058402900041699 ], [ -77.546412881320407, 24.064517000309007 ], [ -77.543273462238304, 24.06568223912986 ], [ -77.546951604893479, 24.07295021604444 ], [ -77.54699567166152, 24.073102838106013 ], [ -77.546979772685688, 24.073260055864111 ], [ -77.546114136679691, 24.076149220540231 ], [ -77.548948692152763, 24.095968546189649 ], [ -77.549444284295504, 24.095841067828605 ], [ -77.549435551594399, 24.095809220092612 ], [ -77.549447073897625, 24.095665748321448 ], [ -77.549507200895846, 24.095532897211161 ], [ -77.550646986208719, 24.093841001179243 ], [ -77.550745421763196, 24.093735522750869 ], [ -77.550874139643199, 24.093662524578765 ], [ -77.551020944403632, 24.093628922880381 ], [ -77.551171927009122, 24.09363790123928 ], [ -77.551312782614019, 24.093688608988714 ], [ -77.551430165834944, 24.093776241810247 ], [ -77.55151295512934, 24.093892496910296 ], [ -77.552305850465814, 24.095502965307563 ], [ -77.552347900611053, 24.095652713917129 ], [ -77.552332402623676, 24.095806701999091 ], [ -77.552261176587919, 24.095946843228568 ], [ -77.552142588057578, 24.096056677574104 ], [ -77.551990565562804, 24.096123304600027 ], [ -77.549078005539926, 24.096872511165632 ], [ -77.549124177357484, 24.09719527094872 ], [ -77.549122726734296, 24.09724549805426 ], [ -77.549126266874921, 24.097295637602617 ], [ -77.548663161378101, 24.101885561031072 ], [ -77.548822844498858, 24.102235654545858 ], [ -77.550440998197033, 24.104828352049907 ], [ -77.550449267752498, 24.104848325784577 ], [ -77.550462086393225, 24.104866161676693 ], [ -77.552063983864414, 24.108105586007884 ], [ -77.55306745036431, 24.107748709662395 ], [ -77.552796873189578, 24.107106121944561 ], [ -77.552764549936967, 24.10696809819995 ], [ -77.552780274814836, 24.106827661339022 ], [ -77.552842508411459, 24.106698558298696 ], [ -77.5529451587567, 24.106593426541938 ], [ -77.553078177689272, 24.106522557030921 ], [ -77.553228544452409, 24.10649288690141 ], [ -77.553381540232039, 24.106507320432712 ], [ -77.553502267905714, 24.106556353892618 ], [ -77.553509310423522, 24.106511483951095 ], [ -77.55357721037349, 24.106384810086496 ], [ -77.553684431843124, 24.106283595917791 ], [ -77.553820479229842, 24.106217748924951 ], [ -77.553972035341673, 24.106193714606736 ], [ -77.554124264948513, 24.106213845574736 ], [ -77.554262266905013, 24.10627617127669 ], [ -77.554372532721558, 24.106374590885139 ], [ -77.554444268829812, 24.10649947047116 ], [ -77.554582503828186, 24.106872152970773 ], [ -77.554686104230285, 24.10676959372168 ], [ -77.554820410379151, 24.106700800165875 ], [ -77.55497130252067, 24.106673469451817 ], [ -77.555124010415554, 24.106690276862473 ], [ -77.555263586101546, 24.106749577175236 ], [ -77.555376367046577, 24.106845565706294 ], [ -77.555417335587435, 24.106912955652739 ], [ -77.556031310344679, 24.106694583477108 ], [ -77.556038548023665, 24.10669314947685 ], [ -77.556045056849996, 24.106689909393939 ], [ -77.556113557233544, 24.106678287891537 ], [ -77.556181649632251, 24.106664796700727 ], [ -77.556189015831634, 24.106665485848726 ], [ -77.556196296870411, 24.106664250570983 ], [ -77.577520735008378, 24.106159858267194 ], [ -77.587246690163511, 24.102366592887499 ], [ -77.587395900935604, 24.102332387651657 ], [ -77.587549323664021, 24.102342181533274 ], [ -77.587691940415056, 24.102395015835718 ], [ -77.587809790986199, 24.102485718807614 ], [ -77.587891339382651, 24.102605411875249 ], [ -77.587928603025503, 24.102742378714431 ], [ -77.587917934162675, 24.102883212100153 ], [ -77.587860376984892, 24.103014126282648 ], [ -77.58776156547097, 24.103122306431349 ], [ -77.587631171940131, 24.103197163054393 ], [ -77.577819118162878, 24.107024014950081 ], [ -77.577639601073045, 24.107059790335153 ], [ -77.556306913046129, 24.107564402835202 ], [ -77.552542683881867, 24.108903176876712 ], [ -77.566872864607092, 24.129751680966894 ], [ -77.566873603056521, 24.129753258402946 ], [ -77.566874825895297, 24.129754557686983 ], [ -77.571330733466283, 24.13634480575627 ], [ -77.572104879801145, 24.136256012735963 ], [ -77.572258632806921, 24.13626063347429 ], [ -77.572403304732418, 24.13630862982119 ], [ -77.572524734207178, 24.136395303593844 ], [ -77.572611034919007, 24.136512170622787 ], [ -77.572653759109642, 24.136647791217396 ], [ -77.572648724516739, 24.136788889936351 ], [ -77.572596423809031, 24.136921655062217 ], [ -77.572501976418607, 24.137033090585433 ], [ -77.572374627463262, 24.137112288357255 ], [ -77.57222684278932, 24.137151495879543 ], [ -77.571901444750281, 24.137188819059958 ], [ -77.572311358219793, 24.13779502282727 ], [ -77.596854858311531, 24.12698657624523 ], [ -77.60627786971007, 24.119815419676982 ], [ -77.610672495149188, 24.112214155121944 ], [ -77.610764952375817, 24.1121013392574 ], [ -77.61089086559457, 24.112020269314176 ], [ -77.611037909580617, 24.111978880914375 ], [ -77.611191690761601, 24.111981225393762 ], [ -77.611337156116008, 24.112027073247681 ], [ -77.611460066609652, 24.112111936600581 ], [ -77.611548390962682, 24.112227508498403 ], [ -77.611593483333721, 24.112362476027375 ], [ -77.611590929649779, 24.112503627674542 ], [ -77.61154097973133, 24.112637146543914 ], [ -77.608757898729678, 24.117451134133113 ], [ -77.610922656045318, 24.119078240217423 ], [ -77.611024946740471, 24.119183667649519 ], [ -77.611086735265872, 24.119312946994352 ], [ -77.611101973237908, 24.119453423548105 ], [ -77.611069168911882, 24.119591346513175 ], [ -77.610991533260091, 24.11971321501202 ], [ -77.610876665714386, 24.119807099653517 ], [ -77.610735810313926, 24.11986381028526 ], [ -77.610582755058957, 24.119877795616301 ], [ -77.610432482210058, 24.119847686638757 ], [ -77.610299701664403, 24.119776430645885 ], [ -77.608287811213089, 24.118264223231748 ], [ -77.607100809464114, 24.120317278981894 ], [ -77.606980360803277, 24.120453102733698 ], [ -77.597435927254139, 24.127716700563308 ], [ -77.597334856551498, 24.127776139998392 ], [ -77.572762836457201, 24.138597186335794 ], [ -77.573997108150195, 24.141256686193515 ], [ -77.574006158145949, 24.141289824992661 ], [ -77.574048015238589, 24.141348544203066 ], [ -77.576062769106699, 24.145464139203753 ], [ -77.576284932547509, 24.145511622805447 ], [ -77.576427463894589, 24.145564761811837 ], [ -77.576545124562415, 24.145655716557155 ], [ -77.576626397144551, 24.145775583822626 ], [ -77.576663326059844, 24.145912630232349 ], [ -77.576652296320958, 24.146053440772175 ], [ -77.576594387443336, 24.146184231928242 ], [ -77.576495267832897, 24.146292200912249 ], [ -77.576474080676917, 24.146304297084864 ], [ -77.577267101600171, 24.147924108188452 ], [ -77.577776853419451, 24.147724760769819 ], [ -77.577926078089675, 24.14769040981674 ], [ -77.578079567236358, 24.147700053883042 ], [ -77.578222296424727, 24.147752748936998 ], [ -77.578340294446534, 24.147843336857839 ], [ -77.578422010873823, 24.147962950333973 ], [ -77.578459446679744, 24.148099880832305 ], [ -77.578448937259523, 24.14824072468528 ], [ -77.578391511196131, 24.148371695118595 ], [ -77.578292789633593, 24.148479971795435 ], [ -77.578162436085705, 24.148554955775019 ], [ -77.577670201264183, 24.148747453425809 ], [ -77.578717230182093, 24.150885986003349 ], [ -77.580028674826622, 24.150426726953871 ], [ -77.580179225913128, 24.150397642176415 ], [ -77.58033220333509, 24.150412669875355 ], [ -77.58047263274797, 24.150470339036804 ], [ -77.58058676805399, 24.150565004644061 ], [ -77.580663436923359, 24.150687400234879 ], [ -77.580695134408629, 24.150825544941803 ], [ -77.580678757605753, 24.150965916237798 ], [ -77.580615909438933, 24.151094773600406 ], [ -77.580512741813052, 24.151199503530542 ], [ -77.580379353464934, 24.151269854265976 ], [ -77.579120945435363, 24.151710541704126 ], [ -77.581501553301123, 24.156572474960289 ], [ -77.582849521939806, 24.156085035862088 ], [ -77.582999727255967, 24.156054456711068 ], [ -77.583152879546162, 24.156067963225542 ], [ -77.583293987348924, 24.156124233294236 ], [ -77.583409238163213, 24.156217758852186 ], [ -77.583487350468772, 24.156339385032705 ], [ -77.583520678027568, 24.15647720628407 ], [ -77.58350595837419, 24.156617731742614 ], [ -77.583444632219127, 24.156747205796879 ], [ -77.583342702479811, 24.156852954582913 ], [ -77.583210146716908, 24.156924626606202 ], [ -77.581905079116495, 24.157396553755774 ], [ -77.583467463939982, 24.160587126725293 ], [ -77.583503519826536, 24.160695423771823 ], [ -77.583568124813041, 24.161039376564172 ], [ -77.583582948064091, 24.161057171014779 ], [ -77.583634033683211, 24.161190335634458 ], [ -77.583637769595526, 24.161331466928857 ], [ -77.583628401495574, 24.16136028358541 ], [ -77.583836262145368, 24.162466896881124 ], [ -77.58385777007156, 24.162471338775443 ], [ -77.58399009191352, 24.16254338258792 ], [ -77.584091673222829, 24.162649416813629 ], [ -77.584152570507541, 24.162779062153518 ], [ -77.584166822622961, 24.162919628077141 ], [ -77.584133034325959, 24.1630573550378 ], [ -77.58405451290723, 24.163178761343172 ], [ -77.583981098817532, 24.163237967026227 ], [ -77.58404873787579, 24.16359805443107 ], [ -77.584138709104963, 24.163589176090046 ], [ -77.584289290797301, 24.16361819299965 ], [ -77.584422729616051, 24.163688482924282 ], [ -77.584525963728638, 24.16379316544921 ], [ -77.584588887859624, 24.163921993589106 ], [ -77.584605342465949, 24.164062356807836 ], [ -77.584573716710622, 24.164200515402733 ], [ -77.584497106198171, 24.164322945432062 ], [ -77.584383010010598, 24.1644176625387 ], [ -77.584242596678962, 24.164475395082736 ], [ -77.584214834676061, 24.164482286323896 ], [ -77.584215036187089, 24.164483359077099 ], [ -77.5842578945323, 24.164478135608327 ], [ -77.584409218633866, 24.164503700516434 ], [ -77.584544526105915, 24.164570917578668 ], [ -77.584650572205149, 24.164673207171127 ], [ -77.584716976406867, 24.164800556545032 ], [ -77.584737238520702, 24.164940499917869 ], [ -77.584709375006724, 24.165079338687601 ], [ -77.584636113192857, 24.165203482335635 ], [ -77.58452462436108, 24.165300778766277 ], [ -77.584440699352271, 24.165337616286216 ], [ -77.584535113399085, 24.165424947066015 ], [ -77.584604410716352, 24.165550992391108 ], [ -77.584627863312491, 24.165690515677877 ], [ -77.58460317534329, 24.165829859447843 ], [ -77.584532763290596, 24.16595538375238 ], [ -77.584497568970164, 24.1659874124529 ], [ -77.584884788396948, 24.168048687118365 ], [ -77.588874403480631, 24.166713745472929 ], [ -77.589025427261902, 24.16668671696355 ], [ -77.589178162935696, 24.166703828801886 ], [ -77.589317659820992, 24.166763405966009 ], [ -77.589430263099288, 24.166859616672262 ], [ -77.58950495040196, 24.166983043213957 ], [ -77.58953441074695, 24.167121603806301 ], [ -77.589515760214908, 24.167261735210847 ], [ -77.58945082429895, 24.167389720385334 ], [ -77.589345959270361, 24.167493031204888 ], [ -77.589211430024008, 24.167561554819116 ], [ -77.585054570783399, 24.168952457961048 ], [ -77.58614021198737, 24.174731057886724 ], [ -77.592289147342754, 24.18502656147788 ], [ -77.592340649336293, 24.185157422586119 ], [ -77.592922068153229, 24.187905724921087 ], [ -77.592923549266914, 24.187907151039482 ], [ -77.592990075131553, 24.18803445105392 ], [ -77.593010461685736, 24.188174378505384 ], [ -77.592995133206358, 24.188251084710775 ], [ -77.59318402819811, 24.189143931957634 ], [ -77.593185645237043, 24.189186772863543 ], [ -77.593193037040564, 24.189229099769541 ], [ -77.593214973622764, 24.200591917081386 ], [ -77.593326272771137, 24.203904678611309 ], [ -77.594803156122978, 24.204593640497947 ], [ -77.594819818713404, 24.204562996059575 ], [ -77.594927711201279, 24.20446231647696 ], [ -77.595064243143071, 24.204397144467691 ], [ -77.595216049916914, 24.204373859458375 ], [ -77.595368271757494, 24.20439474071339 ], [ -77.595506008280225, 24.204457744237796 ], [ -77.595615776977439, 24.204556702854862 ], [ -77.595686832940913, 24.204681929874198 ], [ -77.595712220642028, 24.204821167266392 ], [ -77.595714076740649, 24.205018571077712 ], [ -77.597059796202743, 24.205646312912627 ], [ -77.599195383736443, 24.203769959769065 ], [ -77.599374527196588, 24.20366948065341 ], [ -77.607423285743479, 24.201109464841274 ], [ -77.607108944071797, 24.200418999148095 ], [ -77.607048261286351, 24.200403673995101 ], [ -77.606919762086264, 24.200325974718066 ], [ -77.606823729277039, 24.200215656389965 ], [ -77.606769563199236, 24.200083517807336 ], [ -77.606762565900681, 24.199942493670356 ], [ -77.606803422175375, 24.199806388423266 ], [ -77.60688813258848, 24.19968852497189 ], [ -77.6069747050106, 24.199601544917215 ], [ -77.606884974305927, 24.199621512106994 ], [ -77.606731512437065, 24.199610771486661 ], [ -77.606589180124473, 24.199557058882817 ], [ -77.606471909964725, 24.199465632098565 ], [ -77.60639118121658, 24.199345440690337 ], [ -77.606354896116514, 24.199208249897858 ], [ -77.606366606374081, 24.199067488954768 ], [ -77.606425165555066, 24.198936936525286 ], [ -77.606524841360709, 24.198829371951614 ], [ -77.606655876790228, 24.198755324337899 ], [ -77.608631227472983, 24.197999742667459 ], [ -77.608774171614925, 24.197966992498927 ], [ -77.608921277561905, 24.197974539089188 ], [ -77.609059348849073, 24.198021705443153 ], [ -77.60917599946896, 24.198104260386366 ], [ -77.609260764958591, 24.198214798124916 ], [ -77.609306041130793, 24.19834340258581 ], [ -77.60930776624329, 24.198478536947977 ], [ -77.609265785405753, 24.198608078573276 ], [ -77.609183864521512, 24.198720406501174 ], [ -77.607951167564877, 24.199958939315675 ], [ -77.607996118998301, 24.200025790355859 ], [ -77.60853280890305, 24.201204632024243 ], [ -77.608569625635255, 24.201347362320757 ], [ -77.608554586926573, 24.20149338295883 ], [ -77.608489281658123, 24.201627264803122 ], [ -77.608380610125323, 24.20173486130518 ], [ -77.608240054976065, 24.201804803304999 ], [ -77.599798392539711, 24.204489814661709 ], [ -77.597913887422436, 24.206145574507669 ], [ -77.599209563786403, 24.207006955442917 ], [ -77.599353130681649, 24.207000110811624 ], [ -77.59950178674319, 24.207036706445351 ], [ -77.599630837406963, 24.207113643709871 ], [ -77.599727650369559, 24.20722339150732 ], [ -77.599782748885659, 24.207355207028598 ], [ -77.599784680785604, 24.207389292366756 ], [ -77.599810701367076, 24.207406590699424 ], [ -77.599860735165706, 24.207398470899474 ], [ -77.60001316802267, 24.207418034787111 ], [ -77.600151548910816, 24.207479844192004 ], [ -77.60026233224967, 24.207577848825167 ], [ -77.60033467381372, 24.207702455378538 ], [ -77.600346285082736, 24.207762641531247 ], [ -77.600731470113089, 24.208018706263957 ], [ -77.600848045821806, 24.208032798149002 ], [ -77.600986961198743, 24.208093591711272 ], [ -77.601098595024425, 24.208190781514723 ], [ -77.601168819805238, 24.208309446658308 ], [ -77.60161506427508, 24.208606097302745 ], [ -77.601639601950609, 24.208609547422622 ], [ -77.601777090120507, 24.208673012568827 ], [ -77.601886466379227, 24.208772338520745 ], [ -77.601899200048081, 24.208794981217153 ], [ -77.602172389982798, 24.208976587624377 ], [ -77.60298345147946, 24.208766347800449 ], [ -77.603136293853794, 24.208749677102102 ], [ -77.60328727237551, 24.20877714095932 ], [ -77.603421608361145, 24.208846051032705 ], [ -77.6035261521602, 24.208949661976007 ], [ -77.603590670299496, 24.209077831697787 ], [ -77.60360884720599, 24.209218014113429 ], [ -77.603578903452615, 24.209356487220091 ], [ -77.603503769996451, 24.209479696290977 ], [ -77.603390801331884, 24.209575580711942 ], [ -77.603251055616639, 24.209634754578179 ], [ -77.602210537372954, 24.209904473056266 ], [ -77.602143734156343, 24.209911758953972 ], [ -77.602077300598651, 24.209921480857084 ], [ -77.60206752243316, 24.209920070954681 ], [ -77.602057693419539, 24.209921142949234 ], [ -77.601991704971326, 24.209909138899569 ], [ -77.601925247339977, 24.209899556397325 ], [ -77.601916422792286, 24.209895444176084 ], [ -77.601906713663695, 24.209893677967173 ], [ -77.601847999458627, 24.209863559014693 ], [ -77.601788023153546, 24.209835610114773 ], [ -77.60158002081684, 24.209697338391834 ], [ -77.601457565813377, 24.209853545410919 ], [ -77.601349268529219, 24.209953861928902 ], [ -77.601212472164107, 24.210018575028588 ], [ -77.601060567376223, 24.210041350077343 ], [ -77.600908423804512, 24.210019957660545 ], [ -77.600770934471356, 24.209956491825292 ], [ -77.600661557892707, 24.209857165097297 ], [ -77.600591000625755, 24.209731700337422 ], [ -77.600566169230547, 24.209592378974076 ], [ -77.600589494237155, 24.209452838787175 ], [ -77.60065869228184, 24.209326738934159 ], [ -77.600673950573196, 24.209307275225758 ], [ -77.600568959392064, 24.209408719239782 ], [ -77.600433680910584, 24.20947606214353 ], [ -77.600282333754578, 24.20950176831758 ], [ -77.600129732975361, 24.209483321425811 ], [ -77.599990816351195, 24.209422527183868 ], [ -77.599972388369906, 24.209406483500164 ], [ -77.599922275071236, 24.209496328806924 ], [ -77.599813260297736, 24.209595989392135 ], [ -77.599676002657432, 24.209659875224101 ], [ -77.59952393796307, 24.209681732649337 ], [ -77.599371951507166, 24.209659422077415 ], [ -77.599234920932076, 24.209595127431768 ], [ -77.59550001265977, 24.207097711904819 ], [ -77.595391356541583, 24.206997723716775 ], [ -77.595321706572079, 24.206871833365408 ], [ -77.595297880496986, 24.206732363938563 ], [ -77.595322210437814, 24.206592967708808 ], [ -77.595392314661353, 24.206467289741113 ], [ -77.595501330777253, 24.20636763222236 ], [ -77.595638587514969, 24.206303750255994 ], [ -77.59579064930729, 24.206281896990845 ], [ -77.595942631427206, 24.206304211543461 ], [ -77.596079656954956, 24.206368509619168 ], [ -77.598264953943513, 24.207829770406967 ], [ -77.598464793390733, 24.207626384916583 ], [ -77.596890535909779, 24.206579791221149 ], [ -77.595198361792981, 24.205790439379204 ], [ -77.595077180648815, 24.20577381635055 ], [ -77.594939442816226, 24.205710812549601 ], [ -77.594844842815348, 24.205625528918056 ], [ -77.592620510401133, 24.204587886702644 ], [ -77.592481505115302, 24.204491211730286 ], [ -77.592388023757877, 24.204356120384702 ], [ -77.592351821118683, 24.204199599898768 ], [ -77.592244335566846, 24.2009996587859 ], [ -77.590811700780648, 24.200837282436204 ], [ -77.590663785055767, 24.20079826462219 ], [ -77.590536254195541, 24.200719231236807 ], [ -77.590441591878985, 24.200607918677481 ], [ -77.59038906428971, 24.200475223062909 ], [ -77.590383813086348, 24.200334133618401 ], [ -77.59042635214233, 24.20019846117933 ], [ -77.590512517302045, 24.200081486283693 ], [ -77.590633874049445, 24.199994659190271 ], [ -77.590778543164049, 24.19994647907011 ], [ -77.590932363532715, 24.199941662075041 ], [ -77.592230136141865, 24.200088754381245 ], [ -77.59221082090734, 24.190044432106149 ], [ -77.591719807478938, 24.190326802705147 ], [ -77.592169964208523, 24.19336533046442 ], [ -77.592166577467154, 24.19350646786382 ], [ -77.592115809588435, 24.193639737511639 ], [ -77.592022629958237, 24.193752094013462 ], [ -77.591896159593844, 24.193832539069227 ], [ -77.591748778335898, 24.193873198087484 ], [ -77.591594913008009, 24.193870091031567 ], [ -77.591449625173155, 24.19382352203192 ], [ -77.591327136744738, 24.193738049619455 ], [ -77.591239437797711, 24.193622040492233 ], [ -77.591195112875795, 24.193486850500818 ], [ -77.590702249379419, 24.190159875957985 ], [ -77.590703397625646, 24.190031061008543 ], [ -77.590744179494024, 24.189907793294097 ], [ -77.590821270906332, 24.189800119877358 ], [ -77.59092838837789, 24.189716816765678 ], [ -77.592153985065039, 24.189012005222519 ], [ -77.592141038527913, 24.188950809007689 ], [ -77.591271065311091, 24.189501582204588 ], [ -77.591132289145037, 24.189562606437701 ], [ -77.590979747678858, 24.189581305669826 ], [ -77.590828372877212, 24.18955584945936 ], [ -77.590692982507647, 24.189488729649902 ], [ -77.590586829617962, 24.189386516446508 ], [ -77.590520305199234, 24.189259215258964 ], [ -77.590499921040731, 24.189119287276124 ], [ -77.590527672342759, 24.18898042965434 ], [ -77.590600842467268, 24.188856234732764 ], [ -77.590712268917585, 24.188758859525194 ], [ -77.591936468398615, 24.187983828770196 ], [ -77.591389538004051, 24.185398458357408 ], [ -77.585238111911764, 24.175098663385782 ], [ -77.585184766654493, 24.174958505680749 ], [ -77.583563944925629, 24.166330694608558 ], [ -77.583300383443287, 24.166408176860564 ], [ -77.583148310560958, 24.166429692957713 ], [ -77.58299643380623, 24.166407040663561 ], [ -77.58285962008263, 24.166342437352068 ], [ -77.582751261770355, 24.166242206893898 ], [ -77.582681965748762, 24.166116160613416 ], [ -77.582658515116151, 24.165976636861615 ], [ -77.582683205243157, 24.165837293228368 ], [ -77.582753619139524, 24.16571176962978 ], [ -77.582775348897229, 24.165691994857383 ], [ -77.582748529018119, 24.165678671229625 ], [ -77.582694647205798, 24.165656428290838 ], [ -77.582681175697786, 24.165645211291565 ], [ -77.582665178165058, 24.165637263993059 ], [ -77.582624457570972, 24.165597985124933 ], [ -77.58258070461028, 24.165561554321762 ], [ -77.582571670452097, 24.165547066895666 ], [ -77.582559132636604, 24.165534972963197 ], [ -77.582533634588188, 24.165486071485777 ], [ -77.58250429332918, 24.16543901894471 ], [ -77.57944418875212, 24.158037773922004 ], [ -77.579370456015582, 24.157977937738249 ], [ -77.579292346248891, 24.157856309224606 ], [ -77.579259022634488, 24.15771848671702 ], [ -77.579269772308322, 24.157615894618647 ], [ -77.578198195097528, 24.155023884487075 ], [ -77.578160992260422, 24.154984276071573 ], [ -77.578101479467506, 24.154854091293576 ], [ -77.578094028077629, 24.154771910796562 ], [ -77.574815486230563, 24.14684070102852 ], [ -77.574784100555419, 24.146702495955527 ], [ -77.574800792780508, 24.146562155380312 ], [ -77.57486392880331, 24.146433416813888 ], [ -77.57496732831892, 24.146328882041246 ], [ -77.575100869833761, 24.146258783587218 ], [ -77.575251481438855, 24.146229983111283 ], [ -77.575362765376028, 24.146241128083709 ], [ -77.573630311500438, 24.145870828205481 ], [ -77.57348088716023, 24.145813797351671 ], [ -77.573359731029825, 24.145715343643328 ], [ -77.573279966167163, 24.145586131166379 ], [ -77.569890246149527, 24.137066530840702 ], [ -77.569879615155898, 24.137016605454768 ], [ -77.569864221237182, 24.136967736706076 ], [ -77.569864937468765, 24.136947675862409 ], [ -77.569860742813731, 24.136927976838098 ], [ -77.569867443662247, 24.136877480212025 ], [ -77.56986925888738, 24.136826637823702 ], [ -77.569876695197422, 24.136807761938474 ], [ -77.569879339143597, 24.136787837521666 ], [ -77.569902715853416, 24.13674171261902 ], [ -77.569921562480445, 24.136693873397832 ], [ -77.5699349909316, 24.136678030171019 ], [ -77.569944214650121, 24.136659830700054 ], [ -77.569981978903058, 24.136622592534618 ], [ -77.570016012050743, 24.136582439301467 ], [ -77.57003411816261, 24.136571179570513 ], [ -77.57004901875834, 24.136556486528622 ], [ -77.570097473911801, 24.136531780208731 ], [ -77.570143362165396, 24.136503243417046 ], [ -77.570164373588966, 24.13649766935335 ], [ -77.570183492487132, 24.136487920987449 ], [ -77.570237895432754, 24.136478164916397 ], [ -77.570259670464822, 24.136472388261609 ], [ -77.566040233997299, 24.130231801929014 ], [ -77.564654695528603, 24.128216397125055 ], [ -77.563030082496809, 24.129145303074214 ], [ -77.562888402599796, 24.129200290101977 ], [ -77.562735142155162, 24.129212405307864 ], [ -77.562585303510104, 24.12918046274682 ], [ -77.562453554057456, 24.12910758919806 ], [ -77.562352790434701, 24.129000918086941 ], [ -77.562292876079539, 24.128870891194694 ], [ -77.562284862602638, 24.12878550464324 ], [ -77.562261004368068, 24.128787908998888 ], [ -77.562110391314903, 24.128759199372364 ], [ -77.561976816750914, 24.128689180759775 ], [ -77.561873355974072, 24.128584707123348 ], [ -77.561810136445459, 24.128456005139959 ], [ -77.561793346442954, 24.128315673116251 ], [ -77.56182462934396, 24.128177447755771 ], [ -77.561900922815525, 24.12805485950425 ], [ -77.56315361474509, 24.126621551257426 ], [ -77.563267448377374, 24.126526599087708 ], [ -77.563407681315326, 24.126468577985847 ], [ -77.563450214488839, 24.126464291290642 ], [ -77.562469475621896, 24.125037607209926 ], [ -77.562471764683693, 24.125114099157411 ], [ -77.562428265091739, 24.125249512127361 ], [ -77.562341300663761, 24.125365960613749 ], [ -77.562219384016231, 24.125452045768082 ], [ -77.560884259858355, 24.126119371654774 ], [ -77.56073932372091, 24.126166665624527 ], [ -77.560585557151541, 24.126170539839272 ], [ -77.56043801204406, 24.126130615047398 ], [ -77.560311131276535, 24.1260507993922 ], [ -77.56021733489014, 24.125938905845434 ], [ -77.560165804303196, 24.125805887396595 ], [ -77.56016158357977, 24.125664764871352 ], [ -77.560205085723027, 24.125529352342227 ], [ -77.560292052305158, 24.12541290490454 ], [ -77.56041397036357, 24.125326821185517 ], [ -77.561749089547163, 24.124659499841073 ], [ -77.561894023571639, 24.124612205077138 ], [ -77.562047788109012, 24.124608329702141 ], [ -77.562195331765651, 24.124648253048303 ], [ -77.562206778299696, 24.124655453504765 ], [ -77.551392586657499, 24.108921142064489 ], [ -77.551379291454751, 24.108892727057064 ], [ -77.551360738452061, 24.108866913704823 ], [ -77.549576404358262, 24.10525852434726 ], [ -77.549299368219536, 24.104814646300625 ], [ -77.549148282118807, 24.10480426433995 ], [ -77.549005965682355, 24.104750736668979 ], [ -77.548888634792135, 24.104659459990923 ], [ -77.548807774651678, 24.104539369168442 ], [ -77.547939500868608, 24.10263575730983 ], [ -77.547724629796448, 24.102291464942333 ], [ -77.547670801517086, 24.102162963288649 ], [ -77.547661690059471, 24.102025543472951 ], [ -77.547663436469179, 24.102008236151548 ], [ -77.547641161688077, 24.101924473913353 ], [ -77.547652644767965, 24.101783690746284 ], [ -77.547695864067734, 24.101686870764318 ], [ -77.548142280047841, 24.097262695641973 ], [ -77.545126621769825, 24.076176232816465 ], [ -77.545140044882942, 24.075997811692293 ], [ -77.545984219942213, 24.073180351227887 ], [ -77.542164233236122, 24.06563195212037 ], [ -77.542163515711877, 24.065629642543133 ], [ -77.542162078953012, 24.065627635603906 ], [ -77.542159437306609, 24.065618780454379 ], [ -77.542154286049055, 24.065610911219096 ], [ -77.542139759047046, 24.065553174194857 ], [ -77.542122055483418, 24.065496189597482 ], [ -77.542122150350465, 24.065493789466935 ], [ -77.542121459334723, 24.065491473084702 ], [ -77.540965101966975, 24.055901481002259 ], [ -77.540788503496657, 24.054949012579176 ], [ -77.540786725929237, 24.054807843377397 ], [ -77.540832540794412, 24.054673079071581 ], [ -77.540921463281904, 24.054557911302481 ], [ -77.541044788976095, 24.054473613433483 ], [ -77.541190445928947, 24.054428437058284 ], [ -77.54128554997348, 24.054427426986447 ], [ -77.540490352073093, 24.053359696575427 ], [ -77.540383898650859, 24.053445902900137 ], [ -77.540242811364735, 24.053501988665879 ], [ -77.540089755843738, 24.053515292990429 ], [ -77.539939714374469, 24.053484513528574 ], [ -77.53980737420386, 24.053412663206132 ], [ -77.539705689794715, 24.053306775287016 ], [ -77.539644614720274, 24.053177214887871 ], [ -77.53963012734097, 24.053036664341697 ], [ -77.539663645636693, 24.05289888174045 ], [ -77.539741888460583, 24.052777354187505 ], [ -77.54023416692209, 24.052230763610957 ], [ -77.540349474393281, 24.052137386709482 ], [ -77.540445703945679, 24.05209913265687 ], [ -77.540124700267143, 24.051768541346505 ], [ -77.539105810249595, 24.051926309347863 ], [ -77.538952079950661, 24.051927715813441 ], [ -77.538805400521895, 24.051885428792833 ], [ -77.538680130099536, 24.051803587662903 ], [ -77.538588531087868, 24.051690203664059 ], [ -77.538539569805707, 24.051556375681113 ], [ -77.538538038812391, 24.051415203780774 ], [ -77.538584087821505, 24.051280506866231 ], [ -77.538673209103408, 24.051165469981306 ], [ -77.538796678783584, 24.051081353677407 ], [ -77.538942410820098, 24.05103639177544 ], [ -77.53970957968491, 24.050917602160567 ], [ -77.536074606463018, 24.03707097260979 ], [ -77.534855744094216, 24.03266801458447 ], [ -77.534189625439353, 24.032988790434519 ], [ -77.534043997332034, 24.033033981505604 ], [ -77.533890291892064, 24.033035629149513 ], [ -77.533743555029318, 24.032993572069216 ], [ -77.533618150502193, 24.032911927133195 ], [ -77.533526353842475, 24.032798686376843 ], [ -77.533477150716678, 24.032664934663384 ], [ -77.533475685559651, 24.032549600172107 ], [ -77.533467507959401, 24.032546557627352 ], [ -77.533349845980283, 24.032455709787431 ], [ -77.533268509185689, 24.032335913897086 ], [ -77.533231459333734, 24.032198896479564 ], [ -77.53324232299515, 24.03205806979739 ], [ -77.533300036607741, 24.031927218950273 ], [ -77.533398950643161, 24.031819152492389 ], [ -77.533529382666998, 24.031744448656525 ], [ -77.534238247597131, 24.031468793006464 ], [ -77.534249457268572, 24.031449961925595 ], [ -77.534361265181616, 24.03135307903149 ], [ -77.534477734878081, 24.03130243768268 ], [ -77.534166223187171, 24.030177059627814 ], [ -77.534131219753377, 24.030182853218427 ], [ -77.533978923804611, 24.030163730733278 ], [ -77.533840515594363, 24.030102319157066 ], [ -77.5337295435871, 24.030004629928346 ], [ -77.533656870516182, 24.029880225617092 ], [ -77.533629610056167, 24.029741283847876 ], [ -77.533650430514257, 24.029601405244772 ], [ -77.533717293689946, 24.029474282093869 ], [ -77.533823654445214, 24.02937235804929 ], [ -77.533929097767739, 24.02932039583148 ], [ -77.533699336631614, 24.028490323653767 ], [ -77.533696796040914, 24.028490798347345 ], [ -77.533544074017044, 24.028474812944825 ], [ -77.533404205039076, 24.028416263403869 ], [ -77.533290880566383, 24.028320881004728 ], [ -77.533215193614751, 24.028198002508034 ], [ -77.533184552884421, 24.028059656182165 ], [ -77.533201957570057, 24.027919384367657 ], [ -77.533265703829741, 24.027790917843983 ], [ -77.533369551626109, 24.027686831766335 ], [ -77.533463433621733, 24.027638048678178 ], [ -77.532002511786942, 24.022359693361473 ], [ -77.531987721709399, 24.02235245748231 ], [ -77.531881030391617, 24.022250830202065 ], [ -77.5318137513609, 24.022123893693298 ], [ -77.531792470275306, 24.021984073447349 ], [ -77.531819270134548, 24.021845056074895 ], [ -77.531846895682634, 24.021797416303144 ], [ -77.531442989897712, 24.020337982946554 ], [ -77.531376543729806, 24.02021153362864 ], [ -77.531355776673436, 24.020071648154392 ], [ -77.531361385240601, 24.020043115790159 ], [ -77.53078902988905, 24.017974942205555 ], [ -77.530774932921773, 24.017834357115042 ], [ -77.530808821039372, 24.017696651338962 ], [ -77.530887376894853, 24.01757530446017 ], [ -77.531002910809676, 24.017482194702737 ], [ -77.531144113525315, 24.017426436229233 ], [ -77.531297163229922, 24.017413487009375 ], [ -77.531429738737188, 24.017441014255617 ], [ -77.531170541071759, 24.016709295661666 ], [ -77.530855436098136, 24.016865764432264 ], [ -77.530710461053161, 24.016912647113156 ], [ -77.53055680955552, 24.016916083704569 ], [ -77.530409522234251, 24.016875737793089 ], [ -77.530283016732213, 24.016795558744434 ], [ -77.530189676355647, 24.016683395101822 ], [ -77.530138637884647, 24.016550226293155 ], [ -77.530134897211454, 24.016409087861803 ], [ -77.530178820349335, 24.016273795436685 ], [ -77.530266107661873, 24.016157592356201 ], [ -77.530388214792481, 24.016071853328228 ], [ -77.530866873857619, 24.015834170343282 ], [ -77.53024508158849, 24.013986403672533 ], [ -77.529789081732133, 24.014035088838522 ], [ -77.529635519549132, 24.0140292495681 ], [ -77.529491437676697, 24.013980106154989 ], [ -77.529370939975522, 24.013892469133818 ], [ -77.529285821648045, 24.013774917090291 ], [ -77.529244414623577, 24.013638956905197 ], [ -77.529250771988472, 24.013497897354867 ], [ -77.529304271288225, 24.013365546337827 ], [ -77.529399675515478, 24.013254859258801 ], [ -77.529527645791873, 24.013176670876835 ], [ -77.529675655540743, 24.013138634747779 ], [ -77.530044791891726, 24.013099223951958 ], [ -77.529468252567824, 24.008873267603771 ], [ -77.526929125959569, 24.009164803677276 ], [ -77.52677552015777, 24.009160181586225 ], [ -77.526630987272341, 24.009112181728185 ], [ -77.526509675313761, 24.009025502697618 ], [ -77.526423459192088, 24.00890862930493 ], [ -77.526380778298872, 24.008773002000066 ], [ -77.526385810417224, 24.008631896975583 ], [ -77.52643806281705, 24.008499126582514 ], [ -77.526532420544839, 24.008387687278063 ], [ -77.526659647158397, 24.008308487454844 ], [ -77.526807288873485, 24.008269279675403 ], [ -77.529319532181717, 24.00798083197704 ], [ -77.529063082063402, 24.006668919977283 ], [ -77.527316160380224, 24.007189120728494 ] ], [ [ -77.571688576386364, 24.138585574490225 ], [ -77.571331247302069, 24.138057134691621 ], [ -77.572627366393448, 24.141314779414703 ], [ -77.572889985605229, 24.141174322388807 ], [ -77.571688576386364, 24.138585574490225 ] ], [ [ -77.572970049071884, 24.142176038875871 ], [ -77.574112519267032, 24.145047291219797 ], [ -77.574858643349287, 24.145206771723593 ], [ -77.573290975088028, 24.142004397394984 ], [ -77.572970049071884, 24.142176038875871 ] ], [ [ -77.548369059389358, 23.976721570268555 ], [ -77.554106444194701, 23.980122355566603 ], [ -77.554688088693965, 23.979442949112592 ], [ -77.548925677805855, 23.975948644692103 ], [ -77.548369059389358, 23.976721570268555 ] ], [ [ -77.515810650140523, 23.870859590767211 ], [ -77.515903259382668, 23.869135421278273 ], [ -77.515453177427005, 23.869284547270286 ], [ -77.515810650140523, 23.870859590767211 ] ], [ [ -77.52822180536586, 23.98874300920966 ], [ -77.527985195188649, 23.988129908509332 ], [ -77.527809775229798, 23.988559520727261 ], [ -77.52822180536586, 23.98874300920966 ] ], [ [ -77.533270455191186, 24.023277956590182 ], [ -77.533055601664785, 24.022247811229217 ], [ -77.532990394385919, 24.022266075934834 ], [ -77.533270455191186, 24.023277956590182 ] ], [ [ -77.532748047339865, 24.021390442158037 ], [ -77.532863824062986, 24.02135801286396 ], [ -77.53270919830905, 24.021250073815956 ], [ -77.532748047339865, 24.021390442158037 ] ], [ [ -77.563932940352345, 24.127166498978944 ], [ -77.56392067190427, 24.127186212696433 ], [ -77.563245282092581, 24.127958992711644 ], [ -77.564129991100614, 24.127453140253529 ], [ -77.563932940352345, 24.127166498978944 ] ], [ [ -77.583261861136222, 24.164726945165988 ], [ -77.583262654855176, 24.16472672853693 ], [ -77.583261202909256, 24.164718998743535 ], [ -77.583258819941221, 24.164719590240328 ], [ -77.583261861136222, 24.164726945165988 ] ], [ [ -77.582908239082698, 24.163871727111641 ], [ -77.583093420923532, 24.16382576168472 ], [ -77.583033496744974, 24.163506733670534 ], [ -77.582781695099456, 24.163565683152054 ], [ -77.582908239082698, 24.163871727111641 ] ], [ [ -77.582430586526442, 24.162716525137657 ], [ -77.582865927527422, 24.162614607466089 ], [ -77.582713659867252, 24.161803931659563 ], [ -77.582096207073192, 24.161907813851148 ], [ -77.582430586526442, 24.162716525137657 ] ], [ [ -77.581741529354872, 24.16104999674188 ], [ -77.582546611567409, 24.160914548156736 ], [ -77.582544804517681, 24.160904927137938 ], [ -77.580989026475109, 24.157727800223714 ], [ -77.580448741502053, 24.157923165068034 ], [ -77.581741529354872, 24.16104999674188 ] ], [ [ -77.580099868112129, 24.157079322426533 ], [ -77.580585505047097, 24.156903718624548 ], [ -77.579525918960925, 24.1547397432035 ], [ -77.579207418183842, 24.154920634473228 ], [ -77.580099868112129, 24.157079322426533 ] ], [ [ -77.578852083258056, 24.154061113743108 ], [ -77.579119323413622, 24.153909335857591 ], [ -77.578187942404668, 24.152007086978116 ], [ -77.578049549031846, 24.151993490294743 ], [ -77.577986651644125, 24.151967659875485 ], [ -77.578852083258056, 24.154061113743108 ] ], [ [ -77.577738519641741, 24.151367420434145 ], [ -77.577765853628676, 24.151311380878795 ], [ -77.577820272460286, 24.151256140213547 ], [ -77.577323530654851, 24.150241553680864 ], [ -77.577279448003324, 24.150256893063087 ], [ -77.577738519641741, 24.151367420434145 ] ], [ [ -77.599908394690274, 24.208586085165262 ], [ -77.599735391628997, 24.208812981830544 ], [ -77.59981455238686, 24.208865911970236 ], [ -77.599823159840668, 24.208873832141261 ], [ -77.599864128981423, 24.208795083323281 ], [ -77.599983410092747, 24.208635954289168 ], [ -77.599908394690274, 24.208586085165262 ] ], [ [ -77.600780323001658, 24.209165725202517 ], [ -77.600680095346789, 24.209299436857204 ], [ -77.60078334277533, 24.209167732667268 ], [ -77.600780323001658, 24.209165725202517 ] ] ], [ [ [ -77.669590773489162, 24.251222106496606 ], [ -77.669705637527727, 24.25113611517741 ], [ -77.669843225980273, 24.251085401269552 ], [ -77.673738569014404, 24.250245354676832 ], [ -77.673895458735231, 24.250235192468669 ], [ -77.692674894204131, 24.25178724441297 ], [ -77.69068891364681, 24.248964710518717 ], [ -77.690626719223729, 24.248835579978564 ], [ -77.690611089963625, 24.24869514791872 ], [ -77.690643555620795, 24.248557160834643 ], [ -77.690720938085462, 24.248435125847291 ], [ -77.690835662534624, 24.248340988538189 ], [ -77.690976498942263, 24.248283963653051 ], [ -77.691129661351582, 24.248269633125016 ], [ -77.691280157305386, 24.248299399698983 ], [ -77.691413255356224, 24.248370349631557 ], [ -77.691515927027737, 24.248475537902291 ], [ -77.693978917257823, 24.251975958193366 ], [ -77.693990034540988, 24.251982363699813 ], [ -77.694088698007434, 24.252090730537223 ], [ -77.694136381822773, 24.252199739400552 ], [ -77.696909613556684, 24.256140755640377 ], [ -77.696929369337923, 24.256161073820099 ], [ -77.699785905852437, 24.260237925049765 ], [ -77.699845710405626, 24.260359987462493 ], [ -77.699863834623997, 24.260492762841043 ], [ -77.699793313291465, 24.263148437919931 ], [ -77.699771783348282, 24.263269883144019 ], [ -77.699715266086045, 24.263381480166966 ], [ -77.699627964489238, 24.263474929747044 ], [ -77.693865530960707, 24.268162428209084 ], [ -77.693735783179335, 24.268238444688034 ], [ -77.693586761698867, 24.268273984604001 ], [ -77.693433053906432, 24.268265569017071 ], [ -77.693289705945176, 24.26821402169848 ], [ -77.693170749834266, 24.26812438849602 ], [ -77.693087829870578, 24.26800544339719 ], [ -77.693049062786926, 24.267868829645213 ], [ -77.69305824324924, 24.267727919991291 ], [ -77.693114472456443, 24.267596507659189 ], [ -77.693212246179968, 24.267487456166457 ], [ -77.69881453975708, 24.262930255312067 ], [ -77.69887619388912, 24.260609175729559 ], [ -77.696108058752969, 24.256658453471044 ], [ -77.696088606031566, 24.256638526826166 ], [ -77.693351737419619, 24.252749156217178 ], [ -77.675025032100066, 24.251234654851629 ], [ -77.673856931088238, 24.256729169580282 ], [ -77.673806943645175, 24.256857191356776 ], [ -77.673717623495762, 24.256965744889214 ], [ -77.673597083353684, 24.257044970429313 ], [ -77.673456271661621, 24.257087672023239 ], [ -77.673307978155606, 24.257089971127389 ], [ -77.67316567216352, 24.257051658904928 ], [ -77.673042279165571, 24.256976215198943 ], [ -77.668768415260928, 24.253402420258375 ], [ -77.66577254740146, 24.256441979146416 ], [ -77.665670756750615, 24.256517273271509 ], [ -77.665179578705008, 24.258516623384825 ], [ -77.665596721101096, 24.259929172837261 ], [ -77.665613214938944, 24.260069524125782 ], [ -77.665581594484635, 24.260207678935988 ], [ -77.665504954822893, 24.260330113696863 ], [ -77.66539079788825, 24.260424843588083 ], [ -77.665250298157687, 24.26048259571791 ], [ -77.665097208814558, 24.260497716845205 ], [ -77.66494651545662, 24.26046872678106 ], [ -77.664812969145316, 24.260398463290535 ], [ -77.664709642413612, 24.260293804306517 ], [ -77.664646649601124, 24.260164994649532 ], [ -77.664333431535283, 24.259104336838597 ], [ -77.663291865872395, 24.259419438262416 ], [ -77.663798198749461, 24.260807796721245 ], [ -77.663799970144481, 24.260816805654343 ], [ -77.663803843054467, 24.260824320933949 ], [ -77.66423273308132, 24.262169932846835 ], [ -77.664245448628591, 24.262175740463636 ], [ -77.66435530681359, 24.262274651907006 ], [ -77.664426448496712, 24.262399845151819 ], [ -77.664451909758625, 24.262539065475121 ], [ -77.664429198133931, 24.262678685056652 ], [ -77.664407574871902, 24.26271847653253 ], [ -77.671706954467822, 24.2856141848196 ], [ -77.671722332975705, 24.285473790444573 ], [ -77.671784317202096, 24.285344566377699 ], [ -77.671805310172829, 24.285322994540309 ], [ -77.670510961239998, 24.281282534156031 ], [ -77.670505176277274, 24.281236504685737 ], [ -77.670491089124383, 24.281162854496227 ], [ -77.670356605700434, 24.273683235022482 ], [ -77.670378185912213, 24.273543465201652 ], [ -77.670445825921419, 24.273416649331651 ], [ -77.670552904547407, 24.273315200987099 ], [ -77.670688940168716, 24.273249050570239 ], [ -77.67084061674467, 24.2732246732802 ], [ -77.670993087254033, 24.273244455300034 ], [ -77.671131426971897, 24.273306460234217 ], [ -77.671242094348102, 24.273404618654112 ], [ -77.671314256508282, 24.273529322198208 ], [ -77.671340849643698, 24.273668364079324 ], [ -77.671466136061497, 24.2806335931928 ], [ -77.673706821013411, 24.280328745980814 ], [ -77.673661705971469, 24.274230649847791 ], [ -77.673684763818585, 24.27409107876548 ], [ -77.673753742350613, 24.273964870455373 ], [ -77.673861889365156, 24.273864379018868 ], [ -77.673998618662367, 24.273799441189102 ], [ -77.6741505463023, 24.27377641346926 ], [ -77.674302800689105, 24.273797549938227 ], [ -77.67444047825289, 24.273860781618918 ], [ -77.674550102257541, 24.273959919001175 ], [ -77.674620941958267, 24.274085257896136 ], [ -77.674646062995265, 24.274224529323522 ], [ -77.674692036558582, 24.280432153548546 ], [ -77.675840627202277, 24.280371748781601 ], [ -77.692137348857457, 24.268245428923393 ], [ -77.692270606848922, 24.268174699284401 ], [ -77.692421184411501, 24.268145181586863 ], [ -77.692574342097728, 24.268159765188258 ], [ -77.6927150879187, 24.268217022545166 ], [ -77.692829644806167, 24.268311348950757 ], [ -77.692906799164675, 24.268433511146423 ], [ -77.692938998524582, 24.268571551111791 ], [ -77.692923090854748, 24.2687119565737 ], [ -77.692860633156144, 24.268840983666163 ], [ -77.692757739110149, 24.268946002276188 ], [ -77.676436101910824, 24.281090914672756 ], [ -77.674696613889964, 24.285029344330667 ], [ -77.674630321852902, 24.28513534736453 ], [ -77.674535431198876, 24.285221159668453 ], [ -77.674418900810139, 24.285280488075482 ], [ -77.672981965681046, 24.285793142986915 ], [ -77.673481663960146, 24.287352868484938 ], [ -77.674435842322225, 24.289207394891818 ], [ -77.677113686350651, 24.289110621542793 ], [ -77.677266630073873, 24.28912719271354 ], [ -77.677406501499405, 24.289186272518499 ], [ -77.677519609148021, 24.289282077858587 ], [ -77.677594881281465, 24.289405230707423 ], [ -77.677624949671355, 24.289543676071926 ], [ -77.677606870878421, 24.289683861993971 ], [ -77.677542414428714, 24.289812066095571 ], [ -77.677437889658179, 24.289915738822152 ], [ -77.677303528153146, 24.289984731897086 ], [ -77.677152482221416, 24.290012291731653 ], [ -77.674892017404005, 24.290093986100327 ], [ -77.676858280107155, 24.29391530677745 ], [ -77.682477371252588, 24.291863370989223 ], [ -77.682659576544694, 24.291831325861949 ], [ -77.683142979524277, 24.291831326010914 ], [ -77.683224739240799, 24.291842981514133 ], [ -77.683257605808862, 24.291843155483715 ], [ -77.689971899536459, 24.292854172332472 ], [ -77.689980594269485, 24.2928139546338 ], [ -77.690055749292142, 24.292690742106753 ], [ -77.690168766812022, 24.29259484629031 ], [ -77.690308583884089, 24.292535654065233 ], [ -77.690461514327296, 24.292518959517668 ], [ -77.690612588389627, 24.292546396797043 ], [ -77.690747018036319, 24.2926152801653 ], [ -77.690851644449438, 24.292718866890251 ], [ -77.690916226069476, 24.292847017251429 ], [ -77.690934441109349, 24.292987187059872 ], [ -77.690933943924108, 24.292999007835316 ], [ -77.692180771123233, 24.293186707588745 ], [ -77.692253295769731, 24.293128353874721 ], [ -77.692394770121368, 24.293072567000578 ], [ -77.692548128709433, 24.293059580356712 ], [ -77.692698359874584, 24.29309066514055 ], [ -77.692830758088078, 24.293162778574455 ], [ -77.692932363376286, 24.293268861747379 ], [ -77.692948014400926, 24.293302204407379 ], [ -77.69316760345329, 24.293335259438265 ], [ -77.693171114828132, 24.293330868662057 ], [ -77.693296092399621, 24.293248377326918 ], [ -77.693442765015547, 24.293205320795732 ], [ -77.693596775454409, 24.293205913690763 ], [ -77.693743048254547, 24.293250097962531 ], [ -77.693867265346839, 24.293333548576975 ], [ -77.693957267556812, 24.293448096868389 ], [ -77.693959491318026, 24.293454460540715 ], [ -77.697617623249286, 24.294005053480255 ], [ -77.69900116441211, 24.293773137197643 ], [ -77.699155132638197, 24.293769775969199 ], [ -77.6993026984224, 24.293810187492397 ], [ -77.699429417133601, 24.293890416032482 ], [ -77.699522884729248, 24.294002608320838 ], [ -77.699573951923682, 24.29413578226476 ], [ -77.699577619793857, 24.294276901924423 ], [ -77.699533529150926, 24.294412153540964 ], [ -77.699445995758239, 24.294528297717118 ], [ -77.699375856071043, 24.294577385319258 ], [ -77.699378864799726, 24.294586038705273 ], [ -77.699377993585074, 24.294727196154923 ], [ -77.699329573094872, 24.294861198111821 ], [ -77.699238342932532, 24.294974927500288 ], [ -77.699113233282418, 24.295057251633441 ], [ -77.698966490783832, 24.295100111981792 ], [ -77.69881247973133, 24.295099313024906 ], [ -77.697626683291944, 24.294920858781904 ], [ -77.696723779675963, 24.295072200524235 ], [ -77.696569809558213, 24.29507555942708 ], [ -77.696422242856471, 24.295035145303078 ], [ -77.696295524563638, 24.294954914194989 ], [ -77.696202058816922, 24.294842719742554 ], [ -77.696150994668614, 24.294709544390653 ], [ -77.696150713656706, 24.294698721595385 ], [ -77.694141041628285, 24.294396236119066 ], [ -77.694272270704786, 24.29517681054962 ], [ -77.694271624890135, 24.295317969501852 ], [ -77.694223418037893, 24.295452036728264 ], [ -77.694132368838922, 24.295565888764294 ], [ -77.6940073897632, 24.295648380917541 ], [ -77.693860714668119, 24.295691438211538 ], [ -77.693706701250022, 24.295690845847304 ], [ -77.693578344712009, 24.295652074465018 ], [ -77.693551852656739, 24.295759635378438 ], [ -77.693473173286492, 24.295880986146635 ], [ -77.693357430268833, 24.295974113544027 ], [ -77.693215953342076, 24.29602990154185 ], [ -77.693062591348209, 24.296042889162834 ], [ -77.692912356575505, 24.296011805062331 ], [ -77.692779955194766, 24.295939691986302 ], [ -77.692678347661584, 24.295833608919349 ], [ -77.692617480023856, 24.295703940081442 ], [ -77.692172064682438, 24.294099848210667 ], [ -77.690895723818784, 24.29390770742323 ], [ -77.69076518086456, 24.297011445148812 ], [ -77.6907352454853, 24.297149913636225 ], [ -77.690660088972137, 24.297273126607909 ], [ -77.690547068075631, 24.297369023067866 ], [ -77.690407246065845, 24.297428215932506 ], [ -77.690254309783441, 24.297444910930558 ], [ -77.690103229842677, 24.297417473810093 ], [ -77.68996879514782, 24.297348590321619 ], [ -77.689864165196056, 24.297245003312803 ], [ -77.689799581898811, 24.297116852671721 ], [ -77.689781367031031, 24.296976682737267 ], [ -77.689916672239818, 24.293760312873228 ], [ -77.683881584683434, 24.292851591323295 ], [ -77.684816166841145, 24.295301116946501 ], [ -77.684843393294159, 24.295432632947215 ], [ -77.684827319523478, 24.295565682287997 ], [ -77.684769360313439, 24.295688553122201 ], [ -77.684674617501543, 24.295790429546255 ], [ -77.6845514309165, 24.295862343696069 ], [ -77.680684189343324, 24.297437688018466 ], [ -77.680926144959713, 24.298241510909879 ], [ -77.680928465678846, 24.298260404593634 ], [ -77.68093543302686, 24.298278313199358 ], [ -77.680937038958461, 24.29833020221341 ], [ -77.680943375062796, 24.298381786252769 ], [ -77.680939211926884, 24.298400412487574 ], [ -77.68093980013397, 24.298419417873291 ], [ -77.68092383233548, 24.298469222089839 ], [ -77.680912466015954, 24.29852007593426 ], [ -77.680902226521141, 24.298536611454185 ], [ -77.680896377988617, 24.298554853240923 ], [ -77.680864399446634, 24.298597697469948 ], [ -77.680836443265591, 24.298642843181874 ], [ -77.680821129710409, 24.298655669369253 ], [ -77.680809416916333, 24.29867136191865 ], [ -77.680764557882952, 24.298703052248914 ], [ -77.680722748357255, 24.298738070629543 ], [ -77.680703859736255, 24.29874593195893 ], [ -77.680687429203743, 24.298757539165759 ], [ -77.680470385622712, 24.298866106927044 ], [ -77.685572650452215, 24.298738064646244 ], [ -77.685725376399816, 24.298756320044468 ], [ -77.685864472420079, 24.298816936645242 ], [ -77.685976322933271, 24.29891398091852 ], [ -77.686049979254804, 24.299037953562962 ], [ -77.686078231319868, 24.299176719337627 ], [ -77.686058313481951, 24.299316694919007 ], [ -77.685992175286131, 24.299444178517092 ], [ -77.68588629069194, 24.299546691103895 ], [ -77.685751024398257, 24.299614197964903 ], [ -77.685599617283231, 24.299640090992927 ], [ -77.680380134744567, 24.299771076063958 ], [ -77.680227407773856, 24.299752815323476 ], [ -77.680088312832737, 24.299692193414074 ], [ -77.679976465611091, 24.29959514447582 ], [ -77.679902814517078, 24.299471168403244 ], [ -77.679874568962092, 24.299332400903392 ], [ -77.679894493680266, 24.299192425543307 ], [ -77.679921298140655, 24.299140764840775 ], [ -77.679531504713736, 24.299335740754753 ], [ -77.67954906416098, 24.299354190409073 ], [ -77.679609486845862, 24.299484035935045 ], [ -77.67962317265615, 24.299624639094922 ], [ -77.679588781781291, 24.299762236697102 ], [ -77.679509680495585, 24.299883359711469 ], [ -77.679393611698885, 24.299976151718859 ], [ -77.677572500600263, 24.301023041024358 ], [ -77.677430823836403, 24.30107841728783 ], [ -77.677325361263811, 24.301087038498991 ], [ -77.677281880742754, 24.301118949982953 ], [ -77.677129295963709, 24.301169116116551 ], [ -77.676967205361251, 24.30117114209369 ], [ -77.67681318458807, 24.301124808220177 ], [ -77.674010736625405, 24.299779260358683 ], [ -77.67388716477349, 24.299694997991246 ], [ -77.673798051703102, 24.299579862068409 ], [ -77.673752120385558, 24.299445122966091 ], [ -77.673753866780615, 24.299303969936659 ], [ -77.673803119785589, 24.299170220033812 ], [ -77.673889163357074, 24.299064226992982 ], [ -77.673892625930293, 24.298956555017764 ], [ -77.674728800816979, 24.294896011300288 ], [ -77.674786955242467, 24.294752920600814 ], [ -77.674893853087639, 24.294635802996872 ], [ -77.675037250652906, 24.294558072583676 ], [ -77.675938526362202, 24.294243309927143 ], [ -77.672749211955235, 24.288044827518071 ], [ -77.672010814000458, 24.288221643306997 ], [ -77.671860386295847, 24.288235663949973 ], [ -77.671712412463336, 24.288207172484697 ], [ -77.671580854595945, 24.288138857215845 ], [ -77.67147812581922, 24.28803716402664 ], [ -77.67141391902878, 24.287911688164328 ], [ -77.663520850802541, 24.2631537500821 ], [ -77.661348972335944, 24.263820632516303 ], [ -77.661197111790713, 24.263843971895849 ], [ -77.661044816793876, 24.2638231471221 ], [ -77.660906995191183, 24.263760196676483 ], [ -77.660797138024876, 24.263661282634342 ], [ -77.660725998896964, 24.263536087460025 ], [ -77.660700541325227, 24.263396866193592 ], [ -77.660723257134393, 24.263257246817599 ], [ -77.660791922592466, 24.263130896241833 ], [ -77.660899816142489, 24.26303018249391 ], [ -77.66103637639489, 24.262964964068427 ], [ -77.663244569163055, 24.262286932760709 ], [ -77.662981124453893, 24.261460377107035 ], [ -77.662343497622288, 24.261555673669939 ], [ -77.662189522338451, 24.261556311252697 ], [ -77.662042868295046, 24.261513295900308 ], [ -77.66191789114437, 24.261430838284429 ], [ -77.661826824582917, 24.261317009992233 ], [ -77.661778582808068, 24.261182953399828 ], [ -77.66177788794667, 24.261041790952152 ], [ -77.661824807863965, 24.260907340626961 ], [ -77.661914749578798, 24.260792763329594 ], [ -77.662038908907263, 24.260709274623 ], [ -77.662185132301389, 24.260665046893713 ], [ -77.662681253981845, 24.260590899546671 ], [ -77.662277859085066, 24.259484766723396 ], [ -77.661323134805386, 24.259906047678694 ], [ -77.661175655234786, 24.259946616117276 ], [ -77.66102171974768, 24.259943416976171 ], [ -77.660876396775322, 24.25989676339951 ], [ -77.660753911671137, 24.259811222197136 ], [ -77.660666254184989, 24.259695166800938 ], [ -77.660622004802107, 24.259559957590913 ], [ -77.660625494840843, 24.259418829835578 ], [ -77.660676382518602, 24.259285598112999 ], [ -77.660769686466594, 24.259173304039766 ], [ -77.660896273389824, 24.259092939679181 ], [ -77.661936228069123, 24.258634050946284 ], [ -77.661545094050368, 24.257759802242912 ], [ -77.660559154136649, 24.257952420557913 ], [ -77.660405396565949, 24.257959880104707 ], [ -77.660256650187435, 24.257923413255515 ], [ -77.660127475472549, 24.257846589662595 ], [ -77.660030517017816, 24.257736929412086 ], [ -77.659975265774833, 24.257605166883558 ], [ -77.65996713001644, 24.257464199967345 ], [ -77.660006905977028, 24.257327827507801 ], [ -77.660090699968904, 24.257209398568438 ], [ -77.660210309576897, 24.257120505741405 ], [ -77.660354026596707, 24.257069850405763 ], [ -77.661044148105262, 24.256935025882193 ], [ -77.653933367439791, 24.246830126843172 ], [ -77.653429373835294, 24.24721407971365 ], [ -77.653297020937657, 24.247286197403312 ], [ -77.653146840119774, 24.247317285102408 ], [ -77.652993532258137, 24.247304299688867 ], [ -77.652852104347119, 24.247248512265092 ], [ -77.652736400451417, 24.247155383733819 ], [ -77.652657746508538, 24.247034030231205 ], [ -77.652623841654048, 24.246896330750438 ], [ -77.652638004599694, 24.246755764317623 ], [ -77.652698848824969, 24.246626090554884 ], [ -77.652800418357785, 24.246520002792643 ], [ -77.653395941487943, 24.246066322547343 ], [ -77.65337199977607, 24.246032295658576 ], [ -77.653309802279381, 24.245903162977186 ], [ -77.653294169803118, 24.245762727599349 ], [ -77.653326632416423, 24.245624736345132 ], [ -77.653404012307476, 24.245502696743539 ], [ -77.653518734905461, 24.245408554827687 ], [ -77.653659570365718, 24.245351525794284 ], [ -77.653682890193195, 24.245349343402633 ], [ -77.651709867889778, 24.243668602391164 ], [ -77.651309304983741, 24.244136284695433 ], [ -77.651196445335955, 24.244232300265168 ], [ -77.651056750209264, 24.244291638561013 ], [ -77.650903894023699, 24.244308491076051 ], [ -77.650752839552624, 24.244281208139576 ], [ -77.650618373206754, 24.244212460409447 ], [ -77.650513657581342, 24.244108977444213 ], [ -77.650448942974307, 24.243980888947217 ], [ -77.650430564014556, 24.243840733174082 ], [ -77.650460319617849, 24.243702229577526 ], [ -77.650535296951745, 24.243578935840628 ], [ -77.650986379703667, 24.243052272290168 ], [ -77.647178047946028, 24.239807839534546 ], [ -77.646365606786745, 24.239214324907834 ], [ -77.644907258425903, 24.240688641367161 ], [ -77.64478726192047, 24.240777079702806 ], [ -77.644643333740206, 24.240827188509584 ], [ -77.644489562682793, 24.240834062732795 ], [ -77.644341001081202, 24.240797029455823 ], [ -77.644212191318942, 24.240719713777395 ], [ -77.644115742267175, 24.240609683952712 ], [ -77.644061095012248, 24.240477710537753 ], [ -77.644053598703593, 24.240336712065456 ], [ -77.644093986981673, 24.240200490468446 ], [ -77.644178306221576, 24.240082380042178 ], [ -77.645594323759568, 24.238650867978546 ], [ -77.645256900081918, 24.238404361854517 ], [ -77.642551850704294, 24.237440189497399 ], [ -77.64162418002104, 24.238286088435398 ], [ -77.641499378573215, 24.238368744256849 ], [ -77.641352829927754, 24.238411991405741 ], [ -77.641198879402737, 24.23841159649897 ], [ -77.641052596900849, 24.238367598180055 ], [ -77.640928301703966, 24.238284303341221 ], [ -77.64083816075194, 24.238169865523325 ], [ -77.640790997634824, 24.238035486766851 ], [ -77.640791428891546, 24.237894321051577 ], [ -77.640839412155017, 24.237760186674024 ], [ -77.640930250357741, 24.23764621361137 ], [ -77.641410152140693, 24.237208618446637 ], [ -77.632632812206538, 24.235810995085611 ], [ -77.63295274925261, 24.23778826682711 ], [ -77.632951243566666, 24.237929427089743 ], [ -77.632902240209432, 24.238063251828954 ], [ -77.632810535840662, 24.23817664131569 ], [ -77.632685107064987, 24.238258496134808 ], [ -77.632538231761373, 24.23830080369693 ], [ -77.632384287224895, 24.238299422592974 ], [ -77.632238342772197, 24.238254488003289 ], [ -77.632114684593404, 24.238170398469752 ], [ -77.632025417270611, 24.238055385323936 ], [ -77.631979278874766, 24.237920706923269 ], [ -77.631596220664989, 24.235553214831171 ], [ -77.631121491961835, 24.235325980659052 ], [ -77.631103724160951, 24.235354689091089 ], [ -77.631007729439389, 24.235465051233991 ], [ -77.630879241321168, 24.235542810592936 ], [ -77.630730837165416, 24.235580355471608 ], [ -77.63057704392854, 24.235574010669158 ], [ -77.6304329161173, 24.235524397252217 ], [ -77.630312562090324, 24.235436371763225 ], [ -77.630227762986109, 24.235318550814608 ], [ -77.630186819484948, 24.235182467610212 ], [ -77.630193739298335, 24.235041442968768 ], [ -77.630247844913512, 24.234909281371571 ], [ -77.630248555295552, 24.23490813358098 ], [ -77.627019040034114, 24.233362196881437 ], [ -77.625452242783211, 24.235011069069465 ], [ -77.625942403606487, 24.235502925731719 ], [ -77.626027198392663, 24.23562074985028 ], [ -77.626068136900088, 24.235756834754365 ], [ -77.626061211658723, 24.235897859551919 ], [ -77.626007100406227, 24.236030019759976 ], [ -77.62591109980481, 24.236140378581041 ], [ -77.625782607014429, 24.236218133260515 ], [ -77.625634199851589, 24.236255672560148 ], [ -77.625480405567075, 24.236249321825238 ], [ -77.625336278770234, 24.236199702703153 ], [ -77.625215927720333, 24.236111672294822 ], [ -77.624801536462982, 24.235695845746765 ], [ -77.623186078362224, 24.237395846647082 ], [ -77.623068026840855, 24.237486459014463 ], [ -77.622925216575581, 24.237539185686071 ], [ -77.622771626930316, 24.237548865350782 ], [ -77.622622292478852, 24.237514550473239 ], [ -77.622491831258998, 24.237439600053754 ], [ -77.62239301380329, 24.237331350817918 ], [ -77.6223355130399, 24.237200399025255 ], [ -77.622324957444022, 24.237059563206763 ], [ -77.622362380121757, 24.23692262937594 ], [ -77.622444117739434, 24.23680300154922 ], [ -77.623083995283523, 24.236129648538114 ], [ -77.622861820750828, 24.235778485442882 ], [ -77.622806348733803, 24.235646800161394 ], [ -77.622797969224393, 24.23550584142043 ], [ -77.622837502317267, 24.235369407264105 ], [ -77.622921078098358, 24.235250852795367 ], [ -77.623040515512344, 24.235161782894142 ], [ -77.623184123210152, 24.235110916272873 ], [ -77.623337843973118, 24.235103232054882 ], [ -77.623486630692028, 24.235139482404545 ], [ -77.623615919225671, 24.235216118907942 ], [ -77.623713053987117, 24.235325639907629 ], [ -77.623766998893203, 24.235410903175556 ], [ -77.624133369566763, 24.235025355922218 ], [ -77.623938857691712, 24.234830165804894 ], [ -77.623854065311733, 24.234712340300607 ], [ -77.623813129549632, 24.2345762545532 ], [ -77.62382005735941, 24.234435229630318 ], [ -77.623874170445518, 24.234303070040742 ], [ -77.623970171717886, 24.234192712450415 ], [ -77.624098663855335, 24.234114959364899 ], [ -77.624247069199129, 24.234077421729491 ], [ -77.624400860923885, 24.234083773942977 ], [ -77.624544984977263, 24.23413339419966 ], [ -77.624665333616903, 24.234221425358605 ], [ -77.62478407670929, 24.234340582038115 ], [ -77.626531913077898, 24.232501193480598 ], [ -77.626555883814191, 24.232483156864397 ], [ -77.62657779780919, 24.232458907040833 ], [ -77.628218957012706, 24.231134318582985 ], [ -77.635160290535609, 24.219252116557094 ], [ -77.637077455737582, 24.214603039194319 ], [ -77.636905152826571, 24.213894023676065 ], [ -77.635374280285433, 24.21388317258943 ], [ -77.634651020083425, 24.215450922857041 ], [ -77.634569604083339, 24.215570726118077 ], [ -77.634451805916441, 24.215661591932502 ], [ -77.634309156500137, 24.215714625651248 ], [ -77.634155619452599, 24.215724635907097 ], [ -77.634006224198643, 24.215690642803768 ], [ -77.633875594727996, 24.215615973843676 ], [ -77.633776518043319, 24.215507938200904 ], [ -77.633718692448753, 24.215377111226953 ], [ -77.633707778216959, 24.215236299234871 ], [ -77.633744843560152, 24.215099285906231 ], [ -77.634596229451887, 24.213253834083396 ], [ -77.63462686066481, 24.213208759748941 ], [ -77.634653550221927, 24.21316162439313 ], [ -77.634667378989406, 24.213149136313245 ], [ -77.634677644172228, 24.213134030904353 ], [ -77.634721963297437, 24.213099843874797 ], [ -77.63476322811168, 24.21306257958847 ], [ -77.63478058771355, 24.213054621938412 ], [ -77.634795440016035, 24.213043165101737 ], [ -77.634849108787662, 24.213023211816285 ], [ -77.634900909572679, 24.21299946626014 ], [ -77.634920100737972, 24.212996817982109 ], [ -77.634938086317476, 24.212990131183368 ], [ -77.634995851295287, 24.21298636478647 ], [ -77.635053117464281, 24.212978462317558 ], [ -77.637304018295794, 24.212994417991556 ], [ -77.637465983459407, 24.213020788095726 ], [ -77.637609416165461, 24.213094653396613 ], [ -77.637718280518797, 24.21320775569831 ], [ -77.637780405304724, 24.213347450067253 ], [ -77.637784078118884, 24.213362563213945 ], [ -77.637796513852706, 24.21335445270736 ], [ -77.637934362169432, 24.213291646552179 ], [ -77.638086625302407, 24.213270981946724 ], [ -77.638238398816981, 24.213294481654081 ], [ -77.638374826212697, 24.213359845369379 ], [ -77.638482553124263, 24.213460674885756 ], [ -77.6385510345022, 24.213587100376696 ], [ -77.638565944455252, 24.21367950618648 ], [ -77.640433336674676, 24.212815605537269 ], [ -77.640579915227974, 24.212772527190285 ], [ -77.64073383427835, 24.212773099254452 ], [ -77.640880027309194, 24.212817265719565 ], [ -77.641004184059113, 24.212900703294665 ], [ -77.641094151259878, 24.213015244590199 ], [ -77.641141122260407, 24.213149677575554 ], [ -77.641140499096181, 24.21329084306414 ], [ -77.641092342614428, 24.213424922806954 ], [ -77.641001366576035, 24.213538792114196 ], [ -77.640876476289975, 24.213621304603059 ], [ -77.637982093024931, 24.214960305844503 ], [ -77.636069303939621, 24.21959885306909 ], [ -77.636053368431448, 24.219624457842922 ], [ -77.636042808284344, 24.219652303685809 ], [ -77.629002410543123, 24.231704221108757 ], [ -77.629103449182324, 24.231751037532035 ], [ -77.629212670534926, 24.231850521057723 ], [ -77.629283021831469, 24.231976085454807 ], [ -77.629307616519668, 24.232115439668849 ], [ -77.629284046959796, 24.232254942772553 ], [ -77.629214620154954, 24.232380939221756 ], [ -77.629106131982553, 24.232481095558441 ], [ -77.628969202005536, 24.232545607713742 ], [ -77.628817233961357, 24.232568160724817 ], [ -77.628665103681229, 24.232546546911692 ], [ -77.628533024020214, 24.232507643985144 ], [ -77.628276747045732, 24.232946294638069 ], [ -77.631163358651435, 24.23432806721582 ], [ -77.631171581255629, 24.234330897694207 ], [ -77.631175955347686, 24.234334096849505 ], [ -77.632205889265506, 24.234827087425725 ], [ -77.642515991757833, 24.236468767544984 ], [ -77.642562292603785, 24.23648326131098 ], [ -77.642610104495475, 24.236492774247548 ], [ -77.645555491040852, 24.237542616642379 ], [ -77.648248684622516, 24.237112220501338 ], [ -77.648397407684939, 24.237109380934342 ], [ -77.648540260030757, 24.237147424976644 ], [ -77.648664185957244, 24.237222875660009 ], [ -77.648757859462037, 24.23732883730862 ], [ -77.648812719346779, 24.237455625742626 ], [ -77.648823751663627, 24.237591653329972 ], [ -77.648789947992029, 24.237724488006354 ], [ -77.648780687614163, 24.237745687117652 ], [ -77.6488315149399, 24.237790817356437 ], [ -77.654814507070284, 24.245091273090345 ], [ -77.654888973404027, 24.245222488250469 ], [ -77.654913157639939, 24.245368733484447 ], [ -77.654884460417378, 24.245514291136942 ], [ -77.654805965798246, 24.24564351739906 ], [ -77.654686109878512, 24.245742523630934 ], [ -77.654537774163998, 24.24580066906675 ], [ -77.654387491891811, 24.24581097797515 ], [ -77.662257974453098, 24.256995368917828 ], [ -77.662262879301025, 24.257005549341848 ], [ -77.662270523592213, 24.257014194840188 ], [ -77.662282471497932, 24.257042686864946 ], [ -77.662299769928694, 24.257068768706056 ], [ -77.662969900553847, 24.258566598909326 ], [ -77.664253803589631, 24.258178183953909 ], [ -77.664769880335299, 24.256077543799215 ], [ -77.664826793756944, 24.255946378025222 ], [ -77.664925130999166, 24.255837756346804 ], [ -77.665055266085233, 24.2557623113453 ], [ -77.665134028251998, 24.255743895901457 ], [ -77.66812221915616, 24.252712140448295 ], [ -77.6681168895187, 24.252605855860484 ], [ -77.668157692150146, 24.252469739715572 ], [ -77.668242374398389, 24.252351845859771 ], [ -77.668362646901372, 24.252263714506991 ], [ -77.668506736568105, 24.252213972497916 ], [ -77.668617826342896, 24.25220928946289 ], [ -77.669590773489162, 24.251222106496606 ] ], [ [ -77.674039633986666, 24.251153158271372 ], [ -77.673886376901422, 24.25114048267508 ], [ -77.670218049949511, 24.251931575804637 ], [ -77.669428295627995, 24.252732890658962 ], [ -77.673058427500465, 24.255768410490532 ], [ -77.674039633986666, 24.251153158271372 ] ], [ [ -77.646905339976868, 24.238454847182894 ], [ -77.647288492915351, 24.238734753920614 ], [ -77.647548236730287, 24.238140160577956 ], [ -77.646839109562137, 24.23825348641574 ], [ -77.646847510353481, 24.238263069944008 ], [ -77.646902159202824, 24.23839504222466 ], [ -77.646905339976868, 24.238454847182894 ] ], [ [ -77.64808166171558, 24.239345897070969 ], [ -77.650709622624973, 24.241584746528918 ], [ -77.648357472354533, 24.238714515965587 ], [ -77.64808166171558, 24.239345897070969 ] ], [ [ -77.672023791744536, 24.286004979152818 ], [ -77.671932216147098, 24.285968074235768 ], [ -77.671817289690395, 24.285874107209168 ], [ -77.671762292715698, 24.285787723874236 ], [ -77.672224691352497, 24.287237769229222 ], [ -77.672404911670583, 24.287194613800054 ], [ -77.672023791744536, 24.286004979152818 ] ], [ [ -77.672703567633391, 24.284924149250372 ], [ -77.673863828643434, 24.284510204994557 ], [ -77.675279448039063, 24.281305119560592 ], [ -77.674057169632718, 24.281369395060796 ], [ -77.673903936046614, 24.281355333438277 ], [ -77.673762942773877, 24.281298555283126 ], [ -77.673694560803, 24.28124267446568 ], [ -77.671614832421724, 24.281525623618528 ], [ -77.672703567633391, 24.284924149250372 ] ], [ [ -77.674845494735138, 24.299161362334132 ], [ -77.67693052167516, 24.300162452049214 ], [ -77.677910024806877, 24.299159670702657 ], [ -77.676831927901091, 24.296398047852296 ], [ -77.676391760984316, 24.29659839287234 ], [ -77.676244798495645, 24.296640627809023 ], [ -77.676090788907999, 24.296639172253865 ], [ -77.675944807906177, 24.296594168674908 ], [ -77.675821145258439, 24.296510022367187 ], [ -77.675731905984534, 24.296394970219868 ], [ -77.675685825409715, 24.296260274408379 ], [ -77.675687414104374, 24.296119119947583 ], [ -77.675736516402665, 24.295985324031431 ], [ -77.675828325698831, 24.295871983505229 ], [ -77.675953855001126, 24.295790192867091 ], [ -77.676497961593057, 24.295542539453493 ], [ -77.676316251204511, 24.295077053182595 ], [ -77.67564518210169, 24.29531141962693 ], [ -77.674860116342515, 24.299123910073618 ], [ -77.674845494735138, 24.299161362334132 ] ], [ [ -77.6797109029051, 24.293844993455924 ], [ -77.68057934492127, 24.296255240891341 ], [ -77.68060416990474, 24.296394556625 ], [ -77.68058831218147, 24.296489267668534 ], [ -77.68088565485202, 24.296368147583717 ], [ -77.680838527090202, 24.296288181030157 ], [ -77.679877707511864, 24.293784081218998 ], [ -77.6797109029051, 24.293844993455924 ] ], [ [ -77.67853220911806, 24.298074856226865 ], [ -77.678771528821898, 24.298687869259989 ], [ -77.679873278281775, 24.298136771658555 ], [ -77.679808460900603, 24.297921430521715 ], [ -77.679681750219217, 24.297943240629344 ], [ -77.679529001479622, 24.297925148489391 ], [ -77.679508909762191, 24.297916418957563 ], [ -77.679011861578701, 24.298118879722619 ], [ -77.678855415679635, 24.298156000183823 ], [ -77.678694284088991, 24.298144688770765 ], [ -77.678545831268522, 24.298086164450595 ], [ -77.67853220911806, 24.298074856226865 ] ], [ [ -77.680793081220898, 24.293449808944107 ], [ -77.68176730844327, 24.295988806428493 ], [ -77.68177104068927, 24.296007488311883 ], [ -77.681855389906161, 24.295973128547356 ], [ -77.680848618136892, 24.293429527982674 ], [ -77.680793081220898, 24.293449808944107 ] ], [ [ -77.681763661496376, 24.29309536886981 ], [ -77.682757294580938, 24.295605732538991 ], [ -77.682793189110598, 24.295591110548258 ], [ -77.681850221156608, 24.293063758309817 ], [ -77.681763661496376, 24.29309536886981 ] ], [ [ -77.682767566816864, 24.292733693378928 ], [ -77.683696418676348, 24.295223167306414 ], [ -77.683737104442471, 24.29520659321787 ], [ -77.68279362882555, 24.292733693391629 ], [ -77.682767566816864, 24.292733693378928 ] ] ], [ [ [ -77.821513443143076, 24.750951365245367 ], [ -77.821534964764879, 24.750955631986081 ], [ -77.821668479226062, 24.751026732329969 ], [ -77.821771399174168, 24.751132029018216 ], [ -77.821795642489192, 24.751182339891173 ], [ -77.822384620815242, 24.75166440237059 ], [ -77.822451629460772, 24.75173152577522 ], [ -77.822654292931162, 24.751980946246157 ], [ -77.825190380274535, 24.749665700045359 ], [ -77.825318712145545, 24.749581243618316 ], [ -77.825469697376434, 24.749538159474167 ], [ -77.825627854458517, 24.749540865294978 ], [ -77.825776966539621, 24.749589083620737 ], [ -77.825901744191128, 24.749677870304215 ], [ -77.826917723523991, 24.750677629894113 ], [ -77.828105200863249, 24.749558024593476 ], [ -77.828228771497322, 24.74947325093127 ], [ -77.828374980680948, 24.749427496984929 ], [ -77.828529516555008, 24.749425241415203 ], [ -77.828677252227706, 24.749466704996724 ], [ -77.828803726440455, 24.749547829013306 ], [ -77.828896559083702, 24.749660672542618 ], [ -77.828946663022592, 24.749794189745465 ], [ -77.828949133619986, 24.749935311082098 ], [ -77.828926450813242, 24.750002708759684 ], [ -77.828928475543307, 24.75000378406687 ], [ -77.829897200657243, 24.74830946948078 ], [ -77.82852408021833, 24.745639310540227 ], [ -77.827709446306699, 24.74519447204921 ], [ -77.827590841465408, 24.745103980905863 ], [ -77.827508662050832, 24.744984448045681 ], [ -77.827470952302249, 24.744847574247494 ], [ -77.827481403381725, 24.744706757718014 ], [ -77.82753899210735, 24.744575782564606 ], [ -77.827638081169539, 24.74446746950915 ], [ -77.827768970997553, 24.744392420921226 ], [ -77.827870858072231, 24.744369010082213 ], [ -77.827251753282312, 24.743165026852108 ], [ -77.827208753556931, 24.743029460133034 ], [ -77.827213730615554, 24.742888393680627 ], [ -77.827266197111541, 24.742755636071493 ], [ -77.827361017128268, 24.742644182511107 ], [ -77.827488908968306, 24.742564942785599 ], [ -77.827637353730964, 24.742525673360671 ], [ -77.827791820732941, 24.742530218151717 ], [ -77.827937189825306, 24.742578132273522 ], [ -77.828059231398882, 24.742664725592292 ], [ -77.828145999227715, 24.742781521815569 ], [ -77.829290073636841, 24.745006370231046 ], [ -77.829949181544976, 24.745366274121142 ], [ -77.830070909782179, 24.745202693373791 ], [ -77.830176704666201, 24.745099805549724 ], [ -77.830312136516909, 24.745031808911701 ], [ -77.830463948392193, 24.745005359377327 ], [ -77.830617280028136, 24.745023045972339 ], [ -77.830757122411569, 24.74508313741358 ], [ -77.830869786907442, 24.745179751577524 ], [ -77.830891783049324, 24.745216288542721 ], [ -77.831980817644947, 24.745004654577926 ], [ -77.832173788805449, 24.744513789088362 ], [ -77.832248122190961, 24.744390047152113 ], [ -77.83236068873353, 24.744293338716393 ], [ -77.832500469629949, 24.744233130205416 ], [ -77.832653782240044, 24.744215315184377 ], [ -77.83280561940532, 24.744241637480442 ], [ -77.832941118397656, 24.744309520496699 ], [ -77.833047015728795, 24.744412319422519 ], [ -77.833112945435886, 24.744539971654081 ], [ -77.83313245377191, 24.744679981764904 ], [ -77.833110605301954, 24.744785092039017 ], [ -77.837137929529518, 24.744002349006195 ], [ -77.836115939061202, 24.743309968149227 ], [ -77.835116057335384, 24.743818791800635 ], [ -77.834970947858821, 24.74386735944654 ], [ -77.834816506382026, 24.743872599161687 ], [ -77.834667850868058, 24.743833998027032 ], [ -77.834539532895775, 24.743755334615791 ], [ -77.834444113195929, 24.743644309110728 ], [ -77.834390932091225, 24.743511789533695 ], [ -77.834385195208981, 24.743370747880505 ], [ -77.834427463959955, 24.743234990310082 ], [ -77.834513600642907, 24.74311780569408 ], [ -77.834635173525569, 24.743030664819198 ], [ -77.835245359480624, 24.742720153314991 ], [ -77.831614293309514, 24.740259996432236 ], [ -77.831506110763527, 24.740159204492901 ], [ -77.831437327736026, 24.740032814981639 ], [ -77.831414677106537, 24.739893199849117 ], [ -77.831440375930924, 24.7397540256311 ], [ -77.831511908476074, 24.739628915659825 ], [ -77.831622272535867, 24.739530116521095 ], [ -77.831760664895029, 24.739467299292183 ], [ -77.831913538827621, 24.739446612896437 ], [ -77.832065930113558, 24.73947008222855 ], [ -77.832202921785154, 24.739535409956687 ], [ -77.836192256339444, 24.742238288665948 ], [ -77.83951007369258, 24.740549817031614 ], [ -77.835675695392595, 24.736709815047977 ], [ -77.835590710332568, 24.736591933969624 ], [ -77.835549770611479, 24.736455837708551 ], [ -77.835556883567591, 24.736314848363129 ], [ -77.835611352777676, 24.73618276696028 ], [ -77.835707846288059, 24.736072522511989 ], [ -77.835836918592136, 24.735994906447271 ], [ -77.835985935241283, 24.735957516296992 ], [ -77.83614030957456, 24.735964012021494 ], [ -77.836284930514083, 24.736013757766518 ], [ -77.836405641682589, 24.736101884107924 ], [ -77.840773834472884, 24.740476433863005 ], [ -77.841958187497298, 24.739547378933342 ], [ -77.838342623662996, 24.735815947056018 ], [ -77.83825957817092, 24.735696919197036 ], [ -77.838220870811938, 24.735560279503151 ], [ -77.838230290402407, 24.735419403266089 ], [ -77.838286914729778, 24.735288080438835 ], [ -77.838385200885213, 24.735179165776863 ], [ -77.838515527890024, 24.735103320539608 ], [ -77.83866513848119, 24.735067968917473 ], [ -77.838819387861278, 24.735076571327077 ], [ -77.838963177183672, 24.735128285699268 ], [ -77.839082431472804, 24.735218049908809 ], [ -77.842707667740015, 24.738959444657176 ], [ -77.843976607058295, 24.737963997561469 ], [ -77.841455321302575, 24.735198998631926 ], [ -77.841376223005241, 24.735077749572678 ], [ -77.841342020988293, 24.734940111276916 ], [ -77.841356063048693, 24.734799556783134 ], [ -77.84141697449482, 24.734669844545532 ], [ -77.841518792770771, 24.734563671660272 ], [ -77.841651551158364, 24.734491431001072 ], [ -77.841802254402737, 24.734460193918267 ], [ -77.841956150755024, 24.734473018072034 ], [ -77.842098175924946, 24.734528648143808 ], [ -77.842214427618487, 24.734621638715971 ], [ -77.844726073392437, 24.737376050537243 ], [ -77.846794606316323, 24.735753266587242 ], [ -77.846926140532034, 24.735679180769846 ], [ -77.847076304067201, 24.735645842985996 ], [ -77.847230398000946, 24.735656516525388 ], [ -77.847373338702653, 24.735710156584325 ], [ -77.847491134262782, 24.735801512539691 ], [ -77.847572254071821, 24.735921641901371 ], [ -77.847608757501064, 24.736058785639795 ], [ -77.847597071208369, 24.736199519215198 ], [ -77.8475383389722, 24.736330066647948 ], [ -77.847438309790761, 24.736437649006184 ], [ -77.847438094340944, 24.736437818032975 ], [ -77.847529585811884, 24.736420768574 ], [ -77.847683139714192, 24.736436666229586 ], [ -77.847823799196561, 24.736495122036899 ], [ -77.847937795643418, 24.736590413978167 ], [ -77.848013970317481, 24.736713214283249 ], [ -77.848044866643534, 24.736851502470433 ], [ -77.848027460135796, 24.736991741969025 ], [ -77.84796345450826, 24.73712020515773 ], [ -77.847167942768124, 24.738219223813253 ], [ -77.84987447787806, 24.73907191200917 ], [ -77.849655743928068, 24.735166948936513 ], [ -77.849184423137501, 24.733985404523597 ], [ -77.849154890203565, 24.733846868284122 ], [ -77.849173676219152, 24.733706777457876 ], [ -77.849238942122398, 24.733578845107658 ], [ -77.849344299119323, 24.733475594098341 ], [ -77.849479434106613, 24.73340713128874 ], [ -77.849631119200026, 24.733380158228393 ], [ -77.849784506545248, 24.733397315188849 ], [ -77.849924581676021, 24.733456922730628 ], [ -77.850037633175205, 24.733553146097165 ], [ -77.850112594800819, 24.733676566344258 ], [ -77.851208593495087, 24.736424011636444 ], [ -77.851185115770178, 24.73632464063968 ], [ -77.851176028636345, 24.736188685132511 ], [ -77.851211788645287, 24.736056449960067 ], [ -77.851289135440624, 24.735939990928362 ], [ -77.853137691917382, 24.733922432486924 ], [ -77.853269627908901, 24.733821206611161 ], [ -77.85343160812856, 24.733767533367629 ], [ -77.864064882475034, 24.732072970063008 ], [ -77.864181997211958, 24.732038356422358 ], [ -77.864281350806905, 24.73203846456941 ], [ -77.869135743339868, 24.731264578660291 ], [ -77.869072826249536, 24.731247821723425 ], [ -77.868945105337161, 24.731168375437761 ], [ -77.868850515629646, 24.731056770180871 ], [ -77.868798316202302, 24.730923930724721 ], [ -77.868642978254101, 24.730176133325589 ], [ -77.868638278934455, 24.730035062941862 ], [ -77.868681539010694, 24.729899570710099 ], [ -77.868768523744649, 24.729782919528027 ], [ -77.868890718392677, 24.729696527965697 ], [ -77.869036161715485, 24.729648852559343 ], [ -77.869190616818315, 24.729644560054108 ], [ -77.869338964714998, 24.729684070611892 ], [ -77.869466684220271, 24.729763516689935 ], [ -77.869561273330945, 24.729875121612992 ], [ -77.869613472981584, 24.730007960785425 ], [ -77.869768816315855, 24.730755756684257 ], [ -77.869773517024854, 24.730896826902498 ], [ -77.869730257940077, 24.731032319358171 ], [ -77.86964327342163, 24.731148971079783 ], [ -77.869579923836596, 24.731193759321965 ], [ -77.873082133833464, 24.730635325073859 ], [ -77.8732366419665, 24.730633098878819 ], [ -77.873384341200435, 24.730674589232024 ], [ -77.873510773843535, 24.730755734796485 ], [ -77.873603563855511, 24.730868592540517 ], [ -77.873653628274724, 24.731002115233483 ], [ -77.873656066332742, 24.731143232798349 ], [ -77.873610639219336, 24.731278131681059 ], [ -77.87352179351852, 24.731393607011199 ], [ -77.873398225998784, 24.731478355197368 ], [ -77.873252032338641, 24.731524080424951 ], [ -77.865009710557842, 24.732838204175408 ], [ -77.865950360462719, 24.734529231996653 ], [ -77.865998502270841, 24.734666855707651 ], [ -77.865996536458624, 24.734811321137983 ], [ -77.865944664502749, 24.734947809637664 ], [ -77.865848207070869, 24.735062320748945 ], [ -77.865717058306274, 24.735143108329023 ], [ -77.865564670951457, 24.73518188544811 ], [ -77.863880006715689, 24.735353207787178 ], [ -77.863725637320101, 24.735346690479201 ], [ -77.863581028524152, 24.735296925078366 ], [ -77.863460335772331, 24.735208783004754 ], [ -77.863375373361706, 24.735090892284322 ], [ -77.863334457957251, 24.734954792952578 ], [ -77.863341594516967, 24.734813807408553 ], [ -77.863396084307212, 24.734681736307184 ], [ -77.863492593359666, 24.734571507652166 ], [ -77.863621674646268, 24.734493911326584 ], [ -77.863770692839054, 24.734456542929035 ], [ -77.864746698480303, 24.734357290781379 ], [ -77.864073119152607, 24.733146359186669 ], [ -77.862050897431871, 24.735099628183441 ], [ -77.861587427630184, 24.7380526640478 ], [ -77.861547084520254, 24.738177454795224 ], [ -77.861469419015222, 24.738286538041983 ], [ -77.853278757570322, 24.746792811529009 ], [ -77.854619505536462, 24.747659335221979 ], [ -77.857432585421492, 24.744201298825928 ], [ -77.85757684193986, 24.744082466734667 ], [ -77.859831792228448, 24.742859221183735 ], [ -77.859890869526879, 24.740803621236537 ], [ -77.859919041742415, 24.740664849771672 ], [ -77.859992790688494, 24.740540820808846 ], [ -77.860104897206099, 24.740443675115646 ], [ -77.86024438752095, 24.740382921918162 ], [ -77.860397607435772, 24.740364508098963 ], [ -77.860549558865216, 24.740390236099039 ], [ -77.860685367896522, 24.740457587494575 ], [ -77.860791740693855, 24.740559969513193 ], [ -77.860858264753915, 24.740687360360749 ], [ -77.860878428151551, 24.740827290197217 ], [ -77.860835694527935, 24.742314615274051 ], [ -77.861945525150759, 24.741712531625996 ], [ -77.861969272155477, 24.741703896089142 ], [ -77.863659273124838, 24.738764067928852 ], [ -77.863751627573563, 24.738650907416822 ], [ -77.863877750860723, 24.73856934932974 ], [ -77.864025297197657, 24.73852737707017 ], [ -77.864179823841141, 24.738529099123618 ], [ -77.864326204803717, 24.738574346911047 ], [ -77.864450111430841, 24.73865869129536 ], [ -77.864539414938179, 24.738773876124103 ], [ -77.864585373638789, 24.738908626374954 ], [ -77.864583488654631, 24.739049751806199 ], [ -77.864533944343975, 24.739183438089796 ], [ -77.862427236887584, 24.742848170454543 ], [ -77.862334878454291, 24.742961330482487 ], [ -77.862208749888694, 24.743042887718879 ], [ -77.862061197571066, 24.743084858701923 ], [ -77.861906665070563, 24.743083134967659 ], [ -77.861760279262185, 24.743037885234774 ], [ -77.861636369542708, 24.742953538894021 ], [ -77.861623324384439, 24.742936713028687 ], [ -77.860791521142303, 24.743387962029828 ], [ -77.860778882708573, 24.743450218387178 ], [ -77.860705133178854, 24.743574247780096 ], [ -77.860593024627804, 24.743671394099252 ], [ -77.860453531014272, 24.743732147914848 ], [ -77.860300307031736, 24.743750562156404 ], [ -77.860165264793125, 24.74372769791394 ], [ -77.858166552492037, 24.744811944600642 ], [ -77.855426156332044, 24.748180660357896 ], [ -77.856892343698888, 24.749128209579599 ], [ -77.868410742958616, 24.740579608248591 ], [ -77.868544440138521, 24.740508821834993 ], [ -77.868695545358122, 24.740479230927409 ], [ -77.868849267522307, 24.740493732048179 ], [ -77.868990559391236, 24.740550905727112 ], [ -77.869105590449195, 24.740645155448881 ], [ -77.869183100687124, 24.740767255462639 ], [ -77.869215502798482, 24.740905253836605 ], [ -77.869199624902237, 24.741045642370285 ], [ -77.869137021080832, 24.741174678855344 ], [ -77.869033819315675, 24.741279732258828 ], [ -77.867342568100909, 24.742535054886464 ], [ -77.867816913167829, 24.742398304908303 ], [ -77.867964286027529, 24.742377381049316 ], [ -77.86811177971461, 24.742397582270879 ], [ -77.868245947864708, 24.742457066901977 ], [ -77.868354558917048, 24.742550411970839 ], [ -77.868427711189668, 24.742669107584057 ], [ -77.869212938825967, 24.744567914530883 ], [ -77.869244251330855, 24.744706122655366 ], [ -77.869227264736537, 24.744846402900095 ], [ -77.869163641652804, 24.744975023655744 ], [ -77.869059609835077, 24.74507939458303 ], [ -77.868925352612322, 24.745149299059481 ], [ -77.868774012083463, 24.745177894279934 ], [ -77.868620402651672, 24.745162381103956 ], [ -77.868479560834828, 24.74510427807088 ], [ -77.868365273326546, 24.745009272753986 ], [ -77.868288727414608, 24.74488666500454 ], [ -77.867668627418709, 24.743387143534079 ], [ -77.866671477487401, 24.743674609426083 ], [ -77.861696778572707, 24.749293933290968 ], [ -77.861582005495364, 24.749388454145656 ], [ -77.861440864674464, 24.749445960553185 ], [ -77.861287172050183, 24.749460823323755 ], [ -77.861135972277552, 24.749431587557208 ], [ -77.861002065993461, 24.749361115069746 ], [ -77.86089856097, 24.749256304253421 ], [ -77.860835588999308, 24.749127414792856 ], [ -77.860819314123347, 24.748987063348444 ], [ -77.860851329290284, 24.748848988526067 ], [ -77.860928500482814, 24.748726706035676 ], [ -77.864623027204956, 24.744553532214535 ], [ -77.857729705207944, 24.749669355465461 ], [ -77.861617037216973, 24.752181418678269 ], [ -77.866547671400426, 24.747732884561294 ], [ -77.866673249357987, 24.747650616546217 ], [ -77.86682051932226, 24.747607812586754 ], [ -77.866975065602077, 24.747608662580326 ], [ -77.867121760287759, 24.747653083310333 ], [ -77.867246244016471, 24.747736726597008 ], [ -77.867336331514963, 24.747851404915846 ], [ -77.867383204355662, 24.747985892825358 ], [ -77.867382274179349, 24.748127025764298 ], [ -77.867333631881124, 24.748260988670594 ], [ -77.867242038773014, 24.748374668290818 ], [ -77.862436129902918, 24.752710703724432 ], [ -77.865683057905329, 24.754808725161666 ], [ -77.867373999876577, 24.751639538793498 ], [ -77.86746170993483, 24.75152473463098 ], [ -77.871497047026381, 24.747685669658821 ], [ -77.871527392170648, 24.74766465576251 ], [ -77.871553675070388, 24.747639487872586 ], [ -77.871588583865474, 24.747622280709749 ], [ -77.871620192853968, 24.747600391566426 ], [ -77.871656163575807, 24.747588969439505 ], [ -77.871689676524269, 24.747572450279563 ], [ -77.871728699395078, 24.747565936416223 ], [ -77.87176616827665, 24.747554038531366 ], [ -77.871804243535934, 24.747553326237043 ], [ -77.871841706074321, 24.747547072801144 ], [ -77.871881023224503, 24.74755188984874 ], [ -77.871920684316379, 24.747551147856765 ], [ -77.871957137079207, 24.747561215113837 ], [ -77.871994882150105, 24.747565839523492 ], [ -77.872030644983752, 24.747581515955687 ], [ -77.872068616022645, 24.747592002484911 ], [ -77.872099878075105, 24.747611863845613 ], [ -77.872134210965513, 24.747626913433972 ], [ -77.872162918798963, 24.747651914743287 ], [ -77.872195482948513, 24.747672603307439 ], [ -77.872218494164287, 24.747700314618111 ], [ -77.872246054155511, 24.747724316238877 ], [ -77.872264896876629, 24.747756195141132 ], [ -77.872288866544451, 24.747785060615485 ], [ -77.872301374423245, 24.74781790931856 ], [ -77.872319463752405, 24.747848513542841 ], [ -77.87232659688982, 24.747884149527664 ], [ -77.872339625746122, 24.747918366375995 ], [ -77.872340405904907, 24.747953137027178 ], [ -77.872347253840303, 24.747987348115199 ], [ -77.872341979118687, 24.748023252896523 ], [ -77.87234279177585, 24.748059471747251 ], [ -77.872331767809413, 24.748092760759938 ], [ -77.872326703990581, 24.748127229898945 ], [ -77.869263846908495, 24.75748452520979 ], [ -77.868594673411664, 24.760004143714873 ], [ -77.873816042566801, 24.761929301569268 ], [ -77.873936746310065, 24.76199320454489 ], [ -77.874033069180228, 24.762085374196595 ], [ -77.874097328201145, 24.762198458867303 ], [ -77.874124397835487, 24.762323438655464 ], [ -77.874112118830013, 24.762450344852354 ], [ -77.872063549068997, 24.77044585706366 ], [ -77.876783022583425, 24.771997129824413 ], [ -77.88093058266918, 24.771300353373462 ], [ -77.881097622397888, 24.771298507263324 ], [ -77.881255787662951, 24.771347591667524 ], [ -77.881673114138522, 24.771554524449105 ], [ -77.88177713701549, 24.771584719414196 ], [ -77.881902766420694, 24.771666949720213 ], [ -77.881904711819558, 24.771669362126538 ], [ -77.882734965186884, 24.772081038233431 ], [ -77.879086505017753, 24.76605160043108 ], [ -77.879079116111441, 24.766032982898221 ], [ -77.879067329704355, 24.766016360261371 ], [ -77.879062313835519, 24.76599917188134 ], [ -77.879053038548591, 24.765983529266961 ], [ -77.879046377413161, 24.765950492422274 ], [ -77.879033843084017, 24.765918910105526 ], [ -77.879033116684738, 24.76589911896399 ], [ -77.879027532870595, 24.765879984303801 ], [ -77.87902857967994, 24.765862221931464 ], [ -77.879025052401531, 24.765844727852944 ], [ -77.879029898165427, 24.765811428475182 ], [ -77.879028665925716, 24.765777855283666 ], [ -77.879034673117161, 24.765758827832734 ], [ -77.879035838458819, 24.765739054188224 ], [ -77.879042845457462, 24.765722456530852 ], [ -77.879045411443101, 24.765704823433843 ], [ -77.879061289731439, 24.765674521099765 ], [ -77.879071480163574, 24.765642243413176 ], [ -77.879083632898826, 24.765625842190506 ], [ -77.879091433302435, 24.765607365142827 ], [ -77.879103714578889, 24.765593556891638 ], [ -77.87911212263289, 24.765577510824254 ], [ -77.879137479138592, 24.765553171728804 ], [ -77.8791580947005, 24.765525349103253 ], [ -77.879175203372256, 24.765513179567566 ], [ -77.879188875263949, 24.765497807772068 ], [ -77.879205228632713, 24.765488140567495 ], [ -77.879218655704179, 24.765475252223382 ], [ -77.879251008345761, 24.765459258831399 ], [ -77.879280031029268, 24.765438614723148 ], [ -77.879300420921822, 24.765431868103693 ], [ -77.879318625997811, 24.76542110624851 ], [ -77.879337450680879, 24.765416526375187 ], [ -77.879354582434289, 24.765408057345724 ], [ -77.879390764323077, 24.765401975185885 ], [ -77.879425353195728, 24.765390530366318 ], [ -77.879447028417715, 24.765389867060968 ], [ -77.879467984648159, 24.765384768581416 ], [ -77.879487437969004, 24.765385724342767 ], [ -77.879506597440582, 24.765382503627162 ], [ -77.879543066872756, 24.765386928053463 ], [ -77.879579836164268, 24.765385802808474 ], [ -77.879600675015269, 24.765391287742666 ], [ -77.87962233107811, 24.765392351707352 ], [ -77.879640508830036, 24.765398749545145 ], [ -77.879659820576222, 24.765401092405259 ], [ -77.879693007707445, 24.765415590323805 ], [ -77.879728358221172, 24.765424894796979 ], [ -77.879746320870396, 24.765435991069907 ], [ -77.879766556941433, 24.765443113330527 ], [ -77.880262779745635, 24.765705546062627 ], [ -77.88008709570272, 24.764659775336725 ], [ -77.880089219209921, 24.764511361861121 ], [ -77.880143980604842, 24.764371611561323 ], [ -77.880245451064567, 24.764255654282177 ], [ -77.88121340595788, 24.763462479809139 ], [ -77.881211535738217, 24.763434484416329 ], [ -77.881250260664459, 24.763297851810655 ], [ -77.881333330611895, 24.763178833114107 ], [ -77.881452614034885, 24.763089078647969 ], [ -77.881596434655549, 24.763037374132704 ], [ -77.881742078073003, 24.763029261758682 ], [ -77.882301305283804, 24.762571000460085 ], [ -77.882433055774271, 24.762493528960523 ], [ -77.88258475019984, 24.762457631447091 ], [ -77.882741125711206, 24.762466919758513 ], [ -77.882886448493082, 24.762520459330858 ], [ -77.883043248210953, 24.762606822930191 ], [ -77.885642977043616, 24.760312370783531 ], [ -77.885754654685002, 24.760238293896244 ], [ -77.885884417878898, 24.760195321794434 ], [ -77.891527636580122, 24.759109005568138 ], [ -77.894387739611645, 24.757732165131227 ], [ -77.894434259816677, 24.757532589951616 ], [ -77.894489688723624, 24.757400845455145 ], [ -77.894586988658816, 24.757291189572278 ], [ -77.894716635178767, 24.757214356118723 ], [ -77.89486593762841, 24.757177866017955 ], [ -77.895020281371828, 24.757185291127602 ], [ -77.895164558325746, 24.757235904619396 ], [ -77.895264690954448, 24.757309988431221 ], [ -77.896694387931376, 24.75662169575368 ], [ -77.896705960262082, 24.756541542049984 ], [ -77.896749883518794, 24.756406228822371 ], [ -77.896837448279982, 24.756289932385275 ], [ -77.896960083025903, 24.756204036583465 ], [ -77.897105783438704, 24.756156949424568 ], [ -77.897159169650209, 24.756155681560916 ], [ -77.90149495668858, 24.75085834090557 ], [ -77.901593200277901, 24.750768237531936 ], [ -77.901715075635764, 24.750706749438383 ], [ -77.901718870934658, 24.750705431675531 ], [ -77.902183290664794, 24.748485483117726 ], [ -77.900682268407692, 24.747164860848777 ], [ -77.896307823188977, 24.751697895090256 ], [ -77.89618875884986, 24.751787877476598 ], [ -77.896045071984446, 24.751839857230642 ], [ -77.895890827767829, 24.75184874615314 ], [ -77.895741124852279, 24.751813674111339 ], [ -77.895610617347231, 24.75173807422248 ], [ -77.895512080317616, 24.751629346788203 ], [ -77.895455159240527, 24.751498134879313 ], [ -77.89544542584396, 24.751357282490446 ], [ -77.895483832746976, 24.751220577257868 ], [ -77.89556662026925, 24.751101400820794 ], [ -77.896507080101927, 24.750126888889486 ], [ -77.896435143183794, 24.750066436630938 ], [ -77.896359325001526, 24.749943454157357 ], [ -77.895674045159154, 24.748258793181847 ], [ -77.895643969778689, 24.748128006160549 ], [ -77.895657175615895, 24.747994911701134 ], [ -77.895712503473334, 24.747871191375129 ], [ -77.895805097174275, 24.747767703960928 ], [ -77.899060199878704, 24.745069402441494 ], [ -77.899183458392955, 24.74499457397788 ], [ -77.89932545846122, 24.744956452558416 ], [ -77.899473450688205, 24.744958460877957 ], [ -77.899614147701243, 24.745000418608367 ], [ -77.899734917111118, 24.745078558593043 ], [ -77.900929404171308, 24.746129526209142 ], [ -77.90098940684598, 24.746164283294863 ], [ -77.901070083465257, 24.746253300752205 ], [ -77.902824721941897, 24.747797058826492 ], [ -77.905421146520908, 24.746773835369591 ], [ -77.905566395243326, 24.746739275080909 ], [ -77.905716304378771, 24.746746148456431 ], [ -77.905857032026404, 24.746793820827879 ], [ -77.905975584043318, 24.746877890340098 ], [ -77.906061013831945, 24.746990594390152 ], [ -77.90705364278729, 24.748853030767119 ], [ -77.910266835963881, 24.747737194262832 ], [ -77.910409546079791, 24.747708735533784 ], [ -77.910555130537432, 24.747719636713256 ], [ -77.910690858132597, 24.747768944492556 ], [ -77.910804859614515, 24.747852346946484 ], [ -77.910887165613829, 24.74796255059946 ], [ -77.911916537113015, 24.749907718618108 ], [ -77.911961187670485, 24.750042831030402 ], [ -77.911957931883961, 24.750183930576714 ], [ -77.9119275557061, 24.750263554837741 ], [ -77.913351892610663, 24.749980303201959 ], [ -77.913368133914204, 24.749611218323682 ], [ -77.913398419713374, 24.749472824021243 ], [ -77.913474054528919, 24.749349749628109 ], [ -77.913587634602919, 24.749254042470618 ], [ -77.913728041923235, 24.749195070960695 ], [ -77.913881532533182, 24.749178607577626 ], [ -77.914033081851358, 24.749206263841703 ], [ -77.914167855325459, 24.749275332578932 ], [ -77.914272660483974, 24.749379052912808 ], [ -77.914337238270932, 24.749507272045918 ], [ -77.914355267272512, 24.749647439059093 ], [ -77.91434934996461, 24.749781934567622 ], [ -77.914991601363567, 24.749654203492643 ], [ -77.914996267417195, 24.74958665514605 ], [ -77.915030005549823, 24.749448928565212 ], [ -77.915108697763628, 24.749327463435375 ], [ -77.915224641027109, 24.749234149554812 ], [ -77.91536648600983, 24.749178121064485 ], [ -77.91552034803253, 24.74916486236209 ], [ -77.915671166159541, 24.749195671274446 ], [ -77.915804177410365, 24.749267532027584 ], [ -77.915906361806393, 24.749373410445216 ], [ -77.915949156972658, 24.74946375916516 ], [ -77.917368598821412, 24.749181440068238 ], [ -77.917522889814506, 24.749173346832155 ], [ -77.917672367985503, 24.749209189446109 ], [ -77.917802401513939, 24.749285459407414 ], [ -77.917900261891617, 24.749394690939067 ], [ -77.917956369847388, 24.749526191769693 ], [ -77.917965233038771, 24.749667089740171 ], [ -77.917925983720849, 24.749803592797853 ], [ -77.917842463745927, 24.749922339050283 ], [ -77.917722848551492, 24.75001170472872 ], [ -77.917578846921757, 24.75006294202587 ], [ -77.915930619838946, 24.750390765080539 ], [ -77.915668165789342, 24.754190598058273 ], [ -77.915654964014252, 24.754244490747986 ], [ -77.915645852919297, 24.75429908500152 ], [ -77.915638166557073, 24.754313061787471 ], [ -77.915634427671478, 24.754328324760426 ], [ -77.915603634480959, 24.754375854448465 ], [ -77.915576494335369, 24.754425205678029 ], [ -77.915564454346452, 24.754436329437159 ], [ -77.915555733380913, 24.75444979033934 ], [ -77.915510362987149, 24.754486304469886 ], [ -77.915467850420256, 24.754525581811542 ], [ -77.915452635358236, 24.754532763665619 ], [ -77.91543978597376, 24.754543104842931 ], [ -77.915384279542607, 24.754565029131527 ], [ -77.915330555979708, 24.754590387816297 ], [ -77.915313655207342, 24.754592924748032 ], [ -77.915297935194118, 24.754599133925563 ], [ -77.915237726114597, 24.754604322245616 ], [ -77.915178050427997, 24.754613279963102 ], [ -77.915161118325571, 24.754610923635354 ], [ -77.915144066480579, 24.754612393008937 ], [ -77.915085048494376, 24.754600337479229 ], [ -77.915025262214684, 24.754592017372886 ], [ -77.915009956231927, 24.754584998439494 ], [ -77.914993241726052, 24.754581584174232 ], [ -77.914941191985051, 24.754553464878995 ], [ -77.914887147469088, 24.754528681383373 ], [ -77.913416637847519, 24.753564997077078 ], [ -77.913302278377188, 24.753460184271415 ], [ -77.913231208885833, 24.753327220468371 ], [ -77.913211075268919, 24.753180410616569 ], [ -77.913310904145035, 24.750911771632623 ], [ -77.909315838211228, 24.751706211747873 ], [ -77.913286292703404, 24.760914023063219 ], [ -77.91331972781407, 24.761051811875003 ], [ -77.913304895627945, 24.761192291081993 ], [ -77.913243247865708, 24.761321709601287 ], [ -77.913140818921264, 24.76142739900466 ], [ -77.913007635218634, 24.761499013608574 ], [ -77.912856733768905, 24.76152954320791 ], [ -77.912702885992985, 24.761515999309871 ], [ -77.91256115174015, 24.761459707684939 ], [ -77.912445405065171, 24.761366178591395 ], [ -77.91236697609375, 24.761244567376927 ], [ -77.909625910474375, 24.754887885819755 ], [ -77.91073117266636, 24.762893449728189 ], [ -77.911935655530868, 24.76250940783731 ], [ -77.912087751775459, 24.762484297101373 ], [ -77.912240902052915, 24.762503331115347 ], [ -77.912380115102494, 24.762564646702351 ], [ -77.912491763890969, 24.762662241911826 ], [ -77.912564919479635, 24.762786563514599 ], [ -77.912592420816253, 24.762925442112838 ], [ -77.912571575736919, 24.763065283339941 ], [ -77.912504424547748, 24.763192398557251 ], [ -77.91239754036495, 24.763294344795337 ], [ -77.912261385734439, 24.763361142776176 ], [ -77.901962693380568, 24.766644448687533 ], [ -77.902093352452965, 24.766746070463647 ], [ -77.90219389118127, 24.766853267329758 ], [ -77.902253229761499, 24.766983584856199 ], [ -77.902265559620389, 24.767124266715715 ], [ -77.902229673672977, 24.767261542013092 ], [ -77.902149084538635, 24.767381973266666 ], [ -77.902031680757716, 24.767473771769939 ], [ -77.901888954638906, 24.767527951573811 ], [ -77.901734877308741, 24.767539209121384 ], [ -77.901584531082349, 24.767506442420068 ], [ -77.901452633043036, 24.767432858922003 ], [ -77.900881903797284, 24.766988963465824 ], [ -77.899622885229633, 24.767390279004985 ], [ -77.901386661934666, 24.769971708237208 ], [ -77.901850223894343, 24.768663792801679 ], [ -77.901923688432205, 24.768533669564455 ], [ -77.902038922147668, 24.768431879209558 ], [ -77.90218378817913, 24.768369142602392 ], [ -77.90234302878622, 24.768352067328326 ], [ -77.902499872312887, 24.76838245178595 ], [ -77.902637799573483, 24.768457095786822 ], [ -77.902742283647356, 24.768568137604227 ], [ -77.90450308933319, 24.771209333906064 ], [ -77.904562829535251, 24.771343867083594 ], [ -77.904572674404008, 24.771488758451518 ], [ -77.904531604145092, 24.771629001719841 ], [ -77.904443872225158, 24.771750071949857 ], [ -77.904318564905907, 24.771839429903576 ], [ -77.904168660218446, 24.771887820751395 ], [ -77.904009683826118, 24.771890232620944 ], [ -77.901847416633814, 24.771601933617276 ], [ -77.901512647289039, 24.77254645492539 ], [ -77.901851324378441, 24.773323412602192 ], [ -77.901885312870689, 24.773461090195593 ], [ -77.901871039914226, 24.773601618804275 ], [ -77.90180990248821, 24.773731242509992 ], [ -77.901707885030547, 24.773837272799824 ], [ -77.901574973684944, 24.773909330622004 ], [ -77.901424178801363, 24.773940362385957 ], [ -77.901270261368779, 24.773927330443126 ], [ -77.90112828805519, 24.773871510449798 ], [ -77.901012156317009, 24.773778366497293 ], [ -77.900933233973745, 24.773657016232907 ], [ -77.900528728208457, 24.772729024953225 ], [ -77.900493978093039, 24.772577060046778 ], [ -77.900517712114052, 24.772423338220339 ], [ -77.900988880439115, 24.771094008130479 ], [ -77.898666565601786, 24.767695099897168 ], [ -77.894531945692847, 24.769012899152909 ], [ -77.898958720989484, 24.775729138194386 ], [ -77.902408268241828, 24.774726026132036 ], [ -77.902563636013966, 24.77470477687195 ], [ -77.902718455733819, 24.774729133287121 ], [ -77.90842671560101, 24.7765158699377 ], [ -77.922423815905603, 24.77294859733064 ], [ -77.924342005425899, 24.761855688109673 ], [ -77.924394718293399, 24.761712672066452 ], [ -77.924496138913398, 24.761593532917434 ], [ -77.924634917501194, 24.761511603137588 ], [ -77.924795523764971, 24.761476051191071 ], [ -77.924959984834132, 24.761490855549315 ], [ -77.925109896486859, 24.761554359494454 ], [ -77.93007735614114, 24.764673464880882 ], [ -77.936346448551319, 24.764118266808218 ], [ -77.936490848833515, 24.764124884518832 ], [ -77.936626966600954, 24.764169391498186 ], [ -77.936743142867201, 24.764247975552458 ], [ -77.93682942666652, 24.764353905658673 ], [ -77.936878427381558, 24.764478108489346 ], [ -77.936885947791097, 24.764609945563762 ], [ -77.936648010798038, 24.766894228075007 ], [ -77.936604559416509, 24.767040942978024 ], [ -77.936510207782945, 24.767166153301059 ], [ -77.936375667211109, 24.767255644290877 ], [ -77.929523367536703, 24.770357710028573 ], [ -77.92625433482354, 24.780141559855739 ], [ -77.926174559578627, 24.780283556105669 ], [ -77.926045619166146, 24.780391305335801 ], [ -77.925883652246398, 24.780451321148242 ], [ -77.922349165030013, 24.781131391550662 ], [ -77.922159228922212, 24.787707487233458 ], [ -77.922126260255453, 24.78785801361127 ], [ -77.922039906789323, 24.787989730841268 ], [ -77.921910168890179, 24.788087384857267 ], [ -77.921752071348138, 24.788139666386815 ], [ -77.909752079372268, 24.790093610093937 ], [ -77.913920384672451, 24.802435873000753 ], [ -77.913999702421521, 24.802509843322159 ], [ -77.91406841420654, 24.802636270399329 ], [ -77.914090962781799, 24.802775891258893 ], [ -77.914071201208543, 24.802882380961709 ], [ -77.918097588170355, 24.814801455140842 ], [ -77.918119530339098, 24.814933287514954 ], [ -77.918157208214609, 24.829172100286453 ], [ -77.921725889880307, 24.853766872045416 ], [ -77.929787162469779, 24.871429765218807 ], [ -77.929821137525565, 24.871545757507892 ], [ -77.933030254512417, 24.894352757992781 ], [ -77.933039308175196, 24.894352108488778 ], [ -77.933193554765353, 24.894363188049333 ], [ -77.933336498417205, 24.894417201005346 ], [ -77.93345414693313, 24.894508860232346 ], [ -77.933534984097108, 24.894629193554497 ], [ -77.933571096946636, 24.894766421977696 ], [ -77.933560459332398, 24.894889634761192 ], [ -77.933613740098806, 24.894859086695924 ], [ -77.933763768335822, 24.894824579709514 ], [ -77.933918144367212, 24.89483404812848 ], [ -77.9340617569502, 24.894886565113193 ], [ -77.934180548409799, 24.894976989973859 ], [ -77.93426289065421, 24.895096471362429 ], [ -77.934300723396589, 24.895233313678414 ], [ -77.934290343172904, 24.895374121888945 ], [ -77.934134105810315, 24.895998998253035 ], [ -77.934154140029932, 24.896000016185038 ], [ -77.934305378395308, 24.896029811687477 ], [ -77.934439120153087, 24.896100776098994 ], [ -77.934542273820099, 24.896205962983174 ], [ -77.934604741994946, 24.89633507598711 ], [ -77.934620409762601, 24.896475476692682 ], [ -77.934587743301165, 24.8966134217291 ], [ -77.934509940080929, 24.89673540805893 ], [ -77.934394615931197, 24.896829494755696 ], [ -77.934253059585046, 24.896886471885733 ], [ -77.93409912765874, 24.896900762068302 ], [ -77.933383765443352, 24.896864413543941 ], [ -77.933444086374308, 24.897292972624403 ], [ -77.93420751742876, 24.897220558676519 ], [ -77.93436202402755, 24.897228098793992 ], [ -77.934506414027879, 24.89727881780146 ], [ -77.934626553658418, 24.897367751006026 ], [ -77.934710682863141, 24.897486193072545 ], [ -77.934750566439206, 24.89762255013709 ], [ -77.934742300175131, 24.897763474668086 ], [ -77.934686693071527, 24.897895171997391 ], [ -77.934589188211206, 24.898004750635895 ], [ -77.934520549962883, 24.898045309183516 ], [ -77.934557223383507, 24.898073906923333 ], [ -77.934638002240959, 24.898194273929136 ], [ -77.934674047035244, 24.898331517288508 ], [ -77.934661829317008, 24.898472202710316 ], [ -77.934602544882978, 24.898602558928381 ], [ -77.934501996783666, 24.898709825727767 ], [ -77.934370027327375, 24.898783503018816 ], [ -77.934219554661723, 24.898816378685073 ], [ -77.933664090804783, 24.898855991508245 ], [ -77.933677637322049, 24.898952230758727 ], [ -77.934300894974953, 24.900412364533484 ], [ -77.936183183857395, 24.900502653370751 ], [ -77.936198726772162, 24.900505669237305 ], [ -77.936214604315055, 24.900505078462214 ], [ -77.93624262750734, 24.90051224542032 ], [ -77.936271646617527, 24.90051427203899 ], [ -77.93630220478714, 24.900525747528455 ], [ -77.936334528418641, 24.900532019407414 ], [ -77.936348288818564, 24.900539268344829 ], [ -77.936363589426435, 24.900543181474298 ], [ -77.936387812862776, 24.900557895826722 ], [ -77.936414725060928, 24.900568002118174 ], [ -77.936439899644924, 24.900587528596684 ], [ -77.936468516308366, 24.90060260373123 ], [ -77.93647914724103, 24.900613376168234 ], [ -77.93649237319751, 24.900621410161047 ], [ -77.936510425736785, 24.900642231575365 ], [ -77.936532596690256, 24.900659428273705 ], [ -77.936549923437781, 24.90068509436799 ], [ -77.936572031951172, 24.9007074971111 ], [ -77.936578492789067, 24.900720738574194 ], [ -77.936588349451114, 24.90073210701355 ], [ -77.938750990161225, 24.904241679819524 ], [ -77.945383848385347, 24.908968497529241 ], [ -77.947626737674142, 24.909219221794224 ], [ -77.953149143460834, 24.905655777346013 ], [ -77.953071204906095, 24.905585007987607 ], [ -77.953000652312227, 24.905459407214025 ], [ -77.952976109270736, 24.90532006968353 ], [ -77.952999978080314, 24.905180634760537 ], [ -77.953069922140088, 24.905054751299023 ], [ -77.953179094731709, 24.904954741600584 ], [ -77.953224496629062, 24.90493352783362 ], [ -77.953349196668441, 24.903116052667059 ], [ -77.953291231523522, 24.903015679713747 ], [ -77.953264958263375, 24.902876604942026 ], [ -77.953287091569379, 24.902736932135163 ], [ -77.953355464723174, 24.902610333434499 ], [ -77.953385848331649, 24.902581860865858 ], [ -77.953487077718762, 24.90110645489796 ], [ -77.944153803695002, 24.89792468479019 ], [ -77.94401913092824, 24.897855199490806 ], [ -77.943914591398837, 24.897751157283242 ], [ -77.943850418166392, 24.897622742615738 ], [ -77.943832892862318, 24.897482525673848 ], [ -77.943863730835048, 24.897344231898934 ], [ -77.943939913297186, 24.897221398434869 ], [ -77.944053982883418, 24.897126049023523 ], [ -77.944194773665771, 24.89706751705755 ], [ -77.944348504153211, 24.897051531990439 ], [ -77.944500126284964, 24.897079658521761 ], [ -77.948002251165562, 24.898273646599705 ], [ -77.946003137225404, 24.897263470347028 ], [ -77.945879132281092, 24.897174584409441 ], [ -77.945792114854939, 24.897054609552235 ], [ -77.945750935091212, 24.896915748013043 ], [ -77.945585215262327, 24.895467895170185 ], [ -77.943765271565937, 24.895781395716753 ], [ -77.943499130545248, 24.897181594611254 ], [ -77.94345142644373, 24.897311230113253 ], [ -77.943363325103689, 24.897421870759814 ], [ -77.9432429231301, 24.897503348429307 ], [ -77.943101285697551, 24.897548175119052 ], [ -77.942951429631819, 24.897552231129286 ], [ -77.939541880126427, 24.897169327948699 ], [ -77.939393162030413, 24.897130380921784 ], [ -77.93926491808017, 24.897051423359944 ], [ -77.939169701760974, 24.896940184239938 ], [ -77.939116833486665, 24.896807552494352 ], [ -77.939111488261275, 24.896666511099291 ], [ -77.939154189156099, 24.896530866188598 ], [ -77.939240756167592, 24.896413895605814 ], [ -77.939362715439657, 24.896327049186091 ], [ -77.939508128771891, 24.896278827989629 ], [ -77.939662762205174, 24.896273952186355 ], [ -77.942605011944167, 24.896604382924462 ], [ -77.942849311177454, 24.895319144865628 ], [ -77.942896742664104, 24.895189992786847 ], [ -77.942984278413263, 24.89507964271073 ], [ -77.943103936772928, 24.894998156406615 ], [ -77.943244807205403, 24.894952963808958 ], [ -77.945482167099499, 24.894567563436457 ], [ -77.945442463526135, 24.894220668098541 ], [ -77.945451889703008, 24.894074666932838 ], [ -77.945512034286821, 24.893939091287518 ], [ -77.945616574047051, 24.893828194394665 ], [ -77.945754518514732, 24.893753634939038 ], [ -77.94591136544534, 24.893723251393574 ], [ -77.947648599512419, 24.893649615403007 ], [ -77.947802375167328, 24.893665196962523 ], [ -77.94794334573379, 24.893723359087296 ], [ -77.948057712146934, 24.893818408507077 ], [ -77.948134279455942, 24.893941041191791 ], [ -77.948165552652199, 24.894079253068366 ], [ -77.948148470358547, 24.894219515036855 ], [ -77.948084704551178, 24.894348097277106 ], [ -77.947980496955225, 24.89445241321982 ], [ -77.947846048105689, 24.894522251624302 ], [ -77.947694518859649, 24.894550776152407 ], [ -77.946480570170436, 24.894602234633254 ], [ -77.946707902720988, 24.896588270362926 ], [ -77.949276235771322, 24.897886064527203 ], [ -77.949206766138317, 24.89591138864585 ], [ -77.949226056927174, 24.895771365225613 ], [ -77.949291842778237, 24.895643632249342 ], [ -77.949397684000829, 24.895540693065353 ], [ -77.949533220092576, 24.8954726240082 ], [ -77.949685183907519, 24.895446088083631 ], [ -77.94983870030967, 24.895463682773052 ], [ -77.949978742201111, 24.895523685789129 ], [ -77.950091601418976, 24.895620223664004 ], [ -77.950166230542763, 24.89574384666782 ], [ -77.950195324282831, 24.895882453787483 ], [ -77.950292750593505, 24.898651126928332 ], [ -77.950275197809418, 24.898785549010718 ], [ -77.950214705353076, 24.898909167071 ], [ -77.95012858963544, 24.898998531188326 ], [ -77.95384057438747, 24.900263877981679 ], [ -77.960517143382518, 24.892626083218527 ], [ -77.960618394734837, 24.892538921311655 ], [ -77.9607422685649, 24.892480955771784 ], [ -77.960878946401323, 24.89245678103455 ], [ -77.962608580427329, 24.892377348932378 ], [ -77.962594473938836, 24.891336068329515 ], [ -77.954338783751609, 24.886272897520655 ], [ -77.954189363670281, 24.88626009995998 ], [ -77.954047337908065, 24.886204133958074 ], [ -77.953931223088503, 24.886110873079978 ], [ -77.953852385374987, 24.885989446418836 ], [ -77.953848078360423, 24.88597192156104 ], [ -77.952006624730359, 24.884842430218864 ], [ -77.95189959049759, 24.884753473098744 ], [ -77.951825394080529, 24.884640047863694 ], [ -77.951790397508717, 24.884511880382846 ], [ -77.951702331420918, 24.883687734456682 ], [ -77.951679444379451, 24.883653608161168 ], [ -77.951643441190825, 24.883516358245203 ], [ -77.951481089675397, 24.881616348139776 ], [ -77.951493120400983, 24.88147651687186 ], [ -77.951551655504502, 24.881346817046055 ], [ -77.951651034929583, 24.881239789689545 ], [ -77.951781649339779, 24.881165783532758 ], [ -77.951930869289768, 24.881131954384632 ], [ -77.95208426638375, 24.881141573241898 ], [ -77.952227008351343, 24.88119371002368 ], [ -77.952345293165678, 24.881283323505588 ], [ -77.952427683556323, 24.881401748756559 ], [ -77.952466212896837, 24.881537534952241 ], [ -77.952752071494075, 24.884212554490016 ], [ -77.954033149668305, 24.884998329120698 ], [ -77.954458192589428, 24.883484323474867 ], [ -77.954427236424067, 24.88343779719867 ], [ -77.954391764851394, 24.883300432455457 ], [ -77.954404563219555, 24.883159791931714 ], [ -77.95446437857666, 24.883029642504489 ], [ -77.954565355656641, 24.882922724066102 ], [ -77.954625147429766, 24.882889620856815 ], [ -77.956268422018468, 24.877035930950129 ], [ -77.956280534385627, 24.877010336527093 ], [ -77.95628708588518, 24.876983175219561 ], [ -77.956310918301568, 24.876946132781551 ], [ -77.956329649299576, 24.876906552590505 ], [ -77.956349902936267, 24.876885539382187 ], [ -77.956365391495737, 24.876861465662955 ], [ -77.956400521710606, 24.876833022213031 ], [ -77.956431652661038, 24.876800723706076 ], [ -77.956458123140791, 24.876786384726472 ], [ -77.956481092663822, 24.876767787242258 ], [ -77.959663322752775, 24.874911875947827 ], [ -77.959790657494281, 24.874859037057234 ], [ -77.95992911817531, 24.874840847078957 ], [ -77.960067621928161, 24.874858761990225 ], [ -77.960195082444329, 24.874911347810173 ], [ -77.962389355104875, 24.876184949694913 ], [ -77.962371927232226, 24.874896764174981 ], [ -77.962295037733583, 24.874820971537126 ], [ -77.962230191483755, 24.874692845280986 ], [ -77.962211920242524, 24.874552709512255 ], [ -77.962242012376535, 24.87441428172724 ], [ -77.962317522106005, 24.874291112188427 ], [ -77.962363212180549, 24.874252537546539 ], [ -77.962341482668052, 24.872646117670335 ], [ -77.962365414298887, 24.872501814010043 ], [ -77.962438599410376, 24.872372034982778 ], [ -77.962553376066168, 24.872270367227276 ], [ -77.962697728173637, 24.872207454361394 ], [ -77.96285654346535, 24.872189882723426 ], [ -77.969227126688722, 24.87243283236101 ], [ -77.969224291146929, 24.872387102752089 ], [ -77.969406565939749, 24.870739279345202 ], [ -77.969441532406037, 24.870612330900908 ], [ -77.969514980517857, 24.870499886866842 ], [ -77.969620724962326, 24.870411416379529 ], [ -77.969749860744926, 24.870354369692535 ], [ -77.969891513101004, 24.870333550791784 ], [ -77.972398597481558, 24.870301235866911 ], [ -77.972392771998273, 24.870228011192157 ], [ -77.972404629884792, 24.870092003390766 ], [ -77.972460521367722, 24.869965452194592 ], [ -77.972555332529666, 24.869859936399553 ], [ -77.972680388559084, 24.869785110137208 ], [ -77.977096540654713, 24.867943825813498 ], [ -77.977320415899456, 24.867903320344734 ], [ -77.981233251266815, 24.868035895090735 ], [ -77.981268541367427, 24.868042226828784 ], [ -77.981304496100279, 24.868043051169092 ], [ -77.981343963256094, 24.868055758968051 ], [ -77.981385029707766, 24.868063127062676 ], [ -77.981416447935118, 24.868079097851265 ], [ -77.981450363719816, 24.868090018164562 ], [ -77.981483594886242, 24.868113230539969 ], [ -77.981520155728433, 24.868131815425397 ], [ -77.981544626673625, 24.86815586194399 ], [ -77.981573183625315, 24.868175809282729 ], [ -77.981596925924194, 24.86820725406281 ], [ -77.981625402349223, 24.868235236535966 ], [ -77.98164053063114, 24.868265004960946 ], [ -77.981660933405422, 24.868292026755885 ], [ -77.981672862768789, 24.868328625926974 ], [ -77.981690467301988, 24.868363266887382 ], [ -77.981694772041834, 24.86839584329439 ], [ -77.981705023459114, 24.86842729447957 ], [ -77.982366567499497, 24.872974172620111 ], [ -77.98481174231722, 24.871278598194984 ], [ -77.982067431497001, 24.868243355930097 ], [ -77.981988882977731, 24.868121782709402 ], [ -77.981955358161585, 24.867984015316232 ], [ -77.981970138554914, 24.867843539426296 ], [ -77.982031777191821, 24.867714105799397 ], [ -77.982134240333536, 24.867608384258936 ], [ -77.982267498138498, 24.867536723497263 ], [ -77.982418506466615, 24.867506138099788 ], [ -77.98257248370679, 24.867519621934942 ], [ -77.982714357651972, 24.867575855110044 ], [ -77.98283024081141, 24.867669333171939 ], [ -77.984831286613229, 24.86988252350455 ], [ -77.987167306190827, 24.869645085841906 ], [ -77.98723147003038, 24.869600589094965 ], [ -77.987369918645811, 24.869533127560999 ], [ -77.987524568264888, 24.869508654904664 ], [ -77.990138537198206, 24.869479195396249 ], [ -77.990291606741891, 24.869499546703192 ], [ -77.990430291188915, 24.869562054639406 ], [ -77.990541015248141, 24.869660600539987 ], [ -77.990612940497257, 24.869785538116151 ], [ -77.990639026315492, 24.869924637674274 ], [ -77.990616719097673, 24.870064283217985 ], [ -77.990548202273814, 24.870190805262379 ], [ -77.990440182639205, 24.870291818900814 ], [ -77.990303233888213, 24.870357436143962 ], [ -77.990150761595061, 24.870381233852072 ], [ -77.987780122590451, 24.870407954568645 ], [ -77.987659232354545, 24.870480559895384 ], [ -77.987561106516409, 24.870505147095319 ], [ -77.986229323687624, 24.871428707993353 ], [ -77.986239779623304, 24.871440271714381 ], [ -77.986318334525564, 24.871561842062125 ], [ -77.986351865491812, 24.871699607873786 ], [ -77.98633709014122, 24.871840083715274 ], [ -77.98627545462999, 24.871969518833438 ], [ -77.986172992151822, 24.872075243175271 ], [ -77.986039732412578, 24.872146907636917 ], [ -77.985888719866352, 24.872177497132299 ], [ -77.985734736809505, 24.872164017305099 ], [ -77.98559285633462, 24.872107787653729 ], [ -77.985476966810694, 24.872014312370069 ], [ -77.98544147030168, 24.871975054837961 ], [ -77.982516331481946, 24.874003454761031 ], [ -77.982776620059809, 24.875792281467582 ], [ -77.982775880509593, 24.875915867349622 ], [ -77.982738399497109, 24.876034631072077 ], [ -77.982666990777759, 24.87613965654209 ], [ -77.981157787901964, 24.877798918083716 ], [ -77.98311835136478, 24.87864587932312 ], [ -77.986232690727462, 24.877551754125243 ], [ -77.986401101981045, 24.877521696250483 ], [ -77.986570632489915, 24.87754595940503 ], [ -77.987855516256857, 24.877947477598973 ], [ -77.987999414016173, 24.877934888573861 ], [ -77.988150431590896, 24.877965485319198 ], [ -77.988283693440167, 24.87803715582238 ], [ -77.988345024009931, 24.87810044201154 ], [ -77.990849362558649, 24.878882981120395 ], [ -77.995934585373362, 24.878363984425601 ], [ -77.996074926577606, 24.878367958619826 ], [ -77.996208384679534, 24.878407759361085 ], [ -77.996324197726864, 24.878480177141917 ], [ -77.996413026614746, 24.878579372241486 ], [ -77.996467708173654, 24.878697345625884 ], [ -77.99815626058745, 24.88454469012007 ], [ -77.998171782106439, 24.884685097652657 ], [ -77.998138978833126, 24.884823008383531 ], [ -77.998061061629969, 24.884944922633512 ], [ -77.997945657483683, 24.885038906531879 ], [ -77.997804062957911, 24.885095760207577 ], [ -77.997650138406129, 24.885109918364318 ], [ -77.997498951187495, 24.885079995074403 ], [ -77.997365300710882, 24.885008919453902 ], [ -77.997262269708088, 24.884903648934284 ], [ -77.997199943569797, 24.884774488199721 ], [ -77.996201033143336, 24.881315321624523 ], [ -77.996208022150242, 24.883126229200528 ], [ -77.996198598507334, 24.88318176878991 ], [ -77.996193115188163, 24.883237746665291 ], [ -77.996186815031933, 24.883251216342526 ], [ -77.996184359478875, 24.883265688479675 ], [ -77.996156582407849, 24.883315853381291 ], [ -77.996132404321372, 24.883367545834666 ], [ -77.996121849503865, 24.88337858033734 ], [ -77.996114611529038, 24.883391651972492 ], [ -77.996071199996081, 24.883431531679978 ], [ -77.996030693817616, 24.88347387867428 ], [ -77.996016917511767, 24.883481397862035 ], [ -77.996005605609227, 24.883491789446275 ], [ -77.995950809024706, 24.883517480229248 ], [ -77.995897939772206, 24.883546336516563 ], [ -77.995882290502919, 24.883549604351781 ], [ -77.995868011961022, 24.883556298676449 ], [ -77.995807194222621, 24.883565285715427 ], [ -77.995747137136433, 24.883577826613493 ], [ -77.995731146775995, 24.883576523212639 ], [ -77.99571529928815, 24.883578864983775 ], [ -77.995654413715059, 24.883570268548812 ], [ -77.995593047658204, 24.883565266450759 ], [ -77.989554146664986, 24.882180799406022 ], [ -77.990034352620526, 24.883877144203158 ], [ -77.996280891481192, 24.885627622634829 ], [ -77.996419850189213, 24.885689653696392 ], [ -77.996530993841191, 24.885787818210829 ], [ -77.996603442943396, 24.885912507222042 ], [ -77.996630105597632, 24.886051515367939 ], [ -77.996608371734439, 24.886191235600709 ], [ -77.996540368659467, 24.886317991124937 ], [ -77.996432752877766, 24.88641937417972 ], [ -77.996296058550513, 24.886485460614782 ], [ -77.996143666346185, 24.886509781362289 ], [ -77.995990493618621, 24.886489955700014 ], [ -77.990324533539564, 24.884902190545144 ], [ -77.990665629555252, 24.88610706420349 ], [ -77.996394913515587, 24.887523379953972 ], [ -77.996435119714377, 24.887539833144135 ], [ -77.996477401481897, 24.88755115804026 ], [ -77.996505267547704, 24.887568539019075 ], [ -77.996536067954054, 24.8875811431367 ], [ -77.99656873247649, 24.887608124136001 ], [ -77.996605108305914, 24.887630812885604 ], [ -77.996625722347204, 24.887655197901843 ], [ -77.996650745380876, 24.887675866966443 ], [ -77.996672670809971, 24.887710734706502 ], [ -77.996699579997724, 24.887742566394476 ], [ -77.996710924167459, 24.887771568489459 ], [ -77.996727720402262, 24.887798279283988 ], [ -77.996736760510188, 24.887837620688618 ], [ -77.996751568985488, 24.887875479427283 ], [ -77.996752532815819, 24.887906259688108 ], [ -77.996759458101039, 24.887936397587588 ], [ -77.996754727942218, 24.887976361660712 ], [ -77.996755986112731, 24.888016541586722 ], [ -77.996746475223745, 24.888046087033686 ], [ -77.996742851631922, 24.888076701937443 ], [ -77.99672481418169, 24.888113376720096 ], [ -77.996712398843471, 24.888151944744624 ], [ -77.99599089047905, 24.889540208585505 ], [ -77.99605429303287, 24.889555923496381 ], [ -77.99619540585843, 24.889613775987804 ], [ -77.996310013127655, 24.889708572363741 ], [ -77.996386896314078, 24.889831033363706 ], [ -77.996418529489731, 24.889969171720541 ], [ -77.99640181604066, 24.890109465531406 ], [ -77.996338391837853, 24.890238181859814 ], [ -77.996234465167149, 24.89034272101139 ], [ -77.996100209063627, 24.890412849896343 ], [ -77.995948765516104, 24.890441703742045 ], [ -77.995794959012514, 24.890426458091046 ], [ -77.995560485624011, 24.890368341669998 ], [ -77.995108163349229, 24.891238633832561 ], [ -77.99516037248344, 24.891254303232465 ], [ -77.995285198975793, 24.891337675395242 ], [ -77.995375671126595, 24.891452151328046 ], [ -77.995422932856769, 24.891586525401038 ], [ -77.995422357739741, 24.891727644197086 ], [ -77.995374001913845, 24.891861694039459 ], [ -77.995282598647378, 24.891975553165324 ], [ -77.995157095065764, 24.892058076186849 ], [ -77.995009776368576, 24.892101185103641 ], [ -77.994855063255457, 24.892100660061207 ], [ -77.994674050230955, 24.89207387925757 ], [ -77.993627598273932, 24.894087235532069 ], [ -77.993622901568074, 24.894093500299803 ], [ -77.993620292498264, 24.894100706975781 ], [ -77.991006327865236, 24.898725029182152 ], [ -77.990988366827224, 24.898747968061109 ], [ -77.990977036345896, 24.898770186981004 ], [ -77.98831435844302, 24.902378217729421 ], [ -77.988195957245935, 24.902490480785943 ], [ -77.988042746653903, 24.902559315615662 ], [ -77.987872999597585, 24.902576512474546 ], [ -77.98224203549124, 24.902252831404923 ], [ -77.98223227831042, 24.903214712063168 ], [ -77.986794203347387, 24.903576688648066 ], [ -77.986953233744359, 24.903614286064894 ], [ -77.987089985769217, 24.903697321925986 ], [ -77.987189368596603, 24.903816633095094 ], [ -77.987240415059887, 24.903959053383169 ], [ -77.987237491918279, 24.904108866432068 ], [ -77.987180921558718, 24.904249540025091 ], [ -77.986223008207176, 24.905781056378011 ], [ -77.986129595832978, 24.905888390915521 ], [ -77.98600515428673, 24.905965188783519 ], [ -77.985861169886917, 24.906004361273542 ], [ -77.982199301671955, 24.906466108058186 ], [ -77.982184782548543, 24.907897893594349 ], [ -77.984337554713449, 24.907919166549277 ], [ -77.984502268593374, 24.907946646812011 ], [ -77.984647487537387, 24.908022678561252 ], [ -77.984756565056614, 24.908138546262126 ], [ -77.985974260169229, 24.909993962770937 ], [ -77.986031981969774, 24.910124897063401 ], [ -77.986042513598989, 24.91026569029394 ], [ -77.986039871438066, 24.910275285349144 ], [ -77.98885791364502, 24.911571367408033 ], [ -77.996820227922626, 24.907084661906318 ], [ -77.996782245367612, 24.907062088347413 ], [ -77.996685058244836, 24.906952278441839 ], [ -77.996629834463405, 24.90682045272667 ], [ -77.996621979604726, 24.906679515279823 ], [ -77.996662262401387, 24.906543262062495 ], [ -77.99674673954766, 24.906425030465957 ], [ -77.999732182329936, 24.903410509533586 ], [ -77.999726539199671, 24.902129771788076 ], [ -77.999749939362275, 24.901990844607546 ], [ -77.999819090712933, 24.901865232442596 ], [ -77.999927277955081, 24.901765133266135 ], [ -78.00006399515965, 24.901700267498203 ], [ -78.002188053010315, 24.901051313262382 ], [ -78.002314331246041, 24.901028829719529 ], [ -78.002442694718567, 24.901036816934511 ], [ -78.002552453896712, 24.901056960706857 ], [ -78.00383615514373, 24.894596878637305 ], [ -78.003328172689265, 24.894541902091305 ], [ -77.998876534552934, 24.902833328506237 ], [ -77.998787584406571, 24.902948797215601 ], [ -77.998663865062539, 24.903033544746325 ], [ -77.998517487060738, 24.903079275347221 ], [ -77.998362779014826, 24.903081512533181 ], [ -77.998214884983824, 24.903040037295806 ], [ -77.998088282005867, 24.902958909547998 ], [ -77.997995362931405, 24.902846070700814 ], [ -77.997945223298373, 24.902712566279234 ], [ -77.997942771008397, 24.902571464681483 ], [ -77.997988245951163, 24.902436577932111 ], [ -78.002594137222573, 24.893857947900948 ], [ -78.002635365385359, 24.893804422166415 ], [ -78.002675227425215, 24.893750042327394 ], [ -78.002679760485364, 24.893746784798701 ], [ -78.002683077989047, 24.893742477740272 ], [ -78.002740422206671, 24.893703192298503 ], [ -78.00279675651862, 24.893662709498173 ], [ -78.002802171326664, 24.893660889091407 ], [ -78.002806785641155, 24.893657727905808 ], [ -78.002874632668977, 24.893636528256621 ], [ -78.002941924874165, 24.893613905199174 ], [ -78.002947691394397, 24.893613700106201 ], [ -78.002953150840384, 24.893611994229467 ], [ -78.003024859387622, 24.893610955515609 ], [ -78.003096522511484, 24.893608406677828 ], [ -78.004012862657916, 24.893707579404456 ], [ -78.005790712674326, 24.88475984246092 ], [ -78.005652843571781, 24.884711541891964 ], [ -78.00553263314157, 24.884622713932089 ], [ -78.005448398172504, 24.884504348343505 ], [ -78.005408384120784, 24.884368031645668 ], [ -78.005416507711871, 24.884227107515063 ], [ -78.005471973593245, 24.884095370594796 ], [ -78.005569352249708, 24.883985716175953 ], [ -78.005699111531186, 24.883908877930665 ], [ -78.005848549744584, 24.883872377250825 ], [ -78.006003038965076, 24.883879787028942 ], [ -78.006185229958319, 24.88391514214176 ], [ -78.006183894364867, 24.883914400842702 ], [ -78.006083051696606, 24.883807383562441 ], [ -78.006023398202103, 24.883677178157349 ], [ -78.006010773081584, 24.883536530100638 ], [ -78.006046412016559, 24.883399207030262 ], [ -78.00848351412246, 24.877983559076458 ], [ -78.008563922939459, 24.87786300227479 ], [ -78.008681234221697, 24.877771012894041 ], [ -78.008823964731079, 24.877716595423298 ], [ -78.008978143110312, 24.877705076562773 ], [ -78.009128677458563, 24.877737583832577 ], [ -78.009260832573474, 24.877810935213212 ], [ -78.009361672278672, 24.877917950616705 ], [ -78.009421325673628, 24.878048154702171 ], [ -78.009433953369026, 24.878188802247504 ], [ -78.009398319124884, 24.878326125717241 ], [ -78.006978643067029, 24.883703144007665 ], [ -78.0152958262684, 24.879940702510012 ], [ -78.014717016855641, 24.877373503030974 ], [ -78.014711134746179, 24.877223592063764 ], [ -78.014759470019911, 24.877080211978527 ], [ -78.014856676282022, 24.876959221607951 ], [ -78.018836502713697, 24.873429775607772 ], [ -78.018953306047877, 24.873352881528742 ], [ -78.019089446529989, 24.873309962798512 ], [ -78.019233369352776, 24.873304662091762 ], [ -78.019528750729904, 24.873333288209626 ], [ -78.01852400698175, 24.871148679654382 ], [ -78.018488088625148, 24.871020230629856 ], [ -78.018494653336589, 24.87088780320456 ], [ -78.018543133934102, 24.870762836262738 ], [ -78.018629342627491, 24.87065612422894 ], [ -78.018745832790458, 24.870576884671586 ], [ -78.018882542206555, 24.870531962121451 ], [ -78.019027662219457, 24.870525236871988 ], [ -78.021777755889403, 24.870768656343422 ], [ -78.021931312019021, 24.870805625589846 ], [ -78.022064098187457, 24.870885102273931 ], [ -78.022162413301771, 24.870998885875668 ], [ -78.022216112963704, 24.871135236024152 ], [ -78.022219656200505, 24.871280083864118 ], [ -78.021870004859764, 24.873560163343797 ], [ -78.023775506843094, 24.873744784599037 ], [ -78.023822224202718, 24.873700128278287 ], [ -78.023958375384439, 24.873633145275576 ], [ -78.024110552181014, 24.8736078224774 ], [ -78.024263858609274, 24.873626638616667 ], [ -78.024403288124475, 24.873687751842905 ], [ -78.024515192505646, 24.87378518001384 ], [ -78.024534797665254, 24.87381834413732 ], [ -78.025448923184427, 24.873906898639426 ], [ -78.025562655223055, 24.873882275115893 ], [ -78.025716834091796, 24.873893713263588 ], [ -78.025854744762839, 24.87394621012119 ], [ -78.026142141273922, 24.873974049207998 ], [ -78.026291260355322, 24.874010614065501 ], [ -78.026420742948403, 24.874087359998644 ], [ -78.027968693881149, 24.875358664099501 ], [ -78.027766046305189, 24.873162188907518 ], [ -78.027777345875094, 24.873021449306432 ], [ -78.027835765402159, 24.872890783427632 ], [ -78.027935586251672, 24.872782981718785 ], [ -78.02806703722085, 24.872708596494757 ], [ -78.028217251028465, 24.872674909029296 ], [ -78.028371523832675, 24.872685216840061 ], [ -78.028514754495163, 24.872738510922293 ], [ -78.028632922725009, 24.872829574518846 ], [ -78.028714461435143, 24.872949493757915 ], [ -78.028751388993015, 24.873086530179105 ], [ -78.029087039884033, 24.876724234333967 ], [ -78.029931482595586, 24.878279154211686 ], [ -78.029935520680297, 24.878290941392113 ], [ -78.029942743170466, 24.878301386359645 ], [ -78.031610349504462, 24.881843182792025 ], [ -78.030553828685512, 24.878272373859314 ], [ -78.030547175648124, 24.878215623150886 ], [ -78.030536772320758, 24.878159343387281 ], [ -78.030538982586108, 24.878145735855561 ], [ -78.030537379069244, 24.878132057749731 ], [ -78.030550275772711, 24.878076209152308 ], [ -78.030559446193806, 24.878019751254577 ], [ -78.03056615777723, 24.878007432788753 ], [ -78.030569266147992, 24.877993972110893 ], [ -78.030600450110114, 24.877944492471944 ], [ -78.030628296553076, 24.877893382926228 ], [ -78.030638852465842, 24.877883559340034 ], [ -78.030646368441154, 24.877871633712282 ], [ -78.030692787115697, 24.877833366424642 ], [ -78.030736583737223, 24.877792608167091 ], [ -78.033553760739736, 24.875885922849477 ], [ -78.033707976490987, 24.875815676498235 ], [ -78.033879254851172, 24.87579799504266 ], [ -78.034046778071257, 24.875835027525977 ], [ -78.034939860535289, 24.876191986230769 ], [ -78.034843176711675, 24.875298537929307 ], [ -78.034852248665189, 24.875157665009095 ], [ -78.034908595601109, 24.875026244309023 ], [ -78.035006701761617, 24.87491714016571 ], [ -78.035136963785192, 24.874841032386183 ], [ -78.035286630768482, 24.874805370859416 ], [ -78.035441052394106, 24.874813646336321 ], [ -78.03558511295617, 24.874865048748987 ], [ -78.035704710930275, 24.874954546508295 ], [ -78.035788139280413, 24.875073379016669 ], [ -78.035827231407296, 24.875209914191025 ], [ -78.035978437460116, 24.87660708833231 ], [ -78.037244043561614, 24.877112916153195 ], [ -78.037373020676853, 24.877188050678761 ], [ -78.037470634916204, 24.877295564417423 ], [ -78.038019315493656, 24.87813752462484 ], [ -78.038298275549963, 24.875873232628919 ], [ -78.038335386944041, 24.875745449340627 ], [ -78.038411514735998, 24.875632969511475 ], [ -78.038520119579616, 24.875545454961518 ], [ -78.038651872466602, 24.875490423013868 ], [ -78.038795456075064, 24.875472600786722 ], [ -78.038938536887144, 24.875493519157931 ], [ -78.047949009158373, 24.878089857939624 ], [ -78.048067047866837, 24.878140303783304 ], [ -78.048166532734044, 24.878217137151335 ], [ -78.048240549029089, 24.87831501773444 ], [ -78.049805655014055, 24.881114135788664 ], [ -78.049856842416389, 24.881271137159192 ], [ -78.049843189545754, 24.881434460870523 ], [ -78.049766496788763, 24.881582566718993 ], [ -78.046837532119099, 24.885294357054825 ], [ -78.046721380037937, 24.885399334922191 ], [ -78.046574045475737, 24.885464017949509 ], [ -78.04641164026701, 24.885481332664405 ], [ -78.046251924368505, 24.885449385584174 ], [ -78.041421381752173, 24.883679247448601 ], [ -78.041415183078996, 24.883702564353218 ], [ -78.041335767268251, 24.883821353133694 ], [ -78.04122043934602, 24.883912410142958 ], [ -78.041219157885365, 24.883912909517448 ], [ -78.042205213211744, 24.888905948363043 ], [ -78.042207689853356, 24.889052124678312 ], [ -78.042158780038093, 24.889191344902635 ], [ -78.042063622079823, 24.889308982521936 ], [ -78.040536692876216, 24.890665833002359 ], [ -78.043433087010527, 24.891266322267832 ], [ -78.045079177019005, 24.890436777031397 ], [ -78.045209906645297, 24.89039149992605 ], [ -78.045349305174341, 24.890381416313556 ], [ -78.047473361244258, 24.890503106811853 ], [ -78.047590703957184, 24.890522992855615 ], [ -78.0476994048949, 24.890567945228256 ], [ -78.051097899068651, 24.892454122884196 ], [ -78.051221866992947, 24.892551927369158 ], [ -78.051303973566732, 24.892681321519849 ], [ -78.051335197330118, 24.892828088355575 ], [ -78.051312107434953, 24.892976102054146 ], [ -78.051237240677182, 24.893109099741203 ], [ -78.051118822847641, 24.893212468361192 ], [ -78.050969864984381, 24.893274850297999 ], [ -78.045434114694828, 24.89463917390233 ], [ -78.045666503163773, 24.898092733450682 ], [ -78.046734530261872, 24.898209992782181 ], [ -78.049193222571191, 24.897251569351464 ], [ -78.049381560629143, 24.897215311276835 ], [ -78.049570808215066, 24.897247388335213 ], [ -78.053416469704956, 24.89864673733187 ], [ -78.053541071395955, 24.89871268000606 ], [ -78.053639548723879, 24.898808578723141 ], [ -78.053703544344103, 24.898926295027589 ], [ -78.053727627154984, 24.899055838893478 ], [ -78.053709753234571, 24.899186216517588 ], [ -78.053666325931616, 24.899275691798184 ], [ -78.053670134747804, 24.899285164612024 ], [ -78.053675910381713, 24.89942617962976 ], [ -78.05363362663914, 24.899561920729241 ], [ -78.053547422404222, 24.899679100601332 ], [ -78.053425735872864, 24.899766248803655 ], [ -78.053280478592029, 24.89981483459033 ], [ -78.053125869466399, 24.899820101988592 ], [ -78.053046369174737, 24.899811377557139 ], [ -78.050896964294182, 24.901515227960932 ], [ -78.05078573115064, 24.901581779223353 ], [ -78.050659071929317, 24.901618878837297 ], [ -78.0505261526053, 24.901623841994947 ], [ -78.042956681929738, 24.900972783271389 ], [ -78.041407560935468, 24.90220422935144 ], [ -78.041371879077715, 24.902244086332043 ], [ -78.041316589242214, 24.902276544486924 ], [ -78.041126794402075, 24.902427415603913 ], [ -78.041001073870902, 24.902500223368669 ], [ -78.040857288147762, 24.902535592904677 ], [ -78.040708476956183, 24.902530316583483 ], [ -78.040568135795581, 24.902484872894526 ], [ -78.039044614589884, 24.901739591636545 ], [ -78.037323336840927, 24.905212919072703 ], [ -78.04076749144032, 24.9071162547143 ], [ -78.040878975987553, 24.907200450162883 ], [ -78.040880020086405, 24.907201886513462 ], [ -78.040881382554474, 24.907202909413325 ], [ -78.040897222051171, 24.907225550982893 ], [ -78.040958956480651, 24.907310477956266 ], [ -78.040961020118942, 24.907316746218299 ], [ -78.040964606467881, 24.907321872668192 ], [ -78.040976642246363, 24.907364198107501 ], [ -78.041000581389966, 24.907436912673891 ], [ -78.04100055582343, 24.907448293320673 ], [ -78.041003449233457, 24.90745846836472 ], [ -78.041000430708536, 24.907503987497766 ], [ -78.041000284835931, 24.907568923387586 ], [ -78.040995094469508, 24.907584457576434 ], [ -78.040994108520422, 24.907599325612093 ], [ -78.040976400032349, 24.90764040791753 ], [ -78.040958092092396, 24.907695201473643 ], [ -78.039967981206175, 24.909600097689626 ], [ -78.039990938314205, 24.909630174104738 ], [ -78.040035770899124, 24.909765235497101 ], [ -78.040032645856058, 24.909906321399237 ], [ -78.039981868927299, 24.910039621352162 ], [ -78.039888410378055, 24.910152086995403 ], [ -78.03976141852371, 24.910232709343813 ], [ -78.039618676617039, 24.910272118725342 ], [ -78.039482435632081, 24.910534228442511 ], [ -78.039397376083613, 24.910648502459662 ], [ -78.039278386876433, 24.910733943834686 ], [ -78.039136625884169, 24.910782540492296 ], [ -78.033828735089415, 24.91179313916491 ], [ -78.033609744045833, 24.913417297245914 ], [ -78.037816593686316, 24.912616791283529 ], [ -78.037958538754907, 24.9126088275864 ], [ -78.038097100343975, 24.912638030020275 ], [ -78.038220821512951, 24.912701983976312 ], [ -78.038319472369011, 24.912795401420667 ], [ -78.038384895908507, 24.912910558125645 ], [ -78.040099572073643, 24.917420292287812 ], [ -78.042729269824889, 24.918378005297559 ], [ -78.04285311260503, 24.918443442857825 ], [ -78.042951222557903, 24.918538479138618 ], [ -78.043015383256019, 24.918655155175639 ], [ -78.043040221356165, 24.918783699731041 ], [ -78.04302365662322, 24.918913347589942 ], [ -78.042967076181313, 24.919033241106909 ], [ -78.041394171817956, 24.921364306800236 ], [ -78.044166822869045, 24.922902867104387 ], [ -78.044286583283693, 24.922996070438799 ], [ -78.044368155789414, 24.923118872479034 ], [ -78.04440327456382, 24.923258829739957 ], [ -78.044388380871126, 24.923401760367138 ], [ -78.044324983725843, 24.923533181168917 ], [ -78.040790658338949, 24.928514324699059 ], [ -78.044575235302347, 24.930436729801485 ], [ -78.044697391563716, 24.9305242390116 ], [ -78.04478375738725, 24.930641980898713 ], [ -78.044825814128885, 24.930778342193168 ], [ -78.04481941344001, 24.930919873098617 ], [ -78.044123068606453, 24.934069989706273 ], [ -78.045593999877525, 24.93402939921884 ], [ -78.045748785703609, 24.934047586232754 ], [ -78.045889653309445, 24.934108839932254 ], [ -78.046002580174843, 24.934207062877981 ], [ -78.046076325043842, 24.934332477560101 ], [ -78.046103546923547, 24.934472599670354 ], [ -78.046081535871139, 24.934613480822982 ], [ -78.045128884857348, 24.937422264254668 ], [ -78.047191232131382, 24.938558499990613 ], [ -78.049343630394262, 24.932734498262537 ], [ -78.049415383137713, 24.932609468781699 ], [ -78.049525996111853, 24.93251077644733 ], [ -78.049664641735035, 24.932448081881258 ], [ -78.049817748490369, 24.932427521998637 ], [ -78.049970329368833, 24.932451109309103 ], [ -78.050107448845907, 24.932516534931608 ], [ -78.050215684815683, 24.932617394600292 ], [ -78.050284442400397, 24.932743815539553 ], [ -78.050306991045844, 24.932883422852804 ], [ -78.050281123386597, 24.933022550838469 ], [ -78.048067898893393, 24.939011257760349 ], [ -78.048054721531116, 24.939034217933166 ], [ -78.049472297635887, 24.939815176317648 ], [ -78.050508042633979, 24.933420870237772 ], [ -78.050554325449795, 24.933286215362955 ], [ -78.050643977389626, 24.933171192007318 ], [ -78.050768222629259, 24.933087059396041 ], [ -78.050914899208976, 24.933042052942799 ], [ -78.051069649519391, 24.933040578137778 ], [ -78.051217325679914, 24.933082779328632 ], [ -78.051343472258552, 24.933164525597036 ], [ -78.051435741216963, 24.933277815110952 ], [ -78.051485100596636, 24.933411558375937 ], [ -78.051486718641371, 24.933552663724406 ], [ -78.050435891908407, 24.940040397624422 ], [ -78.050389607271313, 24.9401750526103 ], [ -78.050310283242951, 24.940276820297644 ], [ -78.051685725507554, 24.941034529033828 ], [ -78.05171009872322, 24.938672738157571 ], [ -78.051735746714655, 24.938533576430814 ], [ -78.05180730320491, 24.938408452251274 ], [ -78.051917763641924, 24.938309613595678 ], [ -78.052056315374941, 24.938246735408793 ], [ -78.052209396077359, 24.938225972579769 ], [ -78.052362021290222, 24.938249357483826 ], [ -78.052499251149442, 24.938314601052667 ], [ -78.052607652744527, 24.938415316840967 ], [ -78.052676614985572, 24.938541646157105 ], [ -78.052699387285642, 24.938681223073331 ], [ -78.0526695326066, 24.941576478120854 ], [ -78.05386034760248, 24.942232445632854 ], [ -78.05431718798836, 24.929916435199701 ], [ -78.054343522232045, 24.929785722077646 ], [ -78.054410491641008, 24.929667681976348 ], [ -78.054512281503804, 24.92957256369381 ], [ -78.054640053891802, 24.929508625821693 ], [ -78.102321584979521, 24.913429150369865 ], [ -78.103293266664949, 24.911626571965751 ], [ -78.081824589677041, 24.889448894919518 ], [ -78.081736980044326, 24.889319716493858 ], [ -78.081701353808995, 24.889171334606456 ], [ -78.081721751760128, 24.88902057974525 ], [ -78.093585965327804, 24.853009149263691 ], [ -78.093639556146343, 24.845135796383655 ], [ -78.0904656960506, 24.839619488293256 ], [ -78.090411366650244, 24.839453423639586 ], [ -78.089644649540944, 24.832246581417049 ], [ -78.089658074033395, 24.832090094012248 ], [ -78.089729453432795, 24.831947282095907 ], [ -78.097216835642413, 24.822019338738645 ], [ -78.078069355430301, 24.80478631874983 ], [ -78.07800719132959, 24.804718097819642 ], [ -78.076199867487972, 24.802282038498099 ], [ -78.076119597297009, 24.802091294608136 ], [ -78.074929525379474, 24.794283212838973 ], [ -78.071685995105327, 24.789621342603827 ], [ -78.066119069132128, 24.790716099431748 ], [ -78.065987436249259, 24.790725507711002 ], [ -78.065857774325679, 24.790702754663915 ], [ -78.065739343572858, 24.790649465261254 ], [ -78.063677600200421, 24.789383852917421 ], [ -78.063542212668452, 24.789434898704979 ], [ -78.047451056981046, 24.792944621021302 ], [ -78.04729200013351, 24.792955149252514 ], [ -78.038963856224427, 24.792271054631161 ], [ -78.038788956089689, 24.792226055632682 ], [ -78.032896787126759, 24.78956325783356 ], [ -78.029910356054828, 24.791925442509989 ], [ -78.027651413792796, 24.805962100362223 ], [ -78.029355644549369, 24.804458332750396 ], [ -78.029482239818563, 24.804377330657228 ], [ -78.029630061601424, 24.804336001240255 ], [ -78.029784640193043, 24.804338390058746 ], [ -78.029930844521644, 24.804384263265938 ], [ -78.030054363223016, 24.804469130504394 ], [ -78.030143105485365, 24.804584684441384 ], [ -78.030188384559494, 24.804719613924078 ], [ -78.03018576809302, 24.804860711166643 ], [ -78.03013551204613, 24.804994164600451 ], [ -78.03004253569668, 24.805106910841879 ], [ -78.027883301587735, 24.807012163606164 ], [ -78.02921606276044, 24.811129511226046 ], [ -78.03351523686716, 24.812874667811581 ], [ -78.033527716119679, 24.812873363975925 ], [ -78.033679239459602, 24.812901425010047 ], [ -78.033813846328869, 24.812970849193338 ], [ -78.03385632828784, 24.813013118773934 ], [ -78.038680092028315, 24.814970990752261 ], [ -78.038829413067859, 24.815064805410451 ], [ -78.038931622090743, 24.815201453619604 ], [ -78.039895308994119, 24.817200197425542 ], [ -78.039935239205064, 24.817342046607379 ], [ -78.03992326830317, 24.81748809446756 ], [ -78.039860658265667, 24.817622942438337 ], [ -78.034215870978855, 24.825769088258681 ], [ -78.036897556169848, 24.825890048719888 ], [ -78.037048899235756, 24.825918976167564 ], [ -78.03718304027727, 24.825989168979604 ], [ -78.037286848728385, 24.826093756248049 ], [ -78.037350163095439, 24.826222500314355 ], [ -78.037366785634688, 24.826362798875184 ], [ -78.037335089065778, 24.826500918559695 ], [ -78.037258175918893, 24.82662333923615 ], [ -78.037143574894955, 24.826718077462207 ], [ -78.03700250393986, 24.826775859528247 ], [ -78.036848772153974, 24.82679102926015 ], [ -78.033806145011553, 24.826653786501101 ], [ -78.03127203401165, 24.835776757218724 ], [ -78.031271728612666, 24.83579797583165 ], [ -78.031249666662177, 24.83585727629119 ], [ -78.030979311028332, 24.836830508872993 ], [ -78.033512479543759, 24.840559490927049 ], [ -78.037911955061446, 24.837320500807628 ], [ -78.038042691262063, 24.837251333187996 ], [ -78.038190218801049, 24.837221445592874 ], [ -78.038340746960984, 24.837233631867825 ], [ -78.038480204547753, 24.8372867528402 ], [ -78.038595555209, 24.837375842809521 ], [ -78.038676016027779, 24.83749257372655 ], [ -78.03871406549311, 24.837626033674653 ], [ -78.038942501635219, 24.839681886473794 ], [ -78.038930937930814, 24.839834295211091 ], [ -78.038864282763583, 24.839974438626005 ], [ -78.038750183194935, 24.840086238296681 ], [ -78.035818685020772, 24.842123063059425 ], [ -78.035682503625708, 24.842189933863441 ], [ -78.035530341731217, 24.842215131267864 ], [ -78.035377094145488, 24.842196188736221 ], [ -78.035237761966286, 24.842134960499919 ], [ -78.035125984109214, 24.842037440051396 ], [ -78.035052702193227, 24.841913173441782 ], [ -78.035025089489693, 24.841774324820069 ], [ -78.035045848780626, 24.841634485695696 ], [ -78.035112947845661, 24.841507344492076 ], [ -78.035219818449704, 24.841405346629973 ], [ -78.037931067346378, 24.839521565158265 ], [ -78.037822603311724, 24.838545361379122 ], [ -78.033881212313432, 24.841447085980626 ], [ -78.033864424716086, 24.852594789460472 ], [ -78.034006774581385, 24.852645772077175 ], [ -78.034126232448216, 24.852735402185459 ], [ -78.034209488232563, 24.852854327187927 ], [ -78.034248392226729, 24.852990905947387 ], [ -78.034239136106962, 24.853131769230888 ], [ -78.034182625768196, 24.853263128365189 ], [ -78.033862676284485, 24.853760089072281 ], [ -78.033855259999669, 24.85871195131643 ], [ -78.034790884590549, 24.858463284796567 ], [ -78.034797979194423, 24.858461451455373 ], [ -78.034932976328875, 24.858427556513831 ], [ -78.03409508256712, 24.851407017470478 ], [ -78.034100811013673, 24.851274265184117 ], [ -78.034148678723739, 24.851148794587957 ], [ -78.034234532507341, 24.851041491681009 ], [ -78.034350923501862, 24.85096166617927 ], [ -78.034487753465271, 24.850916243808058 ], [ -78.035443198850359, 24.850738505909007 ], [ -78.035672562865201, 24.845534184015566 ], [ -78.035700076126389, 24.84540288615586 ], [ -78.035768555745619, 24.845284713158591 ], [ -78.035871986539732, 24.845190045031273 ], [ -78.036001283365906, 24.845127197148791 ], [ -78.037295706605263, 24.84470841379423 ], [ -78.037472867194836, 24.844682615657629 ], [ -78.0376484501584, 24.844716214692578 ], [ -78.037799326384572, 24.844804784959194 ], [ -78.042729565493389, 24.849030696819106 ], [ -78.042820504434076, 24.849135965970444 ], [ -78.042873522525596, 24.849260972289343 ], [ -78.042883937232403, 24.849394675535116 ], [ -78.042850828617404, 24.849525267343846 ], [ -78.042777120634653, 24.849641214110438 ], [ -78.042669322936192, 24.849732275617303 ], [ -78.041615666731303, 24.850386822258564 ], [ -78.041247055374257, 24.856842070808575 ], [ -78.043013137188922, 24.856398548242105 ], [ -78.043267659967952, 24.849363599159773 ], [ -78.0432927776463, 24.849235795348811 ], [ -78.043356756291502, 24.849119816264956 ], [ -78.043454293749349, 24.849025273346918 ], [ -78.046081217180017, 24.847121710145391 ], [ -78.046207541854841, 24.847055232916318 ], [ -78.046315360955816, 24.847032505361124 ], [ -78.04637213377832, 24.846445412504899 ], [ -78.046410432912907, 24.846306862960652 ], [ -78.046494305751978, 24.846186197543094 ], [ -78.046615334436154, 24.846095526599594 ], [ -78.046761372114574, 24.846043950110946 ], [ -78.052287998955762, 24.844967815107665 ], [ -78.053231046224752, 24.843116024087823 ], [ -78.0533261189955, 24.842990548344243 ], [ -78.053461591338916, 24.842901167905943 ], [ -78.053621966689249, 24.842858106862518 ], [ -78.053788899951925, 24.842866290879396 ], [ -78.053943295920106, 24.842924783782053 ], [ -78.055561325759285, 24.84385752995798 ], [ -78.055691998682136, 24.843967300584492 ], [ -78.055771711702562, 24.844112133427078 ], [ -78.055790172012124, 24.844273327508546 ], [ -78.055615180140464, 24.846355830946468 ], [ -78.059678590172922, 24.846062060524947 ], [ -78.059684365573901, 24.846036281635151 ], [ -78.059738660372417, 24.845904150785948 ], [ -78.059835044735621, 24.845793796392591 ], [ -78.059964083839162, 24.845716020646233 ], [ -78.060113146483189, 24.845678436707683 ], [ -78.060267641504268, 24.845684723505322 ], [ -78.060412446011853, 24.845734265634864 ], [ -78.060533385661515, 24.845822213602709 ], [ -78.060618622089024, 24.845939958514755 ], [ -78.060634661464292, 24.845992923729881 ], [ -78.06225043491753, 24.845876067611766 ], [ -78.06574327383214, 24.843045033825856 ], [ -78.065878105343828, 24.84296717849265 ], [ -78.06603309303037, 24.842932575595935 ], [ -78.068317426075041, 24.842769971152247 ], [ -78.068784781282289, 24.840629128055163 ], [ -78.068829223466452, 24.84051231167588 ], [ -78.068906761195805, 24.840410899123032 ], [ -78.069011566233939, 24.840332513115005 ], [ -78.069135760831671, 24.840283045552926 ], [ -78.078558398025294, 24.837865524427944 ], [ -78.078580321174456, 24.837863172274449 ], [ -78.078665014060206, 24.837784651539128 ], [ -78.078802235189613, 24.837719593279971 ], [ -78.078954771126064, 24.837696414004512 ], [ -78.081581686551701, 24.83767737930539 ], [ -78.081629531666877, 24.837683939073976 ], [ -78.081677890959512, 24.837685295094683 ], [ -78.081705546524461, 24.837694361000423 ], [ -78.08173460626611, 24.837698345190798 ], [ -78.081777888339516, 24.837718075692358 ], [ -78.081823421592631, 24.837733002126996 ], [ -78.081846653595917, 24.837749422879266 ], [ -78.081872941891788, 24.837761406594051 ], [ -78.081907424210272, 24.837792376483424 ], [ -78.081945674350152, 24.837819412240417 ], [ -78.081962208695586, 24.837841580473743 ], [ -78.081983152281822, 24.837860390673164 ], [ -78.08200545948722, 24.83789956842417 ], [ -78.082032682335949, 24.837936067075809 ], [ -78.08204090052223, 24.837961812823551 ], [ -78.082054449294532, 24.837985608247454 ], [ -78.082062397782877, 24.838029158891551 ], [ -78.082075928559846, 24.838071547716641 ], [ -78.082075026112477, 24.838098350817155 ], [ -78.082079853804629, 24.838124802215034 ], [ -78.082072665479856, 24.838168462726472 ], [ -78.082071179656168, 24.838212592424739 ], [ -78.079577551550571, 24.850186043856464 ], [ -78.079562519027917, 24.850224225471386 ], [ -78.079553229998993, 24.850263900855243 ], [ -78.079536534766945, 24.850290223728351 ], [ -78.079525265889373, 24.850318845891792 ], [ -78.079498038134275, 24.850350920173106 ], [ -78.079475766869891, 24.850386034555196 ], [ -78.07945097397355, 24.850406361683049 ], [ -78.079430563147028, 24.850430405587286 ], [ -78.079393805381045, 24.850453232864091 ], [ -78.079360731925178, 24.850480348986153 ], [ -78.079330268261785, 24.850492690593168 ], [ -78.079302713432227, 24.850509802637823 ], [ -78.079260023768825, 24.850521148397046 ], [ -78.079219385586967, 24.850537611922327 ], [ -78.079186233168826, 24.850540759912196 ], [ -78.079154231608157, 24.850549265035326 ], [ -78.079109788841507, 24.850548018659513 ], [ -78.079065563913062, 24.850552218005745 ], [ -78.079032967961084, 24.850545864223818 ], [ -78.078999652234415, 24.850544929874449 ], [ -78.07895780677751, 24.850531213362938 ], [ -78.078914324191544, 24.850522737461716 ], [ -78.078885475458421, 24.850507503862463 ], [ -78.078854106775552, 24.850497221500142 ], [ -78.078818954794073, 24.850472377528977 ], [ -78.078780470970855, 24.850452056066388 ], [ -78.076485601196183, 24.848752803070894 ], [ -78.074796018647945, 24.849186327274602 ], [ -78.074614953075667, 24.850684281506094 ], [ -78.074569451021517, 24.850829635582965 ], [ -78.074473867234573, 24.8509531069807 ], [ -78.074338938991914, 24.851040825521398 ], [ -78.069366716232324, 24.853236113985471 ], [ -78.067659368621761, 24.854754441271599 ], [ -78.068993881808325, 24.85608630480807 ], [ -78.071671581600697, 24.856103920251019 ], [ -78.071831453750846, 24.856129271222674 ], [ -78.071973715535435, 24.856200489358404 ], [ -78.072083037669415, 24.856309900617411 ], [ -78.072147640163877, 24.85644571548767 ], [ -78.072160561676213, 24.856593299328399 ], [ -78.072120409674667, 24.856736749293738 ], [ -78.072031510564202, 24.856860607929015 ], [ -78.070146979331525, 24.85872610980967 ], [ -78.070018816784071, 24.858817074910586 ], [ -78.069865263970399, 24.858865245242487 ], [ -78.069702888184992, 24.858865423534468 ], [ -78.067844219684687, 24.858585161704461 ], [ -78.067788704142856, 24.858568327267388 ], [ -78.065026863964874, 24.862090265167435 ], [ -78.064943177768725, 24.862172872350918 ], [ -78.064839688821323, 24.862234016631273 ], [ -78.063711405922433, 24.862730819859728 ], [ -78.064145385336317, 24.863458779419545 ], [ -78.064199585847575, 24.863604919462713 ], [ -78.064196631209612, 24.863759175440983 ], [ -78.064136866928195, 24.863903498475761 ], [ -78.064027285623013, 24.86402100184127 ], [ -78.058590947426055, 24.868147266708132 ], [ -78.065185308761954, 24.867075456818192 ], [ -78.065339954735592, 24.867072740449217 ], [ -78.065487951930152, 24.867113754994826 ], [ -78.065614813489461, 24.867194485692419 ], [ -78.065708121390301, 24.867307030120219 ], [ -78.065758741978215, 24.867440371717919 ], [ -78.065761720043611, 24.867581458136666 ], [ -78.065716763915574, 24.867716478872659 ], [ -78.065628274072751, 24.867832217128612 ], [ -78.065504912447409, 24.867917343576249 ], [ -78.065358754561956, 24.867963525373341 ], [ -78.056925916647245, 24.869334102550567 ], [ -78.056893017476568, 24.869334470927903 ], [ -78.05685821725919, 24.869340758438117 ], [ -78.056809047773214, 24.869335411117351 ], [ -78.056764497589754, 24.869335909916312 ], [ -78.056736261152523, 24.869327495335327 ], [ -78.056704626241412, 24.869324054924174 ], [ -78.056656149099496, 24.869303621558913 ], [ -78.056611045674629, 24.869290180498034 ], [ -78.056589868722043, 24.869275684000083 ], [ -78.056564210452208, 24.869264868880567 ], [ -78.056522082617803, 24.869229281568764 ], [ -78.056481922158667, 24.869201790017318 ], [ -78.056468829386901, 24.8691842960753 ], [ -78.056450714882303, 24.869168993893876 ], [ -78.053043679210859, 24.865219195056511 ], [ -78.051666279731165, 24.865366060850548 ], [ -78.051621533380199, 24.865915822964322 ], [ -78.051581959939909, 24.86606211910458 ], [ -78.051491774718443, 24.866188358280223 ], [ -78.051361043711125, 24.866280450140376 ], [ -78.051204358585764, 24.866328115695769 ], [ -78.051039208010152, 24.866326034653785 ], [ -78.050884025580288, 24.866274439275617 ], [ -78.047960768746421, 24.864756910770488 ], [ -78.047742660380536, 24.865520297750006 ], [ -78.047678790517793, 24.865652318666019 ], [ -78.047572486709782, 24.865759178627762 ], [ -78.047434631060241, 24.865829938491352 ], [ -78.047279335686767, 24.865857354618445 ], [ -78.036314739803942, 24.866161930508081 ], [ -78.036168731663935, 24.866146020780512 ], [ -78.036034311187223, 24.866091635026851 ], [ -78.035923370197196, 24.866003584606066 ], [ -78.035845723298024, 24.865889659097668 ], [ -78.03580823959868, 24.865759937163737 ], [ -78.035041440084328, 24.859336265028219 ], [ -78.033853854745445, 24.85965189628855 ], [ -78.033843567079316, 24.866549284375992 ], [ -78.033819162699857, 24.866688632954286 ], [ -78.03374875324559, 24.866814281154667 ], [ -78.033639230778746, 24.866913929607069 ], [ -78.033501316105486, 24.866977823955676 ], [ -78.033348509354795, 24.866999709710303 ], [ -78.033195768461297, 24.866977444504816 ], [ -78.033058044922981, 24.866913207820517 ], [ -78.032948820185098, 24.866813287640415 ], [ -78.032878785941975, 24.86668746491894 ], [ -78.032854797553426, 24.866548056126852 ], [ -78.032864743403977, 24.859914769773592 ], [ -78.031992254924617, 24.860146642509811 ], [ -78.031787300962449, 24.864758553449214 ], [ -78.031758209746855, 24.864893747606573 ], [ -78.03168574213008, 24.865014622435865 ], [ -78.031576659686039, 24.865109899537515 ], [ -78.031441140456479, 24.865170688915939 ], [ -78.0312918292815, 24.865191318494158 ], [ -78.031142657931341, 24.86516986337503 ], [ -78.031007545138365, 24.8651083254578 ], [ -78.030899097842649, 24.865012446646201 ], [ -78.027669972593017, 24.861119036664995 ], [ -78.025434867954999, 24.860569129211157 ], [ -78.025291764425148, 24.860510385672072 ], [ -78.025176048538498, 24.860413683392405 ], [ -78.02509937929355, 24.8602887656935 ], [ -78.025069481437257, 24.86014821874334 ], [ -78.025089367185245, 24.860006203407739 ], [ -78.025157032783184, 24.859877028454207 ], [ -78.025265660459567, 24.85977370887186 ], [ -78.025404305396791, 24.859706654563514 ], [ -78.025558998486872, 24.859682621523525 ], [ -78.027805201526519, 24.859663586677172 ], [ -78.027967537428182, 24.859687144021645 ], [ -78.028112433936926, 24.859757961083066 ], [ -78.028223871615978, 24.859868208485761 ], [ -78.02828953007409, 24.860005697515351 ], [ -78.028336665302191, 24.860178525102992 ], [ -78.031033154854526, 24.859461958519208 ], [ -78.031142028485434, 24.857012550867449 ], [ -78.031149946044309, 24.856948407698194 ], [ -78.031359342656017, 24.855920480847754 ], [ -78.031419125094189, 24.855774440779733 ], [ -78.032874377704928, 24.853514160830215 ], [ -78.032892774168019, 24.841359381121993 ], [ -78.030028515964219, 24.837142983609013 ], [ -78.030011754663633, 24.837106586166083 ], [ -78.029989617726173, 24.837072664982667 ], [ -78.029981982650909, 24.837041935680123 ], [ -78.029968605589005, 24.837012887111207 ], [ -78.029964990044519, 24.836973544543593 ], [ -78.029955423421256, 24.83693504115336 ], [ -78.029958567990363, 24.836903662824803 ], [ -78.029955682455721, 24.836872263776332 ], [ -78.029965566540653, 24.836833827219053 ], [ -78.029969506638892, 24.836794510611796 ], [ -78.030159152485055, 24.836111841488844 ], [ -78.030022485324636, 24.836141537346208 ], [ -78.029868344644257, 24.836130203125023 ], [ -78.029725586343758, 24.83607595682869 ], [ -78.029608184722875, 24.835984108502419 ], [ -78.029527631910526, 24.835863648968086 ], [ -78.029491812919744, 24.835726369714074 ], [ -78.02950163077135, 24.835615187080055 ], [ -78.027710670837948, 24.834755179399025 ], [ -78.027481481281697, 24.834741829339304 ], [ -78.027330597537286, 24.834710919784669 ], [ -78.027197565484627, 24.83463897419664 ], [ -78.027095407317915, 24.834533035165624 ], [ -78.027050539716114, 24.83443817976233 ], [ -78.026024273830188, 24.833945350176794 ], [ -78.025950110562519, 24.834042037203822 ], [ -78.025826625230394, 24.834126981027566 ], [ -78.025680419495984, 24.834172944648252 ], [ -78.025525805109297, 24.834175428771033 ], [ -78.02537791696065, 24.83413419021522 ], [ -78.025251231512257, 24.83405326572522 ], [ -78.025158149687783, 24.833940576815412 ], [ -78.025107782957107, 24.833807154333673 ], [ -78.025105061452692, 24.833666058657556 ], [ -78.025150251417486, 24.833531101232328 ], [ -78.025152581336769, 24.833526740223071 ], [ -78.024472047262762, 24.833199923870033 ], [ -78.024348152503364, 24.833115478846764 ], [ -78.024258916701868, 24.833000228417799 ], [ -78.024213074843075, 24.832865454169902 ], [ -78.024215114126918, 24.832724348797914 ], [ -78.024264834776176, 24.832590724691865 ], [ -78.024357369652307, 24.832477661878958 ], [ -78.024483660736507, 24.832396227671367 ], [ -78.024631345814726, 24.832354393344939 ], [ -78.024785968563094, 24.832356253882587 ], [ -78.024932393587633, 24.83240162714884 ], [ -78.025585989272699, 24.832715506816708 ], [ -78.026542244154484, 24.830925594844025 ], [ -78.026620037690932, 24.8308206093336 ], [ -78.026726764324479, 24.830739518413214 ], [ -78.026853997760256, 24.830688724337648 ], [ -78.028649198625729, 24.83023280412025 ], [ -78.028680139027202, 24.83020569033437 ], [ -78.028816701714945, 24.830145340268935 ], [ -78.029287129347082, 24.827885396688835 ], [ -78.014210428159771, 24.834562862036552 ], [ -78.014055353833186, 24.834604700698893 ], [ -78.013893781213298, 24.83459862394864 ], [ -78.013743005463439, 24.834545282240267 ], [ -78.013619165998008, 24.834450385394586 ], [ -78.013535518834161, 24.834324091393185 ], [ -78.013501017626623, 24.834179919020531 ], [ -78.013519355282668, 24.834033300759309 ], [ -78.013588568732303, 24.833899930853189 ], [ -78.013701249132822, 24.833794085371402 ], [ -78.024622965487652, 24.826441573416638 ], [ -78.024760225524759, 24.826376592749384 ], [ -78.024912770151786, 24.826353501824869 ], [ -78.025065667381611, 24.826374560906647 ], [ -78.025203950723366, 24.826437708591698 ], [ -78.025314084147638, 24.826536763592376 ], [ -78.025385287046163, 24.82666202978568 ], [ -78.02541058950581, 24.826801245310342 ], [ -78.025387514601789, 24.826940782817847 ], [ -78.025318320911111, 24.827066983398133 ], [ -78.025209781486822, 24.827167493611352 ], [ -78.018605112816644, 24.831613972584705 ], [ -78.031910320097168, 24.825720623551639 ], [ -78.032027347142218, 24.825684449011174 ], [ -78.032150548810009, 24.825675896360732 ], [ -78.032314629566059, 24.825683301102988 ], [ -78.032344743418207, 24.825666529739561 ], [ -78.032495164707655, 24.825633841298757 ], [ -78.032649292184573, 24.825645174034161 ], [ -78.03279203893571, 24.825699418615223 ], [ -78.032799398997284, 24.825705177025853 ], [ -78.033081791114355, 24.8257179196458 ], [ -78.038884681399281, 24.817343746011673 ], [ -78.03810393020369, 24.815724397704511 ], [ -78.033629065004575, 24.813908138036791 ], [ -78.031727828941314, 24.816092022161484 ], [ -78.031627266351904, 24.816179031130524 ], [ -78.031504190288203, 24.816237138128962 ], [ -78.021329234511967, 24.819487480433768 ], [ -78.018981026046106, 24.821593966175904 ], [ -78.018855153221622, 24.821675925035162 ], [ -78.018707690455841, 24.821718372906101 ], [ -78.018553072551242, 24.821717154642489 ], [ -78.018406434743397, 24.821672389482782 ], [ -78.018282131098189, 24.821588459383417 ], [ -78.018192329384178, 24.821473580070656 ], [ -78.018145819983033, 24.82133899680387 ], [ -78.018147155439408, 24.82119788358375 ], [ -78.018196204871771, 24.821064053569174 ], [ -78.018288166844371, 24.82095060694369 ], [ -78.020715218139202, 24.818773405698106 ], [ -78.02089840239698, 24.818669351822685 ], [ -78.025711801573294, 24.817131846830872 ], [ -78.029422399944465, 24.81295743999225 ], [ -78.029539693131994, 24.812861755519808 ], [ -78.029683990245999, 24.812804564929678 ], [ -78.029840668360052, 24.812791663834158 ], [ -78.029993849920288, 24.812824359597656 ], [ -78.03249446485205, 24.813761375959782 ], [ -78.032696306854902, 24.813529525299092 ], [ -78.02860596975033, 24.811869130171811 ], [ -78.028485864232508, 24.811799994068156 ], [ -78.028392256554497, 24.8117025391462 ], [ -78.028332875513399, 24.811584811913786 ], [ -78.027081701957371, 24.807719453181573 ], [ -78.025795199305733, 24.808854571628451 ], [ -78.025654931151578, 24.80894142842325 ], [ -78.025490757691117, 24.808979910782742 ], [ -78.025321994870396, 24.80896549101551 ], [ -78.025279187653211, 24.808954858232994 ], [ -78.025165987039145, 24.809042238837435 ], [ -78.025022862189132, 24.809095606747825 ], [ -78.024868674302596, 24.809105993313079 ], [ -78.024718516517396, 24.809072381798639 ], [ -78.024587087470834, 24.808998062353236 ], [ -78.024487252438433, 24.808890309938722 ], [ -78.024428783958783, 24.808759672184468 ], [ -78.024427459959384, 24.808743296613049 ], [ -78.023112874169286, 24.808416753885773 ], [ -78.02310633350568, 24.8084216276566 ], [ -78.022962216638859, 24.808472721969153 ], [ -78.022807855120504, 24.808480666202875 ], [ -78.022658359086037, 24.80844468269801 ], [ -78.022528362393871, 24.808368293792636 ], [ -78.022430590105998, 24.808258977023311 ], [ -78.022425019100297, 24.808245885444226 ], [ -78.021085089033235, 24.807913025866892 ], [ -78.02107308713029, 24.807921523654393 ], [ -78.020927622026704, 24.807969328216601 ], [ -78.020773092090579, 24.807973763262318 ], [ -78.020624623944755, 24.80793439463902 ], [ -78.02054439012889, 24.807884626321044 ], [ -78.018578491110091, 24.810027965410235 ], [ -78.019380571335333, 24.811565272626172 ], [ -78.019423990722629, 24.811697874004775 ], [ -78.019421317124696, 24.811836249323658 ], [ -78.01937280210521, 24.811967370889526 ], [ -78.019283013109487, 24.812078893891499 ], [ -78.017038567964974, 24.814117752442407 ], [ -78.018142278956205, 24.816208094805233 ], [ -78.018184752620385, 24.816330847667505 ], [ -78.01818750468999, 24.816459551702625 ], [ -78.018150310881239, 24.816583723612791 ], [ -78.018076200626084, 24.816693249223452 ], [ -78.017971210351433, 24.816779207317424 ], [ -78.0121986306753, 24.820291303131221 ], [ -78.012041003448417, 24.820354334532379 ], [ -78.011869251130477, 24.820364214169832 ], [ -78.011704200015387, 24.820319744041129 ], [ -78.011582990307119, 24.820264650891374 ], [ -78.011496725155695, 24.820339897516366 ], [ -78.011357402127857, 24.820401102843931 ], [ -78.011204174659213, 24.820420019190177 ], [ -78.011052041869434, 24.820394794858181 ], [ -78.010915895729099, 24.8203278989923 ], [ -78.010809063271267, 24.820225879876904 ], [ -78.010742002010446, 24.820098723925231 ], [ -78.010721276284599, 24.819958878112434 ], [ -78.010723383329193, 24.819873931433147 ], [ -78.008170690607258, 24.818713603534633 ], [ -78.008060028067632, 24.818644805922688 ], [ -78.007973661930762, 24.818551421357654 ], [ -78.004154635629376, 24.813054854865332 ], [ -78.004093280954208, 24.812925321420767 ], [ -78.004078784920623, 24.812784822898294 ], [ -78.004112566349789, 24.812647112299999 ], [ -78.004191318330754, 24.81252566968196 ], [ -78.004307331980968, 24.812432382638857 ], [ -78.00444925107972, 24.812376382684334 ], [ -78.004603183692794, 24.812363151422367 ], [ -78.004754061975092, 24.812393983993278 ], [ -78.004887117058388, 24.812465862306958 ], [ -78.004989324674071, 24.81257175046818 ], [ -78.008734612860081, 24.81796214782641 ], [ -78.01074810229035, 24.818877383808292 ], [ -78.010784040391101, 24.817428571823864 ], [ -78.007806736100164, 24.813899898444891 ], [ -78.007724926402574, 24.813754276171522 ], [ -78.007705428187862, 24.813591596722759 ], [ -78.007750807931686, 24.813433274942476 ], [ -78.00846931212746, 24.812034093021452 ], [ -78.011090284919177, 24.80624685635733 ], [ -78.011081922469657, 24.806230140461452 ], [ -78.011040494362291, 24.806094181730106 ], [ -78.011047122397272, 24.805953191977675 ], [ -78.011101157618256, 24.80582097227223 ], [ -78.011197310551708, 24.805710465164651 ], [ -78.0113261690271, 24.805632487795023 ], [ -78.011374012388245, 24.805620341603483 ], [ -78.011620491816316, 24.805076071520087 ], [ -78.011202702801938, 24.805039144496646 ], [ -78.010759519605159, 24.805270614386504 ], [ -78.010614970482962, 24.805320676026913 ], [ -78.010460547918584, 24.805327515161739 ], [ -78.010311368023565, 24.805290462307187 ], [ -78.010182033709299, 24.805213144477843 ], [ -78.010085205197413, 24.805103130140484 ], [ -78.010030360719298, 24.80497118833728 ], [ -78.010022868727674, 24.804830234509303 ], [ -78.01006346243588, 24.804694066220957 ], [ -78.010148168105047, 24.804576012550015 ], [ -78.010268694076274, 24.804487629353389 ], [ -78.016061981016335, 24.801461703376365 ], [ -78.016183393549696, 24.80131072107384 ], [ -78.016293244049109, 24.801211423630697 ], [ -78.016431333469001, 24.801147971986218 ], [ -78.01658414473539, 24.801126577163735 ], [ -78.016677032700031, 24.801140431224574 ], [ -78.016889418776984, 24.801029490459761 ], [ -78.019853244084089, 24.79868577718981 ], [ -78.019911399275287, 24.798593090157286 ], [ -78.019997472774904, 24.798521850698322 ], [ -78.017132601896463, 24.796181965403854 ], [ -78.016600589602362, 24.796232983193441 ], [ -78.016446209685384, 24.796225589875569 ], [ -78.016301888524509, 24.796175009958375 ], [ -78.01618175340829, 24.796086194592824 ], [ -78.016097564047556, 24.795967837711828 ], [ -78.016057561434451, 24.795831524982216 ], [ -78.01606566117546, 24.795690599691984 ], [ -78.016121070253391, 24.795558856597836 ], [ -78.016218364713893, 24.79544919159548 ], [ -78.01622827027289, 24.795443320185726 ], [ -78.012736078042437, 24.792590804278323 ], [ -77.999057004553649, 24.794130062424369 ], [ -77.995669031249506, 24.796041228623707 ], [ -77.995559237394644, 24.796087305483116 ], [ -77.995440475129044, 24.796107677414533 ], [ -77.993306473918992, 24.796230862692511 ], [ -77.99477154385599, 24.805556581257662 ], [ -77.994583457246065, 24.800045013384654 ], [ -77.994602876486923, 24.799905009756223 ], [ -77.99466874065547, 24.799777336097616 ], [ -77.994774602395339, 24.79967448995097 ], [ -77.994910099195891, 24.799606538544012 ], [ -77.995061967756868, 24.799580133366234 ], [ -77.995215342265709, 24.799597859100647 ], [ -77.995355209513207, 24.799657980632158 ], [ -77.995467878431356, 24.799754612891498 ], [ -77.995542320227401, 24.799878296909529 ], [ -77.995571247949016, 24.800016925700469 ], [ -77.995588630659185, 24.800526233775795 ], [ -77.997672947393355, 24.802998986805697 ], [ -77.997755130385087, 24.803146000309702 ], [ -77.997773873031676, 24.803310157933232 ], [ -77.997537223977076, 24.805999476007177 ], [ -77.99976396277269, 24.807165859186011 ], [ -77.999872491359596, 24.80724281705227 ], [ -77.999953602764805, 24.807344080794426 ], [ -78.000001023472194, 24.807461818304734 ], [ -78.000011085689565, 24.807586923315242 ], [ -77.99951142640235, 24.814463564692726 ], [ -77.999478562766626, 24.814598004993272 ], [ -77.999402776142318, 24.814717123588864 ], [ -77.999291134388116, 24.814809811296868 ], [ -77.999154049336454, 24.814867423891982 ], [ -77.99900430577496, 24.814884588300654 ], [ -77.996076248057676, 24.814808749288154 ], [ -77.996076941807445, 24.81482906328419 ], [ -77.99605752381413, 24.814969066926658 ], [ -77.995991654855075, 24.815096741597213 ], [ -77.995885782530181, 24.815199589564383 ], [ -77.995750270334256, 24.815267543282815 ], [ -77.995598383215949, 24.815293950901388 ], [ -77.995444989085058, 24.815276227418607 ], [ -77.995305103384382, 24.815216107735772 ], [ -77.995192419213694, 24.815119476831459 ], [ -77.99511796691074, 24.814995793681607 ], [ -77.995089034314915, 24.814857165322369 ], [ -77.995086505514308, 24.814783101122092 ], [ -77.994411929294273, 24.8147656163904 ], [ -77.994256373130881, 24.814738409138066 ], [ -77.994118236504875, 24.814667684011329 ], [ -77.994011708504274, 24.814560705742327 ], [ -77.993947731371094, 24.814428462899198 ], [ -77.993932876546168, 24.814284539142019 ], [ -77.994155842079934, 24.811252373736846 ], [ -77.992270488808799, 24.809525984613966 ], [ -77.990464184123084, 24.81049224655295 ], [ -77.99032836446213, 24.810541976950581 ], [ -77.990182543253866, 24.810553220791039 ], [ -77.990039508043324, 24.810524992052176 ], [ -77.989911802062537, 24.810459766193961 ], [ -77.98981062424032, 24.810363263074805 ], [ -77.989744847113016, 24.810243945347892 ], [ -77.989720238767461, 24.810112276329804 ], [ -77.989564088141009, 24.803108175045608 ], [ -77.987128897131996, 24.802463565392948 ], [ -77.984504367745359, 24.804425056634663 ], [ -77.98448922022358, 24.804433245385209 ], [ -77.98447721505687, 24.804443957329731 ], [ -77.9844295093162, 24.804465525078495 ], [ -77.9843761391366, 24.804494376943978 ], [ -77.984356166452244, 24.804498683319224 ], [ -77.984338671342556, 24.804506592834468 ], [ -77.98428800252951, 24.804513380341806 ], [ -77.984231100256196, 24.80452564918134 ], [ -77.984207713221338, 24.804524135723696 ], [ -77.984185703552981, 24.804527084083457 ], [ -77.984137391436391, 24.804519584930112 ], [ -77.984082443032733, 24.804516028983798 ], [ -77.984057884937442, 24.80450724365344 ], [ -77.98403328538727, 24.804503425216048 ], [ -77.983991940943383, 24.804483653043853 ], [ -77.98394368851821, 24.804466391338828 ], [ -77.983920823095801, 24.804449642279845 ], [ -77.983896336751215, 24.80443793213648 ], [ -77.98386540143683, 24.804409045547072 ], [ -77.983827457049102, 24.804381251002539 ], [ -77.982199840889024, 24.802764449741286 ], [ -77.982153822198953, 24.80276212233699 ], [ -77.982009652972692, 24.802711154670703 ], [ -77.981889794535789, 24.802622015560196 ], [ -77.981805979514704, 24.802503430629024 ], [ -77.981766412257571, 24.802367007867005 ], [ -77.981762245871735, 24.802329751392755 ], [ -77.97971626881089, 24.800297255948799 ], [ -77.979465344035233, 24.800236285635428 ], [ -77.978788182198642, 24.803198792020524 ], [ -77.9818564358728, 24.807516369087924 ], [ -77.981919249125596, 24.807645320406788 ], [ -77.981935331517505, 24.807785677439984 ], [ -77.981903108641319, 24.807923701092243 ], [ -77.981825734546447, 24.808045880631404 ], [ -77.981710783055846, 24.80814025621893 ], [ -77.981569506422915, 24.808197589642816 ], [ -77.981415733882216, 24.808212268645651 ], [ -77.981264517912052, 24.808182856315298 ], [ -77.981130660735403, 24.808112231750997 ], [ -77.981027265317906, 24.808007308231137 ], [ -77.979914830075302, 24.806441947413227 ], [ -77.976014279155251, 24.810069500450133 ], [ -77.976931957736241, 24.810882139270667 ], [ -77.98283051760248, 24.810910910806069 ], [ -77.982978469031167, 24.810932354149088 ], [ -77.983112583328932, 24.810993275061229 ], [ -77.983220536553532, 24.811088075437141 ], [ -77.983292408679844, 24.811208043937938 ], [ -77.983321595164256, 24.811342156471255 ], [ -77.983305413873296, 24.811478089195759 ], [ -77.983245351595897, 24.811603350971144 ], [ -77.983146927470912, 24.811706431195166 ], [ -77.983019185860812, 24.811777857550421 ], [ -77.979836648912766, 24.812997336157206 ], [ -77.979686477183051, 24.81303093362061 ], [ -77.979532280391567, 24.813020531115377 ], [ -77.979389152552685, 24.812967146907038 ], [ -77.979271104140153, 24.812876006652932 ], [ -77.979189690597067, 24.812756031863525 ], [ -77.979152881192604, 24.812618966577041 ], [ -77.979164278955622, 24.812478227744514 ], [ -77.979222768035669, 24.812347591867592 ], [ -77.979322622990381, 24.812239846457047 ], [ -77.9794540692791, 24.812165538316986 ], [ -77.980404824233048, 24.81180124016328 ], [ -77.977685052132458, 24.811787960565777 ], [ -77.977610857870573, 24.811843922773349 ], [ -77.977467069283747, 24.811895804264534 ], [ -77.968718128294469, 24.813676048249327 ], [ -77.968571801643478, 24.8136854603773 ], [ -77.968428893991728, 24.813655254612659 ], [ -77.968301996177416, 24.813588092214239 ], [ -77.968202288462507, 24.813489890492757 ], [ -77.968138555481602, 24.813369301457058 ], [ -77.968116412280907, 24.813236949517922 ], [ -77.96813780963636, 24.813104495417651 ], [ -77.96880994494299, 24.811088135159149 ], [ -77.964954698377596, 24.810679777258024 ], [ -77.964806292527811, 24.810641986563837 ], [ -77.964677849988064, 24.810564317529156 ], [ -77.964581855532316, 24.810454319693637 ], [ -77.96184548393154, 24.806052308107159 ], [ -77.961790712061799, 24.805918146177014 ], [ -77.961784762218684, 24.805775074980275 ], [ -77.961828233691108, 24.805637509069172 ], [ -77.961916746547516, 24.805519308287035 ], [ -77.962041382975471, 24.805432381388961 ], [ -77.962189585787428, 24.805385486250533 ], [ -77.962346423556369, 24.805383347534821 ], [ -77.96906837656762, 24.806275644455003 ], [ -77.96921601406639, 24.806317547607378 ], [ -77.969342239596344, 24.806399042688035 ], [ -77.969434697390696, 24.806512152452534 ], [ -77.969484337006946, 24.806645805001054 ], [ -77.969486299258477, 24.806786917545622 ], [ -77.969440391909572, 24.806921677023663 ], [ -77.969351108552672, 24.807036892210469 ], [ -77.969227188797277, 24.807121284978969 ], [ -77.969080762801823, 24.807166594304956 ], [ -77.968926163878123, 24.807168384941232 ], [ -77.963203390389197, 24.806408746937976 ], [ -77.965317737689375, 24.809810049663216 ], [ -77.969102349790106, 24.81021092271984 ], [ -77.969327553297589, 24.809535306475563 ], [ -77.969395142762778, 24.809408381208286 ], [ -77.969502395377873, 24.809306731991189 ], [ -77.969638812487631, 24.809240308887713 ], [ -77.969791040709183, 24.809215613787057 ], [ -77.969944179025717, 24.809235063979568 ], [ -77.970083237347623, 24.809296755550093 ], [ -77.970194603787348, 24.809394649744476 ], [ -77.970267377043768, 24.80951916406708 ], [ -77.970294433489272, 24.809658110255427 ], [ -77.970273124508267, 24.809797887326667 ], [ -77.969330005517818, 24.81262729227295 ], [ -77.975959876173221, 24.811278255069514 ], [ -77.975181027700046, 24.810588549469617 ], [ -77.975170612168867, 24.810588638299105 ], [ -77.975023124696847, 24.81054628468765 ], [ -77.974897195140755, 24.810464404700209 ], [ -77.974805150429574, 24.810351013382537 ], [ -77.974756000510538, 24.810217210338866 ], [ -77.974755948390026, 24.810212117191693 ], [ -77.96728495709425, 24.803595512564339 ], [ -77.967196722823005, 24.803490218579451 ], [ -77.967145832846725, 24.803366058762879 ], [ -77.967136682604462, 24.803233757240875 ], [ -77.96736135746923, 24.800810598918432 ], [ -77.966804991721986, 24.800660105475856 ], [ -77.961563307353771, 24.800978350806702 ], [ -77.961404312409073, 24.800964384488122 ], [ -77.961258504447017, 24.800904851772533 ], [ -77.961141118213163, 24.80080597293081 ], [ -77.961064418736768, 24.800678079308369 ], [ -77.96055045917457, 24.799345579157023 ], [ -77.960522904737132, 24.799215881649502 ], [ -77.960537698678436, 24.799084459734306 ], [ -77.960593571762189, 24.798962587513785 ], [ -77.960685730784206, 24.798860719831367 ], [ -77.960806269793764, 24.798787595408029 ], [ -77.964575327582835, 24.797169568052325 ], [ -77.964736497084502, 24.797128914787276 ], [ -77.964903291897684, 24.797139655461958 ], [ -77.965056613124986, 24.797200560193218 ], [ -77.965178904633675, 24.797304655043924 ], [ -77.965464440242584, 24.797647296645025 ], [ -77.965539405651725, 24.797776295027631 ], [ -77.965565297336155, 24.797920394973676 ], [ -77.965539401592309, 24.798064494313984 ], [ -77.965464432220088, 24.79819349089296 ], [ -77.965348246176035, 24.798293865334497 ], [ -77.965203020180894, 24.798355097945493 ], [ -77.963470767322093, 24.798792920798778 ], [ -77.96331715223323, 24.798808838215766 ], [ -77.963165667150051, 24.79878064477484 ], [ -77.963156168952324, 24.798775734615344 ], [ -77.961630965360328, 24.799430484576583 ], [ -77.961872039483254, 24.800055485366215 ], [ -77.966827710289962, 24.799754600794252 ], [ -77.967000910643648, 24.799772194682848 ], [ -77.967446462652333, 24.799892714463692 ], [ -77.967553106236977, 24.798742524300561 ], [ -77.967604437659631, 24.798577163679195 ], [ -77.96771980327587, 24.798441334141938 ], [ -77.969801831356136, 24.796775716036631 ], [ -77.969939057725554, 24.796697970499068 ], [ -77.970096417119365, 24.796664770715772 ], [ -77.976370186052279, 24.796303508431951 ], [ -77.97514138301581, 24.789835783051917 ], [ -77.975138264258561, 24.789700379135212 ], [ -77.975179316192438, 24.789570233583635 ], [ -77.975260837737622, 24.789457079383901 ], [ -77.975375479415746, 24.789371117671624 ], [ -77.978637821537731, 24.787598206830996 ], [ -77.978639432979676, 24.78725240576744 ], [ -77.976428682518005, 24.787139559829111 ], [ -77.976379641914946, 24.787129217615568 ], [ -77.976297559456953, 24.787116359619478 ], [ -77.976281016302622, 24.787108418322983 ], [ -77.976264686892449, 24.787104974583844 ], [ -77.969697354574649, 24.784582739302603 ], [ -77.969566000270135, 24.784508336524709 ], [ -77.969466259505481, 24.78440051854054 ], [ -77.969407895591274, 24.78426983939778 ], [ -77.969396621492919, 24.784129090941324 ], [ -77.969433540644602, 24.783992050635554 ], [ -77.969515038995851, 24.783872132920621 ], [ -77.969633138836031, 24.783781076121155 ], [ -77.969776279740387, 24.783727793438945 ], [ -77.969930450180982, 24.783717500494266 ], [ -77.970080559034031, 24.783751204807437 ], [ -77.975971654673657, 24.786013746746431 ], [ -77.976052898264598, 24.780247126641392 ], [ -77.963059144751526, 24.775977734721501 ], [ -77.962905341315746, 24.775896110962389 ], [ -77.962793175207636, 24.775770041347759 ], [ -77.959753776641563, 24.770704358757623 ], [ -77.957816294537992, 24.770230751050331 ], [ -77.957667579217514, 24.770168842174055 ], [ -77.957549126173646, 24.770066018017527 ], [ -77.957473900488878, 24.769933533086842 ], [ -77.957450135757497, 24.769785888347865 ], [ -77.957480432931959, 24.769639244017224 ], [ -77.957561475713348, 24.769509650759112 ], [ -77.959179511969765, 24.767701264305096 ], [ -77.959306336259715, 24.767600722692457 ], [ -77.959462722929828, 24.767544787834844 ], [ -77.959732105969621, 24.76749427908408 ], [ -77.959291155865273, 24.766434440942778 ], [ -77.956646889107219, 24.766987906773938 ], [ -77.956564469521226, 24.767072598950971 ], [ -77.956431125148328, 24.767143964215013 ], [ -77.956280154165142, 24.767174213071279 ], [ -77.956126334799293, 24.767160384508109 ], [ -77.956021959343573, 24.767118702098717 ], [ -77.954799333209721, 24.767374584735794 ], [ -77.954607859976761, 24.767379866895038 ], [ -77.954428580834019, 24.767318247398531 ], [ -77.948974843766976, 24.764229698608215 ], [ -77.948866963561287, 24.764147029577014 ], [ -77.948789015615944, 24.764039924228399 ], [ -77.948747335266816, 24.76391708781205 ], [ -77.948745310073562, 24.763788504136464 ], [ -77.948783104518412, 24.76366462410288 ], [ -77.949822963748971, 24.761507904581098 ], [ -77.949829006751486, 24.761462693578885 ], [ -77.949894223521454, 24.761334746055876 ], [ -77.949917415253012, 24.761312003912934 ], [ -77.950068022121982, 24.760999630882853 ], [ -77.950148084794407, 24.760884647680093 ], [ -77.950262096391242, 24.76079674013997 ], [ -77.950399653767874, 24.760743929448921 ], [ -77.950548205389964, 24.760731034340598 ], [ -77.950694196584848, 24.760759231422981 ], [ -77.953543577584583, 24.761738709230737 ], [ -77.953867209366763, 24.761598474413578 ], [ -77.953883019175109, 24.76158222875527 ], [ -77.954016359665175, 24.76151086613654 ], [ -77.954114994202797, 24.761491104628476 ], [ -77.957637084909592, 24.759964855187498 ], [ -77.957785777084254, 24.759924987630168 ], [ -77.957940679861494, 24.759929147980515 ], [ -77.964555557866873, 24.761071287375401 ], [ -77.964723046422293, 24.761130549921084 ], [ -77.964856256613558, 24.761240577566177 ], [ -77.964937575809955, 24.761386822868847 ], [ -77.966460446124984, 24.766098149375708 ], [ -77.966480610865503, 24.766231716128665 ], [ -77.966456639972662, 24.76636475757946 ], [ -77.966390675085421, 24.766485386608696 ], [ -77.966341551249059, 24.766532283696126 ], [ -77.967389426986045, 24.769489618341538 ], [ -77.967412778842501, 24.769651344203979 ], [ -77.967371602382244, 24.769810077937517 ], [ -77.964615707323688, 24.775530464477814 ], [ -77.967382199069405, 24.776439553114191 ], [ -77.968097342866656, 24.772411643172244 ], [ -77.968151196616077, 24.772268000292904 ], [ -77.968254199035798, 24.772148808446175 ], [ -77.968394680473168, 24.772067571309492 ], [ -77.968556725245534, 24.772033492501571 ], [ -77.969342640304902, 24.77199233686882 ], [ -77.969373604824028, 24.771957583168664 ], [ -77.969503423305554, 24.771880985149238 ], [ -77.969652812721606, 24.771844763109517 ], [ -77.969807149923625, 24.771852462667326 ], [ -77.969951327468834, 24.771903330129422 ], [ -77.970023179178085, 24.771956696077957 ], [ -77.97355357556529, 24.771771754406956 ], [ -77.973713361903336, 24.771787281257424 ], [ -77.973859238392322, 24.771848807017825 ], [ -77.97397577223586, 24.771949822653262 ], [ -77.974050634826341, 24.772079641347528 ], [ -77.974075906031999, 24.772224529076819 ], [ -77.974053425059992, 24.776003796344433 ], [ -77.976960112128396, 24.778127906915842 ], [ -77.977065647668866, 24.778234270370213 ], [ -77.977129245958324, 24.778365516162594 ], [ -77.977144468575105, 24.778508357792777 ], [ -77.977101958793071, 24.77912579829276 ], [ -77.979095486152886, 24.778088204952212 ], [ -77.979249961244619, 24.778036581901862 ], [ -77.979414437466716, 24.778034122703012 ], [ -77.979570681176284, 24.77808109996198 ], [ -77.979701371361912, 24.778172305816998 ], [ -77.98079592323009, 24.779243060623848 ], [ -77.980889136103016, 24.779373767782133 ], [ -77.98092801746543, 24.779525644149935 ], [ -77.980907918244384, 24.779680530516089 ], [ -77.979499293142368, 24.783963563336442 ], [ -77.979432226018361, 24.784090712388323 ], [ -77.979325403011529, 24.784192717745725 ], [ -77.979189280678924, 24.78425959434357 ], [ -77.979037183695937, 24.784284795767405 ], [ -77.978884000516473, 24.784265855087639 ], [ -77.978744725933197, 24.78420462635459 ], [ -77.978632993223286, 24.784107103109349 ], [ -77.978574474439753, 24.784007828704915 ], [ -77.979452289488378, 24.786390357354218 ], [ -77.985811310093169, 24.786714735406829 ], [ -77.98596711854978, 24.786746244623441 ], [ -77.986103798211474, 24.786821449492518 ], [ -77.99248074574497, 24.791770715374255 ], [ -77.992496195639646, 24.791787152500799 ], [ -77.992515183522215, 24.791800138778946 ], [ -77.992546265138159, 24.791840421342968 ], [ -77.992581412790187, 24.791877814821351 ], [ -77.992590542444077, 24.791897805795038 ], [ -77.992604205064055, 24.791915512864129 ], [ -77.99262012952444, 24.791962591826611 ], [ -77.992640898988526, 24.792008070111809 ], [ -77.992642814714827, 24.792029658087483 ], [ -77.992649814670813, 24.792050352666497 ], [ -77.993165760910799, 24.795335069858172 ], [ -77.995254716576468, 24.795214487667593 ], [ -77.998629502003141, 24.793310764069126 ], [ -77.998828824967134, 24.793246796412514 ], [ -77.999728137795202, 24.793145640335187 ], [ -77.996981483119612, 24.787912145016559 ], [ -77.996939439032175, 24.787789925973797 ], [ -77.996936728184124, 24.787661845596464 ], [ -77.996973569118978, 24.787538235070727 ], [ -77.997046990078175, 24.787429065006599 ], [ -77.997151068742397, 24.787343141197713 ], [ -78.00147511740191, 24.784684442940033 ], [ -78.005496726868429, 24.779341888908505 ], [ -78.005603121881521, 24.77923951879983 ], [ -78.005738958931673, 24.779172175554095 ], [ -78.005890941413909, 24.779146451130018 ], [ -78.006044192364755, 24.779164863574277 ], [ -78.006183710669347, 24.779225610552459 ], [ -78.006295839415472, 24.779322745772681 ], [ -78.0063696026847, 24.779446761032613 ], [ -78.006397779942404, 24.77958551692193 ], [ -78.006377612861428, 24.779725431086614 ], [ -78.006311075380239, 24.779852807749453 ], [ -78.002236260268745, 24.785266091603482 ], [ -78.00210508221204, 24.78538473182385 ], [ -77.998057052933973, 24.787873736447832 ], [ -78.000762832367883, 24.793029249494268 ], [ -78.012837853295238, 24.791670413774412 ], [ -78.012977783867569, 24.791672893407576 ], [ -78.01311133912121, 24.791711092206636 ], [ -78.01322780325556, 24.79178194528383 ], [ -78.017465059395249, 24.795243022302497 ], [ -78.02512947243892, 24.794507806581905 ], [ -78.025135825619728, 24.794508110483669 ], [ -78.025765795937346, 24.794009876597574 ], [ -78.025787070501693, 24.793930686883058 ], [ -78.025868484537597, 24.793810724986887 ], [ -78.025986522432731, 24.793719600522227 ], [ -78.026129629825476, 24.793666233314333 ], [ -78.026206875997957, 24.793661029402088 ], [ -78.027676526745893, 24.792498670568889 ], [ -78.027723774416799, 24.792380682563035 ], [ -78.027819117439705, 24.792269601799219 ], [ -78.027947395732554, 24.792190853352402 ], [ -78.02809605256644, 24.792152145598081 ], [ -78.028113905541687, 24.792152737516847 ], [ -78.0289967393269, 24.791454474577215 ], [ -78.02902516382602, 24.791371457366935 ], [ -78.029114618031315, 24.791256367550108 ], [ -78.02923865250483, 24.791172145281291 ], [ -78.029385125917614, 24.791127034750922 ], [ -78.029411061320857, 24.791126769138344 ], [ -78.032240626283269, 24.788888669753131 ], [ -78.031257704777161, 24.786431755956158 ], [ -78.02127731457611, 24.784747109725163 ], [ -78.017805870984574, 24.785566293095151 ], [ -78.017652001745446, 24.785579799363607 ], [ -78.017501091688615, 24.785549236413935 ], [ -78.017367913091178, 24.785477595977 ], [ -78.017265502492648, 24.785371890772531 ], [ -78.017203884552913, 24.785242468034443 ], [ -78.017189090769975, 24.785101996623958 ], [ -78.017222569111226, 24.784964226889556 ], [ -78.017301042334054, 24.784842644676342 ], [ -78.017416828842229, 24.784749151243847 ], [ -78.017558594648563, 24.784692898308638 ], [ -78.019780332140527, 24.784168629794657 ], [ -78.019784072674071, 24.784036297416449 ], [ -78.019835615961796, 24.783903254963249 ], [ -78.019929669420989, 24.783791265093814 ], [ -78.020057026387164, 24.783711290092437 ], [ -78.020205220314082, 24.783671158398107 ], [ -78.020359745070451, 24.783674798329617 ], [ -78.021241853557925, 24.783823731290425 ], [ -78.029440325836021, 24.781888713929686 ], [ -78.024386324669734, 24.769252684091494 ], [ -78.024382029491946, 24.769232619652463 ], [ -78.024372959307655, 24.769213927996361 ], [ -78.022358930249254, 24.762300480496606 ], [ -78.002549524328614, 24.758305568280203 ], [ -78.002420341080452, 24.758261505783857 ], [ -78.002309531383247, 24.758186551269507 ], [ -78.002225731430215, 24.758086546494791 ], [ -78.001254092826983, 24.756511813767894 ], [ -78.001202183383683, 24.75638797712244 ], [ -78.001191951451503, 24.75625570826584 ], [ -78.001224281150343, 24.756126437944801 ], [ -78.001296378411254, 24.756011337736464 ], [ -78.006115181573179, 24.750423528477935 ], [ -78.006373579472935, 24.741820111313775 ], [ -77.998816174198907, 24.734237887705547 ], [ -77.998731319223083, 24.734119949779362 ], [ -77.99869052165279, 24.733983835683766 ], [ -77.998697774911875, 24.733842869263455 ], [ -77.998752368843256, 24.733710849301985 ], [ -77.998848959284246, 24.733600698797499 ], [ -77.99897809123938, 24.73352319998326 ], [ -77.999127124420497, 24.733485938912526 ], [ -77.999281470548041, 24.733492562909841 ], [ -77.999426021305197, 24.733542423564042 ], [ -77.99954662718504, 24.73363064020241 ], [ -78.007237973817368, 24.741347195381959 ], [ -78.007335757357836, 24.741493825936082 ], [ -78.007366461888523, 24.74166320401222 ], [ -78.007098194631865, 24.750597583729011 ], [ -78.007097675982564, 24.750600121730347 ], [ -78.00709800981258, 24.750602685484871 ], [ -78.007083513651011, 24.750669424823684 ], [ -78.007069845480288, 24.750736309696734 ], [ -78.007068493368706, 24.750738577121695 ], [ -78.00706794329929, 24.750741109600561 ], [ -78.007031572365634, 24.750800491804164 ], [ -78.006995939626819, 24.7508602460715 ], [ -78.006993886404842, 24.750862020967993 ], [ -78.006992506278038, 24.750864274274022 ], [ -78.002277176822247, 24.756332160205876 ], [ -78.002978122974696, 24.757468169517352 ], [ -78.018210223508632, 24.760540235332019 ], [ -78.018744527527176, 24.733370114173244 ], [ -78.018771436581034, 24.733231150836453 ], [ -78.018844046273273, 24.73310658337267 ], [ -78.018955248960253, 24.733008605262981 ], [ -78.019094159337484, 24.732946807216379 ], [ -78.019247179973121, 24.7329272383915 ], [ -78.019399332287406, 24.732951814287539 ], [ -78.019535722704504, 24.733018129254749 ], [ -78.019643000481167, 24.733119691972259 ], [ -78.019710664531857, 24.733246560844695 ], [ -78.019732091344153, 24.733386317127604 ], [ -78.019196146108868, 24.760650937189521 ], [ -78.019179729443962, 24.760735709869927 ], [ -78.022865512567705, 24.761478783503499 ], [ -78.022900320439931, 24.761491271103516 ], [ -78.022936887048601, 24.761498432044942 ], [ -78.022971797663956, 24.761516914089587 ], [ -78.023009356677548, 24.761530388646634 ], [ -78.023038234860806, 24.761552086596396 ], [ -78.023070588369649, 24.761569214844059 ], [ -78.023097535609665, 24.761596642841216 ], [ -78.023128696279826, 24.761620055716641 ], [ -78.023148817991924, 24.761648840085634 ], [ -78.023173791432654, 24.761674259021007 ], [ -78.023190137518355, 24.761707948146505 ], [ -78.023211849629064, 24.761739007542385 ], [ -78.023221245208546, 24.761772060734248 ], [ -78.023236394002041, 24.761803282191707 ], [ -78.025322030909663, 24.768962372013025 ], [ -78.031992476612075, 24.785638869811134 ], [ -78.032135054387211, 24.785684893822651 ], [ -78.032257733303993, 24.785770747798843 ], [ -78.032345347260545, 24.785887008580602 ], [ -78.032389319951506, 24.786022295823965 ], [ -78.032385346900753, 24.786163366722096 ], [ -78.032333816860373, 24.786296412283896 ], [ -78.032280794634289, 24.786359556993308 ], [ -78.033217852841361, 24.788701780680793 ], [ -78.0391445070765, 24.791380169864013 ], [ -78.047300059085103, 24.792050092736442 ], [ -78.062621740274082, 24.788708250503809 ], [ -78.062548162100271, 24.788588987679741 ], [ -78.062517448054535, 24.788452314223566 ], [ -78.062533957504399, 24.788313610700758 ], [ -78.06259611054675, 24.788186149330858 ], [ -78.066678655838246, 24.782423470843966 ], [ -78.06197891961142, 24.77566676365781 ], [ -78.061579629350476, 24.775646355131311 ], [ -78.061567609844204, 24.775656779171864 ], [ -78.061428137791538, 24.775717593231182 ], [ -78.061274908570709, 24.77573608109752 ], [ -78.061122921472872, 24.775710433016744 ], [ -78.060987054206706, 24.775643159612827 ], [ -78.060945290171034, 24.775613930561608 ], [ -78.058075699804903, 24.775467215926831 ], [ -78.057924632248913, 24.775437380855418 ], [ -78.057791056647588, 24.775366384728237 ], [ -78.057688048403378, 24.775261177194874 ], [ -78.057625690679856, 24.775132056773657 ], [ -78.057610087391751, 24.774991662733409 ], [ -78.057642765747076, 24.774853737849984 ], [ -78.057720526810868, 24.774731783156497 ], [ -78.057835758696456, 24.774637736374039 ], [ -78.057977181705127, 24.774580803385035 ], [ -78.058130952461127, 24.774566557124739 ], [ -78.059552639600042, 24.77463925223427 ], [ -78.054010553184554, 24.770760199039373 ], [ -78.048295889647349, 24.77147811961461 ], [ -78.048141363962472, 24.771475245896305 ], [ -78.047995373986751, 24.771428914461353 ], [ -78.04787221036959, 24.771343660585455 ], [ -78.047783929282247, 24.771227829575949 ], [ -78.047739172253543, 24.771092759850575 ], [ -78.047742320291746, 24.770951673026872 ], [ -78.047793065087376, 24.770818379678296 ], [ -78.047886439252835, 24.770705927454525 ], [ -78.048013302615985, 24.770625323898727 ], [ -78.048161236946001, 24.770584458977069 ], [ -78.054080125982267, 24.769840882042079 ], [ -78.054209967664576, 24.769840294907986 ], [ -78.054335491737547, 24.769870618170728 ], [ -78.054448026179671, 24.769929756893699 ], [ -78.061304636794176, 24.774728818246679 ], [ -78.061840441212382, 24.774756205613354 ], [ -78.069214129356084, 24.731379640331895 ], [ -78.069106243627544, 24.719909480543787 ], [ -78.042844042279057, 24.683698990191026 ], [ -78.042789194390934, 24.683597700079893 ], [ -78.042763624978591, 24.683487132183302 ], [ -78.039772794815491, 24.650475480794082 ], [ -78.015946728896779, 24.637834674502642 ], [ -77.966781064283268, 24.646216824425323 ], [ -77.966647254405331, 24.646222710995279 ], [ -77.966516641938469, 24.646195491689703 ], [ -77.966398850333874, 24.646137172002387 ], [ -77.917162793198997, 24.61312968087589 ], [ -77.917021460213505, 24.612981910641835 ], [ -77.916417047965382, 24.61196840326566 ], [ -77.898242285513831, 24.611169692433833 ], [ -77.898121260419941, 24.611150367163535 ], [ -77.898009209223147, 24.611104306129452 ], [ -77.896170913970309, 24.610079957765418 ], [ -77.890566245889275, 24.612825854460404 ], [ -77.891256136713736, 24.618297920335461 ], [ -77.894262363473544, 24.619514640803281 ], [ -77.894392019773548, 24.619591260388376 ], [ -77.894489430333905, 24.619700756489156 ], [ -77.894545059913867, 24.619832410935995 ], [ -77.894553462997791, 24.619973336532091 ], [ -77.894513816880121, 24.6201097385201 ], [ -77.894430002256101, 24.620228264900653 ], [ -77.894310223406876, 24.620317313427726 ], [ -77.89416620513714, 24.620368167339446 ], [ -77.894012045063363, 24.620375848642826 ], [ -77.893862833600792, 24.620339605416522 ], [ -77.890732264847543, 24.61907255846085 ], [ -77.889697367028745, 24.619224943711821 ], [ -77.889762211298674, 24.619535427020189 ], [ -77.889767084849936, 24.6196764919865 ], [ -77.889724034942006, 24.619812029470474 ], [ -77.889637275459947, 24.619928772093338 ], [ -77.889515298954393, 24.620015292213822 ], [ -77.889370045359129, 24.620063120568179 ], [ -77.88921573321808, 24.620067575328118 ], [ -77.889067467833257, 24.620028220411982 ], [ -77.888939762593452, 24.619948908178678 ], [ -77.88884511824925, 24.61983740232214 ], [ -77.888792799224916, 24.619704617884054 ], [ -77.888722597185051, 24.619368468562154 ], [ -77.886918520983002, 24.619634082966289 ], [ -77.886899605952749, 24.619655076358463 ], [ -77.88676942933958, 24.619730956730777 ], [ -77.886619973673817, 24.619766349546175 ], [ -77.886465868845917, 24.619757790262732 ], [ -77.886353286921789, 24.619717297840808 ], [ -77.885273690167651, 24.619876232081463 ], [ -77.885233106265673, 24.619930878619542 ], [ -77.885111159414066, 24.620017434408869 ], [ -77.884965921963456, 24.620065305063861 ], [ -77.884811610877421, 24.620069804615508 ], [ -77.884663331354616, 24.620030492597618 ], [ -77.884579447675833, 24.61997843164534 ], [ -77.883331182818083, 24.620162180578994 ], [ -77.883194812365275, 24.620223913803592 ], [ -77.883042056869002, 24.620244396156817 ], [ -77.882911057889316, 24.620224022013677 ], [ -77.875963507658469, 24.621246509053368 ], [ -77.875801464158059, 24.621245718371586 ], [ -77.875648437705337, 24.621196987104774 ], [ -77.873328438675543, 24.620037941440799 ], [ -77.868723838950913, 24.620957294760974 ], [ -77.868555122983423, 24.620963940714777 ], [ -77.86839383493782, 24.620918195918325 ], [ -77.868258863285547, 24.620825417538654 ], [ -77.866623593502865, 24.61923386810712 ], [ -77.865937360852371, 24.619556021852279 ], [ -77.86589973881695, 24.619567317514903 ], [ -77.865864456844449, 24.619583754057558 ], [ -77.865826851694209, 24.619589201156938 ], [ -77.865790678417127, 24.619600061812243 ], [ -77.865751079392098, 24.619600176731925 ], [ -77.865711968099475, 24.619605841965004 ], [ -77.855871018724173, 24.619606101544186 ], [ -77.855819388896961, 24.619708836074476 ], [ -77.855714736124341, 24.619812603161559 ], [ -77.855580128319573, 24.619881728098058 ], [ -77.855428741900326, 24.619909444386309 ], [ -77.855275395761865, 24.619893038922829 ], [ -77.855135100647772, 24.619834117591164 ], [ -77.854760728870332, 24.619606090337168 ], [ -77.854636049453703, 24.619606088565895 ], [ -77.854638785795444, 24.61961268113189 ], [ -77.854670301678539, 24.619750848235185 ], [ -77.854653569742993, 24.619891155877834 ], [ -77.854590227671835, 24.620019869768868 ], [ -77.854486475713429, 24.620124390452691 ], [ -77.854352469801867, 24.620194486648085 ], [ -77.854201327435064, 24.620223296783429 ], [ -77.85404784361755, 24.620208000680929 ], [ -77.853907042570199, 24.620150095631004 ], [ -77.853792706995421, 24.620055249826528 ], [ -77.853716028886367, 24.619932747504123 ], [ -77.853580439048926, 24.619606069419909 ], [ -77.848048636711567, 24.619605847730131 ], [ -77.847896145984137, 24.61958375963512 ], [ -77.847758585339236, 24.619519675340864 ], [ -77.847649420275218, 24.619419867913077 ], [ -77.847579336644557, 24.619294107268328 ], [ -77.847555194642212, 24.619154703799811 ], [ -77.847579357312213, 24.619015303325359 ], [ -77.847649459291176, 24.618889551326394 ], [ -77.847758638404983, 24.618789757236268 ], [ -77.847896207425876, 24.618725689525665 ], [ -77.848048700218669, 24.618703619523465 ], [ -77.850778878596813, 24.618703756187447 ], [ -77.851636713099694, 24.617216588161362 ], [ -77.85173652825172, 24.617097199132708 ], [ -77.851873700293183, 24.617014404043239 ], [ -77.852033009110315, 24.61697738948671 ], [ -77.852196778462613, 24.616990262424643 ], [ -77.85234683721481, 24.617051594514788 ], [ -77.853167195200783, 24.61755129800521 ], [ -77.85323966964566, 24.617513388021866 ], [ -77.853390809141501, 24.61748457912152 ], [ -77.853544289584349, 24.617499876209898 ], [ -77.853685087394481, 24.617557781902725 ], [ -77.853799420416138, 24.617652628030463 ], [ -77.853876096966999, 24.617775130461744 ], [ -77.853991622604681, 24.61805347130894 ], [ -77.85505941726089, 24.618703870518747 ], [ -77.865592622257566, 24.618703632218754 ], [ -77.866407935432804, 24.618320881128597 ], [ -77.866507919841098, 24.618258750785884 ], [ -77.86658247462654, 24.618238942363597 ], [ -77.873745168166479, 24.614876104195982 ], [ -77.871237445948339, 24.608999885954471 ], [ -77.863169251247072, 24.609765214773958 ], [ -77.86301509463668, 24.609757636080779 ], [ -77.862871044726035, 24.609706876982489 ], [ -77.862751202249839, 24.609617906169813 ], [ -77.862667298271774, 24.609499432791537 ], [ -77.862627545848241, 24.60936305391715 ], [ -77.862635836096132, 24.609222119308281 ], [ -77.86269135735175, 24.609090424632946 ], [ -77.86278867468198, 24.608980861046994 ], [ -77.862918261941374, 24.608904153331864 ], [ -77.863067434275649, 24.608867810103391 ], [ -77.870978589210083, 24.608117387056524 ], [ -77.871033697776596, 24.608004222572486 ], [ -77.871137955029681, 24.60789882262517 ], [ -77.871272903078847, 24.607828303962311 ], [ -77.871425150228433, 24.607799664535232 ], [ -77.871579588154532, 24.607815746376872 ], [ -77.871720891147064, 24.607874953584638 ], [ -77.871835036917219, 24.607971410691341 ], [ -77.871886514629296, 24.608031237635206 ], [ -77.873862001969769, 24.607843772345028 ], [ -77.873880788041035, 24.607737832715458 ], [ -77.873951373701345, 24.607612312869378 ], [ -77.874060930479814, 24.607512878023293 ], [ -77.874198734181206, 24.607449261482529 ], [ -77.874351295698943, 24.607427690412479 ], [ -77.874503681392454, 24.607450276305013 ], [ -77.874640974840872, 24.607514808304273 ], [ -77.874749736908143, 24.607614969617288 ], [ -77.874855796529829, 24.607749455562079 ], [ -77.876608501736655, 24.607583097615791 ], [ -77.876599042526195, 24.607530978338609 ], [ -77.876622070732367, 24.607391420594997 ], [ -77.876691142503745, 24.607265199160135 ], [ -77.876799496508283, 24.60716466941992 ], [ -77.876811405035383, 24.607159020835503 ], [ -77.877649175905077, 24.603739906982202 ], [ -77.875482951703873, 24.601658782171977 ], [ -77.875395337273531, 24.601542580364967 ], [ -77.87535128567329, 24.601407312036557 ], [ -77.87535510885894, 24.601266218243474 ], [ -77.875406432434261, 24.601133110239978 ], [ -77.875500232359144, 24.601021017532002 ], [ -77.875627326787679, 24.60094091247085 ], [ -77.875775274872481, 24.600900636227479 ], [ -77.875929594545951, 24.600904131270948 ], [ -77.876075180079383, 24.600951055471292 ], [ -77.876197780677401, 24.601036815593726 ], [ -77.877908736163789, 24.602680558462207 ], [ -77.878666402197126, 24.599588199238106 ], [ -77.876649824646435, 24.596837861210851 ], [ -77.871927307038803, 24.598279066630447 ], [ -77.871775040610956, 24.598302255946304 ], [ -77.871622389192567, 24.59828128897087 ], [ -77.871484295521327, 24.598218218104783 ], [ -77.871374277273802, 24.598119217211362 ], [ -77.871303103820637, 24.597993977257676 ], [ -77.871277742038586, 24.597854757668525 ], [ -77.871300674373472, 24.597715186263446 ], [ -77.871369655895307, 24.597588925257014 ], [ -77.871477934106224, 24.597488333908757 ], [ -77.871614909962517, 24.597423258730849 ], [ -77.873163268315054, 24.596950755633429 ], [ -77.867017506307192, 24.595751106669304 ], [ -77.866885514773756, 24.595706585362166 ], [ -77.866772632514852, 24.595629812239249 ], [ -77.865642795733081, 24.59460249507239 ], [ -77.865625985979776, 24.594601906648151 ], [ -77.865474561415169, 24.594574510900625 ], [ -77.865339807061048, 24.594505671266973 ], [ -77.865234913707241, 24.594402126302413 ], [ -77.865170149049604, 24.594274011780463 ], [ -77.865155144667469, 24.594159084326048 ], [ -77.863709507211013, 24.592844567256346 ], [ -77.863614098103312, 24.592722697239719 ], [ -77.86356762190384, 24.592578972333836 ], [ -77.863575208588827, 24.592429257196578 ], [ -77.863636020541051, 24.592290077647309 ], [ -77.863791915320078, 24.592055997778033 ], [ -77.863783777164173, 24.592052063645571 ], [ -77.863676290588501, 24.59195076806262 ], [ -77.863608298740587, 24.591824059516281 ], [ -77.86358645705333, 24.591684341185989 ], [ -77.863612903398291, 24.591545289708616 ], [ -77.863685048871346, 24.591420516401289 ], [ -77.863795831270536, 24.591322234894768 ], [ -77.863934406431994, 24.591260065597211 ], [ -77.864087209736269, 24.591240094008533 ], [ -77.864333033640619, 24.591243487912685 ], [ -77.865120874056728, 24.590060495076965 ], [ -77.860583656046316, 24.589803363146661 ], [ -77.860411995476383, 24.589764604168533 ], [ -77.860266305832326, 24.589672989939562 ], [ -77.856241761642409, 24.586013357083182 ], [ -77.85614777148669, 24.585894111051953 ], [ -77.856100695404052, 24.58575356508597 ], [ -77.856105531386575, 24.585606641185663 ], [ -77.856161765816239, 24.585468938458657 ], [ -77.856263428068928, 24.585355076938139 ], [ -77.858230981707052, 24.583769211108223 ], [ -77.858357941551276, 24.583694941658937 ], [ -77.858503498566748, 24.583659189772689 ], [ -77.858654067264339, 24.583665292318273 ], [ -77.867853657441358, 24.585349653494664 ], [ -77.867998400368307, 24.58539866658581 ], [ -77.868119495671976, 24.585486180437222 ], [ -77.86814436547948, 24.585520305659575 ], [ -77.868464848732529, 24.585039035072029 ], [ -77.868438379904248, 24.584016639999458 ], [ -77.868458910491199, 24.58387675608391 ], [ -77.868525708156895, 24.583749519922304 ], [ -77.868632234171116, 24.583647386230865 ], [ -77.868768061002484, 24.583580352497648 ], [ -77.868919893046723, 24.583554980385152 ], [ -77.869072868065388, 24.583573753454491 ], [ -77.869212011951859, 24.583634834071582 ], [ -77.86932370444238, 24.583732243285834 ], [ -77.869397012320661, 24.583856446073941 ], [ -77.869424759628487, 24.583995284667985 ], [ -77.86949875860924, 24.586852603171145 ], [ -77.872586334490791, 24.587035641015529 ], [ -77.872666137869302, 24.586968256607669 ], [ -77.872794519830308, 24.586889905650136 ], [ -77.872943096570538, 24.586851665543584 ], [ -77.873097324488015, 24.586857279447415 ], [ -77.873242106835804, 24.586906197824984 ], [ -77.873363271437213, 24.586993632239412 ], [ -77.873448957908124, 24.587111024065845 ], [ -77.873490778614453, 24.587246882244543 ], [ -77.873484639729554, 24.587387908079069 ], [ -77.873431142014013, 24.587520296986764 ], [ -77.873335522068743, 24.587631089784203 ], [ -77.873306102061733, 24.587655931609888 ], [ -77.873302670849782, 24.587669844159613 ], [ -77.873223848447523, 24.587791190973022 ], [ -77.873107874826772, 24.587884326306355 ], [ -77.872972509606825, 24.587937611196978 ], [ -77.872312954204077, 24.588494522599376 ], [ -77.872692869630143, 24.589602610352884 ], [ -77.872726054076665, 24.589609360872849 ], [ -77.872858991506618, 24.589681083647669 ], [ -77.872961183756246, 24.589786858563336 ], [ -77.873022627532393, 24.589916331705403 ], [ -77.873037308195279, 24.590056829401515 ], [ -77.873003788549582, 24.590194598785509 ], [ -77.872933295427657, 24.590303840517194 ], [ -77.87340054090609, 24.591666589429519 ], [ -77.874334954019645, 24.593952532396916 ], [ -77.874346408184792, 24.594004037767686 ], [ -77.87554618607669, 24.594045962140829 ], [ -77.87569754476209, 24.594073325306208 ], [ -77.875832258523147, 24.59414209760056 ], [ -77.87593715265389, 24.5942455532503 ], [ -77.877050707192467, 24.595764366062422 ], [ -77.878076517715755, 24.595451283756539 ], [ -77.878294076974484, 24.595431574432233 ], [ -77.883973132546714, 24.596082128627646 ], [ -77.884121408734586, 24.596121362261449 ], [ -77.884249168090392, 24.596200570044701 ], [ -77.88434390471032, 24.596311998627542 ], [ -77.884396345090707, 24.596444740675338 ], [ -77.884401355892066, 24.596585802527354 ], [ -77.884358446468056, 24.596721376085473 ], [ -77.884271816952179, 24.596838190439868 ], [ -77.884149947172958, 24.596924810927828 ], [ -77.884004766616741, 24.596972758461007 ], [ -77.883850486677588, 24.596977339545045 ], [ -77.878282619528704, 24.596339528186178 ], [ -77.877620563207302, 24.596541591947744 ], [ -77.879603964425328, 24.599246649790455 ], [ -77.879662448817456, 24.599355829299277 ], [ -77.879686921838697, 24.599475323296335 ], [ -77.879675605969851, 24.599596453184812 ], [ -77.878727313339837, 24.60346695517002 ], [ -77.882122799354207, 24.606728791381432 ], [ -77.882210423726164, 24.606844988292632 ], [ -77.882254485045792, 24.606980253672518 ], [ -77.882252673846907, 24.607047240689294 ], [ -77.88298884845301, 24.606977332560369 ], [ -77.883147124422905, 24.606985714023594 ], [ -77.883294322573249, 24.607039554268546 ], [ -77.883415245777542, 24.607133294678217 ], [ -77.883497409538862, 24.607257257231975 ], [ -77.883532330915784, 24.607398643669789 ], [ -77.883516404356726, 24.607542856800144 ], [ -77.882633910540875, 24.61055166456266 ], [ -77.885652997786792, 24.610410891938869 ], [ -77.885802174552509, 24.61042479181836 ], [ -77.885939896244452, 24.610479013998305 ], [ -77.886053444087025, 24.610568550985558 ], [ -77.88613233173632, 24.61068513391519 ], [ -77.886169273703089, 24.610817996175008 ], [ -77.886516015081227, 24.614096494059382 ], [ -77.88746592576625, 24.61335073725542 ], [ -77.887205728271084, 24.612104654752905 ], [ -77.887200250059536, 24.611968189466701 ], [ -77.887239689334976, 24.611836478319944 ], [ -77.887320431794706, 24.611721591162414 ], [ -77.888281851343123, 24.610725553566866 ], [ -77.888400212239134, 24.610635983776422 ], [ -77.888542970791121, 24.610584040860129 ], [ -77.88869628442346, 24.61057476143915 ], [ -77.888845287129456, 24.610609045275499 ], [ -77.89009736313551, 24.611096901251095 ], [ -77.890241664262177, 24.611183033040081 ], [ -77.890344765227212, 24.61130927877722 ], [ -77.890394089527405, 24.611460238851794 ], [ -77.890444713980884, 24.611861817487313 ], [ -77.895953589468931, 24.60916284485376 ], [ -77.896115114573234, 24.609114113585591 ], [ -77.896285141998533, 24.60911842178114 ], [ -77.896443466788028, 24.609175257463313 ], [ -77.898415388572076, 24.610274069497624 ], [ -77.903261847063163, 24.610487268963382 ], [ -77.904489702375997, 24.608866554014771 ], [ -77.90458719555761, 24.608771076683595 ], [ -77.904710522084073, 24.608705138036413 ], [ -77.904849342307685, 24.608674266315884 ], [ -77.904992017643593, 24.608681049771604 ], [ -77.905126586314537, 24.608724919672934 ], [ -77.905694343634735, 24.609000326089681 ], [ -77.905791638397787, 24.608256710311831 ], [ -77.905830223784349, 24.608128005481166 ], [ -77.905908309932499, 24.608015254119255 ], [ -77.906019062618412, 24.607928324256797 ], [ -77.906152788695096, 24.607874823996418 ], [ -77.906297784441179, 24.607859435666882 ], [ -77.906441359851584, 24.607883506040185 ], [ -77.906570949232687, 24.607944928469866 ], [ -77.906675210916887, 24.608038327262854 ], [ -77.906745019863536, 24.608155528149709 ], [ -77.907755500158757, 24.61068480716564 ], [ -77.915863939152658, 24.611040905633288 ], [ -77.91455693180113, 24.608849140369447 ], [ -77.914506768984054, 24.608723725270771 ], [ -77.910837405237828, 24.592340692543136 ], [ -77.910830141573953, 24.592202521298535 ], [ -77.910869010999207, 24.592068834104396 ], [ -77.910950358188458, 24.591952202572692 ], [ -77.928059377734314, 24.574171474705768 ], [ -77.925069784718701, 24.548067283022998 ], [ -77.925069818004644, 24.548066706248186 ], [ -77.925069656347674, 24.548066147918441 ], [ -77.925073883954653, 24.547996251956356 ], [ -77.925077918234081, 24.547926346445347 ], [ -77.925078144748085, 24.547925807308296 ], [ -77.925078179629125, 24.547925230612275 ], [ -77.925105813913291, 24.54785995054754 ], [ -77.925133267532217, 24.547794606755939 ], [ -77.925133665100958, 24.547794158031053 ], [ -77.92513389310497, 24.547793619419732 ], [ -77.934279740034967, 24.533399059222283 ], [ -77.934192472274816, 24.533331146246073 ], [ -77.934111605141482, 24.533210955982128 ], [ -77.934075296244416, 24.53307378813625 ], [ -77.934087099620868, 24.532933069697769 ], [ -77.93414585971847, 24.532802575171594 ], [ -77.934245824568237, 24.532695078232251 ], [ -77.934377208873627, 24.53262110136248 ], [ -77.934527151879081, 24.532587885864803 ], [ -77.934808247146378, 24.532567140523703 ], [ -77.937927551158083, 24.527656832882705 ], [ -77.937860518521902, 24.527565483414254 ], [ -77.93781832256947, 24.527429733510253 ], [ -77.937824045972974, 24.527288698875154 ], [ -77.93787712833003, 24.52715618497102 ], [ -77.937972373441127, 24.527045163148028 ], [ -77.938100457998942, 24.526966500931348 ], [ -77.938248844238458, 24.526927898256641 ], [ -77.938401267889759, 24.526911087877014 ], [ -77.943093370042462, 24.519524076945235 ], [ -77.937417412315398, 24.504620904891066 ], [ -77.937409296171936, 24.504579672786416 ], [ -77.937395471344431, 24.504539732589883 ], [ -77.937395707774115, 24.504510640136843 ], [ -77.937390071743991, 24.504482007586166 ], [ -77.937396277805206, 24.50444049866687 ], [ -77.937396618277518, 24.504398604279682 ], [ -77.937406668266703, 24.504371002564017 ], [ -77.937410977897883, 24.504342177788555 ], [ -77.937430898624825, 24.504304455238611 ], [ -77.937445371022719, 24.504264707576169 ], [ -77.945354212291235, 24.490317739862704 ], [ -77.947367021281309, 24.48096094728751 ], [ -77.947416916626295, 24.480833770770641 ], [ -77.94750573084022, 24.480725824560416 ], [ -77.947625494280317, 24.48064679496996 ], [ -77.947765460208743, 24.480603773522102 ], [ -77.959606588839051, 24.47870202221365 ], [ -77.962039796509146, 24.473519090072539 ], [ -77.96230977483097, 24.467769557846346 ], [ -77.962338400777838, 24.467636269495991 ], [ -77.962409082471609, 24.467516824845127 ], [ -77.96251541006697, 24.46742205566731 ], [ -77.970077474799098, 24.462470209290142 ], [ -77.982922246613469, 24.44846892257863 ], [ -77.980320209308019, 24.435754281773207 ], [ -77.971623064845147, 24.430524288324634 ], [ -77.97147435053536, 24.430384262560594 ], [ -77.969557493145203, 24.427541979977534 ], [ -77.969496278553038, 24.427404986173354 ], [ -77.969486791536241, 24.427257226050678 ], [ -77.96953005339715, 24.427114609105946 ], [ -77.970853219497542, 24.42451239596706 ], [ -77.970853252277138, 24.416184590547363 ], [ -77.970877364604135, 24.41604519815029 ], [ -77.970947339061752, 24.415919450749403 ], [ -77.971056325958983, 24.415819657328864 ], [ -77.971193656882889, 24.415755586294463 ], [ -77.971345889003331, 24.415733509300562 ], [ -77.971498120921254, 24.41575558736168 ], [ -77.971635451267332, 24.415819659330822 ], [ -77.971744437294021, 24.415919453444801 ], [ -77.971814410705733, 24.416045201229963 ], [ -77.971838521939915, 24.416184593681834 ], [ -77.971838554733722, 24.424612248137226 ], [ -77.971792526718517, 24.424802629516847 ], [ -77.970535446169933, 24.427274917262316 ], [ -77.972255371837448, 24.429825167023779 ], [ -77.98103637176925, 24.435105565421836 ], [ -77.981135821757903, 24.435184651070088 ], [ -77.981208829420694, 24.435285034081897 ], [ -77.981250176116376, 24.435399539088849 ], [ -77.983933829400556, 24.448512506256119 ], [ -77.983939315399027, 24.44864480252906 ], [ -77.983902607535015, 24.448772858624963 ], [ -77.983826867801127, 24.448885643441237 ], [ -77.970792226127529, 24.463094017713416 ], [ -77.970701598518701, 24.463170776770152 ], [ -77.963284233522174, 24.468027901641982 ], [ -77.963020729439648, 24.473640495438271 ], [ -77.962981157161593, 24.473799197309795 ], [ -77.96040710311479, 24.479282225612824 ], [ -77.960319483744854, 24.479407051510506 ], [ -77.960192353902258, 24.479499110398098 ], [ -77.960039466249043, 24.479548443456448 ], [ -77.948268928145012, 24.48143889009236 ], [ -77.946307889998039, 24.490555330891517 ], [ -77.946261781839183, 24.490675953424581 ], [ -77.938418413976947, 24.504507666667134 ], [ -77.944099124212414, 24.519422984754424 ], [ -77.944126017560237, 24.519549746034262 ], [ -77.944112555682082, 24.519678284431201 ], [ -77.944059841568446, 24.519798067090477 ], [ -77.939627776212035, 24.526775813981502 ], [ -77.947233047182451, 24.525936787605648 ], [ -77.947387208269973, 24.525942014001597 ], [ -77.947532058881023, 24.525990566354189 ], [ -77.947653420157138, 24.526077692054848 ], [ -77.947739412463392, 24.526194862697356 ], [ -77.947781618229811, 24.526330608873021 ], [ -77.947775905938542, 24.526471642849554 ], [ -77.94772283459271, 24.526604159248077 ], [ -77.947627599056844, 24.526715186406228 ], [ -77.947499521596356, 24.526793856147787 ], [ -77.947351139369374, 24.526832467660153 ], [ -77.939007063614227, 24.527752985075683 ], [ -77.936005009585116, 24.532478811379185 ], [ -77.947714420623896, 24.531614073387765 ], [ -77.947868243411875, 24.531624857111016 ], [ -77.948010894975212, 24.531678597170625 ], [ -77.948128411706236, 24.531770033153958 ], [ -77.948209290289213, 24.531890214736542 ], [ -77.948245613709346, 24.532027377776679 ], [ -77.94823382624665, 24.532168095845289 ], [ -77.948175081584495, 24.532298594481158 ], [ -77.948075129938374, 24.532406099529727 ], [ -77.947943755231194, 24.532480087581185 ], [ -77.947793817390178, 24.532513316100566 ], [ -77.935401728459524, 24.533428449818146 ], [ -77.926067515238969, 24.548119714243754 ], [ -77.929063063862856, 24.574274039523104 ], [ -77.929058562104046, 24.574397766956196 ], [ -77.929017450642846, 24.574515715942503 ], [ -77.928942825733657, 24.574619003027212 ], [ -77.911853294924455, 24.592379659733119 ], [ -77.915458702393067, 24.608476573122164 ], [ -77.917835249567887, 24.612461766114496 ], [ -77.966810201161138, 24.64529418511832 ], [ -78.015945581273073, 24.636917166631754 ], [ -78.016119996115961, 24.636916061560477 ], [ -78.016283937360299, 24.636970484846533 ], [ -78.040491106911148, 24.649813468251384 ], [ -78.040613061870189, 24.649904756909752 ], [ -78.040697300235067, 24.650026533253005 ], [ -78.040735227415922, 24.650166372957152 ], [ -78.043737109936174, 24.683297320151308 ], [ -78.070010359105169, 24.719522668604526 ], [ -78.070070936067637, 24.71963986501196 ], [ -78.070092526982748, 24.719767957520087 ], [ -78.070202107920025, 24.731408629347595 ], [ -78.070196282880261, 24.731481688618643 ], [ -78.062776591533847, 24.775130869852468 ], [ -78.075821172510913, 24.793882239420981 ], [ -78.075893477535772, 24.794061909771752 ], [ -78.077082554900258, 24.801863087401852 ], [ -78.078798062598338, 24.804175369912816 ], [ -78.098205732160395, 24.821642429045365 ], [ -78.098305115857585, 24.821769997210374 ], [ -78.098350740707318, 24.82192088406336 ], [ -78.098337111242216, 24.822076916066393 ], [ -78.09826586885309, 24.822219299911104 ], [ -78.090645900022324, 24.832323185130942 ], [ -78.091385898771023, 24.839278366021578 ], [ -78.094572213511441, 24.844816247949954 ], [ -78.09461485917015, 24.844919299321209 ], [ -78.094628856965642, 24.84502871002692 ], [ -78.094574121586092, 24.853079621921925 ], [ -78.094553216280858, 24.853206631332966 ], [ -78.082747974218904, 24.88903999935695 ], [ -78.104253892006255, 24.911255922202681 ], [ -78.104333066922962, 24.911367136394226 ], [ -78.104373356927525, 24.911494542327564 ], [ -78.104371279351071, 24.911627127403229 ], [ -78.104327013641637, 24.91175343131864 ], [ -78.10312213587045, 24.91398864812772 ], [ -78.103009637757367, 24.914124509963582 ], [ -78.102849929659314, 24.914212661008765 ], [ -78.055294653798569, 24.930249706558111 ], [ -78.055074045211526, 24.936198256079781 ], [ -78.055079736356987, 24.936188923450782 ], [ -78.055193171413435, 24.936092772752051 ], [ -78.055333656181432, 24.93603332025852 ], [ -78.055487418376032, 24.936016394310204 ], [ -78.055639384124888, 24.936043654204852 ], [ -78.057826972213363, 24.936775018436784 ], [ -78.057839769635777, 24.936753103610609 ], [ -78.057951158932383, 24.936655137762745 ], [ -78.058090297807212, 24.936593351803428 ], [ -78.058243566462409, 24.936573793707488 ], [ -78.058395962041885, 24.936598377923556 ], [ -78.058532567159062, 24.936664697987531 ], [ -78.058640010055427, 24.936766262080134 ], [ -78.058707773482553, 24.936893128472029 ], [ -78.058729224199396, 24.937032878662226 ], [ -78.058728364327322, 24.93707636357362 ], [ -78.060066366090155, 24.937523658797968 ], [ -78.06021083744514, 24.937599177079704 ], [ -78.060319636991437, 24.937714129694015 ], [ -78.062511572972113, 24.941026690378919 ], [ -78.063812604885626, 24.941473374644961 ], [ -78.064227973221122, 24.941400945895527 ], [ -78.064521444021295, 24.941321115913652 ], [ -78.06545799150976, 24.940398068187733 ], [ -78.065562753942402, 24.94031972824019 ], [ -78.065686898509171, 24.94027024313586 ], [ -78.065821111746359, 24.940253325285799 ], [ -78.066536583277383, 24.940253325535085 ], [ -78.066701672791538, 24.940279184232786 ], [ -78.066847832023143, 24.940353795843006 ], [ -78.066958301218392, 24.940468604822566 ], [ -78.067020413023016, 24.940610446276747 ], [ -78.067027045032646, 24.940763055518779 ], [ -78.06697743656693, 24.940908933085169 ], [ -78.066060740287284, 24.942551078831791 ], [ -78.065969989997669, 24.942665124784824 ], [ -78.065845071292458, 24.942748074290595 ], [ -78.065698175463879, 24.942791831940475 ], [ -78.065543638714487, 24.942792127216176 ], [ -78.064403347654562, 24.942629940986158 ], [ -78.064305277050579, 24.942606399239466 ], [ -78.063564428311608, 24.942352050849674 ], [ -78.063553708984429, 24.942349216361485 ], [ -78.063550641292835, 24.942347317440102 ], [ -78.062135355390581, 24.941861407269748 ], [ -78.060968542694084, 24.942630856647213 ], [ -78.060837938557412, 24.942692399812834 ], [ -78.060693264277873, 24.942716228272452 ], [ -78.060547298272866, 24.942700237353801 ], [ -78.060412933064072, 24.942645839449899 ], [ -78.060302036503842, 24.942557839269412 ], [ -78.060224403516955, 24.942444009450018 ], [ -78.060186890956629, 24.942314404023165 ], [ -78.06000829676141, 24.940824527642601 ], [ -78.058654205407478, 24.940826899727384 ], [ -78.058522674384378, 24.947480049331123 ], [ -78.063047044264877, 24.947653331244638 ], [ -78.063180602724529, 24.947675438528979 ], [ -78.063302542789813, 24.947729809679362 ], [ -78.063403683470028, 24.947812351035392 ], [ -78.066041995273537, 24.950650432605258 ], [ -78.066131994947625, 24.9507942514227 ], [ -78.066159001298857, 24.950957989595445 ], [ -78.066019989493256, 24.954541426236073 ], [ -78.067346809424436, 24.954585936636342 ], [ -78.067496045702455, 24.952293799817852 ], [ -78.067525440760747, 24.952165194305348 ], [ -78.067594238032271, 24.9520497664328 ], [ -78.067696600919177, 24.951957308649678 ], [ -78.069418209035348, 24.950801825625597 ], [ -78.069550669605576, 24.950738515066117 ], [ -78.06969782949426, 24.950714187167375 ], [ -78.069846238876835, 24.950731065387778 ], [ -78.072546230306216, 24.951427803343055 ], [ -78.074240526411629, 24.950495134398555 ], [ -78.07438390831885, 24.950441991071735 ], [ -78.074538285339898, 24.950431843535252 ], [ -78.074688546130872, 24.950465685075425 ], [ -78.074819982266675, 24.950540203066272 ], [ -78.074919727947602, 24.95064810322485 ], [ -78.074978019360998, 24.950778823604637 ], [ -78.074989150435215, 24.950919568444665 ], [ -78.074952031428623, 24.951056560684602 ], [ -78.074870295660119, 24.951176390549776 ], [ -78.074751943911181, 24.951267328200874 ], [ -78.073111047673081, 24.952170605615695 ], [ -78.073107847802476, 24.952627806702555 ], [ -78.077368331383795, 24.952884057937542 ], [ -78.077546227505522, 24.95292592607996 ], [ -78.077695096753601, 24.953024091519616 ], [ -78.079747597689391, 24.955001365340578 ], [ -78.080005571521838, 24.955009996451736 ], [ -78.080007487636408, 24.955009744468907 ], [ -78.084989219690414, 24.955072420967337 ], [ -78.085141748182238, 24.955096413742297 ], [ -78.08527867891533, 24.955162202236512 ], [ -78.085386608258901, 24.955263346663983 ], [ -78.085454971349122, 24.955389946375092 ], [ -78.085477076246946, 24.955529608973816 ], [ -78.08545075902353, 24.955668663346653 ], [ -78.085378595637067, 24.955793497873191 ], [ -78.085316896433895, 24.955848217327347 ], [ -78.08531014163664, 24.95585741156243 ], [ -78.085282284529512, 24.95590304038075 ], [ -78.085267280737639, 24.955915751276564 ], [ -78.08525588280402, 24.955931265457547 ], [ -78.083422482100175, 24.957735380525023 ], [ -78.083329056024411, 24.957807090996823 ], [ -78.083219206622019, 24.957855751488719 ], [ -78.077901560761589, 24.959508348313971 ], [ -78.077887068012544, 24.959521239415601 ], [ -78.077748296766131, 24.959583751463519 ], [ -78.077595127498498, 24.959604110765731 ], [ -78.077593976178449, 24.959603931274636 ], [ -78.075326610332951, 24.960308499501661 ], [ -78.075187451784814, 24.96033223188493 ], [ -78.075182411483453, 24.960331760641786 ], [ -78.075177879877955, 24.96033250849576 ], [ -78.07513933136407, 24.960327732857387 ], [ -78.075046617816795, 24.960319064541963 ], [ -78.072740780563748, 24.959791758354015 ], [ -78.07271578509193, 24.95980318622048 ], [ -78.072562749771535, 24.959824371405059 ], [ -78.072410023329766, 24.959801408289067 ], [ -78.072272555850432, 24.959736544670811 ], [ -78.072197889104487, 24.95966760220098 ], [ -78.070411211217717, 24.959258983075397 ], [ -78.068349741658039, 24.961908978690381 ], [ -78.068350485483521, 24.962027660851554 ], [ -78.068327144400399, 24.962167158152635 ], [ -78.06825765883741, 24.962293252712897 ], [ -78.068148830417542, 24.96239360147008 ], [ -78.068011312006391, 24.962458381517532 ], [ -78.067910611196751, 24.962473459026693 ], [ -78.067610913525385, 24.962858702055321 ], [ -78.067561317249684, 24.962904962344595 ], [ -78.068472288779205, 24.964655361405434 ], [ -78.070201097099272, 24.965257462736485 ], [ -78.07033527770281, 24.965327824083204 ], [ -78.070439039513616, 24.965432539639114 ], [ -78.070502225603136, 24.96556135918847 ], [ -78.070518650783271, 24.965701673039476 ], [ -78.070486707091348, 24.965839746324637 ], [ -78.070409521246603, 24.965962063453837 ], [ -78.07029464864317, 24.966056651120226 ], [ -78.07015333381139, 24.966114250351517 ], [ -78.069999409725014, 24.966129222870379 ], [ -78.06984794369771, 24.966100103032513 ], [ -78.068693147322847, 24.96569791940475 ], [ -78.068658078103041, 24.965739403351016 ], [ -78.068530323932407, 24.965819088248061 ], [ -78.068381809979883, 24.965858885361481 ], [ -78.068227073950311, 24.965854899021231 ], [ -78.068081262643801, 24.965807519426974 ], [ -78.067958649220344, 24.965721384456888 ], [ -78.067871235992612, 24.96560492566708 ], [ -78.067748385459311, 24.965368876041392 ], [ -78.065890464735261, 24.964721772584316 ], [ -78.065766537434243, 24.96465874858729 ], [ -78.065667332324978, 24.964566249638626 ], [ -78.065601010507791, 24.964451885203058 ], [ -78.065573027876127, 24.964325063502333 ], [ -78.065480660417975, 24.962783970518128 ], [ -78.063984737018757, 24.962733760784737 ], [ -78.064390903941458, 24.967083366102493 ], [ -78.068582554645047, 24.966291159000424 ], [ -78.068742254156945, 24.966285010940307 ], [ -78.068895770102074, 24.966325596889376 ], [ -78.076318792948371, 24.96954835299352 ], [ -78.076446421445738, 24.96962820875552 ], [ -78.076540732380849, 24.969740107083371 ], [ -78.07659249391746, 24.969873094661914 ], [ -78.076596639162986, 24.970014153797116 ], [ -78.076552762194311, 24.970149476656967 ], [ -78.076465157852596, 24.970265816871077 ], [ -78.076342401388544, 24.970351786187599 ], [ -78.076196509084966, 24.970398969258042 ], [ -78.076041762009794, 24.970402747417971 ], [ -78.075893308042524, 24.970362750815816 ], [ -78.068620497374823, 24.967205217131692 ], [ -78.06216893659365, 24.96842448431336 ], [ -78.060874985089271, 24.971101486661812 ], [ -78.060908991270566, 24.971211644849447 ], [ -78.060927096512202, 24.971351787859142 ], [ -78.06089736992682, 24.971487597002142 ], [ -78.062632435127753, 24.971664486804197 ], [ -78.068516957996522, 24.969753642816983 ], [ -78.068669114569175, 24.969727663808545 ], [ -78.068822630980122, 24.969745816361925 ], [ -78.068962480131134, 24.969806323582279 ], [ -78.069074972726185, 24.969903262646969 ], [ -78.069149097231744, 24.970027144555299 ], [ -78.069177597752798, 24.970165842951079 ], [ -78.06915768431783, 24.970305781108902 ], [ -78.069091306034863, 24.970433260903299 ], [ -78.068984960359529, 24.970535803678139 ], [ -78.068849057121952, 24.97060337176179 ], [ -78.062856944708784, 24.972549155929826 ], [ -78.062635917446002, 24.972572512339141 ], [ -78.060260945468386, 24.972330382317594 ], [ -78.060240552108382, 24.972359250354486 ], [ -78.060120621118656, 24.972448476984127 ], [ -78.059976311236539, 24.972499554419013 ], [ -78.059821748624728, 24.972507482784675 ], [ -78.059672063104443, 24.972471485974449 ], [ -78.059541907083613, 24.972395087628961 ], [ -78.059444021221111, 24.972285766209264 ], [ -78.059426796850431, 24.97224533094926 ], [ -78.058637778010535, 24.972164876627499 ], [ -78.058567663332411, 24.97228525326425 ], [ -78.058456369550498, 24.972383339104482 ], [ -78.058317270798824, 24.972445275062213 ], [ -78.058163983116913, 24.972464998348851 ], [ -78.058011511519013, 24.972440578277435 ], [ -78.057874781142374, 24.972374405264841 ], [ -78.057767176211513, 24.972272956837209 ], [ -78.057699229858002, 24.972146163545265 ], [ -78.057672431983377, 24.972066436741546 ], [ -78.055758603109737, 24.971871257334666 ], [ -78.055734336298428, 24.971997400249581 ], [ -78.055661787363135, 24.972122056985537 ], [ -78.055550529482275, 24.972220176978354 ], [ -78.055411453341094, 24.972282155487722 ], [ -78.055258172765747, 24.972301925559766 ], [ -78.055105692074818, 24.972277551927828 ], [ -78.054968937295655, 24.972211420462898 ], [ -78.054861295041562, 24.972110004624156 ], [ -78.054793302097622, 24.971983231772271 ], [ -78.05477161400249, 24.971843511382804 ], [ -78.054772933230467, 24.97177072506727 ], [ -78.054532471184444, 24.971746198387802 ], [ -78.057995253149059, 24.981622991017325 ], [ -78.059202439866837, 24.981268492907841 ], [ -78.058489781814998, 24.979083137094751 ], [ -78.058469551651598, 24.978939496149479 ], [ -78.058500308754276, 24.978797415903014 ], [ -78.058578881929463, 24.978671544681408 ], [ -78.058697170253581, 24.978574859631806 ], [ -78.058842978312185, 24.97851732881395 ], [ -78.063711670769393, 24.977396924018194 ], [ -78.063767950144538, 24.97739228222061 ], [ -78.063823589395113, 24.977383278478513 ], [ -78.068647059349999, 24.977301298814343 ], [ -78.068793115161967, 24.977318805298452 ], [ -78.068927044049019, 24.977374728638562 ], [ -78.069036975513541, 24.977464112186382 ], [ -78.069113165964922, 24.977579033616895 ], [ -78.069148862318627, 24.977709307091725 ], [ -78.069140900564122, 24.97784338604551 ], [ -78.068892978488279, 24.978938551775563 ], [ -78.068909938905932, 24.979037699597896 ], [ -78.06888535292552, 24.979177019228725 ], [ -78.06881473701759, 24.979302595090953 ], [ -78.068809488297404, 24.979307356233516 ], [ -78.067241685333968, 24.986232560123767 ], [ -78.067184073674511, 24.986369313314334 ], [ -78.06708141487286, 24.986482025454354 ], [ -78.066944538271613, 24.986558806556872 ], [ -78.066787882935216, 24.986591556967301 ], [ -78.066079390731986, 24.986631874724385 ], [ -78.066215167629423, 24.986992332572434 ], [ -78.066241578018207, 24.987120556477187 ], [ -78.066226616279693, 24.98725030558105 ], [ -78.066171534180626, 24.987370723390679 ], [ -78.066080940505685, 24.987471734158024 ], [ -78.065962415458941, 24.987544885958581 ], [ -78.062744149311428, 24.988962079644743 ], [ -78.062946835395934, 24.98958348241657 ], [ -78.065911022836346, 24.988927772249525 ], [ -78.070069594128697, 24.983293729317442 ], [ -78.070175041329463, 24.983190409513682 ], [ -78.070310356819562, 24.983121846040621 ], [ -78.070462295045786, 24.983094750300133 ], [ -78.070615983376754, 24.983111774571142 ], [ -78.070756377886028, 24.983171252401782 ], [ -78.070869735895954, 24.98326736173237 ], [ -78.070944961162766, 24.983390694782067 ], [ -78.070974690043471, 24.983529178921259 ], [ -78.070956012327272, 24.983669258398461 ], [ -78.070890756160964, 24.983797221256065 ], [ -78.066624997633966, 24.989576531221974 ], [ -78.066497227943401, 24.989694877698813 ], [ -78.066331130927779, 24.989763069792605 ], [ -78.063188503559473, 24.990458257516117 ], [ -78.06316747891735, 24.990562214580027 ], [ -78.063093734222235, 24.990686291240628 ], [ -78.062981529334991, 24.990783525896632 ], [ -78.062841847643213, 24.990844400470383 ], [ -78.062688362250924, 24.990862956069417 ], [ -78.062536097526845, 24.990837376309216 ], [ -78.062399958357389, 24.990770165126278 ], [ -78.062293271093708, 24.990667901671003 ], [ -78.062287807991424, 24.990657489032031 ], [ -78.061244277052424, 24.990888307899333 ], [ -78.06311856369355, 24.996232470790574 ], [ -78.076717287447678, 24.996547086152638 ], [ -78.077205997681645, 24.98679031365084 ], [ -78.07723157656001, 24.986666359102252 ], [ -78.077293814409359, 24.986553707014881 ], [ -78.077387843835027, 24.986461167320972 ], [ -78.077506311236263, 24.986395977045465 ], [ -78.078139392419288, 24.986150050901689 ], [ -78.078290440387363, 24.986115641375633 ], [ -78.078445742481151, 24.986125710746027 ], [ -78.078589924980207, 24.986179262206623 ], [ -78.078708714895669, 24.986270994555799 ], [ -78.078790352852806, 24.986391826965175 ], [ -78.078826757174895, 24.986529797895138 ], [ -78.078814323938118, 24.986671249180574 ], [ -78.078196323586397, 24.988993875801302 ], [ -78.078136745929655, 24.989124119369151 ], [ -78.078076648956369, 24.989187952485981 ], [ -78.077706950904982, 24.996569933834909 ], [ -78.085219387657531, 24.996743152296883 ], [ -78.085270244009394, 24.996751698614279 ], [ -78.085321803418694, 24.996755336745245 ], [ -78.085345957708867, 24.996764422128571 ], [ -78.085371655195829, 24.996768740523002 ], [ -78.085417124641168, 24.996791190793086 ], [ -78.085464926983775, 24.99680917109561 ], [ -78.085484818465403, 24.996824614176028 ], [ -78.085507793984917, 24.996835958176817 ], [ -78.08554342569569, 24.996870114827029 ], [ -78.085582791783267, 24.996900677278298 ], [ -78.085596473349995, 24.996920966390938 ], [ -78.085614477912401, 24.996938225577527 ], [ -78.085636784016998, 24.996980745141524 ], [ -78.085663860431126, 24.997020898098626 ], [ -78.085669992829608, 24.997044047216679 ], [ -78.085681264020792, 24.99706553215151 ], [ -78.085688061018018, 24.997112252541921 ], [ -78.085700197306366, 24.997158065575668 ], [ -78.086641606957315, 25.007883396510003 ], [ -78.088132254872065, 25.007613314903626 ], [ -78.087606337082661, 25.000349341350088 ], [ -78.087596133721476, 25.00032777283888 ], [ -78.087581772831413, 25.00018727302092 ], [ -78.087591694743281, 25.000147079271791 ], [ -78.087392927700705, 24.99740129023073 ], [ -78.085965130243721, 24.996044405585025 ], [ -78.08587676462804, 24.995928534642076 ], [ -78.085832012916072, 24.995793448899008 ], [ -78.085835255594048, 24.995652371541745 ], [ -78.085886175086571, 24.995519112217178 ], [ -78.085979786903948, 24.995406715244044 ], [ -78.086106927610487, 24.995326182756521 ], [ -78.086255151827729, 24.99528539776335 ], [ -78.086409950459668, 24.995288352531649 ], [ -78.086556170897182, 24.995334757815883 ], [ -78.086679500199992, 24.995420071175936 ], [ -78.088232059723566, 24.996895512792282 ], [ -78.088327720080514, 24.997025767742031 ], [ -78.088368689619216, 24.997177993195919 ], [ -78.0885470083564, 24.999641058536959 ], [ -78.094776636259979, 24.998191477940193 ], [ -78.094920676412073, 24.998177885379338 ], [ -78.095062867424204, 24.998202872250083 ], [ -78.095191034772085, 24.998264299141667 ], [ -78.095294204621766, 24.998356906614177 ], [ -78.09719345483181, 25.0006519767601 ], [ -78.097267737318134, 25.000780667629993 ], [ -78.097293226041657, 25.000924209977907 ], [ -78.097267271352734, 25.001067682966486 ], [ -78.097192571007952, 25.001196172918487 ], [ -78.095803634237768, 25.002864203894038 ], [ -78.096109606644234, 25.003371183881598 ], [ -78.096162083761101, 25.003503940133683 ], [ -78.096166975537727, 25.003644976744621 ], [ -78.096123802975271, 25.003780488088033 ], [ -78.096036791961694, 25.003897209344107 ], [ -78.095914459667071, 25.003983714962267 ], [ -78.095768780852026, 25.00403153709691 ], [ -78.095614015685754, 25.004035994526991 ], [ -78.095465313818679, 25.003996650908444 ], [ -78.095337231368902, 25.003917357494139 ], [ -78.095242306013148, 25.003805876136717 ], [ -78.095148681725689, 25.003650744580465 ], [ -78.091720939641363, 25.007766968856913 ], [ -78.091589149671151, 25.0078766936821 ], [ -78.091423214313849, 25.007936674596049 ], [ -78.089431130468896, 25.008297650319868 ], [ -78.089389387800196, 25.0090133351076 ], [ -78.089376166821637, 25.009069809678987 ], [ -78.08936652869167, 25.009126883199951 ], [ -78.089360073218799, 25.009138554863387 ], [ -78.089357080729698, 25.009151337526959 ], [ -78.08932535565647, 25.009201325084135 ], [ -78.089296834951753, 25.009252891183394 ], [ -78.089286737428708, 25.009262173770828 ], [ -78.089279556648066, 25.009273488137833 ], [ -78.08923243290802, 25.009312095530969 ], [ -78.089187821394148, 25.009353106536622 ], [ -78.089175070233026, 25.00935909139768 ], [ -78.089164404058721, 25.009367829932987 ], [ -78.089106494445844, 25.009391277972945 ], [ -78.089050159007286, 25.009417719411299 ], [ -78.089036002386038, 25.009419820699836 ], [ -78.089022894899699, 25.00942512800756 ], [ -78.088959868043943, 25.009431121410493 ], [ -78.08889732322352, 25.009440404982058 ], [ -78.083713257469256, 25.009461044735403 ], [ -78.083712135514205, 25.010022277182653 ], [ -78.083682976162279, 25.01017397707523 ], [ -78.083599504719317, 25.01030789231115 ], [ -78.08347145418341, 25.010408407741263 ], [ -78.083313755795075, 25.01046380274942 ], [ -78.079093190301393, 25.011228765808571 ], [ -78.079047393072059, 25.01123040434231 ], [ -78.07930327965046, 25.011976959960471 ], [ -78.079325632340513, 25.012122712452925 ], [ -78.079295301598393, 25.012267262740387 ], [ -78.079215516723409, 25.012395219781098 ], [ -78.079094772721859, 25.012492959256655 ], [ -78.078945925843897, 25.012550074249848 ], [ -78.078784824710127, 25.012560483357774 ], [ -78.075574179005955, 25.012287287348425 ], [ -78.075432731621589, 25.012255637043449 ], [ -78.075307518422647, 25.012187840919832 ], [ -78.075209382281372, 25.012089769807321 ], [ -78.075146821266671, 25.011969916202801 ], [ -78.07512525275618, 25.01183865884466 ], [ -78.075122783683369, 25.009494848092 ], [ -78.074517781520839, 25.009497210023635 ], [ -78.075424340044933, 25.013626969332616 ], [ -78.078613169132737, 25.013644372833028 ], [ -78.078813259431726, 25.013684063215763 ], [ -78.088650999576288, 25.017716008450677 ], [ -78.088802310541283, 25.017812421130699 ], [ -78.088904317312569, 25.017952653725768 ], [ -78.091471847842499, 25.02352121367856 ], [ -78.098766676894442, 25.014966671611759 ], [ -78.097406818437804, 25.012755741052771 ], [ -78.09735317448343, 25.012623371599201 ], [ -78.097347045350617, 25.012482375402186 ], [ -78.097389030844326, 25.012346554172733 ], [ -78.09747502098746, 25.012229203014837 ], [ -78.097596598389231, 25.012141809017319 ], [ -78.097741862227195, 25.012092926840527 ], [ -78.097896593174795, 25.012087341354452 ], [ -78.098045645246074, 25.012125599284506 ], [ -78.098174428330196, 25.012203955702198 ], [ -78.098270336318066, 25.012314740595571 ], [ -78.099790723788999, 25.01478663519832 ], [ -78.099842199698841, 25.014909596476635 ], [ -78.099852529403535, 25.015040863413201 ], [ -78.099820833233679, 25.01516925904961 ], [ -78.099749809898199, 25.015283850875552 ], [ -78.091892654715409, 25.024497884985994 ], [ -78.091881769788714, 25.024632587026868 ], [ -78.091823226672773, 25.024763223844673 ], [ -78.091723242651611, 25.024870983541643 ], [ -78.091591604814852, 25.024945317779871 ], [ -78.091492100420425, 25.024967568027161 ], [ -78.091127899496087, 25.025394620000093 ], [ -78.091512066715921, 25.029126836767468 ], [ -78.091485902334185, 25.029319331156891 ], [ -78.089028433335088, 25.035649861925197 ], [ -78.089101244559615, 25.035719437871016 ], [ -78.089168250467651, 25.035846656717801 ], [ -78.08918882619183, 25.035986513317368 ], [ -78.089160957487692, 25.03612531756486 ], [ -78.089087372183258, 25.036249482322344 ], [ -78.088975273219461, 25.036346853426785 ], [ -78.088835633614835, 25.036407899443891 ], [ -78.088682122353418, 25.036426644698835 ], [ -78.088070726538035, 25.036413360399525 ], [ -78.089214073406168, 25.040410136165136 ], [ -78.09503077593719, 25.047162707826562 ], [ -78.095109893360529, 25.047295578805013 ], [ -78.095136373236926, 25.047444801507655 ], [ -78.095091676360283, 25.052468163090037 ], [ -78.095066205136263, 25.052607348762265 ], [ -78.094994764185344, 25.052732552217712 ], [ -78.094884346540212, 25.052831517619989 ], [ -78.094745760635149, 25.052894557474168 ], [ -78.094592572306539, 25.0529155009337 ], [ -78.094439776842776, 25.052892297871253 ], [ -78.09430233108472, 25.052827219573022 ], [ -78.094193689286072, 25.052726636406099 ], [ -78.09412448607722, 25.052600394223504 ], [ -78.094101495468024, 25.05246085055602 ], [ -78.094130723662929, 25.0491786908275 ], [ -78.093618329393522, 25.050768584411021 ], [ -78.093546209527105, 25.050903615544101 ], [ -78.093429421271495, 25.051009593116181 ], [ -78.093280911539381, 25.051074768561953 ], [ -78.092730803987649, 25.051219788369515 ], [ -78.095401297335869, 25.058457962597323 ], [ -78.09542671601173, 25.058619304084189 ], [ -78.095387515029998, 25.058778339079403 ], [ -78.092726864720376, 25.064469606493688 ], [ -78.092644618961529, 25.06458918535975 ], [ -78.092525829403513, 25.064679762237457 ], [ -78.0923821240075, 25.064732470757733 ], [ -78.092227569762329, 25.064742151382745 ], [ -78.09207729567008, 25.064707856480563 ], [ -78.09194601175453, 25.0646329430955 ], [ -78.091846569084666, 25.064524744329425 ], [ -78.091788701790293, 25.064393851504626 ], [ -78.091778074221949, 25.064253077383402 ], [ -78.091815726524345, 25.064116201942468 ], [ -78.09440264567904, 25.058582748165236 ], [ -78.091778765494823, 25.051470760063523 ], [ -78.090305956204446, 25.051859001101359 ], [ -78.092522342324372, 25.058655498900738 ], [ -78.092542682758364, 25.058795383782634 ], [ -78.092514571761782, 25.058934147609655 ], [ -78.092440760879867, 25.059058207200284 ], [ -78.092328475134934, 25.059155418685737 ], [ -78.0921887058294, 25.059216266256197 ], [ -78.092035134643893, 25.059234793662249 ], [ -78.091882794345665, 25.059209187278924 ], [ -78.091746597219455, 25.059141953648762 ], [ -78.091639875290028, 25.059039674119596 ], [ -78.091573075252029, 25.058912360596654 ], [ -78.089354742505989, 25.052109737691264 ], [ -78.087703879166028, 25.052544883006547 ], [ -78.089279173181779, 25.057234165258311 ], [ -78.08930083029172, 25.057369704031942 ], [ -78.089276824491705, 25.057504914138256 ], [ -78.089209369627483, 25.05762732551111 ], [ -78.089104686777219, 25.057725648439728 ], [ -78.088972430534398, 25.057790814803813 ], [ -78.088824798598139, 25.057816814425053 ], [ -78.088675406788568, 25.057801249391986 ], [ -78.088538033250074, 25.057745555226305 ], [ -78.088425347678026, 25.057654868488193 ], [ -78.084518708206133, 25.053384392087434 ], [ -78.082920570776963, 25.053805580646614 ], [ -78.082871030088526, 25.053812531823517 ], [ -78.084119596615281, 25.057552342658997 ], [ -78.084122492958329, 25.057551227491032 ], [ -78.084276834872284, 25.05753914170522 ], [ -78.084427722846854, 25.057571091657248 ], [ -78.084560387066233, 25.05764394988115 ], [ -78.084661841521537, 25.057750584562552 ], [ -78.084722155137626, 25.057880557628906 ], [ -78.084735423898422, 25.058021146472864 ], [ -78.084700348810856, 25.058158589306036 ], [ -78.084620363118404, 25.058279432248366 ], [ -78.084503296288744, 25.058371846294445 ], [ -78.084410737792737, 25.058424352444639 ], [ -78.084946336066992, 25.060028506353735 ], [ -78.084986624523083, 25.06005476431293 ], [ -78.085078587412511, 25.060168318025216 ], [ -78.085127525972325, 25.060302199280713 ], [ -78.085128649637639, 25.0604433029044 ], [ -78.085106289715, 25.060507568523949 ], [ -78.085160918867672, 25.060671182113872 ], [ -78.08518079934656, 25.060838000125404 ], [ -78.084441472815911, 25.069346094761652 ], [ -78.084410501756253, 25.069471245250934 ], [ -78.080052823722838, 25.079875805388742 ], [ -78.085924409328612, 25.07854385258786 ], [ -78.086207873967226, 25.077854426916417 ], [ -78.085576091334062, 25.075622690655798 ], [ -78.085561356862101, 25.075482223174777 ], [ -78.085595003661155, 25.075344483798474 ], [ -78.085673737996444, 25.075222955400115 ], [ -78.085789852710889, 25.075129533970713 ], [ -78.085931981690308, 25.075073364177676 ], [ -78.086086212456777, 25.075059944248991 ], [ -78.086237447981858, 25.075090587792268 ], [ -78.086370884430266, 25.075162295220604 ], [ -78.086473460204516, 25.075268047366649 ], [ -78.08653513447004, 25.075397492546529 ], [ -78.087205899614574, 25.077766865564662 ], [ -78.08722088779983, 25.077903349912035 ], [ -78.087190135721301, 25.078037625410076 ], [ -78.087090800000297, 25.078279229702066 ], [ -78.087746948438422, 25.0781303627179 ], [ -78.087890434879228, 25.078117507385489 ], [ -78.088031905796129, 25.078142837980412 ], [ -78.088785999031074, 25.078385942444935 ], [ -78.089704229728554, 25.076087464598146 ], [ -78.089779326958222, 25.075964041846209 ], [ -78.089892625584156, 25.075867795026507 ], [ -78.090033035141886, 25.075808145375792 ], [ -78.090186811455382, 25.075790931752781 ], [ -78.090338901978456, 25.075817839114716 ], [ -78.090474419185327, 25.075886233594218 ], [ -78.090580097806367, 25.07598942031581 ], [ -78.090645593287448, 25.07611729871677 ], [ -78.090664494384782, 25.076257351232943 ], [ -78.090634950776447, 25.076395868580359 ], [ -78.089719696691688, 25.078686940870906 ], [ -78.091482846829209, 25.079255311166072 ], [ -78.092432867058392, 25.076915538828171 ], [ -78.092508674285057, 25.076792476723895 ], [ -78.092622526076454, 25.076696772574284 ], [ -78.092763277822073, 25.076637794495642 ], [ -78.092917151851523, 25.076621315608882 ], [ -78.093069086054086, 25.076648948950822 ], [ -78.09320420820525, 25.076717989590851 ], [ -78.093309291704884, 25.07682167940332 ], [ -78.093374050251811, 25.076949868579575 ], [ -78.093392144737109, 25.077090009134245 ], [ -78.093361803795119, 25.07722838316489 ], [ -78.092416611917798, 25.079556309319543 ], [ -78.094382914649742, 25.080190119931348 ], [ -78.095408816194492, 25.07776061702091 ], [ -78.095486366276248, 25.077638459102744 ], [ -78.095601569119324, 25.077544105233954 ], [ -78.095743147866997, 25.077486791355735 ], [ -78.095897243899543, 25.077472127686381 ], [ -78.096048773376353, 25.077501549578294 ], [ -78.096182903689069, 25.077572177026976 ], [ -78.096286505322325, 25.077677096580171 ], [ -78.096349437026205, 25.077806038053868 ], [ -78.096365538512515, 25.077946379821665 ], [ -78.096333233502875, 25.07808438428324 ], [ -78.095316940255017, 25.080491178386101 ], [ -78.096923888813222, 25.081009117915674 ], [ -78.096924916047158, 25.081009301573612 ], [ -78.096925714079262, 25.08100970620881 ], [ -78.101916530243756, 25.082618164416726 ], [ -78.102052711793249, 25.082685465391044 ], [ -78.102159391982411, 25.082787796945748 ], [ -78.102226128219542, 25.082915142227648 ], [ -78.102246387809387, 25.083055035858649 ], [ -78.102218187452252, 25.083193784108801 ], [ -78.102144287440481, 25.083317805321276 ], [ -78.102031921520975, 25.083414959383916 ], [ -78.101892088844394, 25.083475736107779 ], [ -78.101738477294745, 25.083494186178324 ], [ -78.101586123590678, 25.08346850354074 ], [ -78.100029600588996, 25.082966885839014 ], [ -78.096134239049874, 25.092127342742636 ], [ -78.097828085350415, 25.09269288380942 ], [ -78.097869835520598, 25.092701060385998 ], [ -78.097899418262401, 25.092716699868806 ], [ -78.099741793174857, 25.093331801542426 ], [ -78.101167339842462, 25.089227698738753 ], [ -78.101236604398437, 25.089101476503036 ], [ -78.101345310332263, 25.089000923568555 ], [ -78.101482816730439, 25.088935882685664 ], [ -78.101635663586748, 25.088912720441719 ], [ -78.101788889331687, 25.088933704080823 ], [ -78.101927495319316, 25.088996779584683 ], [ -78.102037913939199, 25.089095772731657 ], [ -78.102109336666757, 25.089220993454269 ], [ -78.102134772069661, 25.08936018434316 ], [ -78.102111730207781, 25.089499720462044 ], [ -78.100672746669233, 25.09364260143796 ], [ -78.101742933644545, 25.093999875081504 ], [ -78.101878285435191, 25.094068570769132 ], [ -78.101983701036431, 25.09417199168178 ], [ -78.102048861639616, 25.094300014332621 ], [ -78.102067388780412, 25.094440107037194 ], [ -78.102037468741997, 25.094578556577389 ], [ -78.101962030151938, 25.094701810534531 ], [ -78.101848457366728, 25.094797803899585 ], [ -78.10170786767705, 25.094857140100473 ], [ -78.101554023071714, 25.094874010831834 ], [ -78.101401983083861, 25.094846764637058 ], [ -78.100373717116057, 25.094503486673961 ], [ -78.098599383360096, 25.09961145256856 ], [ -78.100266683912963, 25.100792018572868 ], [ -78.10036255276647, 25.100881962145333 ], [ -78.100427534040975, 25.100992457424599 ], [ -78.100456608744736, 25.101114970168695 ], [ -78.100447531145619, 25.101240037928971 ], [ -78.09972791690268, 25.104385085380155 ], [ -78.105611606197229, 25.106530007457753 ], [ -78.113381774078732, 25.107464860792522 ], [ -78.113531068639915, 25.107505312687405 ], [ -78.118882512242308, 25.109841652666688 ], [ -78.126511848272344, 25.112588309553193 ], [ -78.138398901915622, 25.101301431043307 ], [ -78.138503922781354, 25.101225568084612 ], [ -78.138627439213195, 25.101178128504113 ], [ -78.143474346739978, 25.09998784669348 ], [ -78.143590301084544, 25.099972442839967 ], [ -78.143706984288073, 25.099982275762269 ], [ -78.152360215940917, 25.101668509901717 ], [ -78.152528990282718, 25.101732865491499 ], [ -78.163523307369047, 25.108324800910818 ], [ -78.171549245089764, 25.110215323341478 ], [ -78.171707516385752, 25.110281377474777 ], [ -78.171830905837126, 25.110393216631078 ], [ -78.171904167600061, 25.110537022184079 ], [ -78.174342475691589, 25.118961676695967 ], [ -78.17761525617739, 25.118019923739361 ], [ -78.177748937885582, 25.117999179209225 ], [ -78.177883789036443, 25.118012218745438 ], [ -78.178009702533345, 25.118058065023863 ], [ -78.180946871435921, 25.119581165370558 ], [ -78.181475465776671, 25.119435251940025 ], [ -78.181628984451464, 25.119415938653503 ], [ -78.181781544713246, 25.119440761031331 ], [ -78.181918213056676, 25.119507289296404 ], [ -78.182025611535266, 25.119609011249612 ], [ -78.182093227248515, 25.119735969709819 ], [ -78.182114441413731, 25.119875737164463 ], [ -78.182087177291294, 25.120014632235833 ], [ -78.18201612667103, 25.12013561398355 ], [ -78.184675094643509, 25.12151432964221 ], [ -78.18474033366131, 25.121497109157957 ], [ -78.184894101771178, 25.121479501583075 ], [ -78.185046320413946, 25.121506015626235 ], [ -78.185182089523352, 25.12157405592011 ], [ -78.18528811917318, 25.121676962258938 ], [ -78.185354030449531, 25.121804661525985 ], [ -78.185363211522613, 25.121871115284954 ], [ -78.192235520651622, 25.125434073258202 ], [ -78.192356543911444, 25.125522212713559 ], [ -78.192441726281146, 25.125640084920335 ], [ -78.192482729469432, 25.125776151797844 ], [ -78.192475539669687, 25.125917094222281 ], [ -78.192420860508662, 25.126049115776137 ], [ -78.192324044231981, 25.126159293234242 ], [ -78.19219456783938, 25.126236841592725 ], [ -78.19204510542977, 25.126274169805736 ], [ -78.191890287554003, 25.126267623877524 ], [ -78.191745269025418, 25.12621784456017 ], [ -78.187114713331837, 25.123817186665232 ], [ -78.188703404500657, 25.129630308116937 ], [ -78.189377294752347, 25.129376097039394 ], [ -78.189537726799216, 25.129342528798183 ], [ -78.189701383985295, 25.129358671587223 ], [ -78.189850194861194, 25.129422742859262 ], [ -78.18996772730884, 25.129527667678502 ], [ -78.194316622605768, 25.134977283282485 ], [ -78.195240327485749, 25.135032298755927 ], [ -78.19524574964548, 25.13503341500806 ], [ -78.198855365243148, 25.133062712320719 ], [ -78.198966084956453, 25.133017982184711 ], [ -78.19908541936195, 25.132999049709102 ], [ -78.203439418685065, 25.132800723220964 ], [ -78.203577751196221, 25.132812169545016 ], [ -78.203707155166612, 25.132858126180544 ], [ -78.20381745700854, 25.132934980064515 ], [ -78.206815975418721, 25.135711546582762 ], [ -78.206906007826078, 25.135826395064559 ], [ -78.206952646759987, 25.135960948496145 ], [ -78.206951326755487, 25.136102035904315 ], [ -78.206902176863409, 25.136235846685118 ], [ -78.206810008079245, 25.136349282476402 ], [ -78.206683842462311, 25.136431239328456 ], [ -78.206536030017901, 25.136473694660488 ], [ -78.206381039779117, 25.136472492594592 ], [ -78.206234043430825, 25.13642775078279 ], [ -78.206109430138184, 25.136343848895972 ], [ -78.203266822824688, 25.133711646886013 ], [ -78.199258693863598, 25.13389422039663 ], [ -78.195275152861399, 25.136069066263257 ], [ -78.195322411239772, 25.136190646873281 ], [ -78.195326429476182, 25.136331693292 ], [ -78.195282370387844, 25.136466966729824 ], [ -78.192629189880591, 25.141527018121522 ], [ -78.19254136036875, 25.141643276006015 ], [ -78.192418361907286, 25.141729138546154 ], [ -78.192272234467438, 25.141776200844763 ], [ -78.192117282134845, 25.141779856058715 ], [ -78.19196867288251, 25.141739746370778 ], [ -78.191840953763176, 25.141659798022673 ], [ -78.191746626887593, 25.141547836977246 ], [ -78.191694925602675, 25.141414822835213 ], [ -78.191690910676726, 25.141273776004986 ], [ -78.191734974959587, 25.141138503152476 ], [ -78.194039381224457, 25.136743709904227 ], [ -78.193984059751429, 25.136773911108271 ], [ -78.193964847203517, 25.136780974087774 ], [ -78.193948016941661, 25.136791783024485 ], [ -78.193894134368207, 25.136806969743361 ], [ -78.193840963976967, 25.136826516366806 ], [ -78.193819954298107, 25.136827877242688 ], [ -78.193799953791071, 25.136833514336857 ], [ -78.193743879998777, 25.136832804835979 ], [ -78.193687028841453, 25.136836487254815 ], [ -78.193666245859148, 25.136831822497175 ], [ -78.193644970857378, 25.136831553288118 ], [ -78.193592192318476, 25.136815201091132 ], [ -78.193537192067353, 25.136802856191153 ], [ -78.193518703053343, 25.136792432119574 ], [ -78.193498239110539, 25.136786091825652 ], [ -78.190543539863, 25.135368162354119 ], [ -78.189824852557564, 25.136534565404279 ], [ -78.189728814007125, 25.136645311702811 ], [ -78.189599880926536, 25.136723622198033 ], [ -78.189450674229633, 25.136761831240648 ], [ -78.189295799435129, 25.136756198612481 ], [ -78.189150416928001, 25.136707275664484 ], [ -78.189028757893865, 25.136619851350495 ], [ -78.188942731220578, 25.136502483437756 ], [ -78.188900757752762, 25.136366660787708 ], [ -78.188906946018221, 25.136225678718542 ], [ -78.188960690105432, 25.136093337547408 ], [ -78.189666779089109, 25.134947395416646 ], [ -78.185178237430605, 25.132793162950399 ], [ -78.182189570370312, 25.139038121843495 ], [ -78.184254310074849, 25.140197140895388 ], [ -78.186503909742981, 25.13576852018344 ], [ -78.186590168528241, 25.135651293545681 ], [ -78.186711999723499, 25.135564068882431 ], [ -78.186857477663509, 25.135515384277944 ], [ -78.187012362064735, 25.135510005261985 ], [ -78.187161491921188, 25.135548458348985 ], [ -78.187290269508878, 25.135626979507204 ], [ -78.187386089257146, 25.135737882599063 ], [ -78.187439571640439, 25.13587031173077 ], [ -78.187445481319642, 25.136011303874728 ], [ -78.187403239655808, 25.136147057758699 ], [ -78.1851037538447, 25.140673951309104 ], [ -78.190262597178844, 25.143569522320888 ], [ -78.190380187929648, 25.143661450584204 ], [ -78.190460815041206, 25.143781955555045 ], [ -78.190496586111891, 25.143919241438354 ], [ -78.190483999484698, 25.144059869781657 ], [ -78.190424287065483, 25.144190074906774 ], [ -78.190323293796965, 25.144297111388799 ], [ -78.190190905562659, 25.144370501682403 ], [ -78.190040081503525, 25.144403061763217 ], [ -78.189885585464708, 25.14439160437734 ], [ -78.189742540755844, 25.144337251049659 ], [ -78.18130368767028, 25.13960048868223 ], [ -78.181195348021546, 25.139518177596674 ], [ -78.18111689754501, 25.139411401215394 ], [ -78.181074701232575, 25.139288822822952 ], [ -78.181072182560953, 25.139160387775274 ], [ -78.181109545759583, 25.139036516576919 ], [ -78.182386798689748, 25.136367770052825 ], [ -78.1822551953192, 25.136307995062335 ], [ -78.180417452701334, 25.13511393293188 ], [ -78.17868284954838, 25.137722794815755 ], [ -78.178637884884893, 25.137771256276331 ], [ -78.178594643247934, 25.13782100012865 ], [ -78.178587990893618, 25.137825030350697 ], [ -78.178582834685841, 25.137830587535529 ], [ -78.178523619401133, 25.13786402875807 ], [ -78.178465607471892, 25.137899174285955 ], [ -78.17845791255435, 25.137901135976762 ], [ -78.178451122195341, 25.137904970754487 ], [ -78.178383452713106, 25.137920118247287 ], [ -78.178316349130199, 25.137937225128649 ], [ -78.178308364887442, 25.137936926261425 ], [ -78.178300605068856, 25.137938663253546 ], [ -78.178231105406184, 25.137934034251916 ], [ -78.178161478797222, 25.137931427924428 ], [ -78.17815398679079, 25.137928897753525 ], [ -78.178146017105362, 25.137928366928946 ], [ -78.178081490446189, 25.137904414547609 ], [ -78.178016156421208, 25.137882350134333 ], [ -78.176426584347311, 25.137068511188382 ], [ -78.176033695783502, 25.137695043531089 ], [ -78.175936742059747, 25.137805129724462 ], [ -78.175807162323594, 25.137882555247028 ], [ -78.175657640790348, 25.137919741076988 ], [ -78.175502813798644, 25.137913047156218 ], [ -78.175357837054221, 25.137863128723556 ], [ -78.175236902022391, 25.137774872178831 ], [ -78.175151846718265, 25.137656916754317 ], [ -78.175110996899704, 25.137520808820984 ], [ -78.175118351102356, 25.137379871621672 ], [ -78.175173189284592, 25.137247901080173 ], [ -78.175562966214258, 25.136626338329396 ], [ -78.173774827588872, 25.13571078304086 ], [ -78.172598648134922, 25.13739307046821 ], [ -78.172495992808351, 25.13749878699247 ], [ -78.17236247399606, 25.137570452800578 ], [ -78.172211161512152, 25.137601052673467 ], [ -78.172056867014632, 25.137587591237782 ], [ -78.17191469408445, 25.137531386190947 ], [ -78.171798559720486, 25.13743793931641 ], [ -78.171719832000093, 25.137316397914745 ], [ -78.171686217278591, 25.137178659375632 ], [ -78.17170100586128, 25.137038206551548 ], [ -78.171762749978214, 25.136908787945181 ], [ -78.17290996499284, 25.13526794637362 ], [ -78.172549997048563, 25.135083628980521 ], [ -78.169310987328231, 25.140102581288023 ], [ -78.169489703964501, 25.140196910934993 ], [ -78.17017662676804, 25.139100127080518 ], [ -78.17027351589924, 25.138989992214388 ], [ -78.17040305077704, 25.138912501772662 ], [ -78.17055255167287, 25.13887524098752 ], [ -78.170707384526494, 25.138881857154157 ], [ -78.170852393380486, 25.138931702627282 ], [ -78.170973383889418, 25.139019898220479 ], [ -78.171058512711014, 25.139137810801301 ], [ -78.171099446795324, 25.139273898336985 ], [ -78.171092179099844, 25.139414839681415 ], [ -78.171037420876232, 25.139546838522612 ], [ -78.170346915258435, 25.14064935618768 ], [ -78.177148097932843, 25.144238782668218 ], [ -78.185191354950518, 25.14838660277513 ], [ -78.185198218148059, 25.148391577512069 ], [ -78.185206321409197, 25.148394638874617 ], [ -78.185258699342043, 25.148435416815687 ], [ -78.185312616083166, 25.148474497878365 ], [ -78.185317454453454, 25.148481159541564 ], [ -78.185324121786593, 25.148486350268904 ], [ -78.185360092081126, 25.148539864703473 ], [ -78.18539810195567, 25.148592198129208 ], [ -78.185400441883942, 25.148599894633062 ], [ -78.185405020645106, 25.148606706624541 ], [ -78.185421062258541, 25.148667719220242 ], [ -78.18543944456826, 25.148728182279338 ], [ -78.185439056999584, 25.148736160239974 ], [ -78.18544109898319, 25.148743926694035 ], [ -78.18543564159404, 25.148806465136776 ], [ -78.185432596889399, 25.148869139303113 ], [ -78.185429519752603, 25.148876617783507 ], [ -78.185428825066694, 25.148884578467452 ], [ -78.185402402810382, 25.148942521064409 ], [ -78.18537822905644, 25.149001271354226 ], [ -78.185372763554852, 25.149007518307382 ], [ -78.185369400191092, 25.149014893973394 ], [ -78.184324835420654, 25.150563870081406 ], [ -78.187734736719051, 25.152378195201813 ], [ -78.187854680993055, 25.152467578597523 ], [ -78.187938408177075, 25.15258632279216 ], [ -78.187977722419888, 25.152722804348539 ], [ -78.187968775238318, 25.152863663549972 ], [ -78.187912442283604, 25.152995112123701 ], [ -78.187814237688244, 25.15310428293034 ], [ -78.187683774353673, 25.153180489503264 ], [ -78.187533822991213, 25.153216272140234 ], [ -78.187379062016149, 25.153208128138459 ], [ -78.187234640672244, 25.153156854682262 ], [ -78.183806334263636, 25.151332735335316 ], [ -78.182622331259154, 25.153088408539407 ], [ -78.1867495942478, 25.154548560818345 ], [ -78.197593375338087, 25.155291344516513 ], [ -78.19774423731748, 25.155323806823795 ], [ -78.197876694096351, 25.155397110701735 ], [ -78.197977779971438, 25.155504080712642 ], [ -78.198037599946133, 25.155634245960041 ], [ -78.198050298324262, 25.15577486502486 ], [ -78.198014631944773, 25.155912173160562 ], [ -78.197934091930293, 25.156032729672035 ], [ -78.197816562009479, 25.156124733591334 ], [ -78.197673546836711, 25.156179178860317 ], [ -78.197519045833829, 25.156190735934452 ], [ -78.186601633693556, 25.155442913801711 ], [ -78.186459334922901, 25.155413552420107 ], [ -78.179983591298551, 25.153122486752082 ], [ -78.176714319459251, 25.156332507572785 ], [ -78.176592442058222, 25.156419704295189 ], [ -78.17644692427406, 25.156468354987933 ], [ -78.176292010512455, 25.156473697323744 ], [ -78.176142864970274, 25.156435208336536 ], [ -78.176014087197828, 25.156356655620989 ], [ -78.175918282937559, 25.156245728524791 ], [ -78.175864830156826, 25.156113285438604 ], [ -78.175858961075136, 25.15597229087297 ], [ -78.175901250040567, 25.155836546379376 ], [ -78.175987557369041, 25.155719339550195 ], [ -78.178990308712841, 25.152771037455146 ], [ -78.178848146875779, 25.152720736148858 ], [ -78.175464201262429, 25.153392321027589 ], [ -78.174192074658663, 25.154609615736927 ], [ -78.174072436637573, 25.154693658448849 ], [ -78.173930528995811, 25.154740968019738 ], [ -78.173779553463177, 25.15474714319982 ], [ -78.167003386421584, 25.154077096976533 ], [ -78.166872317296878, 25.156000427123612 ], [ -78.166835305952205, 25.156145626393357 ], [ -78.166748312639641, 25.156271914068025 ], [ -78.166620840536083, 25.156365494229117 ], [ -78.166466814900957, 25.156416143956463 ], [ -78.162742293192267, 25.157035357506416 ], [ -78.160569338055652, 25.158720616059231 ], [ -78.160439781782429, 25.158792689622381 ], [ -78.161057304799428, 25.159300628630916 ], [ -78.161221065864069, 25.159245654504804 ], [ -78.161373119191197, 25.15921813651952 ], [ -78.16152707371927, 25.159234729410517 ], [ -78.161667859466334, 25.159293808951684 ], [ -78.161781695459652, 25.159389592070482 ], [ -78.161857438668676, 25.159512702918398 ], [ -78.161887674751185, 25.159651090617349 ], [ -78.161869443847152, 25.159791208857069 ], [ -78.161805995845157, 25.159916449170183 ], [ -78.163374674536101, 25.161206699106568 ], [ -78.165264936858733, 25.161851793476611 ], [ -78.166614661891913, 25.16028308351234 ], [ -78.166275075214017, 25.1595480646223 ], [ -78.166238014871155, 25.159410336356082 ], [ -78.166249776325998, 25.159268942666898 ], [ -78.166309196644576, 25.159137862137356 ], [ -78.166410401239389, 25.159030053717196 ], [ -78.166543384696894, 25.158956175580553 ], [ -78.166694999957201, 25.15892353145572 ], [ -78.171416008531182, 25.158603048685446 ], [ -78.171560241156698, 25.158612513109151 ], [ -78.171695329450884, 25.158659474028603 ], [ -78.171809768174185, 25.158739931854882 ], [ -78.171893810731817, 25.158847034122111 ], [ -78.171940299266751, 25.158971659087843 ], [ -78.171945274297713, 25.159103192603588 ], [ -78.171657386161186, 25.161432149783142 ], [ -78.17408929980671, 25.162281671800159 ], [ -78.174229241187064, 25.162356460806659 ], [ -78.174335127794947, 25.162468387239425 ], [ -78.174395602233972, 25.162605445962647 ], [ -78.174404177902218, 25.162752936139029 ], [ -78.174359934794225, 25.162895038011147 ], [ -78.174267618255783, 25.163016509716357 ], [ -78.174137130068047, 25.16310432213924 ], [ -78.17398246641784, 25.163149056442979 ], [ -78.168690965297756, 25.163843424432091 ], [ -78.168573232829473, 25.163846003825313 ], [ -78.168458156447684, 25.163823226159582 ], [ -78.165350137626604, 25.162843991791313 ], [ -78.165338272256804, 25.162840098644356 ], [ -78.163138501407033, 25.162089383857282 ], [ -78.15933719559483, 25.163784251719679 ], [ -78.15921068309423, 25.163822485350156 ], [ -78.159077549541053, 25.163828642991021 ], [ -78.154671242660811, 25.16349036404155 ], [ -78.154527379574063, 25.163459160619624 ], [ -78.154400041888863, 25.163390708289246 ], [ -78.154300572078498, 25.16329110437642 ], [ -78.154237830252598, 25.163169220997958 ], [ -78.154217404957052, 25.163035914770187 ], [ -78.154241115410741, 25.162903059754097 ], [ -78.154693551798175, 25.161621151797224 ], [ -78.154760040374384, 25.161499601490732 ], [ -78.154863267536626, 25.161401571326614 ], [ -78.154993876022914, 25.161335947389102 ], [ -78.160007657774031, 25.159652986867748 ], [ -78.157511830958356, 25.157599993192143 ], [ -78.156258559967881, 25.157489704753772 ], [ -78.156097778602387, 25.157449942235509 ], [ -78.15596056723399, 25.157363923857002 ], [ -78.155862439090683, 25.157241374945045 ], [ -78.155814488514622, 25.157096150988291 ], [ -78.15551943278372, 25.15492391091248 ], [ -78.155527158353948, 25.154772110843886 ], [ -78.1555898414273, 25.154631264106527 ], [ -78.155700364664, 25.154517362719218 ], [ -78.155846178952373, 25.154443339224997 ], [ -78.159706187431766, 25.15320250357717 ], [ -78.16196126872174, 25.149709085602048 ], [ -78.161195748151812, 25.149492692314134 ], [ -78.160693162568137, 25.150185005362868 ], [ -78.160587640255088, 25.150289746190229 ], [ -78.160451547791837, 25.150359399115679 ], [ -78.16029839893541, 25.150387047683527 ], [ -78.152489007348549, 25.150654142795855 ], [ -78.152363360411471, 25.150643807641483 ], [ -78.152244654092669, 25.150604925345217 ], [ -78.149569398847831, 25.149358490606218 ], [ -78.149444157147897, 25.149275340466318 ], [ -78.149353275170498, 25.149161033425724 ], [ -78.149305649042873, 25.149026758727146 ], [ -78.14930594062217, 25.148885660168268 ], [ -78.149354121206301, 25.148751549474351 ], [ -78.149445474404601, 25.148637554304557 ], [ -78.149571057864392, 25.148554833236627 ], [ -78.149718578635515, 25.148511483511889 ], [ -78.149873596477093, 25.148511748448801 ], [ -78.150020937323035, 25.148555602098249 ], [ -78.15258105867089, 25.149748396224982 ], [ -78.160006751154057, 25.149494432736383 ], [ -78.160210253422321, 25.14921411071289 ], [ -78.155785530629743, 25.147963221620408 ], [ -78.155646506947434, 25.1479008034724 ], [ -78.155535478687682, 25.14780233682248 ], [ -78.15546331409135, 25.147677460343889 ], [ -78.15543707705524, 25.147538397884446 ], [ -78.15545933569787, 25.147398761885256 ], [ -78.155527911029736, 25.147272220885274 ], [ -78.155636090308491, 25.147171161551643 ], [ -78.155773284171374, 25.14710547620459 ], [ -78.155926063203921, 25.147081594515498 ], [ -78.15607947247527, 25.147101854151828 ], [ -78.16077913984391, 25.148430468683436 ], [ -78.161070514649097, 25.148029095075213 ], [ -78.161175152444216, 25.147924992471072 ], [ -78.161310011557404, 25.147855416499571 ], [ -78.161461891106711, 25.147827177671886 ], [ -78.161615924204312, 25.147843040158691 ], [ -78.161757033177423, 25.147901451230144 ], [ -78.1618714054148, 25.14799669324756 ], [ -78.161947845396213, 25.14811944332892 ], [ -78.161978870576093, 25.1482576859107 ], [ -78.16196144385296, 25.14839788888834 ], [ -78.161897270915858, 25.14852632821664 ], [ -78.16176462890482, 25.148709047002306 ], [ -78.162476838998415, 25.148910369712105 ], [ -78.163354067191179, 25.147551351965024 ], [ -78.15748066042444, 25.144560647357171 ], [ -78.157354749316838, 25.144469224585059 ], [ -78.15726770802091, 25.144345870465987 ], [ -78.157228734899761, 25.144203620996297 ], [ -78.157241948437232, 25.144057508983206 ], [ -78.157305952062643, 25.143922975373822 ], [ -78.159032386876731, 25.141481580070657 ], [ -78.158531267038228, 25.135454835409888 ], [ -78.158300190716702, 25.135332840520107 ], [ -78.158179923927236, 25.135243830261903 ], [ -78.158095759390022, 25.135125345278698 ], [ -78.158055935666226, 25.134988983778111 ], [ -78.158064350848903, 25.134848093823081 ], [ -78.158120181040331, 25.13471646671174 ], [ -78.158217961062292, 25.134606986986043 ], [ -78.158348119475548, 25.134530371217178 ], [ -78.158452309566883, 25.134505156150375 ], [ -78.158330136014129, 25.133035635577023 ], [ -78.158343391062786, 25.132892674986049 ], [ -78.158405298811658, 25.132760738258515 ], [ -78.158509593809143, 25.132653177898511 ], [ -78.164267478374143, 25.128345478784297 ], [ -78.162408694346126, 25.126241867779061 ], [ -78.159916998215152, 25.127848816273357 ], [ -78.159778067741627, 25.127911363371524 ], [ -78.159624705713782, 25.127931765429295 ], [ -78.159471924423926, 25.127908025315644 ], [ -78.159334679325866, 25.127842466887429 ], [ -78.159226405031077, 25.127741507510663 ], [ -78.159157700195166, 25.127615029864756 ], [ -78.159135290042599, 25.127475414529446 ], [ -78.159161368086771, 25.127336328061997 ], [ -78.159233381470358, 25.127211385205744 ], [ -78.159344280916585, 25.127112816187736 ], [ -78.162216235137933, 25.125260632003712 ], [ -78.162349397149683, 25.125199754148429 ], [ -78.162496420683865, 25.125177681288736 ], [ -78.16264400292927, 25.125196410581093 ], [ -78.162778790532684, 25.125254247371156 ], [ -78.162888587783172, 25.12534595852755 ], [ -78.164974560464927, 25.127706678917036 ], [ -78.166901095611749, 25.125706583274003 ], [ -78.166318482616674, 25.121139100375281 ], [ -78.166324908532061, 25.120998124356369 ], [ -78.166378870552478, 25.120865856017556 ], [ -78.166475086366958, 25.120755242670331 ], [ -78.16660413764788, 25.120677111853496 ], [ -78.166753392002818, 25.120639111483491 ], [ -78.166908239503456, 25.120644961250715 ], [ -78.167053522758451, 25.120694088529593 ], [ -78.167175020562951, 25.120781684434842 ], [ -78.167260839918654, 25.120899174535275 ], [ -78.167302580183033, 25.12103505815351 ], [ -78.167781850166151, 25.124792171133929 ], [ -78.169664108726579, 25.122837924310673 ], [ -78.169758871543266, 25.122761797293588 ], [ -78.169871709526319, 25.122709978518209 ], [ -78.171117562198205, 25.122309684874107 ], [ -78.170811673679012, 25.120373685631069 ], [ -78.170817409594108, 25.120215893870974 ], [ -78.170882532103477, 25.120069571186722 ], [ -78.170999059883954, 25.119952650232548 ], [ -78.171152711723707, 25.119879460264031 ], [ -78.173396731230881, 25.119233801961325 ], [ -78.171020187833051, 25.11102236240971 ], [ -78.163533213686549, 25.109258797919058 ], [ -78.160298957834812, 25.110086530879329 ], [ -78.160314643336932, 25.110196968190014 ], [ -78.160310231279695, 25.110338009194688 ], [ -78.160258166622086, 25.110470905786528 ], [ -78.160163545680902, 25.110582649087785 ], [ -78.16003563055591, 25.110662300820131 ], [ -78.159886942512841, 25.110702064044478 ], [ -78.159732036298593, 25.110698046407467 ], [ -78.15958607537334, 25.110650641171954 ], [ -78.159463347544076, 25.110564488726055 ], [ -78.159375866323046, 25.11044802233689 ], [ -78.159338540047855, 25.110332312249298 ], [ -78.158472923213779, 25.110553827003095 ], [ -78.158475277334531, 25.110603906558797 ], [ -78.158433735324266, 25.110739840827705 ], [ -78.158348090956935, 25.110857433802803 ], [ -78.158226727621951, 25.110945174604307 ], [ -78.158081525227729, 25.110994474477778 ], [ -78.15792669730601, 25.111000507549349 ], [ -78.157777399650371, 25.11096268323832 ], [ -78.157648246701356, 25.110884704075527 ], [ -78.157562800703062, 25.110786724779395 ], [ -78.15638790573972, 25.111087367747501 ], [ -78.156479047625652, 25.11154977553694 ], [ -78.156476615157658, 25.11172058026585 ], [ -78.156404586657459, 25.11187830886912 ], [ -78.15264319472135, 25.117053456390583 ], [ -78.156576841534985, 25.119789296818599 ], [ -78.158192185742834, 25.119529808935983 ], [ -78.158347142211326, 25.119527329474408 ], [ -78.158495356206629, 25.119568566241359 ], [ -78.158622319652437, 25.119649482722021 ], [ -78.158715604552853, 25.119762158309644 ], [ -78.158766079504261, 25.119895563605962 ], [ -78.158768803551226, 25.120036640027589 ], [ -78.158723509885732, 25.120171578049494 ], [ -78.158634632025098, 25.120287168970702 ], [ -78.158510869882775, 25.120372097884317 ], [ -78.15836433818717, 25.120418051283206 ], [ -78.156534934612168, 25.120711925512758 ], [ -78.156398909370367, 25.12071648633502 ], [ -78.15626665610263, 25.120687168114365 ], [ -78.156225316960118, 25.120665892940377 ], [ -78.155451546314495, 25.122169140094158 ], [ -78.157416397063486, 25.121626197257154 ], [ -78.157569915060222, 25.121606841726283 ], [ -78.157722489134784, 25.121631622953732 ], [ -78.157859184429782, 25.12169811519054 ], [ -78.157966620360497, 25.121799809764337 ], [ -78.158034280360283, 25.121926752174062 ], [ -78.158055541311398, 25.122066516478245 ], [ -78.15802832189442, 25.122205421607475 ], [ -78.15795528637949, 25.12232987054966 ], [ -78.157843583888535, 25.122427681324204 ], [ -78.157704148628781, 25.122489279458634 ], [ -78.154748819168105, 25.123305910348343 ], [ -78.153750223353853, 25.123933776126201 ], [ -78.153610486484553, 25.123994809452903 ], [ -78.153456872043535, 25.12401354369992 ], [ -78.153304417032501, 25.123988144994719 ], [ -78.153168044965838, 25.123921099550451 ], [ -78.153061104993654, 25.123818970293868 ], [ -78.152994065154871, 25.123691754420676 ], [ -78.152973487689209, 25.123551904772643 ], [ -78.153001386712461, 25.123413110841611 ], [ -78.153075031118121, 25.12328895873366 ], [ -78.153187211976643, 25.123191601270602 ], [ -78.154139229916439, 25.122593024051522 ], [ -78.155414345117904, 25.120115836924164 ], [ -78.152095208145823, 25.117807368551443 ], [ -78.147905758691877, 25.123570813470469 ], [ -78.14812045547049, 25.125528550980654 ], [ -78.148228472843059, 25.125604800271201 ], [ -78.148315613254624, 25.12572148624696 ], [ -78.148322168114049, 25.125742012163634 ], [ -78.150524329723069, 25.126991197673988 ], [ -78.150640450742884, 25.127082570467014 ], [ -78.150720276367849, 25.127201915340386 ], [ -78.15075614363522, 25.127337775784468 ], [ -78.150744609315339, 25.127477109844289 ], [ -78.150686780495462, 25.127606542072453 ], [ -78.148681045223, 25.130639896552164 ], [ -78.148692314072008, 25.130742636891622 ], [ -78.150707633360042, 25.132069590455245 ], [ -78.152251261889987, 25.127854652795694 ], [ -78.152322679975015, 25.127729426067248 ], [ -78.152433109799418, 25.12763041951623 ], [ -78.152571741707945, 25.127567324521614 ], [ -78.152725005525895, 25.127546317194302 ], [ -78.152877898870869, 25.127569453841861 ], [ -78.153015455633962, 25.127634469696567 ], [ -78.153124210906824, 25.127735000603387 ], [ -78.15319351898026, 25.127861205968784 ], [ -78.153216595414705, 25.128000731999069 ], [ -78.153191181180034, 25.128139920950257 ], [ -78.151549145330407, 25.132623652404032 ], [ -78.152623049976839, 25.133330709476997 ], [ -78.152633399394219, 25.133340090198203 ], [ -78.152646018434851, 25.133346783380709 ], [ -78.152688111361741, 25.133389681136102 ], [ -78.152732886923417, 25.133430265665464 ], [ -78.152739545452619, 25.133442098599431 ], [ -78.152749274830668, 25.133452013986581 ], [ -78.152774745626999, 25.133504653107217 ], [ -78.152803552998975, 25.133555846855028 ], [ -78.152805868851175, 25.133568973718841 ], [ -78.152811756185031, 25.13358114073009 ], [ -78.152818111557906, 25.133638368560305 ], [ -78.152828130835999, 25.13369516035128 ], [ -78.152825877306498, 25.133708296200773 ], [ -78.152827346292156, 25.133721523849413 ], [ -78.152813964072777, 25.133777738546073 ], [ -78.152804214437822, 25.1338345692158 ], [ -78.152797612102447, 25.133846428223151 ], [ -78.152794518930278, 25.133859421696318 ], [ -78.151491329898548, 25.136913540694149 ], [ -78.151413963232656, 25.137034708066082 ], [ -78.151299469874701, 25.13712840472617 ], [ -78.146362057281991, 25.14004889703325 ], [ -78.146213052663995, 25.14010807508178 ], [ -78.146051026423862, 25.140120164175123 ], [ -78.145893424149065, 25.140083862646332 ], [ -78.145757215090285, 25.14000307911445 ], [ -78.145657065005963, 25.13988651163254 ], [ -78.145603757057458, 25.139746711137359 ], [ -78.145603030793765, 25.13959873005118 ], [ -78.146055472662681, 25.137052216136908 ], [ -78.146101315690814, 25.136922724358016 ], [ -78.146187495257507, 25.136811569793625 ], [ -78.150303299529597, 25.132916534116621 ], [ -78.148542182598803, 25.131756961756135 ], [ -78.146060168798286, 25.132663302006524 ], [ -78.145904313821319, 25.132694968962941 ], [ -78.145745489280174, 25.132679855397516 ], [ -78.145600197560611, 25.132619531641851 ], [ -78.145483534912998, 25.132520265511868 ], [ -78.145407622867381, 25.132392371048823 ], [ -78.145380348768256, 25.132249136837025 ], [ -78.145363350408843, 25.130663680732717 ], [ -78.143049059995121, 25.131580810484472 ], [ -78.142935498051315, 25.131611733644135 ], [ -78.142817117443457, 25.131617214131317 ], [ -78.131801350295333, 25.130922668472756 ], [ -78.131650303198285, 25.130891013116909 ], [ -78.131517394474017, 25.130818415761478 ], [ -78.131415634244775, 25.130711982797568 ], [ -78.131354983505517, 25.130582132698542 ], [ -78.131341379074286, 25.130441576159246 ], [ -78.13137615249299, 25.130304071860817 ], [ -78.131455899745674, 25.130183079664498 ], [ -78.131572814525398, 25.130090443073328 ], [ -78.131715452404165, 25.130035229929007 ], [ -78.131869851091494, 25.130022844816342 ], [ -78.142764676516279, 25.130709777420641 ], [ -78.145352849408994, 25.129684108293063 ], [ -78.145331189920924, 25.127663310995157 ], [ -78.145348551798079, 25.12754048339125 ], [ -78.145401957359965, 25.127426585779091 ], [ -78.145487379497183, 25.12733020653506 ], [ -78.147165010142317, 25.125895517664169 ], [ -78.146902391513024, 25.12350062897896 ], [ -78.146914443697653, 25.123347505180035 ], [ -78.146982215841845, 25.123206933344179 ], [ -78.151347183336185, 25.117202089872659 ], [ -78.151327740628844, 25.117165179872874 ], [ -78.151307185624773, 25.11702532732826 ], [ -78.15133510443026, 25.116886536649229 ], [ -78.151408764002511, 25.116762393623528 ], [ -78.151520953927388, 25.116665050183915 ], [ -78.151660692264016, 25.116604034912044 ], [ -78.151793663489983, 25.116587834626753 ], [ -78.155468928028995, 25.111531246043047 ], [ -78.153931128987054, 25.103728272408283 ], [ -78.153929428094045, 25.103652604811337 ], [ -78.152061923024092, 25.102532779367518 ], [ -78.143616717908188, 25.100887089467069 ], [ -78.139018477266845, 25.102016308944819 ], [ -78.126996601953877, 25.113431237543502 ], [ -78.126881171633613, 25.113512545420281 ], [ -78.126744726954939, 25.113559697449272 ], [ -78.126599112386188, 25.113568600446325 ], [ -78.126456968448053, 25.113538481546513 ], [ -78.118501965908877, 25.110674594633604 ], [ -78.118486820473663, 25.110666447173386 ], [ -78.118469963645907, 25.110661866981008 ], [ -78.113173845480787, 25.108349684260457 ], [ -78.105420250791624, 25.107416826544707 ], [ -78.105301054921185, 25.107388407212984 ], [ -78.093936112869059, 25.103244994661139 ], [ -78.091744854928947, 25.108651480399228 ], [ -78.09414364851007, 25.109619728213467 ], [ -78.094273757723087, 25.109696389292534 ], [ -78.094371480936374, 25.109805905781204 ], [ -78.094427252304612, 25.109937557515877 ], [ -78.094435612430416, 25.110078457566996 ], [ -78.094395742809269, 25.110214813678741 ], [ -78.094311546010388, 25.110333278342388 ], [ -78.094191263722294, 25.110422255352031 ], [ -78.094046670029755, 25.110473034944654 ], [ -78.093891918878086, 25.110480646400433 ], [ -78.093742158545425, 25.110444344634153 ], [ -78.09115341106434, 25.109399422216008 ], [ -78.085304000119123, 25.113801450742738 ], [ -78.085172276518477, 25.113872605444836 ], [ -78.085022975673056, 25.113903722599002 ], [ -78.084870371191229, 25.113891827296175 ], [ -78.080893443811135, 25.113003274094154 ], [ -78.07932859765981, 25.114168306295383 ], [ -78.081608108550341, 25.114826413408778 ], [ -78.081746696297671, 25.11488958013113 ], [ -78.081857062028433, 25.114988646552668 ], [ -78.081928402394894, 25.115113915433376 ], [ -78.081953734026399, 25.115253124649826 ], [ -78.081930577140341, 25.115392647471523 ], [ -78.081861198336284, 25.115518826425856 ], [ -78.081752388785787, 25.115619310189253 ], [ -78.081614799506795, 25.115684262639284 ], [ -78.08146189877516, 25.115707325710151 ], [ -78.081308653725813, 25.115686241790275 ], [ -78.078676166796527, 25.114926226162776 ], [ -78.078203357543032, 25.116921633751794 ], [ -78.0801477339797, 25.118574093828187 ], [ -78.080243393200178, 25.118685824857828 ], [ -78.080296264186458, 25.118819060364931 ], [ -78.080301130490568, 25.1189606551841 ], [ -78.080060213417198, 25.120686306686807 ], [ -78.086020411702393, 25.122345146304543 ], [ -78.086159721323128, 25.122406997529708 ], [ -78.086271218778464, 25.122505013497658 ], [ -78.086343989942932, 25.122629599793751 ], [ -78.086370911392308, 25.122768561111343 ], [ -78.086349347722873, 25.122908294987312 ], [ -78.086281409578433, 25.123035123291125 ], [ -78.086173747106201, 25.123136631137523 ], [ -78.086036899036799, 25.123202882160001 ], [ -78.085884261088367, 25.123227391178851 ], [ -78.085730774671447, 25.12320775904168 ], [ -78.076360210863058, 25.120599621313048 ], [ -78.075717239191974, 25.122201128281048 ], [ -78.077310569094593, 25.122671306336887 ], [ -78.077310627794816, 25.122671333674244 ], [ -78.077310693876939, 25.122671343174876 ], [ -78.084558630049415, 25.124811807600494 ], [ -78.084696768428472, 25.124875804410586 ], [ -78.084806423253369, 25.124975530653856 ], [ -78.084876860762662, 25.12510122450259 ], [ -78.084901185961769, 25.125240582234198 ], [ -78.084877017583736, 25.125379962579643 ], [ -78.084806721240383, 25.125505722011937 ], [ -78.084697177919864, 25.125605550272507 ], [ -78.084559110468774, 25.125669675403856 ], [ -78.084406033971632, 25.125691820324278 ], [ -78.084252932769516, 25.125669817297943 ], [ -78.077465486315418, 25.123665361851781 ], [ -78.07707326715591, 25.124685691735873 ], [ -78.0769935820299, 25.124817241423195 ], [ -78.076870858510802, 25.124917667229603 ], [ -78.076718712536547, 25.124975827018289 ], [ -78.074384483487563, 25.125473846080155 ], [ -78.073458827281399, 25.127373361534037 ], [ -78.072307091889499, 25.130740550498473 ], [ -78.074880022674677, 25.131540956617378 ], [ -78.075017054344187, 25.131606911078457 ], [ -78.075124990885072, 25.1317081856687 ], [ -78.075193266728462, 25.131834866997856 ], [ -78.075215198474297, 25.13197455468087 ], [ -78.075188639141444, 25.13211357514875 ], [ -78.075116188386119, 25.132238320099489 ], [ -78.075004938089151, 25.132336578577306 ], [ -78.074865778192958, 25.132398732285527 ], [ -78.074712330722562, 25.132418697120034 ], [ -78.074559616334525, 25.132394518749074 ], [ -78.071974095395305, 25.131590197180209 ], [ -78.07107079762099, 25.133581334700668 ], [ -78.072832378563433, 25.13420958699643 ], [ -78.072966084957798, 25.134280978648533 ], [ -78.073069012765814, 25.134386488059157 ], [ -78.073131086694119, 25.134515787305183 ], [ -78.073146230417507, 25.134656219738552 ], [ -78.073112961409024, 25.134794038883058 ], [ -78.073034536118641, 25.134915754024213 ], [ -78.072918631267541, 25.135009450780633 ], [ -78.072776592432518, 25.135065957387841 ], [ -78.072622323460962, 25.1350797425224 ], [ -78.07247092542849, 25.135049456770467 ], [ -78.07070572401787, 25.13441991395532 ], [ -78.068387243154717, 25.139978324852503 ], [ -78.069937735997627, 25.140459211490267 ], [ -78.069936087848646, 25.14038760327373 ], [ -78.06998089221608, 25.140252517966701 ], [ -78.070069362101336, 25.140136647148861 ], [ -78.070192837384212, 25.140051333001114 ], [ -78.070339231470797, 25.140004926593349 ], [ -78.070494214403112, 25.140001970451607 ], [ -78.07236114786491, 25.14023473600205 ], [ -78.072508008826901, 25.140274842493074 ], [ -78.072634367263035, 25.140353899780425 ], [ -78.072728122494567, 25.140464336981591 ], [ -78.072780296003103, 25.140595578119534 ], [ -78.07278184311626, 25.140634144075193 ], [ -78.075011947496989, 25.140965096898853 ], [ -78.075159159939147, 25.141009307723529 ], [ -78.075284158738171, 25.141092763581263 ], [ -78.07537470820472, 25.141207295295231 ], [ -78.075421944691001, 25.141341691776251 ], [ -78.075421244239848, 25.141482797414415 ], [ -78.075372675255977, 25.141616799821229 ], [ -78.075280991871296, 25.141730581876857 ], [ -78.075155168630275, 25.141813005736925 ], [ -78.075007522023512, 25.141856003106763 ], [ -78.074852504850384, 25.141855365050176 ], [ -78.072124749696982, 25.141450556631625 ], [ -78.071977537456959, 25.141406342733465 ], [ -78.071943636673439, 25.141383707692192 ], [ -78.07135502050906, 25.141690348560989 ], [ -78.07122528194823, 25.141737304758376 ], [ -78.071086303097559, 25.141749450884628 ], [ -78.070949119414536, 25.141725822479316 ], [ -78.067724383763732, 25.140725683426666 ], [ -78.06770863224601, 25.140727243040917 ], [ -78.067556885653133, 25.140698405976973 ], [ -78.0674399414942, 25.140637460478477 ], [ -78.067087967383401, 25.140528290810305 ], [ -78.066062326789236, 25.142178775471766 ], [ -78.065954551384479, 25.142298344724257 ], [ -78.065808733931448, 25.142377739390778 ], [ -78.06564202239359, 25.142407622702073 ], [ -78.065474021948503, 25.142384480377935 ], [ -78.062712729696514, 25.141544504204404 ], [ -78.062575200018799, 25.141479392076405 ], [ -78.062466506074188, 25.141378781466436 ], [ -78.062397287597165, 25.141252520914126 ], [ -78.062374320091465, 25.14111296974853 ], [ -78.062399851628271, 25.140973788245546 ], [ -78.062471382846013, 25.140848600451328 ], [ -78.062581911665177, 25.140749660569231 ], [ -78.062720618740926, 25.14068665345216 ], [ -78.062873926541357, 25.140665746609233 ], [ -78.063026828379066, 25.140688986512401 ], [ -78.065400836176536, 25.141411157181974 ], [ -78.066133451032357, 25.14023222891058 ], [ -78.05974352475171, 25.138250066266711 ], [ -78.059689194819669, 25.138240021919867 ], [ -78.059655872197652, 25.138222873895987 ], [ -78.055600077319284, 25.136964576028262 ], [ -78.053495661522703, 25.141836148895067 ], [ -78.053545087461643, 25.141859558669328 ], [ -78.053653764203872, 25.141960186407442 ], [ -78.053722960698479, 25.142086458173168 ], [ -78.053745903427298, 25.142226013672754 ], [ -78.053720346447847, 25.142365192276994 ], [ -78.053648791298471, 25.14249037020523 ], [ -78.053538242190314, 25.142589294119457 ], [ -78.053399520426481, 25.14265228058558 ], [ -78.053246205142941, 25.142673163982984 ], [ -78.05314098883872, 25.142657155327562 ], [ -78.053076735444549, 25.142805889815925 ], [ -78.053135403304722, 25.142833539701243 ], [ -78.053142735276708, 25.142840301215692 ], [ -78.053151795501094, 25.142845017695883 ], [ -78.054615213226313, 25.143914682985709 ], [ -78.054610549949516, 25.143785356098338 ], [ -78.0547904098148, 25.142474710615097 ], [ -78.05483345194682, 25.142339149490159 ], [ -78.054920408174212, 25.14222233023747 ], [ -78.055042766540836, 25.142135687878259 ], [ -78.05518854978061, 25.142087703496937 ], [ -78.055343487726901, 25.142083074081548 ], [ -78.055492414132729, 25.142122252771777 ], [ -78.055620751188187, 25.142201404510065 ], [ -78.055715936442866, 25.142312781433965 ], [ -78.055768652477454, 25.142445481267529 ], [ -78.055773738966636, 25.142586514483998 ], [ -78.055638862340217, 25.143569425264793 ], [ -78.056758435606582, 25.143800276108706 ], [ -78.056902409414974, 25.143852595724479 ], [ -78.057021574908532, 25.143942851570145 ], [ -78.057104267383835, 25.144062208842637 ], [ -78.057112269447146, 25.144090916741643 ], [ -78.060554300515179, 25.143408711531134 ], [ -78.060696406163459, 25.143399621953225 ], [ -78.06083547976408, 25.143427711059218 ], [ -78.06096002555023, 25.143490657004197 ], [ -78.061059748588988, 25.143583256689777 ], [ -78.06112640574004, 25.143697855841125 ], [ -78.061881607501277, 25.145624713878664 ], [ -78.06190479555697, 25.145737123688512 ], [ -78.063537492557899, 25.145900219079831 ], [ -78.063542323339973, 25.145901418902852 ], [ -78.063547328801135, 25.145901292282044 ], [ -78.063616991329539, 25.145919964193723 ], [ -78.063687050064686, 25.145937364643434 ], [ -78.063691237082566, 25.145939864520802 ], [ -78.063696040548621, 25.145941152007655 ], [ -78.071321398724251, 25.14923778306208 ], [ -78.073426319004142, 25.15014294341605 ], [ -78.074968207880147, 25.150694029404992 ], [ -78.075000525790017, 25.150622243565181 ], [ -78.075081025570768, 25.150501650704797 ], [ -78.075198527380053, 25.15040960178904 ], [ -78.075341529329577, 25.150355107133752 ], [ -78.07549603349274, 25.150343500993632 ], [ -78.075646916080899, 25.150375919431806 ], [ -78.075779407805882, 25.15044918912427 ], [ -78.075880539543121, 25.150556137979876 ], [ -78.075940411806158, 25.150686297172829 ], [ -78.075953163780113, 25.150826925876306 ], [ -78.075917547057585, 25.150964258399743 ], [ -78.075890764624518, 25.151023749658524 ], [ -78.07681680127989, 25.151354705762156 ], [ -78.076832393205336, 25.151335185841837 ], [ -78.076957844502658, 25.151252281725959 ], [ -78.077105302353829, 25.151208719950382 ], [ -78.0772603326769, 25.151208764590717 ], [ -78.077407760183988, 25.151252411262135 ], [ -78.077533153782909, 25.15133538755439 ], [ -78.07762423913978, 25.151449571233584 ], [ -78.077672100151489, 25.151583785278707 ], [ -78.077672073869977, 25.151660364507858 ], [ -78.079595756386581, 25.152347828816882 ], [ -78.083086811352572, 25.150276920911129 ], [ -78.08320993708972, 25.150224180351046 ], [ -78.083344181983946, 25.150203913928969 ], [ -78.083479421438227, 25.150217650104747 ], [ -78.083605455855675, 25.150264352902159 ], [ -78.092760029467286, 25.155083217784917 ], [ -78.092880444439658, 25.155172095081738 ], [ -78.092964790435204, 25.155290489577389 ], [ -78.093004811030056, 25.15542681206561 ], [ -78.092996588598979, 25.155567718400516 ], [ -78.092940927849611, 25.155699415695832 ], [ -78.092843277113744, 25.155809012465809 ], [ -78.092713195076271, 25.155885780547756 ], [ -78.092563415123493, 25.155922205275068 ], [ -78.092408598891353, 25.155914721092568 ], [ -78.09226390103251, 25.155864060596656 ], [ -78.083372847923883, 25.151183921479699 ], [ -78.08076552488869, 25.152730607925847 ], [ -78.091803929558793, 25.156260964095548 ], [ -78.091940359070776, 25.156327987461264 ], [ -78.092047355424427, 25.156430101392118 ], [ -78.092114445080313, 25.15655731033765 ], [ -78.09213506074822, 25.156697162265612 ], [ -78.09210718427272, 25.156835967528529 ], [ -78.092033544241588, 25.156960138888955 ], [ -78.091921348952198, 25.157057521537205 ], [ -78.091781580852043, 25.157118582908609 ], [ -78.091627921503829, 25.157137345825028 ], [ -78.091475412305385, 25.157111973607829 ], [ -78.080399030252437, 25.15356947500586 ], [ -78.080379187857162, 25.153631296652616 ], [ -78.080291856919331, 25.153747885620543 ], [ -78.080169216264295, 25.153834205744491 ], [ -78.080023270838083, 25.153881807335889 ], [ -78.079868306909063, 25.153886030761907 ], [ -78.07971949358533, 25.153846462584735 ], [ -78.077061002721138, 25.152703430497962 ], [ -78.077035319103246, 25.152720403324462 ], [ -78.076887859459504, 25.152763965197167 ], [ -78.076732827122157, 25.152763920352282 ], [ -78.076585397896821, 25.15272027316443 ], [ -78.076460003322694, 25.152637296154513 ], [ -78.076368917959627, 25.152523111754139 ], [ -78.076321057843785, 25.152388897201046 ], [ -78.076321059124311, 25.152385275022976 ], [ -78.075237193948325, 25.151919232593343 ], [ -78.075113414281645, 25.151928530576448 ], [ -78.074962529811913, 25.151896111766831 ], [ -78.074830036827407, 25.151822841455928 ], [ -78.074728904753158, 25.15171589190912 ], [ -78.074720178404021, 25.151696921028883 ], [ -78.073033095082536, 25.150971472911955 ], [ -78.072085953520343, 25.150632944645366 ], [ -78.071952292096398, 25.150561455536934 ], [ -78.071860528402922, 25.1504672505211 ], [ -78.070897602220384, 25.150053166387046 ], [ -78.070897183172576, 25.150052906311249 ], [ -78.070896696625937, 25.150052775932647 ], [ -78.064825746251415, 25.147428203208467 ], [ -78.064489641224782, 25.147717964500742 ], [ -78.064361795271353, 25.147797778029584 ], [ -78.0642131097744, 25.147837725646998 ], [ -78.064058139231832, 25.147833896950164 ], [ -78.063912053401026, 25.147786666707411 ], [ -78.063789152315735, 25.147700658177619 ], [ -78.063701466447682, 25.14758429054055 ], [ -78.063657579058329, 25.147448954743794 ], [ -78.063661786025591, 25.147307898449803 ], [ -78.063713675381294, 25.147174929242595 ], [ -78.06380816769898, 25.147063063040981 ], [ -78.063865962136958, 25.147013238003858 ], [ -78.063346323998317, 25.146788567138135 ], [ -78.059597300924764, 25.146414037716816 ], [ -78.054749885250175, 25.148948458337763 ], [ -78.054567435839857, 25.149004563212891 ], [ -78.054375266116224, 25.148993119256712 ], [ -78.050572394181017, 25.148068909173244 ], [ -78.048738959152487, 25.150166402271136 ], [ -78.048826387223727, 25.150253035408372 ], [ -78.048890847982605, 25.150381369331733 ], [ -78.048908583687805, 25.150521552726389 ], [ -78.048877858092595, 25.150659863495921 ], [ -78.048801678678231, 25.150782762804447 ], [ -78.048687502319567, 25.150878220357576 ], [ -78.048546505391258, 25.150936892032011 ], [ -78.048392489747371, 25.150953034571238 ], [ -78.048062486110112, 25.150940281347253 ], [ -78.043329028201583, 25.156354981167304 ], [ -78.043561191824935, 25.156536308900233 ], [ -78.043661606754839, 25.156643824222257 ], [ -78.043720603131945, 25.156774319120391 ], [ -78.043732405877492, 25.156915019906055 ], [ -78.043695859500602, 25.157052153831778 ], [ -78.043614541265185, 25.157172297253798 ], [ -78.0434964110799, 25.157263689639418 ], [ -78.043353032359903, 25.157317384791742 ], [ -78.043198440115589, 25.157328126593868 ], [ -78.043047767068884, 25.157294863537658 ], [ -78.042915762297469, 25.157220851662409 ], [ -78.04271151347065, 25.157061325932556 ], [ -78.040252537555503, 25.159873929154664 ], [ -78.040307620062165, 25.159908974567031 ], [ -78.040419233317195, 25.160006920262322 ], [ -78.040492128140372, 25.160131462553224 ], [ -78.040519169002721, 25.160270410440607 ], [ -78.040497708811301, 25.160410162775918 ], [ -78.040429848080436, 25.160537039621545 ], [ -78.040322229379427, 25.160638621340468 ], [ -78.040185387154253, 25.160704964334929 ], [ -78.040032716551153, 25.160729574422326 ], [ -78.039879162177442, 25.160710042557096 ], [ -78.039739755163794, 25.160648280659586 ], [ -78.0396342241052, 25.16058113797698 ], [ -78.035892586288369, 25.164860501263217 ], [ -78.038597554966245, 25.166065449562417 ], [ -78.038719775574364, 25.16614248740278 ], [ -78.038811389636351, 25.166249049288297 ], [ -78.040864523827778, 25.169563172170232 ], [ -78.040866359574522, 25.169567660851328 ], [ -78.040869542295013, 25.169571475285323 ], [ -78.041885024416914, 25.171294185543413 ], [ -78.042940786563051, 25.171152770800219 ], [ -78.04300676261218, 25.171073716422185 ], [ -78.043134114509783, 25.170993215585419 ], [ -78.043282568480564, 25.170952468170178 ], [ -78.043437592940109, 25.17095546276509 ], [ -78.043584013175177, 25.171001906226437 ], [ -78.043662431170162, 25.171056105181645 ], [ -78.045274703316878, 25.170840125271539 ], [ -78.045310677616428, 25.170722608636257 ], [ -78.045396411157014, 25.170605030112714 ], [ -78.045517873828913, 25.170517316051388 ], [ -78.045663176039923, 25.170468052442256 ], [ -78.045818094707755, 25.170462061492184 ], [ -78.045967465472316, 25.170499929616049 ], [ -78.046954784855657, 25.170910658344006 ], [ -78.046977931791957, 25.170870519651508 ], [ -78.047088887862941, 25.170771949369207 ], [ -78.047227884133747, 25.170709406178798 ], [ -78.047381314765275, 25.170689012177231 ], [ -78.047534161047281, 25.170712763636516 ], [ -78.047671461477591, 25.170778335608038 ], [ -78.050983975865705, 25.173024390215197 ], [ -78.051092295285414, 25.173125361210094 ], [ -78.051135195070131, 25.173204312017489 ], [ -78.053077436223461, 25.174661522077926 ], [ -78.053180176458014, 25.174767212564316 ], [ -78.053241998518459, 25.174896621590474 ], [ -78.053256850733419, 25.175037081762166 ], [ -78.053223279110256, 25.175174843887632 ], [ -78.053144569720899, 25.175296422833394 ], [ -78.05302842709655, 25.17538991754946 ], [ -78.052886220089704, 25.175446176048329 ], [ -78.052731869010358, 25.17545969129327 ], [ -78.052580482971976, 25.175429140289445 ], [ -78.052446880847171, 25.175357513598783 ], [ -78.050404333565623, 25.173825040893639 ], [ -78.050301596395485, 25.173719348165566 ], [ -78.050278457031126, 25.17367090822858 ], [ -78.047609091603064, 25.171860946524397 ], [ -78.047513065634931, 25.171930293135354 ], [ -78.047367762703914, 25.171979558649038 ], [ -78.047212842381768, 25.171985551396372 ], [ -78.047063469507492, 25.171947684744413 ], [ -78.046161839365965, 25.171572608355003 ], [ -78.046087416068801, 25.171620694916168 ], [ -78.045939431107911, 25.17166283287369 ], [ -78.043843072869493, 25.171943666475062 ], [ -78.043838095982878, 25.171956660841175 ], [ -78.04374431244679, 25.172069035697696 ], [ -78.043616959969825, 25.172149537117779 ], [ -78.043468504740318, 25.172190284988844 ], [ -78.043313478715064, 25.17218729057311 ], [ -78.043167057082528, 25.172140846972901 ], [ -78.043043572748246, 25.172055500444404 ], [ -78.043040291172431, 25.172051201096739 ], [ -78.042242598543481, 25.172158049580499 ], [ -78.042708821049899, 25.173665485139441 ], [ -78.044414148928951, 25.174257700898043 ], [ -78.04454859037439, 25.174328014878238 ], [ -78.044652575163681, 25.174432693585352 ], [ -78.044715924541336, 25.174561490411303 ], [ -78.044732437334318, 25.174701797889053 ], [ -78.04470049700204, 25.174839881775014 ], [ -78.044623229933279, 25.174962225441028 ], [ -78.044508199472048, 25.175056852982017 ], [ -78.044366665601103, 25.175114501521815 ], [ -78.044212482736498, 25.175129527956038 ], [ -78.044060743524597, 25.175100461362689 ], [ -78.042240439007983, 25.174468317047321 ], [ -78.042105998489362, 25.174398000857288 ], [ -78.042002015710594, 25.174293320150145 ], [ -78.041938669230802, 25.174164521875976 ], [ -78.04193677667142, 25.174148437722796 ], [ -78.041924901262121, 25.174142378014636 ], [ -78.041819705112204, 25.174038706269389 ], [ -78.041754861957685, 25.173910526299213 ], [ -78.041150450928029, 25.171956229722433 ], [ -78.040710986407731, 25.171210704929514 ], [ -78.040299106432599, 25.173851710333352 ], [ -78.040281264061889, 25.173904562172989 ], [ -78.040267439337242, 25.173958401543903 ], [ -78.039129761431269, 25.176501327304521 ], [ -78.039049541891046, 25.176622088340707 ], [ -78.03893224031934, 25.176714380759012 ], [ -78.03878933901818, 25.17676917026111 ], [ -78.038634826262893, 25.176781093606824 ], [ -78.038483826993954, 25.176748983629121 ], [ -78.038351122223062, 25.176675983494832 ], [ -78.038249702106924, 25.176569239022513 ], [ -78.038189494346227, 25.17643919917823 ], [ -78.038176392395769, 25.176298593229951 ], [ -78.038211678610296, 25.17616118469444 ], [ -78.039326303645311, 25.173669831204553 ], [ -78.039918491752175, 25.169872849202548 ], [ -78.03802356467645, 25.166814068273787 ], [ -78.035167765205344, 25.165541925188752 ], [ -78.032670176565546, 25.167254029875014 ], [ -78.031316174454531, 25.170381055926246 ], [ -78.031234954067244, 25.170505374238026 ], [ -78.029488740087146, 25.1724018562734 ], [ -78.02936820167136, 25.172496526153463 ], [ -78.029220896705553, 25.172551527983948 ], [ -78.029062028434865, 25.172561185038724 ], [ -78.02890799359507, 25.172524500600737 ], [ -78.027151188424511, 25.171815717518516 ], [ -78.02714592237092, 25.171812693581025 ], [ -78.024289372623954, 25.174091104964411 ], [ -78.026353044217231, 25.178881917607793 ], [ -78.026386357003659, 25.179019734866792 ], [ -78.026371238392713, 25.179160174385327 ], [ -78.026309168138724, 25.179289488965477 ], [ -78.026206221989554, 25.179395020352441 ], [ -78.026072476996234, 25.179466438329083 ], [ -78.025921025114542, 25.179496751936139 ], [ -78.025766691648727, 25.179482993822781 ], [ -78.025624583994372, 25.179426510728369 ], [ -78.025508612759879, 25.17933283165442 ], [ -78.025430130052996, 25.179211126631106 ], [ -78.023486637329981, 25.174699246643058 ], [ -78.023155683766163, 25.174943298444038 ], [ -78.023031792356747, 25.175010145422242 ], [ -78.022892011711733, 25.175041754051165 ], [ -78.022748146482073, 25.17503545492907 ], [ -78.022612346285726, 25.174991780013496 ], [ -78.022496079623593, 25.17491441769921 ], [ -78.022409165323083, 25.174809901322568 ], [ -78.021149776994434, 25.172721896854778 ], [ -78.021097349675031, 25.172589094548584 ], [ -78.021092583984014, 25.172448048771844 ], [ -78.021135946261282, 25.172312566087157 ], [ -78.021223191760868, 25.172195908457581 ], [ -78.021345780211348, 25.172109495083216 ], [ -78.021491711825306, 25.172061784633815 ], [ -78.021646701912999, 25.172057447283301 ], [ -78.021795579123904, 25.172096907582485 ], [ -78.021923770463417, 25.172176302908444 ], [ -78.022018727744197, 25.172287861554977 ], [ -78.022992614194465, 25.173902508259378 ], [ -78.02338140449271, 25.173615805068266 ], [ -78.02595692761534, 25.171561570607562 ], [ -78.025871790487528, 25.171523757644536 ], [ -78.025760275799584, 25.171425706988273 ], [ -78.025687513871262, 25.171301095465157 ], [ -78.025660627070906, 25.171162120987294 ], [ -78.025682247120614, 25.171022387383442 ], [ -78.025750257540608, 25.170895572746776 ], [ -78.025858000885464, 25.170794090529945 ], [ -78.031850507245522, 25.166686594112647 ], [ -78.03248015910674, 25.165232402860511 ], [ -78.031395396443472, 25.16185564290781 ], [ -78.031375682498606, 25.161716358705711 ], [ -78.031403995492454, 25.161578307943412 ], [ -78.031477590307361, 25.161454874725706 ], [ -78.031589331775507, 25.161358025936782 ], [ -78.033666454774973, 25.160051713243242 ], [ -78.034248850984667, 25.156461742094155 ], [ -78.034284636774444, 25.156347776356302 ], [ -78.034351808208655, 25.15624623127934 ], [ -78.034445726151972, 25.15616411986829 ], [ -78.03809352220992, 25.1537253732862 ], [ -78.037810401916687, 25.15360801575034 ], [ -78.037673132675096, 25.153629130880098 ], [ -78.037519760729452, 25.153608498775569 ], [ -78.03738090037578, 25.153545739256998 ], [ -78.037270144342955, 25.153446995711576 ], [ -78.037222725332086, 25.153364412588481 ], [ -78.02867414958547, 25.149820475168834 ], [ -78.028544853628944, 25.14974261094207 ], [ -78.028448321339155, 25.149632190904494 ], [ -78.028394001949181, 25.149500023812131 ], [ -78.028387212509244, 25.14935904715929 ], [ -78.028428617458815, 25.149223060744141 ], [ -78.028514163647117, 25.149105375840264 ], [ -78.028635477139446, 25.149017512205667 ], [ -78.028780682945964, 25.148968070471682 ], [ -78.028935567420788, 25.148961890281274 ], [ -78.029084969550524, 25.148999576573374 ], [ -78.037400561927356, 25.152446938792526 ], [ -78.03805655606665, 25.150542540155801 ], [ -78.037966802646508, 25.150592780971699 ], [ -78.037816109871272, 25.150625941287736 ], [ -78.037661534336209, 25.150615093871757 ], [ -78.037518207132564, 25.150561300540662 ], [ -78.037400158250946, 25.150469827000556 ], [ -78.037318943180153, 25.150349627387484 ], [ -78.037282511759571, 25.150212467747945 ], [ -78.037057532415275, 25.147662266484669 ], [ -78.031834356287817, 25.147628899413661 ], [ -78.032109957111345, 25.149028553893785 ], [ -78.0321130986718, 25.149169636558593 ], [ -78.032068188415721, 25.149304697766443 ], [ -78.031979622329416, 25.149420516757854 ], [ -78.031856069807446, 25.149505756300755 ], [ -78.031709625059008, 25.14955207248153 ], [ -78.031554623231997, 25.149554931493395 ], [ -78.031406237144637, 25.149514053458521 ], [ -78.031278992003479, 25.149433439831217 ], [ -78.031185343520548, 25.149320981697223 ], [ -78.031134458634341, 25.1491876873155 ], [ -78.030826263953045, 25.147622438174874 ], [ -78.027795444100107, 25.147602971072978 ], [ -78.028200934759198, 25.147873194880876 ], [ -78.028310157258389, 25.147973340453266 ], [ -78.028380034793031, 25.148099305634716 ], [ -78.028403727181242, 25.148238760142334 ], [ -78.028378915099154, 25.148378053233191 ], [ -78.028308027169032, 25.148503549920513 ], [ -78.028210257528642, 25.148591892145895 ], [ -78.028241493649389, 25.148605338910301 ], [ -78.028354300043858, 25.148702137711908 ], [ -78.028428722098511, 25.14882592777445 ], [ -78.028457474791537, 25.148964591732707 ], [ -78.02843774346573, 25.149104556232398 ], [ -78.028371459401569, 25.149232120569394 ], [ -78.028265110830731, 25.149334797811488 ], [ -78.028129107866505, 25.149402537123933 ], [ -78.027976763499211, 25.149428707642272 ], [ -78.026824333843919, 25.149459612765103 ], [ -78.026836130496662, 25.149499211920332 ], [ -78.026828478716794, 25.14964015214241 ], [ -78.026773351534501, 25.14977204205832 ], [ -78.026676145051852, 25.149881971327503 ], [ -78.026546374466378, 25.149959179240142 ], [ -78.026396742676468, 25.14999610807595 ], [ -78.026241896814284, 25.149989142934011 ], [ -78.026096994432805, 25.149938965603191 ], [ -78.025976219717307, 25.149850487826878 ], [ -78.024477678442381, 25.148344661163851 ], [ -78.024384516433287, 25.148313549596089 ], [ -78.02426259560319, 25.148226385366915 ], [ -78.024176234500857, 25.148109194463732 ], [ -78.024145584176736, 25.148010944749696 ], [ -78.024015805095388, 25.147880530997682 ], [ -78.023930983709974, 25.147762412209111 ], [ -78.02389041517354, 25.147626216704957 ], [ -78.023898070487022, 25.14748527629926 ], [ -78.023953200133946, 25.147353387228645 ], [ -78.023959721147321, 25.14734601290866 ], [ -78.021075339179987, 25.144600719259856 ], [ -78.021041122872248, 25.14455577530941 ], [ -78.021003478536684, 25.144513162436098 ], [ -78.020997164365127, 25.144498034678037 ], [ -78.02098703804279, 25.144484733482336 ], [ -78.020969754494658, 25.144432364902823 ], [ -78.020948419312688, 25.144381249073817 ], [ -78.020947549913643, 25.144365085674909 ], [ -78.020942434846731, 25.144349587159564 ], [ -78.020942842865409, 25.144332953944563 ], [ -78.020891169823216, 25.144329746857423 ], [ -78.020747329711369, 25.14427711177489 ], [ -78.020628398859628, 25.144186593424177 ], [ -78.020546019092876, 25.144067052440256 ], [ -78.020508254261628, 25.143930190398699 ], [ -78.02051880091723, 25.143789404356784 ], [ -78.020576626518576, 25.143658475438212 ], [ -78.020676070566026, 25.143550219838744 ], [ -78.021511460524849, 25.142886885754621 ], [ -78.018496555104107, 25.139812798756672 ], [ -78.018444718401554, 25.13984990369741 ], [ -78.018309369196032, 25.139918704422342 ], [ -78.018157288069006, 25.139946065295636 ], [ -78.018003361922737, 25.139929308003289 ], [ -78.018001392221066, 25.139928478775644 ], [ -78.018001561683931, 25.139929289099733 ], [ -78.01801630689026, 25.139996543981066 ], [ -78.018016306819263, 25.139996544530074 ], [ -78.018016306938108, 25.139996545072115 ], [ -78.018016047104069, 25.139998554289303 ], [ -78.018016462729165, 25.140000541689659 ], [ -78.01800699146871, 25.140068578767711 ], [ -78.017998183476152, 25.140136689635685 ], [ -78.017998183222261, 25.140136690137854 ], [ -78.017998183151263, 25.140136690686798 ], [ -78.017997253949275, 25.140138528477255 ], [ -78.017996974554151, 25.140140535518334 ], [ -78.017964869741547, 25.140202578455469 ], [ -78.017933370661154, 25.140264878138478 ], [ -78.01793337024921, 25.140264878544645 ], [ -78.017933369995333, 25.14026487904675 ], [ -78.017931862380252, 25.140266365514279 ], [ -78.017930915311794, 25.140268195732656 ], [ -78.017879319529456, 25.140318171314821 ], [ -78.0178282126586, 25.140368561460715 ], [ -78.017828212128933, 25.140368561731126 ], [ -78.017828211717031, 25.140368562137255 ], [ -78.017826273263907, 25.140369551775162 ], [ -78.017824751226414, 25.140371026015444 ], [ -78.015179312426042, 25.142237387771328 ], [ -78.01505207576173, 25.142302408122397 ], [ -78.014909550077718, 25.142330874399065 ], [ -78.014764095361613, 25.142320317960486 ], [ -78.01462832562612, 25.142271654261535 ], [ -78.013491389928973, 25.1416751086605 ], [ -78.013370845132329, 25.141586378429761 ], [ -78.013309786808804, 25.141500923028332 ], [ -78.012555622414041, 25.142155871679524 ], [ -78.012629206871253, 25.142162558174732 ], [ -78.012771158082273, 25.142219280239715 ], [ -78.01288690565724, 25.142313154691564 ], [ -78.013119820185551, 25.142572187518393 ], [ -78.013479604971963, 25.142319719616079 ], [ -78.013615678213455, 25.142252107125358 ], [ -78.013768044806113, 25.142226078952699 ], [ -78.013921790189613, 25.142244182877082 ], [ -78.014061864853687, 25.142304646764188 ], [ -78.014174557428262, 25.142401552033729 ], [ -78.014248836804356, 25.142525412993638 ], [ -78.014277431926175, 25.142664105338664 ], [ -78.014257543560589, 25.142804052935649 ], [ -78.01419111836033, 25.142931556734791 ], [ -78.014084658372767, 25.143034135729604 ], [ -78.01033818489995, 25.145663031392765 ], [ -78.010202105932009, 25.145730641357883 ], [ -78.010049733893354, 25.145756666317901 ], [ -78.00989598416416, 25.145738558728542 ], [ -78.009755906998308, 25.145678091090765 ], [ -78.009643214238693, 25.145581182444527 ], [ -78.009568937063236, 25.145457318954278 ], [ -78.009540346166375, 25.145318625309894 ], [ -78.009560240080901, 25.145178677851522 ], [ -78.00962667129275, 25.145051175607495 ], [ -78.009733136938095, 25.144948599339543 ], [ -78.010068512074398, 25.144713276137299 ], [ -78.009874479137878, 25.144484208796925 ], [ -78.009293995956725, 25.144988290424092 ], [ -78.009318768961094, 25.145097700247469 ], [ -78.009301610315688, 25.145237947415726 ], [ -78.009237678578998, 25.145366504047342 ], [ -78.009133231716874, 25.145470786079287 ], [ -78.009104828728027, 25.145485499941813 ], [ -78.009512672817621, 25.146184627758 ], [ -78.009563064601949, 25.146318079352124 ], [ -78.009565683928329, 25.146459173307267 ], [ -78.009520274239279, 25.146594098381271 ], [ -78.009431280409672, 25.146709647139829 ], [ -78.00930741370567, 25.14679450880287 ], [ -78.009160799091973, 25.146840376446363 ], [ -78.009005788344851, 25.146842760169889 ], [ -78.008857555155856, 25.14680142662074 ], [ -78.008730609764172, 25.146720421842698 ], [ -78.008637378539177, 25.14660767521033 ], [ -78.008231120211562, 25.145911257823837 ], [ -78.007024277395018, 25.146959217098232 ], [ -78.010895050298259, 25.154897010304509 ], [ -78.014895630874832, 25.15289128757281 ], [ -78.015041460228218, 25.152843374452448 ], [ -78.015196419288813, 25.15283882212675 ], [ -78.015345339743035, 25.152878076189619 ], [ -78.015473644363411, 25.152957294205738 ], [ -78.015568773874179, 25.15306872182509 ], [ -78.015621416312243, 25.153201451809238 ], [ -78.015626418556067, 25.15334249167994 ], [ -78.015583290792293, 25.153478035491425 ], [ -78.015496254522702, 25.153594815245157 ], [ -78.015373829389375, 25.153681399663867 ], [ -78.011298622575879, 25.155724542256515 ], [ -78.012205387743165, 25.157583829229793 ], [ -78.013545589575372, 25.159315797275763 ], [ -78.013613937396457, 25.159442460321586 ], [ -78.013635933970534, 25.159582146468168 ], [ -78.013609425970401, 25.159721182296696 ], [ -78.013537008027328, 25.159845958001288 ], [ -78.013425768810279, 25.159944259615575 ], [ -78.013286597177313, 25.160006464620313 ], [ -78.013133116302626, 25.160026483890217 ], [ -78.012980350112912, 25.16000235776524 ], [ -78.012843252583693, 25.159936447888843 ], [ -78.012735243880172, 25.159835206029989 ], [ -78.011367018222757, 25.158067008151075 ], [ -78.011345626540219, 25.158027362609324 ], [ -78.011319241810753, 25.157990292859189 ], [ -78.005947112605611, 25.146973776643801 ], [ -78.005907164126086, 25.146837427436225 ], [ -78.00591301285877, 25.146738094189864 ], [ -78.004753998940657, 25.145611813453272 ], [ -78.004519912342928, 25.145780140668847 ], [ -78.004384725061072, 25.145849218283221 ], [ -78.004232702782645, 25.145876889909257 ], [ -78.004078726649084, 25.145860446814098 ], [ -78.003937869076779, 25.145801498564698 ], [ -78.003823918302999, 25.145705815471352 ], [ -78.00374802865251, 25.145582763732374 ], [ -78.003717628663495, 25.145444388578383 ], [ -78.00373569395704, 25.145304235174873 ], [ -78.003800456016734, 25.145176022711251 ], [ -78.003905575364286, 25.145072301471828 ], [ -78.00407411052015, 25.144951111702898 ], [ -78.002211891054415, 25.143141388175579 ], [ -78.000810956166063, 25.142307698779927 ], [ -78.000244390837182, 25.142676045051431 ], [ -78.000105693579087, 25.142739089190709 ], [ -77.999952382007493, 25.142760034359547 ], [ -77.999799463475583, 25.142736830263654 ], [ -77.999661906871495, 25.142671748290962 ], [ -77.999553177299404, 25.142571159168718 ], [ -77.99948391798101, 25.142444909333161 ], [ -77.999460908417703, 25.142305357064174 ], [ -77.999486400797466, 25.142166162745365 ], [ -77.999557899591764, 25.14204095167716 ], [ -77.999668405895122, 25.141941980340992 ], [ -77.999920745797027, 25.141777925517758 ], [ -77.999862599106649, 25.141743321465011 ], [ -77.999743374837252, 25.141643598754502 ], [ -77.999665833937641, 25.141514213944603 ], [ -77.99963825601148, 25.141368982604821 ], [ -77.999663585618251, 25.141223412335972 ], [ -77.999739117926708, 25.141093046876694 ], [ -78.000338520652875, 25.140374492247524 ], [ -78.000236042298113, 25.140219992000219 ], [ -78.000226093577126, 25.140221193585646 ], [ -78.000073635447407, 25.140195617904986 ], [ -77.999937321651728, 25.140128409024125 ], [ -77.999830495635308, 25.140026145868692 ], [ -77.999763614281065, 25.139898838741374 ], [ -77.999743224314045, 25.139758949416006 ], [ -77.999771321495871, 25.139620171267435 ], [ -77.999802942960685, 25.13956702942982 ], [ -77.998621541295108, 25.137785842088714 ], [ -77.998557559482336, 25.137630028564534 ], [ -77.997812891881324, 25.133733505794748 ], [ -77.995438258267143, 25.133793287785895 ], [ -77.995284537163784, 25.133775072627607 ], [ -77.995144523129284, 25.133714506454158 ], [ -77.99503192182658, 25.133617517950956 ], [ -77.994957755480755, 25.133493601099371 ], [ -77.994929283937296, 25.133354885812583 ], [ -77.994949294045782, 25.133214950549057 ], [ -77.995015826918433, 25.133087493143236 ], [ -77.995122369740443, 25.132984989967678 ], [ -77.99525849333304, 25.132917474676475 ], [ -77.99541087304371, 25.132891556068376 ], [ -77.997641264571726, 25.13283540800326 ], [ -77.99624118355176, 25.125508361483039 ], [ -77.993294149260478, 25.125375373701086 ], [ -77.993142438706371, 25.125346423457888 ], [ -77.993087641979159, 25.125317809019304 ], [ -77.992116033452149, 25.127894701683875 ], [ -77.992043391388435, 25.128019363365581 ], [ -77.991931988890045, 25.128117488119063 ], [ -77.991792730798778, 25.128179470737503 ], [ -77.991639248752435, 25.128199243864614 ], [ -77.991486566792346, 25.128174871934856 ], [ -77.991349630648628, 25.128108740653094 ], [ -77.991241844688261, 25.128007323461155 ], [ -77.991173759762944, 25.127880547852669 ], [ -77.991152040414008, 25.127740823573223 ], [ -77.991178812533363, 25.127601827842902 ], [ -77.993075823543535, 25.122570604855412 ], [ -77.993123020731545, 25.12248960510512 ], [ -77.991954793388146, 25.122068624764545 ], [ -77.991827830510559, 25.122001584583732 ], [ -77.991728014108219, 25.121903620586011 ], [ -77.991664104728073, 25.121783330797566 ], [ -77.991641711403332, 25.121651272696511 ], [ -77.991662799393382, 25.121519036599999 ], [ -77.991725517742807, 25.121398228411458 ], [ -77.994757351197748, 25.117277393675714 ], [ -77.994849675331224, 25.11718352773757 ], [ -77.994966915916109, 25.117116575795137 ], [ -77.99770188483734, 25.116004349480438 ], [ -77.998281450690811, 25.115678761188605 ], [ -77.998323989759911, 25.115662579128475 ], [ -77.998363908569047, 25.115641580129139 ], [ -77.999613556336058, 25.115204412108724 ], [ -77.999765152581489, 25.115175026758767 ], [ -77.999919302786935, 25.11518973067907 ], [ -77.999926871972718, 25.115192796192638 ], [ -77.999959802540474, 25.115180391499472 ], [ -78.000114323519526, 25.115169376616812 ], [ -78.000265020277823, 25.115202374760869 ], [ -78.000397141716547, 25.115276155862858 ], [ -78.000497754955731, 25.115383497771738 ], [ -78.000557011261392, 25.115513893186776 ], [ -78.000569110111741, 25.115654578157415 ], [ -78.000532867031509, 25.115791781484294 ], [ -78.000006587708086, 25.116947241221702 ], [ -78.00163196162886, 25.117779044809144 ], [ -78.004647049592009, 25.116091107651769 ], [ -78.005326194551458, 25.114438716154076 ], [ -78.00128854020052, 25.115608375150448 ], [ -78.001135308492337, 25.115629596267745 ], [ -78.000982373851357, 25.115606667399476 ], [ -78.000844706742555, 25.115541832992054 ], [ -78.000735783087407, 25.115441439539044 ], [ -78.00066626510646, 25.115315314323055 ], [ -78.000642957621466, 25.115175803425402 ], [ -78.000668141983567, 25.115036563180215 ], [ -78.000739352815188, 25.114911223383839 ], [ -78.000849619398338, 25.114812053118808 ], [ -78.00098814805726, 25.114748759789645 ], [ -78.005767848494088, 25.113364129386046 ], [ -78.006471187405225, 25.11165280192284 ], [ -78.005537087378457, 25.103444015961177 ], [ -78.005545428112711, 25.103303105244805 ], [ -78.005601182065419, 25.103171438057718 ], [ -78.005698891521803, 25.103061902864386 ], [ -78.005828991950821, 25.102985221665527 ], [ -78.0059787482666, 25.102948900479639 ], [ -78.006133501408158, 25.10295649462892 ], [ -78.006278103220424, 25.103007260738114 ], [ -78.006398399199909, 25.103096229503929 ], [ -78.006482613986705, 25.103214692110853 ], [ -78.006522504000102, 25.103351052685063 ], [ -78.007468658619615, 25.111665181911381 ], [ -78.007439879707917, 25.111869739422286 ], [ -78.006867301751413, 25.113262938290188 ], [ -78.006957879847647, 25.113346417113444 ], [ -78.00702740262723, 25.113472538906006 ], [ -78.007050716723214, 25.113612048183015 ], [ -78.007025539841592, 25.113751288839939 ], [ -78.006954336314237, 25.113876631022144 ], [ -78.00684407593279, 25.113975805313494 ], [ -78.006705551737298, 25.114039103771443 ], [ -78.006527053788489, 25.114090817104923 ], [ -78.005515397551576, 25.116552280919873 ], [ -78.005433879942487, 25.116680882263605 ], [ -78.005310913861052, 25.11677841594566 ], [ -78.001902718046139, 25.118686431811195 ], [ -78.001740114031549, 25.118744544338135 ], [ -78.001565464170383, 25.118747662222397 ], [ -78.001400482860944, 25.118695397793346 ], [ -78.00102732624012, 25.118504434370873 ], [ -78.000359192383371, 25.119585842014541 ], [ -78.000473896152769, 25.119629178938624 ], [ -78.002796872290403, 25.119850189060411 ], [ -78.00294661453492, 25.119886629859113 ], [ -78.003076659240008, 25.119963414941186 ], [ -78.003174276803918, 25.120073028107353 ], [ -78.003229911722187, 25.120204739730458 ], [ -78.003238117953501, 25.120345657018252 ], [ -78.003198092057403, 25.120481986027087 ], [ -78.003113751900656, 25.120600381900715 ], [ -78.003090325602855, 25.120617674227763 ], [ -78.005907878182157, 25.121682082201399 ], [ -78.006056496433615, 25.121769333970839 ], [ -78.006161986971875, 25.121898548209955 ], [ -78.011024147486879, 25.130838071689055 ], [ -78.016436983305269, 25.136358103531293 ], [ -78.01650137125354, 25.136365735927029 ], [ -78.016641382929848, 25.136426307102525 ], [ -78.016753980177725, 25.13652329860906 ], [ -78.016828141219165, 25.136647216313126 ], [ -78.016856606581612, 25.136785930354883 ], [ -78.016856597174041, 25.13678599612059 ], [ -78.017081791873721, 25.137015631912604 ], [ -78.019898257162851, 25.134957263119123 ], [ -78.020032829250127, 25.134887219640358 ], [ -78.020184591986293, 25.134858459519819 ], [ -78.020338689917679, 25.134873797956168 ], [ -78.02048003902496, 25.134931733517384 ], [ -78.020594803191031, 25.135026595111011 ], [ -78.020671748531427, 25.13514909709339 ], [ -78.020703343032963, 25.135287248186447 ], [ -78.020686493865412, 25.135427525240953 ], [ -78.020622850182789, 25.135556196960447 ], [ -78.020518641753782, 25.13566066801658 ], [ -78.017742622902148, 25.137689487775088 ], [ -78.018738302025724, 25.138704770399311 ], [ -78.018767341068397, 25.138707931683516 ], [ -78.018908043653823, 25.13876716604868 ], [ -78.01902175140782, 25.138863079755524 ], [ -78.019097333851633, 25.138986284172688 ], [ -78.019120921167115, 25.139094916013825 ], [ -78.022200369492197, 25.142234803444854 ], [ -78.022733519807389, 25.141815242248065 ], [ -78.019875792548433, 25.138867019578221 ], [ -78.019792677200371, 25.138747903132735 ], [ -78.019754066883678, 25.138611236916354 ], [ -78.019763740912765, 25.138470398818264 ], [ -78.019820752165302, 25.138339175058569 ], [ -78.019919519854653, 25.138230410694881 ], [ -78.020050375865068, 25.138154752273138 ], [ -78.020200511151785, 25.138119605695444 ], [ -78.020355229559286, 25.13812841130601 ], [ -78.020499386332801, 25.138180307144484 ], [ -78.020618870530967, 25.138270213322929 ], [ -78.020759127433948, 25.13841491594459 ], [ -78.020489220555675, 25.136894593200658 ], [ -78.020489177013658, 25.136881968990394 ], [ -78.020485587896673, 25.136869774814176 ], [ -78.020488934540751, 25.136811667570395 ], [ -78.020488733855501, 25.136753480809244 ], [ -78.020492977966057, 25.136741462223821 ], [ -78.020493704054545, 25.136728855265435 ], [ -78.020516612460938, 25.136674533392956 ], [ -78.020536174135771, 25.136619138040217 ], [ -78.020544290442245, 25.136608901541031 ], [ -78.020549260647215, 25.136597115856791 ], [ -78.020589488324319, 25.136551896747143 ], [ -78.020626897471658, 25.136504715270057 ], [ -78.020638091485623, 25.136497262872094 ], [ -78.020646819278397, 25.136487452122424 ], [ -78.022784519265429, 25.134735343849457 ], [ -78.021585613579958, 25.133194469220953 ], [ -78.019579920252326, 25.134506527033206 ], [ -78.019444934182459, 25.134568904489864 ], [ -78.019295558156983, 25.134591266916591 ], [ -78.019145736827113, 25.134571526706942 ], [ -78.019009456424925, 25.134511526649867 ], [ -78.018899439070196, 25.134416867900082 ], [ -78.018825955099985, 25.134296387084412 ], [ -78.018795864305972, 25.134161331362982 ], [ -78.018173770098116, 25.122051160837373 ], [ -78.018193637936051, 25.121901973102542 ], [ -78.018266239770753, 25.121767009087044 ], [ -78.018383515402505, 25.121661252087033 ], [ -78.018532445178465, 25.121596442882698 ], [ -78.020745558465109, 25.121020300955021 ], [ -78.020584379013911, 25.116976723623644 ], [ -78.020603057897489, 25.116836638706559 ], [ -78.020668369059521, 25.116708665204147 ], [ -78.020773919272742, 25.1166053300092 ], [ -78.020909376519, 25.116536748220074 ], [ -78.021061481369756, 25.116509633031267 ], [ -78.021215344884396, 25.116526638625547 ], [ -78.021355905989367, 25.116586100379568 ], [ -78.021469405699989, 25.116682197807812 ], [ -78.02154473390172, 25.116805524294975 ], [ -78.021574516874807, 25.116944007854073 ], [ -78.022191356828856, 25.132412324917169 ], [ -78.02324649742917, 25.133768428246324 ], [ -78.022458646717297, 25.115534588214636 ], [ -78.022478782335057, 25.115388403291643 ], [ -78.022549587305122, 25.115255925432709 ], [ -78.022663506486239, 25.115151290204658 ], [ -78.022808384481422, 25.115085662289051 ], [ -78.022968762648446, 25.115066044224765 ], [ -78.024989879733596, 25.11512218427184 ], [ -78.02496241700814, 25.111576731683247 ], [ -78.024985796705593, 25.111436589789715 ], [ -78.025055794538702, 25.111309975848563 ], [ -78.025165496585927, 25.111209395696729 ], [ -78.025304067361361, 25.111144783743825 ], [ -78.025457820061902, 25.111122521760649 ], [ -78.030596534089909, 25.111122847414251 ], [ -78.030673057241216, 25.111050044302736 ], [ -78.03080957139926, 25.110983234900068 ], [ -78.030962078826562, 25.110958104469905 ], [ -78.031115651177572, 25.110977112914707 ], [ -78.03125525587906, 25.111038399560222 ], [ -78.031352210448716, 25.111122880249066 ], [ -78.032921663354301, 25.11112293610978 ], [ -78.032809373890274, 25.107290037727537 ], [ -78.032829528144703, 25.107150123777611 ], [ -78.032896180632619, 25.10702272841403 ], [ -78.033002806830609, 25.1069203219363 ], [ -78.033138969398593, 25.106852928533112 ], [ -78.033291339868896, 25.106827145071982 ], [ -78.03344500330158, 25.106845495377993 ], [ -78.033584918207922, 25.106906183199403 ], [ -78.033697388855529, 25.107003268035722 ], [ -78.033771405858715, 25.107127246617587 ], [ -78.033799723844339, 25.107265983125966 ], [ -78.033912749922834, 25.111122962808082 ], [ -78.038249736761216, 25.111123001540243 ], [ -78.038063857648012, 25.103919973468795 ], [ -78.037633665736138, 25.103886449318669 ], [ -78.037581860744524, 25.103874782897119 ], [ -78.037529046642248, 25.103867813236153 ], [ -78.037507041033422, 25.103857933551716 ], [ -78.03748322347667, 25.103852569845852 ], [ -78.037437913347915, 25.103826897807526 ], [ -78.037390049529918, 25.10380540871482 ], [ -78.037372473906032, 25.103789820756994 ], [ -78.037351642400097, 25.103778017912749 ], [ -78.037317262439515, 25.103740853234829 ], [ -78.037279034183641, 25.10370694823002 ], [ -78.037267608975867, 25.103687177868213 ], [ -78.037251802664315, 25.103670091239774 ], [ -78.037231718223964, 25.103625071885919 ], [ -78.037206867579656, 25.103582069851356 ], [ -78.037202711157718, 25.103560052358144 ], [ -78.037193477267351, 25.103539354514897 ], [ -78.03718965432104, 25.103490887316468 ], [ -78.037180613811003, 25.103442997612216 ], [ -78.03715452104673, 25.101635934492855 ], [ -78.034411377541659, 25.097961110512813 ], [ -78.034345385822334, 25.097833432440762 ], [ -78.03432595279321, 25.097693434110859 ], [ -78.034354980543853, 25.097554819567378 ], [ -78.034429627481146, 25.097431157355139 ], [ -78.034542586543267, 25.097334552340531 ], [ -78.034682800503802, 25.097274460822959 ], [ -78.034836544332549, 25.097256764914025 ], [ -78.034988768663055, 25.097283196780285 ], [ -78.035124572871879, 25.097351169098971 ], [ -78.03523066359638, 25.097454028318484 ], [ -78.037130897741875, 25.099999668746282 ], [ -78.037018899856704, 25.092239223495319 ], [ -78.035057815762315, 25.091303819549513 ], [ -78.034919976832015, 25.091206501280858 ], [ -78.034827730246448, 25.091071705385605 ], [ -78.034792515314237, 25.090916147838865 ], [ -78.034751863510209, 25.089509093943988 ], [ -78.034396792670648, 25.089160417728756 ], [ -78.033778452016961, 25.0899539151746 ], [ -78.033670108956201, 25.09005480339156 ], [ -78.03353283329588, 25.090120265303021 ], [ -78.033380062611556, 25.090143892973543 ], [ -78.033226751307609, 25.090123373524321 ], [ -78.033087906720382, 25.090060715548326 ], [ -78.032977120035241, 25.089962052492819 ], [ -78.032905235844822, 25.089837042256448 ], [ -78.032879290597037, 25.089697921779589 ], [ -78.032901823848107, 25.089558309181616 ], [ -78.032970629728752, 25.089431870710033 ], [ -78.033708711861436, 25.088484720180563 ], [ -78.032855848226333, 25.087647189472367 ], [ -78.032769556067223, 25.08752998280649 ], [ -78.032727259257641, 25.087394228997965 ], [ -78.03273309797666, 25.087253216625804 ], [ -78.032786500529312, 25.087120748972996 ], [ -78.032882239369258, 25.08700979286133 ], [ -78.03301094285807, 25.086931209382012 ], [ -78.033160012646988, 25.086892690761498 ], [ -78.033314856873758, 25.086898007420366 ], [ -78.033460318467093, 25.086946638917514 ], [ -78.033582158765142, 25.087033824898128 ], [ -78.034294337931215, 25.087733198305564 ], [ -78.034686038422706, 25.087230531226265 ], [ -78.03467387988394, 25.086809630939509 ], [ -78.033924740021774, 25.086178411854814 ], [ -78.033828865480601, 25.086067553618459 ], [ -78.033775300630694, 25.08593514059482 ], [ -78.033769288661901, 25.085794134351101 ], [ -78.033811417909632, 25.085658337581361 ], [ -78.033897564324931, 25.085541042994798 ], [ -78.034019295220276, 25.085453732142238 ], [ -78.034164694748952, 25.085404951545065 ], [ -78.034319530302909, 25.085399476130121 ], [ -78.034468645657284, 25.085437841848695 ], [ -78.034597444506915, 25.085516293221716 ], [ -78.035457283392546, 25.086240782977182 ], [ -78.036999013599072, 25.084262206450855 ], [ -78.037107251835238, 25.084161382345709 ], [ -78.037244386490514, 25.084095922604288 ], [ -78.037397014679399, 25.084072224918209 ], [ -78.037550219311569, 25.084092605361558 ], [ -78.037689026969986, 25.084155072041924 ], [ -78.037799871289593, 25.084253519777253 ], [ -78.037871918834583, 25.084378326772363 ], [ -78.037898127905109, 25.084517294985499 ], [ -78.037954210267316, 25.088404135075088 ], [ -78.037989685386293, 25.088491819354918 ], [ -78.037995702665043, 25.088632824916672 ], [ -78.037959208316693, 25.088750470706266 ], [ -78.037997302930094, 25.091389888824057 ], [ -78.038029088213804, 25.091433056048352 ], [ -78.038071392611329, 25.091568807598964 ], [ -78.038065560402742, 25.091709819556073 ], [ -78.03802998325034, 25.091798078844025 ], [ -78.038032886688683, 25.091801805376665 ], [ -78.038079111697684, 25.091936492661663 ], [ -78.038077369231601, 25.092077595671004 ], [ -78.038027829695025, 25.092211302272343 ], [ -78.038009484198739, 25.092233760623987 ], [ -78.038141173109778, 25.101353021758637 ], [ -78.038267382788661, 25.101522087932135 ], [ -78.038333380808751, 25.101649763632832 ], [ -78.038352819487088, 25.101789760885573 ], [ -78.038323795879663, 25.101928375816183 ], [ -78.038249150864715, 25.102052039817014 ], [ -78.0381524660216, 25.10213472877264 ], [ -78.038165292484138, 25.103022530338265 ], [ -78.041136665750486, 25.103254051340649 ], [ -78.040911184471923, 25.082362670159004 ], [ -78.038204423405944, 25.082570965204837 ], [ -78.038049885523748, 25.082560702510975 ], [ -78.037906393650147, 25.082507451398797 ], [ -78.037787993895193, 25.082416424497573 ], [ -78.037706276094809, 25.08229653222276 ], [ -78.03766923930057, 25.082159510536442 ], [ -78.037680508798118, 25.082018772122503 ], [ -78.037738981290161, 25.081888093441894 ], [ -78.037838932956078, 25.081780266194961 ], [ -78.037970579787412, 25.081705845195778 ], [ -78.038121035331201, 25.081672115219391 ], [ -78.040882834514363, 25.081459586174393 ], [ -78.040876396427848, 25.081341371746625 ], [ -78.037809514839083, 25.081498314565298 ], [ -78.037655356954033, 25.08148409206413 ], [ -78.037513570072036, 25.081427181508335 ], [ -78.037398033400848, 25.081333153742438 ], [ -78.037320056509074, 25.081211212928846 ], [ -78.037287272253693, 25.081073295553729 ], [ -78.037302889647421, 25.080932901973956 ], [ -78.037365379791282, 25.080803774891596 ], [ -78.037468625594713, 25.08069855412236 ], [ -78.037602520604906, 25.080627539338693 ], [ -78.03775395830985, 25.080597681892701 ], [ -78.039542792506452, 25.08050615008117 ], [ -78.039485401238252, 25.080500883858964 ], [ -78.039343581721369, 25.080444043619107 ], [ -78.039227989996789, 25.080350073219194 ], [ -78.039149941022259, 25.080228171206226 ], [ -78.039117074710916, 25.080090270268318 ], [ -78.039132608107792, 25.079949869153438 ], [ -78.039195020536056, 25.079820711301316 ], [ -78.039298202512413, 25.07971543953969 ], [ -78.039351006507431, 25.079687398291664 ], [ -78.038676897585987, 25.079723679317034 ], [ -78.038263819935835, 25.079968884184051 ], [ -78.038122376394469, 25.08002649541946 ], [ -78.037968307495689, 25.080041480464278 ], [ -78.037816694729315, 25.08001237244812 ], [ -78.037682379162007, 25.079942020681667 ], [ -78.03757850863181, 25.079837311740405 ], [ -78.037552423321685, 25.079784192492383 ], [ -78.037323247574903, 25.079796524453698 ], [ -78.037316686524548, 25.079795936602867 ], [ -78.037253029119768, 25.079862060881478 ], [ -78.037119878556055, 25.079934226076624 ], [ -78.036968758442711, 25.079965386627208 ], [ -78.036814461606298, 25.079952492277037 ], [ -78.036672091856232, 25.079896805213281 ], [ -78.03655558545745, 25.079803776515394 ], [ -78.036476346905175, 25.079682512549599 ], [ -78.036442132559287, 25.079544883547896 ], [ -78.036429629205415, 25.079371472747429 ], [ -78.032823052967643, 25.081539921098159 ], [ -78.032681980103618, 25.08159828632472 ], [ -78.032528007645041, 25.081614093292899 ], [ -78.032376207640951, 25.081585794675977 ], [ -78.032241439486683, 25.081516160554166 ], [ -78.032136895324157, 25.081412007254347 ], [ -78.032072808666456, 25.081283530099892 ], [ -78.032055452669454, 25.081143305393667 ], [ -78.032086526107094, 25.081005059337429 ], [ -78.032162987141476, 25.080882324403959 ], [ -78.03227735113785, 25.080787114689844 ], [ -78.036354932378813, 25.078335473465796 ], [ -78.036193289181881, 25.076093473735945 ], [ -78.036207448379756, 25.07595295180662 ], [ -78.036268593289648, 25.075823292445566 ], [ -78.036370738499926, 25.075717187572771 ], [ -78.036503885288568, 25.075645023403403 ], [ -78.03665500038187, 25.075613863799013 ], [ -78.036809291718626, 25.075626758834424 ], [ -78.036951656347711, 25.075682446252035 ], [ -78.037068158749165, 25.075775475021079 ], [ -78.037147394893353, 25.075896738906554 ], [ -78.037181608532748, 25.076034367824565 ], [ -78.0373062840751, 25.077763445546214 ], [ -78.038093093922953, 25.077290344984789 ], [ -78.037638318351213, 25.07589071452206 ], [ -78.037583688539783, 25.075861065166631 ], [ -78.037481613784607, 25.075754904217376 ], [ -78.037420555208939, 25.075625211291324 ], [ -78.037406489553462, 25.075484681697933 ], [ -78.03744079350848, 25.075347071480621 ], [ -78.03745474853848, 25.075325743547076 ], [ -78.036807523980045, 25.073333735582437 ], [ -78.03656928070798, 25.073347732461212 ], [ -78.036540099013266, 25.073358573680103 ], [ -78.036385576457221, 25.073368885550664 ], [ -78.036348916335896, 25.073360678606349 ], [ -78.032197064229493, 25.073604533595972 ], [ -78.032144420384427, 25.073637989799774 ], [ -78.031996179071868, 25.073679027115134 ], [ -78.031841269560871, 25.073676334141215 ], [ -78.031705144672628, 25.073633418286583 ], [ -78.029191375070965, 25.073780997065541 ], [ -78.029037102396885, 25.073767931970529 ], [ -78.02889481333581, 25.073712087101793 ], [ -78.028778436253944, 25.073618928985979 ], [ -78.02869936298768, 25.073497576657694 ], [ -78.028665333717157, 25.073359908998363 ], [ -78.028679679327297, 25.073219401921879 ], [ -78.028740995409947, 25.073089809241306 ], [ -78.028843279798181, 25.072983816349346 ], [ -78.028893132352849, 25.072956870527079 ], [ -78.028874244279265, 25.07293992171148 ], [ -78.028827679347714, 25.072903252947732 ], [ -78.028819284625314, 25.072890604778603 ], [ -78.02880772515293, 25.072880232111885 ], [ -78.028779371858491, 25.072830468922817 ], [ -78.028747527362313, 25.072782489331733 ], [ -78.028743834908354, 25.072768097545872 ], [ -78.02873636054683, 25.072754979183706 ], [ -78.0287262791133, 25.07269967165314 ], [ -78.028712272184308, 25.072645077837649 ], [ -78.028713643428944, 25.072630351209288 ], [ -78.028710985810577, 25.072615771274581 ], [ -78.028720163023536, 25.072560333307141 ], [ -78.028725364700335, 25.072504469305041 ], [ -78.028731665399661, 25.072490849380923 ], [ -78.028734084654388, 25.072476235061878 ], [ -78.028761622120612, 25.072426093313062 ], [ -78.02878552316362, 25.072374427479435 ], [ -78.028796136546873, 25.072363247469621 ], [ -78.028803395845188, 25.072350029315412 ], [ -78.028846597957894, 25.07231009199279 ], [ -78.028886858721464, 25.072267681719918 ], [ -78.028900745870303, 25.07226003599521 ], [ -78.028912134611858, 25.072249507884624 ], [ -78.029490933241775, 25.07186047897412 ], [ -78.029056387329774, 25.071070054375053 ], [ -78.028044783419702, 25.071684290261956 ], [ -78.028012227830189, 25.071697921861897 ], [ -78.027982670502155, 25.071716369224394 ], [ -78.027942274947748, 25.071727212335333 ], [ -78.02790401145036, 25.071743233899781 ], [ -78.027868424212343, 25.071747035566226 ], [ -78.027834054566455, 25.071756261152995 ], [ -78.027791957181194, 25.071755204255815 ], [ -78.027750130522989, 25.07175967242576 ], [ -78.027714995196817, 25.07175327201676 ], [ -78.027679177605236, 25.071752372751966 ], [ -78.024262012476086, 25.071171056490066 ], [ -78.024373903777715, 25.071488317956284 ], [ -78.024397627839747, 25.071627767585863 ], [ -78.024372877520861, 25.071767069175099 ], [ -78.024302075398097, 25.071892586905413 ], [ -78.024192151970283, 25.071992034177285 ], [ -78.024053867293134, 25.072055676327086 ], [ -78.023900757715808, 25.07207728355127 ], [ -78.023747810817696, 25.0720547407483 ], [ -78.02360999826341, 25.071990254573244 ], [ -78.023500810212212, 25.071890137431783 ], [ -78.023430934766608, 25.071764189559012 ], [ -78.023155354494492, 25.070982777254969 ], [ -78.022504985698163, 25.07087212374212 ], [ -78.022359010808884, 25.07082483023607 ], [ -78.022236226497697, 25.070738766606489 ], [ -78.022148651805153, 25.070622357426526 ], [ -78.022104859109973, 25.07048699770997 ], [ -78.022109135021054, 25.070345937460338 ], [ -78.022161060822214, 25.070212984648617 ], [ -78.022255553520168, 25.07010115358867 ], [ -78.022383363454622, 25.070021391018379 ], [ -78.022531979741004, 25.069981504581698 ], [ -78.022686854906979, 25.069985398589562 ], [ -78.027663005111847, 25.070831963125112 ], [ -78.028885646991739, 25.070089585981044 ], [ -78.028894222629802, 25.070078992724785 ], [ -78.029020202752505, 25.069996852011577 ], [ -78.029054859450312, 25.069986840271195 ], [ -78.029962270942846, 25.069435854598442 ], [ -78.029909175756103, 25.068421519403344 ], [ -78.029926097648541, 25.068281250433628 ], [ -78.029989781189016, 25.068152609480322 ], [ -78.030093992470924, 25.068048188772433 ], [ -78.030228530536434, 25.067978209666521 ], [ -78.03038022592925, 25.067949522135748 ], [ -78.030534229787236, 25.067964934273306 ], [ -78.030675467299062, 25.068022937432737 ], [ -78.030790113270996, 25.068117853904457 ], [ -78.03086694538797, 25.068240392672795 ], [ -78.03089844272013, 25.068378558858583 ], [ -78.030923245956501, 25.068852333949007 ], [ -78.033210289618154, 25.067463556439321 ], [ -78.033241750603111, 25.067452315655519 ], [ -78.03330394919476, 25.067419020257365 ], [ -78.033374785041133, 25.067404783313652 ], [ -78.033406272319937, 25.06739353309106 ], [ -78.037515666258031, 25.066790863542838 ], [ -78.03735306345871, 25.065453536001566 ], [ -78.037361244438628, 25.065308549435834 ], [ -78.03741957088792, 25.065173441032268 ], [ -78.037521999551316, 25.065062209129582 ], [ -78.037657917900319, 25.064986378225235 ], [ -78.037813243700725, 25.064953804969246 ], [ -78.041231662081827, 25.064752187229278 ], [ -78.041063834726941, 25.062916351854405 ], [ -78.040292300053252, 25.062995297992458 ], [ -78.040135120863965, 25.062988463216215 ], [ -78.039988232657564, 25.062937054889638 ], [ -78.039885788403879, 25.062860669422552 ], [ -78.036435202645691, 25.06192779198501 ], [ -78.036300615558446, 25.061870188334545 ], [ -78.036190874367207, 25.061778784247377 ], [ -78.036115876382667, 25.061661823291608 ], [ -78.036082385428614, 25.061529853945178 ], [ -78.0360934218496, 25.061394778233172 ], [ -78.036147990156252, 25.061268778299912 ], [ -78.036241168856108, 25.061163217730535 ], [ -78.036364554350641, 25.061087616709518 ], [ -78.039472258131767, 25.059749987112159 ], [ -78.03945699403414, 25.059590502605417 ], [ -78.037935338347907, 25.059674172978248 ], [ -78.034837090103693, 25.06049108887845 ], [ -78.034662995710974, 25.063892119714378 ], [ -78.034631659677103, 25.064030315770196 ], [ -78.034554972241551, 25.064152927968784 ], [ -78.03444044000932, 25.06424795411986 ], [ -78.034299274191795, 25.064306092328987 ], [ -78.034145293175797, 25.064321651559531 ], [ -78.03399356984805, 25.064293108735288 ], [ -78.033858956097987, 25.064223257841427 ], [ -78.033754628952849, 25.064118936424084 ], [ -78.033690800681981, 25.063990356263155 ], [ -78.033673719148226, 25.063850103744294 ], [ -78.033836030264993, 25.060679766035758 ], [ -78.033803138799399, 25.060674020029087 ], [ -78.033667454713736, 25.060605915426674 ], [ -78.033561516472588, 25.060502952425917 ], [ -78.033495694055148, 25.060375209835144 ], [ -78.033476430528978, 25.060235192053796 ], [ -78.033505611391746, 25.060096605030061 ], [ -78.033580380063, 25.059973014614805 ], [ -78.033693417565232, 25.059876518646419 ], [ -78.03383365899407, 25.059816562750214 ], [ -78.03388086078418, 25.059804117898128 ], [ -78.034157993779047, 25.054391069454397 ], [ -78.020642902590794, 25.053130012446619 ], [ -78.012624524915509, 25.05452540766596 ], [ -78.003951664071977, 25.058383787213309 ], [ -78.003774721530775, 25.058428034906417 ], [ -78.003592238566327, 25.058410553358271 ], [ -78.000256047734013, 25.057499877700465 ], [ -78.000255417329583, 25.057638708018107 ], [ -78.000230549614741, 25.05777799468353 ], [ -78.000159646360316, 25.05790346437135 ], [ -78.000049647964957, 25.058002835184666 ], [ -77.99991132182312, 25.058066379944187 ], [ -77.999758208343067, 25.058087878379759 ], [ -77.999605295486219, 25.058065226039037 ], [ -77.9994675515848, 25.058000640299632 ], [ -77.999358460077474, 25.057900443313393 ], [ -77.999288699615988, 25.057774443131141 ], [ -77.999265098758613, 25.057634973595 ], [ -77.999266941595337, 25.057229865160686 ], [ -77.994676838556813, 25.055976724464362 ], [ -77.992708401256152, 25.056325226157362 ], [ -77.995155327475956, 25.06013029683486 ], [ -77.995160515518279, 25.060126583022836 ], [ -77.99529580132905, 25.060057816719297 ], [ -77.995447794873712, 25.060030495578197 ], [ -77.995601618106477, 25.060047293942322 ], [ -77.995742213896364, 25.060106567473326 ], [ -77.995855819863465, 25.060202514110038 ], [ -77.995931315492371, 25.060325741997442 ], [ -77.995961310674971, 25.060464188800029 ], [ -77.995942869132435, 25.060604302421005 ], [ -77.995877795892625, 25.060732367560352 ], [ -77.995772460662081, 25.060835848264926 ], [ -77.99566057561718, 25.06091594042773 ], [ -77.996753065813863, 25.062614680878134 ], [ -77.996799358483031, 25.062532152838035 ], [ -77.996909030751837, 25.062432479257883 ], [ -77.997047150376801, 25.062368553394464 ], [ -77.997200197327629, 25.062346632690151 ], [ -77.997353190449303, 25.062368862860172 ], [ -77.99749115386571, 25.062433067868835 ], [ -77.997600582863015, 25.0625329629319 ], [ -78.007132839964683, 25.074509666852268 ], [ -78.012563911282584, 25.077578234753496 ], [ -78.012679267931759, 25.077668415774703 ], [ -78.012759153200889, 25.077786216392305 ], [ -78.017172345204528, 25.087313796661252 ], [ -78.017210150158903, 25.087458527627106 ], [ -78.017194195329438, 25.087606585777849 ], [ -78.017126216340387, 25.087741863081988 ], [ -78.016458572055399, 25.088640456225164 ], [ -78.01667066381664, 25.091832428071037 ], [ -78.016657496903051, 25.091966416071589 ], [ -78.016601521761913, 25.09209090831882 ], [ -78.016507717652331, 25.092194830349179 ], [ -78.016384429044678, 25.092268937535113 ], [ -78.016242623337646, 25.092306637477801 ], [ -78.015152556977185, 25.092440819731731 ], [ -78.014997633596082, 25.0924376135229 ], [ -78.014851380783909, 25.092390968591513 ], [ -78.014728114919961, 25.092305450901559 ], [ -78.014639902184001, 25.092189431585563 ], [ -78.014595377412263, 25.092054267494895 ], [ -78.014598898875249, 25.091913189484341 ], [ -78.014650121707263, 25.091780007264131 ], [ -78.014744031725627, 25.091667757604778 ], [ -78.014871436305256, 25.091587428219832 ], [ -78.015019864239164, 25.091546882236845 ], [ -78.015654102996805, 25.091468811744093 ], [ -78.015459648967862, 25.088541909153186 ], [ -78.015460300241799, 25.088535792105542 ], [ -78.015459022168869, 25.088529757589242 ], [ -78.015467762728832, 25.088465701165983 ], [ -78.015474603099847, 25.088401453378172 ], [ -78.015477298211437, 25.088395818994723 ], [ -78.015478130401448, 25.088389720166909 ], [ -78.015508179580408, 25.088331258562086 ], [ -78.015536486489125, 25.088272080225526 ], [ -78.015540961616097, 25.088267480037693 ], [ -78.015543822601714, 25.088261913893341 ], [ -78.016155251740386, 25.087438992203246 ], [ -78.011907810550298, 25.078269101212662 ], [ -78.006527955989796, 25.07522946085686 ], [ -78.006388085141509, 25.075110929042761 ], [ -77.997283369524681, 25.063671409847014 ], [ -77.997282749937767, 25.06367987485136 ], [ -77.997282063033239, 25.063681438003162 ], [ -77.997281926463216, 25.063683117117826 ], [ -77.997268719029108, 25.063712541388309 ], [ -77.997261290637496, 25.063743601441523 ], [ -77.997256123695223, 25.063751658737935 ], [ -77.997253534805409, 25.063760686952168 ], [ -77.997236746021315, 25.063784563413865 ], [ -77.997225178573842, 25.063810886786438 ], [ -77.997223994966845, 25.063812180090778 ], [ -77.997223295417555, 25.06381373858359 ], [ -77.997200751787531, 25.063838005262784 ], [ -77.997183149391901, 25.063865454275501 ], [ -77.995170277874507, 25.066106248436256 ], [ -77.995060555716734, 25.0661966130453 ], [ -77.994926424955523, 25.066253427353672 ], [ -77.994779854515556, 25.066271621612877 ], [ -77.992168699355148, 25.066237184359892 ], [ -77.992117719702236, 25.066239224565546 ], [ -77.992106374179187, 25.06623636182006 ], [ -77.991503180607708, 25.066228399783306 ], [ -77.991489490065916, 25.066231653086721 ], [ -77.991404814827831, 25.066227101140964 ], [ -77.990487308050277, 25.066214984903077 ], [ -77.990448852223849, 25.06622200162165 ], [ -77.99036823648683, 25.066213412072916 ], [ -77.988889607355375, 25.06619387269977 ], [ -77.988819713393795, 25.066204155455456 ], [ -77.988732287523646, 25.066191792923519 ], [ -77.985101500817947, 25.066143747227951 ], [ -77.985033302295903, 25.066155502793215 ], [ -77.984910602525275, 25.066141218630388 ], [ -77.984082205624162, 25.066130243008583 ], [ -77.984045983504544, 25.066134210465322 ], [ -77.984019216094268, 25.066129408255893 ], [ -77.983635456210393, 25.066124321996107 ], [ -77.983346934643521, 25.066216925295397 ], [ -77.983342428314913, 25.066219481227037 ], [ -77.983330792576936, 25.066222106200399 ], [ -77.97958247517677, 25.067425096290574 ], [ -77.979414882201297, 25.067450722826933 ], [ -77.979247645259179, 25.067423234265295 ], [ -77.979100458599149, 25.067345867710159 ], [ -77.978990655241688, 25.067227734021984 ], [ -77.978255554219629, 25.06608519159289 ], [ -77.966113841044674, 25.072558829465677 ], [ -77.965969522048297, 25.072610187148474 ], [ -77.965814841399123, 25.072618412984145 ], [ -77.965664940473431, 25.072582701747741 ], [ -77.965534492765286, 25.072506549126199 ], [ -77.965436267486481, 25.072397409527703 ], [ -77.965379879596099, 25.072265966369699 ], [ -77.965370848627259, 25.072125086283609 ], [ -77.965410058437513, 25.071988559616688 ], [ -77.965493670750405, 25.071869750528009 ], [ -77.965613500928981, 25.071780288819966 ], [ -77.966253945535726, 25.071438862089394 ], [ -77.966165134948767, 25.071438636968388 ], [ -77.96601790968144, 25.071394655028641 ], [ -77.965892812695941, 25.07131138915766 ], [ -77.965802089420606, 25.071196990062855 ], [ -77.963087768008791, 25.066311218470183 ], [ -77.962601512437757, 25.066526105342579 ], [ -77.962453252594329, 25.066567086835605 ], [ -77.962298345216269, 25.066564333106438 ], [ -77.962151953877139, 25.066518113697487 ], [ -77.962028408516417, 25.066432952919381 ], [ -77.961939802673541, 25.066317186967382 ], [ -77.961894809665637, 25.066182147891716 ], [ -77.961897833598101, 25.066041054309917 ], [ -77.9619485783073, 25.065907717456639 ], [ -77.962042076412288, 25.065795189239218 ], [ -77.962169175608352, 25.065714484638661 ], [ -77.963417407029468, 25.065162861327526 ], [ -77.962736568353861, 25.063507141636354 ], [ -77.962705592694803, 25.063368870398193 ], [ -77.962723043374766, 25.063228647987831 ], [ -77.962787212040553, 25.063100200349989 ], [ -77.962891817299194, 25.062996100790013 ], [ -77.963026619629062, 25.062926539228116 ], [ -77.963178423707163, 25.06289832476569 ], [ -77.963332370033115, 25.062914219189423 ], [ -77.96347338942698, 25.062972666644146 ], [ -77.963587678044817, 25.063067945930175 ], [ -77.963664048550498, 25.063190730517157 ], [ -77.964312370308775, 25.064767346502304 ], [ -77.967674392504705, 25.063281485828146 ], [ -77.966404634621355, 25.060128342218015 ], [ -77.963367225938967, 25.057723937574835 ], [ -77.963267626824702, 25.057615844415519 ], [ -77.963209572823303, 25.0574850063973 ], [ -77.963198746561403, 25.057344230917256 ], [ -77.963236207633273, 25.057207298084645 ], [ -77.963318288939817, 25.057087611818513 ], [ -77.963436955706527, 25.056996887786561 ], [ -77.963580592015319, 25.056944006616121 ], [ -77.963735137847081, 25.056934144624339 ], [ -77.963885465334627, 25.056968267147251 ], [ -77.964016859524477, 25.057043034055237 ], [ -77.967150458091496, 25.059523572248779 ], [ -77.967233368114265, 25.059608060196663 ], [ -77.967290542843116, 25.059708705015769 ], [ -77.968569920115868, 25.062885685221314 ], [ -77.969406411380191, 25.062515970277076 ], [ -77.974705179918217, 25.058855367069508 ], [ -77.974722167283119, 25.058838095389397 ], [ -77.97475634999509, 25.058820014831923 ], [ -77.977524768387923, 25.056907324101811 ], [ -77.978929990048954, 25.054449440942854 ], [ -77.979602681643854, 25.052606217720996 ], [ -77.978210185427741, 25.05017265443756 ], [ -77.976674366005696, 25.04952258942275 ], [ -77.97654581905509, 25.049443835724055 ], [ -77.976450278935232, 25.049332750434584 ], [ -77.976397097756205, 25.049200207429418 ], [ -77.976391481150884, 25.049059180998782 ], [ -77.97643397875396, 25.048923475812092 ], [ -77.976520430460027, 25.048806375613253 ], [ -77.976642373698709, 25.048719342924866 ], [ -77.97678787183871, 25.04867089703988 ], [ -77.976942682619722, 25.048665780121688 ], [ -77.977091652241697, 25.048704493030073 ], [ -77.977459128354823, 25.048860036566214 ], [ -77.977213808571747, 25.048431284988816 ], [ -77.977190873002272, 25.048368948269136 ], [ -77.977166463914855, 25.04830707765203 ], [ -77.977166297050658, 25.048302153058806 ], [ -77.977164578258765, 25.04829748153481 ], [ -77.977163911167054, 25.048231739365033 ], [ -77.977161684544242, 25.048166025683315 ], [ -77.978517158358756, 25.038434954049489 ], [ -77.978518545417444, 25.038430613523605 ], [ -77.978518610200496, 25.038425357078264 ], [ -77.979439365278424, 25.032787150589897 ], [ -77.979447376779575, 25.032763947705273 ], [ -77.979449987586079, 25.032739740415359 ], [ -77.981626906772931, 25.025131682067812 ], [ -77.981108089766622, 25.023916776091617 ], [ -77.981075199286437, 25.023778875668885 ], [ -77.981090687795955, 25.023638463942142 ], [ -77.981153039012781, 25.023509285389693 ], [ -77.981256149445926, 25.023403984865542 ], [ -77.981389925893652, 25.023332869849334 ], [ -77.981541273449437, 25.023302901504859 ], [ -77.981695377298209, 25.023317013299458 ], [ -77.981837152840669, 25.023373823872141 ], [ -77.981952722218438, 25.023467772250996 ], [ -77.982030772729715, 25.023589662183451 ], [ -77.982165186458616, 25.023904414366378 ], [ -77.982193213037263, 25.023889439038072 ], [ -77.982344487331773, 25.023859162726644 ], [ -77.982498625998318, 25.023872960804574 ], [ -77.982640541029539, 25.023929482619351 ], [ -77.982756340913369, 25.024023195464409 ], [ -77.982834690385175, 25.024144926142782 ], [ -77.982867919989133, 25.024282758877089 ], [ -77.982852776842321, 25.024423201682271 ], [ -77.98041481475147, 25.032943865505128 ], [ -77.979529632929157, 25.038364513737747 ], [ -77.981025833326115, 25.040080989856701 ], [ -77.98111328871434, 25.040234809126563 ], [ -77.981130655752509, 25.040407314110674 ], [ -77.980945976441916, 25.042054833605651 ], [ -77.981591329189015, 25.041760714918514 ], [ -77.981739000047, 25.041718097764445 ], [ -77.981893899160653, 25.041719138304618 ], [ -77.98204086408505, 25.041763734670088 ], [ -77.98216550900662, 25.041847521488993 ], [ -77.98225563287437, 25.041962297187748 ], [ -77.982302413700054, 25.042096826793728 ], [ -77.982301272129504, 25.042237941664975 ], [ -77.982252319748056, 25.042371828508362 ], [ -77.982160348218684, 25.042485381515654 ], [ -77.982034360293056, 25.042567485263323 ], [ -77.979343473535181, 25.043793830638371 ], [ -77.979195799170697, 25.043836445702201 ], [ -77.979040897098841, 25.043835402586797 ], [ -77.978893930373246, 25.043790803385921 ], [ -77.978779981370963, 25.043714204015821 ], [ -77.978163583998253, 25.048139524297209 ], [ -77.978932740212258, 25.049483766308306 ], [ -77.978935085705132, 25.049484759058178 ], [ -77.979063634001207, 25.049563510539429 ], [ -77.979159176496751, 25.049674593907415 ], [ -77.979212360804112, 25.049807135621105 ], [ -77.979217980761334, 25.049948161631477 ], [ -77.979211078367101, 25.049970204280104 ], [ -77.979760182574495, 25.05092983254233 ], [ -77.98260577004497, 25.051563356759498 ], [ -77.984962735975685, 25.048335779918151 ], [ -77.985068359844703, 25.048231451112702 ], [ -77.985204342285826, 25.048162186028129 ], [ -77.985357219869911, 25.048134842468784 ], [ -78.010351197335154, 25.047315218531196 ], [ -78.011706347192842, 25.042284006702708 ], [ -78.011535904091616, 25.041644714801112 ], [ -78.011523341315424, 25.041504064066803 ], [ -78.011559102316141, 25.041366760615809 ], [ -78.011639686408202, 25.041246244647652 ], [ -78.011757205371623, 25.041154313048267 ], [ -78.011900155639481, 25.041099964650126 ], [ -78.012054544343997, 25.041088519391824 ], [ -78.012205258997696, 25.041121097588771 ], [ -78.012337546749848, 25.041194510278913 ], [ -78.012438458441153, 25.041301571373427 ], [ -78.012498116124178, 25.041431801059385 ], [ -78.014034533945448, 25.04719407545312 ], [ -78.015521900817461, 25.047145130792863 ], [ -78.013330694276746, 25.037555014391948 ], [ -78.01168689560572, 25.038040673118832 ], [ -78.011647121580182, 25.038054381243928 ], [ -78.011639358964089, 25.038054717454969 ], [ -78.011471101174834, 25.038104427784251 ], [ -78.010399287145674, 25.039514986756128 ], [ -78.01029407716311, 25.039615770402882 ], [ -78.010160163826413, 25.039682559150719 ], [ -78.010010280868215, 25.039709002069809 ], [ -78.009858680620624, 25.039692584694922 ], [ -78.009719778727074, 25.039634868137398 ], [ -78.009606783319043, 25.039541340640049 ], [ -78.008865021277174, 25.038703068388763 ], [ -78.008833216808583, 25.038688283415198 ], [ -78.008723753135669, 25.038588440598954 ], [ -78.008655588148798, 25.038466383072493 ], [ -78.006878140724325, 25.036457595169857 ], [ -78.006779724026146, 25.036270013211226 ], [ -78.005863761760594, 25.032417411248442 ], [ -78.005853822332213, 25.032289508980078 ], [ -78.005883788198346, 25.03216422678306 ], [ -78.005951237518005, 25.032051689471668 ], [ -78.006050719220468, 25.031960991840261 ], [ -78.00617419356378, 25.031899463669422 ], [ -78.010383211046545, 25.030465305219373 ], [ -78.010389840688859, 25.030464075667727 ], [ -78.010395816803694, 25.030461185978194 ], [ -78.019088812006885, 25.027740565528358 ], [ -78.019085454621987, 25.027727934678659 ], [ -78.019072995853847, 25.027587276954051 ], [ -78.01910885267138, 25.027449995732788 ], [ -78.019189515009955, 25.027329529038379 ], [ -78.01930708699048, 25.027237668933463 ], [ -78.019450059856453, 25.02718340725221 ], [ -78.019604438528162, 25.02717205544479 ], [ -78.019755111500089, 25.027204724679049 ], [ -78.019887330001467, 25.027278217081637 ], [ -78.019988151651532, 25.027385338760876 ], [ -78.020017639481651, 25.027449837091886 ], [ -78.024457087637103, 25.026060167550984 ], [ -78.023130384544544, 25.021173038410367 ], [ -78.020353895304083, 25.022077373700331 ], [ -78.020201698849633, 25.022103500859359 ], [ -78.020048090469132, 25.022085496111163 ], [ -78.019908106579223, 25.022025121889598 ], [ -78.019795449891944, 25.021928288089988 ], [ -78.019721148054344, 25.0218044735498 ], [ -78.019692474175855, 25.021665798167106 ], [ -78.019712234913158, 25.021525836494465 ], [ -78.019778495789495, 25.021398288951872 ], [ -78.019884770615107, 25.021295640735627 ], [ -78.020020656444018, 25.021227939697848 ], [ -78.022891464531014, 25.020292885360401 ], [ -78.018838556935762, 25.005360041734381 ], [ -78.018802701329719, 25.005454291554255 ], [ -78.018709248301391, 25.005566812483469 ], [ -78.018582213077138, 25.005647509596908 ], [ -78.018434030789493, 25.005688483626699 ], [ -78.018279206676368, 25.005685723697251 ], [ -78.018132896160196, 25.005639499957596 ], [ -78.018009421268744, 25.005554337141962 ], [ -78.017920868643571, 25.005438571644799 ], [ -78.01788893130545, 25.005342653532079 ], [ -78.015707152261839, 25.005674687638006 ], [ -78.015696770045892, 25.005803130965905 ], [ -78.015638227748582, 25.005933773965456 ], [ -78.015538249278421, 25.006041537216024 ], [ -78.015406621182166, 25.006115872031842 ], [ -78.015256228191106, 25.006149501932651 ], [ -78.015101791952475, 25.00613913494319 ], [ -78.014958429921037, 25.006085785852367 ], [ -78.014840175496289, 25.005994676880288 ], [ -78.014758604287792, 25.005874726475877 ], [ -78.014744197825053, 25.005821224289889 ], [ -78.004457566289304, 25.007386177466174 ], [ -78.00430271411922, 25.007387349259016 ], [ -78.004155043652631, 25.007344857517417 ], [ -78.004029010043169, 25.007262861657985 ], [ -78.00393695040573, 25.007149388069486 ], [ -78.003887876147914, 25.007015544410013 ], [ -78.003886590882701, 25.006874432284292 ], [ -78.003933220262056, 25.006739864746358 ], [ -78.004023199737929, 25.006625014175526 ], [ -78.004147721425255, 25.006541122883139 ], [ -78.004294596304746, 25.006496402660773 ], [ -78.004974751749174, 25.006392950789511 ], [ -78.003657547014285, 24.999486574252529 ], [ -78.002301340552549, 24.999793875007615 ], [ -78.00460188899595, 25.01428702962464 ], [ -78.00459981198091, 25.014428133721442 ], [ -78.004549984556945, 25.014561746839892 ], [ -78.004457284043383, 25.014674789965262 ], [ -78.004330784551684, 25.014756197584479 ], [ -78.004182868771395, 25.01479800088029 ], [ -78.004028015851603, 25.014796107802184 ], [ -78.003881384034528, 25.014750703644943 ], [ -78.003757326800155, 25.014666232915619 ], [ -78.003667987795595, 25.014550964262064 ], [ -78.003622112107195, 25.014416181055505 ], [ -78.002289647190864, 25.006021984755062 ], [ -77.998784520346192, 25.005882213241641 ], [ -77.998657090606585, 25.005861700542827 ], [ -77.998539850509445, 25.005811789447559 ], [ -77.994078114616457, 25.003216253349162 ], [ -77.993967870146534, 25.003128779702415 ], [ -77.99389047175012, 25.003015774863044 ], [ -77.993852670383944, 25.002887095633255 ], [ -77.993857763127551, 25.002753965980673 ], [ -77.993905305636062, 25.002627998024241 ], [ -77.993991150943799, 25.002520179174994 ], [ -77.996417969630713, 25.000266128363457 ], [ -77.99652564144013, 25.000190429434152 ], [ -77.996651855492118, 25.000144292867578 ], [ -78.001193498618903, 24.99911534062818 ], [ -78.000803453619383, 24.996657476649112 ], [ -78.000804888191652, 24.996519888440297 ], [ -78.000851772211988, 24.99638909640068 ], [ -78.002807154385181, 24.992871068478841 ], [ -78.002322917712476, 24.988109460772936 ], [ -78.002332922589147, 24.987968638227645 ], [ -78.002390183882881, 24.987837525821909 ], [ -78.002489096332724, 24.987728957713223 ], [ -78.002619977653708, 24.987653561237085 ], [ -78.002770016323737, 24.987618716655078 ], [ -78.002924525644147, 24.987627834750501 ], [ -78.003068381325733, 24.987680022975159 ], [ -78.003187501898708, 24.987770172820298 ], [ -78.003270227056561, 24.987889459858387 ], [ -78.003308459031004, 24.988026207513826 ], [ -78.003750981682686, 24.992377315998258 ], [ -78.008001911901843, 24.991281642508575 ], [ -78.008155661988013, 24.991264952455786 ], [ -78.008307545979861, 24.991292380533409 ], [ -78.008442696567158, 24.991361241903594 ], [ -78.008547884365854, 24.991464795988673 ], [ -78.008612812865337, 24.991592906265605 ], [ -78.008631126321092, 24.991733032471849 ], [ -78.008601031933793, 24.991871458109227 ], [ -78.008525475398685, 24.991994633098365 ], [ -78.008411852618721, 24.992090500160092 ], [ -78.008271285779273, 24.992149675086157 ], [ -78.005631352970241, 24.992830133795227 ], [ -78.008115921011054, 25.005915135887381 ], [ -78.009584764146013, 25.00569168101751 ], [ -78.007834676060909, 24.998618381760842 ], [ -78.007824667626394, 24.998477560135097 ], [ -78.007862898988151, 24.998340812252142 ], [ -78.007945627646734, 24.998221523926404 ], [ -78.008064755461703, 24.998131371872208 ], [ -78.008208621385762, 24.998079180727842 ], [ -78.008363142924154, 24.998070059266301 ], [ -78.008513194587607, 24.998104900335875 ], [ -78.008644088421207, 24.998180293471055 ], [ -78.008743011707466, 24.998288858724592 ], [ -78.008800281132665, 24.998419969045965 ], [ -78.010562704189425, 25.005542898782974 ], [ -78.011884773980114, 25.005341750558568 ], [ -78.012452230479298, 25.000249054312039 ], [ -78.011622022671062, 25.000254360434603 ], [ -78.011468915373428, 25.000233262492337 ], [ -78.011330455808604, 25.00017007980178 ], [ -78.011220197471772, 25.000070997173175 ], [ -78.011148933235688, 24.999945713575762 ], [ -78.011123638861989, 24.999806492707862 ], [ -78.011146790194985, 24.999666962515107 ], [ -78.011216120864177, 24.999540781178016 ], [ -78.011324844192373, 24.999440300156742 ], [ -78.011462317564124, 24.999375355162535 ], [ -78.011615084206312, 24.999352303397043 ], [ -78.012356120539351, 24.999347567926545 ], [ -78.01084846008763, 24.992999668093205 ], [ -78.010848254022832, 24.992996322478323 ], [ -78.010846974160913, 24.992993181167613 ], [ -78.010222372298841, 24.990162563552733 ], [ -78.010186866756925, 24.990102540785529 ], [ -78.010159101744691, 24.989963711580547 ], [ -78.010166879965468, 24.989911071105038 ], [ -78.0097918535443, 24.988211408544871 ], [ -78.009785449794364, 24.988070412629078 ], [ -78.009827164412954, 24.987934513976416 ], [ -78.009912913938294, 24.987817015269531 ], [ -78.010034304532951, 24.987729418040441 ], [ -78.010179453660328, 24.987680296843376 ], [ -78.01033415322226, 24.987674459945534 ], [ -78.010483260304753, 24.987712478682447 ], [ -78.010612179411936, 24.987790631539589 ], [ -78.010708291119812, 24.98790126843085 ], [ -78.010762187324204, 24.988033559519341 ], [ -78.011052201840698, 24.989347897895414 ], [ -78.012335728878853, 24.988937529597717 ], [ -78.011810312534934, 24.986360440018181 ], [ -78.011806188135992, 24.986219373617509 ], [ -78.011850093711303, 24.986084049873391 ], [ -78.011937731335053, 24.985967715190416 ], [ -78.012060522353792, 24.985881757156655 ], [ -78.012206447152238, 24.985834589870567 ], [ -78.012361221707522, 24.985830830338251 ], [ -78.012509695765544, 24.985870846550291 ], [ -78.012637335793201, 24.985950721467383 ], [ -78.012731647567549, 24.986062636437364 ], [ -78.012783399169791, 24.986195636516015 ], [ -78.013280826492419, 24.988635355135923 ], [ -78.014508875673826, 24.988242702196043 ], [ -78.013976227280907, 24.985668805049844 ], [ -78.000188897441973, 24.985950196449956 ], [ -78.000035469755588, 24.985931239440244 ], [ -77.999895978761913, 24.985869997586573 ], [ -77.999784078923014, 24.98577246571487 ], [ -77.999710723798103, 24.98564819099489 ], [ -77.999683093823876, 24.985509338369816 ], [ -77.999703893471704, 24.985369499740944 ], [ -77.999771086569709, 24.985242363482843 ], [ -77.999878095677559, 24.985140374531696 ], [ -78.000014445974912, 24.985073516206011 ], [ -78.000166790618621, 24.98504833299684 ], [ -78.013354925871468, 24.984779206362688 ], [ -78.01327772792628, 24.984694380149012 ], [ -78.003008015967822, 24.984545674199762 ], [ -78.002843034314949, 24.984517319169683 ], [ -78.002697948764805, 24.984440320178734 ], [ -78.002589458420417, 24.984323539688504 ], [ -78.000867853675103, 24.981658478294783 ], [ -78.000809250761009, 24.981519048647964 ], [ -78.000803799760263, 24.981369820501641 ], [ -78.001316692849045, 24.977875604998239 ], [ -78.000686138634038, 24.977952791455177 ], [ -78.000681640965183, 24.977954419202998 ], [ -78.000664855188845, 24.977955396724607 ], [ -77.999012494050305, 24.978157649853152 ], [ -77.998860908571942, 24.978154842050767 ], [ -77.998717371010017, 24.978110331791481 ], [ -77.998595356304946, 24.978028297575282 ], [ -77.998506318836391, 24.977916440552303 ], [ -77.996427255824756, 24.974221037227966 ], [ -77.988621198800402, 24.978005488892823 ], [ -77.984852642059323, 24.984214673442978 ], [ -77.985694933367853, 24.988648513047369 ], [ -77.985697158026738, 24.988789617700217 ], [ -77.98565143165284, 24.988924442753067 ], [ -77.985562230121914, 24.989039790562256 ], [ -77.985438285032714, 24.989124370018285 ], [ -77.985291729023331, 24.989169901822066 ], [ -77.985136908133057, 24.989171928948164 ], [ -77.984988977467651, 24.98913025295057 ], [ -77.984862417651641, 24.98904895339442 ], [ -77.984769617310263, 24.988935988508995 ], [ -77.984719660358238, 24.988802416156968 ], [ -77.983847693211274, 24.984212167089343 ], [ -77.983847319201956, 24.984060271643941 ], [ -77.98390228739737, 24.983916876093264 ], [ -77.987826234195992, 24.977451747461473 ], [ -77.987912230723225, 24.977348522898978 ], [ -77.988026881621849, 24.977271851240285 ], [ -77.995975618987288, 24.973418244246503 ], [ -77.994224670434875, 24.970305775392895 ], [ -77.994174283964071, 24.970158098406895 ], [ -77.994181585705334, 24.970003587148426 ], [ -77.994189134155604, 24.969986734412977 ], [ -77.994158093577994, 24.969927661561897 ], [ -77.994137635547091, 24.969787780541274 ], [ -77.994165598646248, 24.969648983071394 ], [ -77.994239245498335, 24.969524855604138 ], [ -77.994351366935931, 24.969427548549259 ], [ -77.994490987723097, 24.969366586927325 ], [ -77.99459389799442, 24.969354080432979 ], [ -77.995855539678814, 24.967519357078444 ], [ -77.995956145259285, 24.967413842299781 ], [ -77.996087361196928, 24.967341476879032 ], [ -77.996236582205583, 24.967309212578975 ], [ -78.004129128212909, 24.966751816908651 ], [ -78.004280403509426, 24.966762396976268 ], [ -78.004421050460351, 24.966814263562423 ], [ -78.004537845219573, 24.966902540082756 ], [ -78.004619806505971, 24.967018926630178 ], [ -78.004659228074075, 24.96715248032876 ], [ -78.004652403291544, 24.967290644184672 ], [ -78.003365985933314, 24.973107598790559 ], [ -78.003408540038308, 24.973184091377647 ], [ -78.003432463353661, 24.973323513903335 ], [ -78.003407950018612, 24.973462851248851 ], [ -78.003337399413283, 24.973588464095759 ], [ -78.003240099306382, 24.9736768136557 ], [ -78.002796675233256, 24.97568178878451 ], [ -78.002763169151592, 24.975763921300324 ], [ -78.002499347754053, 24.977401213149641 ], [ -78.002451235970639, 24.977539416626954 ], [ -78.002357502349994, 24.977656565122519 ], [ -78.002346276831631, 24.977663835960392 ], [ -78.001807437051667, 24.981335030571408 ], [ -78.003301433789289, 24.983647731908878 ], [ -78.01352108448296, 24.98379570254048 ], [ -78.013661064592768, 24.983816238987178 ], [ -78.013788910582988, 24.983872109367134 ], [ -78.013894128052215, 24.983958727486765 ], [ -78.01399317327764, 24.984067559560913 ], [ -78.014138649756433, 24.984020133789464 ], [ -78.014293410128786, 24.984015994078675 ], [ -78.014441999574132, 24.984055645375221 ], [ -78.014569873264847, 24.98413520635987 ], [ -78.014664514106173, 24.98424688911016 ], [ -78.014716657968833, 24.984379761413141 ], [ -78.014793230680652, 24.984749784526681 ], [ -78.015251208991089, 24.984740413242285 ], [ -78.015404635745384, 24.984759354452617 ], [ -78.015544131481803, 24.984820581142994 ], [ -78.015656041497579, 24.984918100064863 ], [ -78.01572941128407, 24.985042365457339 ], [ -78.015757058821464, 24.985181213425737 ], [ -78.015736277633223, 24.985321052602494 ], [ -78.015669101769376, 24.985448194550045 ], [ -78.015562106759674, 24.985550193682194 ], [ -78.015425765997733, 24.985617065542591 ], [ -78.015406296696071, 24.985620285969201 ], [ -78.017160966526049, 24.987548221088538 ], [ -78.019743072845301, 24.986834233388073 ], [ -78.019795924753595, 24.986799492785153 ], [ -78.019943343404933, 24.986756356230824 ], [ -78.020023772252742, 24.986756613048506 ], [ -78.024101666006089, 24.98562890549902 ], [ -78.024240067136986, 24.985609499536448 ], [ -78.024378891645881, 24.985626205409218 ], [ -78.024507024103514, 24.985677685496988 ], [ -78.024614205154364, 24.985759817869706 ], [ -78.024691852945651, 24.985866026316661 ], [ -78.025397327799155, 24.987211445481133 ], [ -78.021854994634552, 24.975229245712224 ], [ -78.018806264515135, 24.9758702083579 ], [ -78.018651823022353, 24.975880021295964 ], [ -78.018501613710043, 24.97584585214242 ], [ -78.018370340260105, 24.975771045632463 ], [ -78.018270852716668, 24.97566292440608 ], [ -78.018212889602125, 24.975532072195083 ], [ -78.018202124647033, 24.975391297785812 ], [ -78.018239611445239, 24.975254381182928 ], [ -78.018321680379955, 24.975134724717115 ], [ -78.018440297887778, 24.975044041139334 ], [ -78.018583852872183, 24.974991207117178 ], [ -78.022097441370036, 24.974252509736584 ], [ -78.022248281331827, 24.974242417850618 ], [ -78.022395419421073, 24.974274329491422 ], [ -78.022430666498906, 24.974293607899792 ], [ -78.021980569665544, 24.972519962774829 ], [ -78.021975890426575, 24.972459335579103 ], [ -78.021968296554547, 24.972398954003648 ], [ -78.022134520238097, 24.968872494834059 ], [ -78.015566674572455, 24.968567607782251 ], [ -78.01540041281757, 24.968533065393245 ], [ -78.01525688910543, 24.968449123412896 ], [ -78.015153150341376, 24.968325751992545 ], [ -78.015101517896625, 24.968177604470554 ], [ -78.014665831821233, 24.965240990124855 ], [ -78.014669338418528, 24.965099909818001 ], [ -78.01472049789902, 24.964966722262226 ], [ -78.01481430228209, 24.964854464750626 ], [ -78.01494156928328, 24.964774125765796 ], [ -78.015089841162322, 24.964733569375344 ], [ -78.015244604158127, 24.964736765469691 ], [ -78.0153907091496, 24.964783401181219 ], [ -78.01551385449639, 24.964868911514394 ], [ -78.015601985931866, 24.964984926186787 ], [ -78.015646476496528, 24.965120088945927 ], [ -78.016027144193757, 24.967685743467424 ], [ -78.022177003014789, 24.967971222916113 ], [ -78.022344416057024, 24.96441958077202 ], [ -78.022306759410682, 24.964409281353223 ], [ -78.022179492011887, 24.964328944879689 ], [ -78.022085686647088, 24.964216689371252 ], [ -78.022034525612639, 24.964083503251882 ], [ -78.022031016793207, 24.96394242376304 ], [ -78.022075503498755, 24.963807260766185 ], [ -78.022163630919096, 24.963691244930377 ], [ -78.022286772457178, 24.963605732632477 ], [ -78.02238424519075, 24.963574617606692 ], [ -78.022426923500561, 24.962669212510317 ], [ -78.022363426682915, 24.962634917243214 ], [ -78.022261149506022, 24.962528989804962 ], [ -78.022199785687832, 24.962399435138384 ], [ -78.02218534184955, 24.962258935019012 ], [ -78.02221923170184, 24.962121242605345 ], [ -78.022481108887106, 24.961519692601037 ], [ -78.022525198066731, 24.960584362487321 ], [ -78.022466723800406, 24.961011654536644 ], [ -78.022423767374022, 24.961147228004748 ], [ -78.022336956963485, 24.961264064969196 ], [ -78.022214790102552, 24.961350728553239 ], [ -78.022069225357896, 24.96139873544865 ], [ -78.02191451173239, 24.961403386348973 ], [ -78.021765793830852, 24.961364225972087 ], [ -78.021637629340631, 24.96128508763395 ], [ -78.021542563969049, 24.961173718007135 ], [ -78.021489903353881, 24.961041018799445 ], [ -78.021484802171614, 24.960899979590941 ], [ -78.022406522648254, 24.954164835181512 ], [ -78.02225974387629, 24.954190344865026 ], [ -78.022106178127572, 24.954172641426545 ], [ -78.021966129241221, 24.954112541615814 ], [ -78.021853306291646, 24.954015928466465 ], [ -78.021778753201488, 24.953892259216872 ], [ -78.020303559715657, 24.950155088102175 ], [ -78.019004940696689, 24.949160846358168 ], [ -78.018901838374134, 24.949182389111161 ], [ -78.013466008209562, 24.94952085573393 ], [ -78.013310561341925, 24.949508032206023 ], [ -78.013167232816954, 24.94945169445646 ], [ -78.013050289062747, 24.949357450144952 ], [ -78.012971370193696, 24.949234680015163 ], [ -78.01130436598342, 24.945335746083742 ], [ -78.011271404372394, 24.945197865965739 ], [ -78.011286788141817, 24.945057447523951 ], [ -78.011349011262553, 24.94492823589427 ], [ -78.011451982782759, 24.944822879168914 ], [ -78.011585623098199, 24.944751690329181 ], [ -78.011736850627273, 24.94472163776534 ], [ -78.011890862303161, 24.944735663188592 ], [ -78.012032582548528, 24.9447923936923 ], [ -78.012148138917624, 24.944886276141879 ], [ -78.01222621998231, 24.945008120738077 ], [ -78.013761233606559, 24.948598295109903 ], [ -78.017931086800118, 24.948338666076037 ], [ -78.014368912567846, 24.945611197642481 ], [ -78.014275857738184, 24.945516559297367 ], [ -78.014215456059958, 24.945402009284017 ], [ -78.014192503784997, 24.945276643721897 ], [ -78.014133528313096, 24.943039437619966 ], [ -78.012543789687257, 24.942375557328802 ], [ -78.012762967113929, 24.943439770590402 ], [ -78.012767383516163, 24.943580830203029 ], [ -78.012723774650482, 24.943716230167581 ], [ -78.012636409114307, 24.943832716566135 ], [ -78.012513838782397, 24.943918886837409 ], [ -78.012368061717339, 24.943966305962203 ], [ -78.012213347706322, 24.943970332169595 ], [ -78.012064841392032, 24.943930571327463 ], [ -78.011937079749345, 24.943850915530067 ], [ -78.011842569050742, 24.94373916210283 ], [ -78.011790560637309, 24.943606250322492 ], [ -78.011442380229823, 24.941915590220535 ], [ -78.010626614930615, 24.941574905133304 ], [ -78.008237115488981, 24.941740353742958 ], [ -78.012416830179731, 24.949419984277107 ], [ -78.012463097758427, 24.949554649282351 ], [ -78.01246145689467, 24.949695758358111 ], [ -78.012412068048732, 24.94982949877825 ], [ -78.012319765608865, 24.949942779067364 ], [ -78.012193584719569, 24.950024510497567 ], [ -78.012045876882254, 24.950066692554852 ], [ -78.011891100890097, 24.950065196112689 ], [ -78.011744407454444, 24.950020167639931 ], [ -78.011620156086963, 24.949936014868459 ], [ -78.011530509438629, 24.949820975321813 ], [ -78.007172723814492, 24.941814039664727 ], [ -78.004322885075595, 24.942011291220734 ], [ -78.006731965299224, 24.947582906608229 ], [ -78.006765846367372, 24.947726243635262 ], [ -78.006747508045322, 24.947871915028568 ], [ -78.004981506911562, 24.953523232337758 ], [ -78.00600076143067, 24.953593220897776 ], [ -78.006054093963797, 24.95356956879008 ], [ -78.006207399542404, 24.953550073722511 ], [ -78.006359809798454, 24.953574722267376 ], [ -78.006463217742862, 24.953624973768171 ], [ -78.00772909225303, 24.953711882907545 ], [ -78.006487128680575, 24.951306864761225 ], [ -78.006443917137318, 24.951171357661064 ], [ -78.006448750623463, 24.951030308855568 ], [ -78.006501155844404, 24.950897525194915 ], [ -78.006596002879448, 24.950786004435017 ], [ -78.006724007384719, 24.950706662939563 ], [ -78.006872639430554, 24.950667267135206 ], [ -78.007027350001835, 24.95067167330706 ], [ -78.007172995109173, 24.950719450137949 ], [ -78.007295318127277, 24.950805920932755 ], [ -78.00738234528211, 24.950922621392898 ], [ -78.008862955674232, 24.953789719441264 ], [ -78.010206481129671, 24.953881937271241 ], [ -78.01025670542694, 24.953305325571005 ], [ -78.007747881245564, 24.948990107758231 ], [ -78.007697679978904, 24.948856618560971 ], [ -78.007695181031679, 24.948715519424518 ], [ -78.007740628860375, 24.948580622132571 ], [ -78.007829574574501, 24.948465131344257 ], [ -78.007953311478701, 24.948380352040633 ], [ -78.008099727371103, 24.948334582938081 ], [ -78.008254490159246, 24.948332304179822 ], [ -78.008402450741031, 24.94837373880944 ], [ -78.008529125844177, 24.948454830944417 ], [ -78.008622115696099, 24.948567642783523 ], [ -78.011198421755807, 24.952998875259158 ], [ -78.011245767825784, 24.953118702426693 ], [ -78.011254483440027, 24.953245818791082 ], [ -78.01119318323623, 24.953949655329623 ], [ -78.013180077293214, 24.954085997005674 ], [ -78.013191662442921, 24.954068244499158 ], [ -78.013308040114921, 24.953975200488536 ], [ -78.013450259650838, 24.953919496338159 ], [ -78.013604399708939, 24.953906584696433 ], [ -78.013755372139315, 24.953937729417227 ], [ -78.013888398858768, 24.954009881855519 ], [ -78.013990458375133, 24.954115979283451 ], [ -78.014002934802832, 24.954142453977006 ], [ -78.015136447396998, 24.954220217660925 ], [ -78.015287083321695, 24.954252689160349 ], [ -78.015419340258205, 24.954326008530696 ], [ -78.015520272063512, 24.954432998817566 ], [ -78.015579998821707, 24.954563187138927 ], [ -78.015592673961791, 24.95470382981598 ], [ -78.015557056598965, 24.95484115978989 ], [ -78.015476633059748, 24.954961734227368 ], [ -78.015359275673035, 24.955053750405959 ], [ -78.015216472205111, 24.955108201068306 ], [ -78.015062201354141, 24.955119756143009 ], [ -78.014018131164704, 24.955048129622426 ], [ -78.013698693484088, 24.959491174183231 ], [ -78.013664530365773, 24.959628811295332 ], [ -78.013585383955899, 24.959750087907164 ], [ -78.013469001566477, 24.959843132563432 ], [ -78.013326775521222, 24.959898837332283 ], [ -78.013172627993725, 24.959911749380893 ], [ -78.013021648171005, 24.959880604760382 ], [ -78.01288861516025, 24.959808452140457 ], [ -78.012786551249491, 24.959702354377825 ], [ -78.012725447160875, 24.959572697133314 ], [ -78.012711284090969, 24.959432172223348 ], [ -78.013031383016667, 24.954980428704104 ], [ -78.011114862247538, 24.954848916886668 ], [ -78.010424865367881, 24.962771081297593 ], [ -78.01052871241798, 24.962815849062761 ], [ -78.01064135523373, 24.962912646185547 ], [ -78.010715672610672, 24.963036437236379 ], [ -78.010744389774359, 24.963175104752761 ], [ -78.010724695546926, 24.963315075031861 ], [ -78.010658517578918, 24.963442646803895 ], [ -78.010552333717683, 24.963545332409314 ], [ -78.010416537953745, 24.963613080195302 ], [ -78.010264422994453, 24.963639258468508 ], [ -78.008626715255218, 24.96368331591599 ], [ -78.008623729436565, 24.96376824263664 ], [ -78.01050501612545, 24.963733531196429 ], [ -78.0106591505388, 24.963752996380578 ], [ -78.010799030761575, 24.963815138204986 ], [ -78.010910821779262, 24.963913810458781 ], [ -78.010983466704573, 24.964039253841737 ], [ -78.01100978037195, 24.964179061199204 ], [ -78.011019380256982, 24.964907210169383 ], [ -78.011158148933035, 24.964860482267287 ], [ -78.011313849792245, 24.964832767481241 ], [ -78.011471169379959, 24.964851396561791 ], [ -78.01161393525534, 24.964914454425092 ], [ -78.011727471063807, 24.96501545871028 ], [ -78.011800105233021, 24.965144026152569 ], [ -78.011824370813514, 24.96528693996266 ], [ -78.011786502711715, 24.969923657993768 ], [ -78.01176114777563, 24.970062869194713 ], [ -78.011689840841697, 24.970188124811781 ], [ -78.011579561824746, 24.970287163902693 ], [ -78.011441105589384, 24.970350291759694 ], [ -78.011288025278745, 24.970371328922301 ], [ -78.01113530560707, 24.970348216091256 ], [ -78.011090855825827, 24.970327189547703 ], [ -78.011123474973374, 24.972799858960745 ], [ -78.011101097310089, 24.972939493733676 ], [ -78.011032477225612, 24.973065990993558 ], [ -78.010924331622562, 24.973166968259573 ], [ -78.010787246526007, 24.973232541102448 ], [ -78.010634640857063, 24.973256290728305 ], [ -78.010481452866244, 24.97323589232062 ], [ -78.010342677818187, 24.973173342623824 ], [ -78.010231900090815, 24.97307476448573 ], [ -78.010159963400014, 24.972949807492245 ], [ -78.010133909333504, 24.97281070337166 ], [ -78.01004672253454, 24.966196389506969 ], [ -78.009149337804828, 24.966498555239454 ], [ -78.008773378898994, 24.971513757297863 ], [ -78.008738793051322, 24.971651307695183 ], [ -78.008659269389682, 24.971772383711841 ], [ -78.008542592154825, 24.971865133527878 ], [ -78.008400182532881, 24.97192047807242 ], [ -78.008245980668022, 24.971932999774086 ], [ -78.008095081066557, 24.97190147289427 ], [ -78.007962254982814, 24.971828983521334 ], [ -78.007860504448658, 24.971722627476005 ], [ -78.007799789509846, 24.971592815701705 ], [ -78.007786053269442, 24.971452255141074 ], [ -78.008183885176422, 24.966145839380399 ], [ -78.008213658046088, 24.966019637106807 ], [ -78.008281426015984, 24.965906290975404 ], [ -78.00838163817042, 24.965815085068165 ], [ -78.008506086172218, 24.965753489957958 ], [ -78.010034106484341, 24.965238979129399 ], [ -78.01002627518055, 24.964644635486849 ], [ -78.008411226861341, 24.964674431720255 ], [ -78.008387081216767, 24.964695075535623 ], [ -78.00824696971732, 24.964755080618037 ], [ -78.008093374728276, 24.964772679768576 ], [ -78.007941331347027, 24.964746150227736 ], [ -78.00782015446913, 24.964685332107823 ], [ -78.006324912399279, 24.964712896448312 ], [ -78.006270952109134, 24.964760300972269 ], [ -78.006131745825016, 24.964822032665548 ], [ -78.005978426432605, 24.964841528939214 ], [ -78.005826002050469, 24.964816881328378 ], [ -78.005689393193691, 24.964750502523511 ], [ -78.005662540902236, 24.964725102265383 ], [ -78.001204883071281, 24.964807168817668 ], [ -78.001038294892098, 24.96478407202401 ], [ -78.000889869807224, 24.96471135282745 ], [ -78.000776822094352, 24.964597445171467 ], [ -77.996078880429224, 24.957830890331707 ], [ -77.996018509493183, 24.957704581705862 ], [ -77.996002780854113, 24.957567551422201 ], [ -77.99603316197792, 24.957432585526643 ], [ -77.996106817921444, 24.957312277400526 ], [ -77.998398968731593, 24.954633042357848 ], [ -77.998530600021326, 24.954525847428833 ], [ -77.998695128890205, 24.954467597764705 ], [ -78.003946999843734, 24.953541291870305 ], [ -78.00575002742039, 24.947771650520242 ], [ -78.003287145467269, 24.94207548825338 ], [ -78.003184987996264, 24.942067896211828 ], [ -78.003042159771638, 24.942013528990724 ], [ -78.002924748572994, 24.941921580856292 ], [ -78.002844247466456, 24.941801052400717 ], [ -78.002808536402938, 24.941663741859095 ], [ -78.002821110895852, 24.941523090189147 ], [ -78.00288073990717, 24.941392865359393 ], [ -78.002957010768682, 24.941311902233718 ], [ -78.001743017754293, 24.93850389331325 ], [ -78.001646728179026, 24.938573681367014 ], [ -78.001501739940579, 24.938623058061566 ], [ -77.999663925812158, 24.938963387510583 ], [ -78.000190034967716, 24.943266927572807 ], [ -78.000182906822417, 24.94340789625868 ], [ -78.000128349300695, 24.943539957114545 ], [ -78.000031702743087, 24.943650183067852 ], [ -77.999902427537265, 24.943727784368075 ], [ -77.999753178088824, 24.943765164788005 ], [ -77.999598564101603, 24.943758665222571 ], [ -77.999453720429287, 24.943708921886344 ], [ -77.999332825509512, 24.943620804039526 ], [ -77.999247713430066, 24.943502937337112 ], [ -77.999206715506574, 24.943366859464458 ], [ -77.998690459002262, 24.93914364593088 ], [ -77.998416656528008, 24.939194345158022 ], [ -77.998958276351885, 24.943332147826144 ], [ -77.9989523510786, 24.943473162930701 ], [ -77.998898921800418, 24.9436056068391 ], [ -77.998803218416128, 24.943716514983922 ], [ -77.998674608986718, 24.943795030837478 ], [ -77.998525682744543, 24.943833468649466 ], [ -77.998371017754309, 24.943828065809111 ], [ -77.998225753862144, 24.943779351174761 ], [ -77.998104110641179, 24.943692093309128 ], [ -77.998017995430473, 24.943574833685798 ], [ -77.997975837741507, 24.943439050565182 ], [ -77.997443834528141, 24.939374475518417 ], [ -77.997411957647046, 24.93938037781388 ], [ -77.997398205432134, 24.939422794677217 ], [ -77.996984686468764, 24.940214390153212 ], [ -77.996983620335456, 24.940227093010197 ], [ -77.996924700480164, 24.940357586389727 ], [ -77.996891012546698, 24.940393707871667 ], [ -77.995522824425137, 24.943012738598263 ], [ -77.995459487098287, 24.943103940026152 ], [ -77.995374196196565, 24.943178808403907 ], [ -77.992530413290979, 24.945135459865995 ], [ -77.9944686399798, 24.947723855010345 ], [ -77.996718793620659, 24.946740447419735 ], [ -77.99686711603826, 24.94670010411842 ], [ -77.99702185284022, 24.946703523296918 ], [ -77.997167857469364, 24.946750370250907 ], [ -77.997290838109038, 24.946836059307206 ], [ -77.99737875661468, 24.946952202688795 ], [ -77.997423006869326, 24.947087431544119 ], [ -77.997419257225999, 24.947228508782022 ], [ -77.99736787456682, 24.94736162479083 ], [ -77.997273888450707, 24.94747374921506 ], [ -77.997146498836244, 24.947553906469992 ], [ -77.994513366446938, 24.94870469003148 ], [ -77.994379920031406, 24.948743008271229 ], [ -77.994240043438296, 24.948745733317462 ], [ -77.994104923431777, 24.948712647221036 ], [ -77.993985366358288, 24.948646396063413 ], [ -77.993890933873715, 24.948552278330617 ], [ -77.991447245131553, 24.945288839469864 ], [ -77.991382387451736, 24.945165379166596 ], [ -77.99136113786885, 24.945029866026534 ], [ -77.991385453525552, 24.944894782060604 ], [ -77.991453094588863, 24.94477256970967 ], [ -77.99155783061002, 24.944674485786638 ], [ -77.994681607421455, 24.942525205520248 ], [ -77.995952537177175, 24.940092385263622 ], [ -77.995766364451853, 24.93968506455986 ], [ -77.994073869310313, 24.939998415182959 ], [ -77.994197516380098, 24.94056675933761 ], [ -77.994205794328593, 24.94068561035796 ], [ -77.994179668082822, 24.940802294059861 ], [ -77.994120958860734, 24.940908676190389 ], [ -77.992283458749185, 24.943364937902199 ], [ -77.992177314016175, 24.943467645233785 ], [ -77.992041553839911, 24.943535419775326 ], [ -77.991889467444068, 24.943561627214521 ], [ -77.991735942246365, 24.943543702144886 ], [ -77.991596006520325, 24.943483399200794 ], [ -77.991483358262883, 24.943386621300231 ], [ -77.991409024295933, 24.943262841808593 ], [ -77.991380280874353, 24.943124177192914 ], [ -77.991399941462845, 24.942984200951642 ], [ -77.991466081388566, 24.942856614930886 ], [ -77.993186655196851, 24.940556678961073 ], [ -77.993119831466629, 24.940249512270441 ], [ -77.993085090591777, 24.940288795045284 ], [ -77.992955460817143, 24.940365899546041 ], [ -77.9928060432553, 24.940402706575419 ], [ -77.992651464066952, 24.940395613156312 ], [ -77.9925068546994, 24.94034531363447 ], [ -77.992445140920367, 24.940299940643708 ], [ -77.991646742194206, 24.940447740780122 ], [ -77.990638254701636, 24.943152879290771 ], [ -77.990563640196967, 24.94328075402111 ], [ -77.990448418280934, 24.943380472431329 ], [ -77.990304471004819, 24.943441751156179 ], [ -77.988372242782958, 24.943939869982426 ], [ -77.988230871887339, 24.943956843047687 ], [ -77.988160210255444, 24.943946557769035 ], [ -77.986635782870735, 24.945944776086172 ], [ -77.986528609924861, 24.946046594684052 ], [ -77.986392172347024, 24.946113234932682 ], [ -77.9862398256723, 24.946138173552729 ], [ -77.986086482797674, 24.946118969339729 ], [ -77.985947154149102, 24.946057502140853 ], [ -77.985835478296565, 24.945959788840518 ], [ -77.985762386873219, 24.945835394367933 ], [ -77.985735034502468, 24.945696495388226 ], [ -77.985756098481986, 24.945556688339906 ], [ -77.985823516765649, 24.94542965850593 ], [ -77.987545728019128, 24.943172201198049 ], [ -77.986778023432691, 24.941517295522047 ], [ -77.986740063461212, 24.941371896812857 ], [ -77.986756299455493, 24.941223170443845 ], [ -77.986824948501678, 24.941087446702351 ], [ -77.98693847273772, 24.940979628122584 ], [ -77.988700588673765, 24.939785024627124 ], [ -77.988453221185921, 24.938883502920223 ], [ -77.98833543138538, 24.938796528557429 ], [ -77.988251139268158, 24.938678173523908 ], [ -77.988211085094505, 24.938541861302017 ], [ -77.988219189516883, 24.938400935130122 ], [ -77.988274659058661, 24.938269189851066 ], [ -77.988282302012649, 24.938260584640041 ], [ -77.987933462199166, 24.936989206641897 ], [ -77.98232828148231, 24.939046444707248 ], [ -77.980874611543314, 24.944269481530309 ], [ -77.980808414355195, 24.94440640720995 ], [ -77.980696727485366, 24.944516052521195 ], [ -77.980551843028408, 24.944586349945201 ], [ -77.980389706888886, 24.944609562549157 ], [ -77.980228163755427, 24.944583135538299 ], [ -77.980084993060998, 24.944509977451826 ], [ -77.979975952120697, 24.944398140046896 ], [ -77.978971956595572, 24.942938142314905 ], [ -77.978971174306295, 24.942936354906958 ], [ -77.978969594345429, 24.942934672299156 ], [ -77.978910193488787, 24.942804357827576 ], [ -77.978174234057406, 24.940023812457373 ], [ -77.976433005863854, 24.941175307502483 ], [ -77.975962190164395, 24.945559412106366 ], [ -77.975919906063424, 24.945702695862359 ], [ -77.975828915731142, 24.945825717510051 ], [ -77.975699065649053, 24.945915164126003 ], [ -77.975544407645415, 24.945961356112942 ], [ -77.967266132571808, 24.947112157355193 ], [ -77.967160047063814, 24.947116391907191 ], [ -77.967131783722991, 24.947114746380748 ], [ -77.967042417973005, 24.947121489394608 ], [ -77.966966221314109, 24.947105107024299 ], [ -77.965095213609416, 24.946996160414173 ], [ -77.964945060249747, 24.946965559022882 ], [ -77.964812479630893, 24.946894380619451 ], [ -77.964710294729315, 24.946789509466672 ], [ -77.964648388626784, 24.946661088528153 ], [ -77.964632748642899, 24.946521538437722 ], [ -77.964746416464763, 24.944614990339065 ], [ -77.964776705033387, 24.944482271196691 ], [ -77.964848877661709, 24.944363751275056 ], [ -77.971687443706415, 24.936290671250465 ], [ -77.9717903500066, 24.936200041078237 ], [ -77.971917397294149, 24.936140053217937 ], [ -77.972057958636555, 24.936115725359919 ], [ -77.972200276755203, 24.936129092400083 ], [ -77.972332447437665, 24.936179036239398 ], [ -77.972761243619956, 24.936412334768583 ], [ -77.972806781265533, 24.936378064949515 ], [ -77.972950749464189, 24.936326264063084 ], [ -77.973105227034765, 24.93631756313739 ], [ -77.973255092791561, 24.936352813856328 ], [ -77.973385676976577, 24.93642856565554 ], [ -77.973484197181662, 24.936537403479377 ], [ -77.97354100954847, 24.936668673596014 ], [ -77.973550552781987, 24.936809526431166 ], [ -77.973547351850826, 24.936840033110947 ], [ -77.975552810334094, 24.937931110151769 ], [ -77.975667408510006, 24.9380170929605 ], [ -77.975748879121838, 24.938130198958252 ], [ -77.975789889563984, 24.938260248379546 ], [ -77.975786748680747, 24.938395536489061 ], [ -77.974493280289025, 24.945194965299358 ], [ -77.975014945089001, 24.945122433973101 ], [ -77.975470000677049, 24.94088539137557 ], [ -77.975502845324826, 24.940762250047968 ], [ -77.975571963581004, 24.94065229967325 ], [ -77.975671899112896, 24.940564219804017 ], [ -77.978191363107626, 24.93889806835935 ], [ -77.978335341907396, 24.938832362851684 ], [ -77.978494836205741, 24.938812293912495 ], [ -77.978652951307922, 24.938839987360435 ], [ -77.97879293861989, 24.938912509707126 ], [ -77.978899969717091, 24.939022178888838 ], [ -77.978962707041063, 24.939157377984895 ], [ -77.979580919753488, 24.941493036679471 ], [ -77.980200350290517, 24.9405111772978 ], [ -77.97946484950495, 24.936856159312534 ], [ -77.977246303057058, 24.93602925497478 ], [ -77.977007048760697, 24.936079370328418 ], [ -77.976852642861687, 24.936089061493416 ], [ -77.976702509758127, 24.93605477233951 ], [ -77.976571345671559, 24.935979859348588 ], [ -77.976471989940293, 24.935871655583803 ], [ -77.976414168183553, 24.935740752856212 ], [ -77.976406147381525, 24.935634501105074 ], [ -77.976403799516063, 24.935632148603478 ], [ -77.976341331262546, 24.935511798552163 ], [ -77.976320120784422, 24.935380062319901 ], [ -77.976342016215924, 24.935248419290502 ], [ -77.976405109480766, 24.93512834069104 ], [ -77.97650390260479, 24.935030290003429 ], [ -77.979837931633512, 24.932573885950568 ], [ -77.979972044977274, 24.932503454651499 ], [ -77.980123463231422, 24.932474259620985 ], [ -77.980277364660566, 24.932489158629771 ], [ -77.980418684478778, 24.932546693259617 ], [ -77.98053358943541, 24.932641231663268 ], [ -77.980610831864951, 24.932763519832399 ], [ -77.980642850674684, 24.932901587417931 ], [ -77.980626511502123, 24.933041919444882 ], [ -77.980563413581052, 24.933170779236146 ], [ -77.980459733257874, 24.933275553054361 ], [ -77.978269411537994, 24.934889336903446 ], [ -77.985551500438277, 24.933363735953716 ], [ -77.981229445689095, 24.929004322939825 ], [ -77.981205865291528, 24.9289713558634 ], [ -77.981177475706843, 24.928941707716724 ], [ -77.981163850990782, 24.928912616818529 ], [ -77.981144899688289, 24.92888612149649 ], [ -77.981133645571916, 24.928848123468022 ], [ -77.981116692901367, 24.928811926796421 ], [ -77.981113593589299, 24.928780420541123 ], [ -77.98110454878551, 24.928749881900274 ], [ -77.981106722548731, 24.928710572447606 ], [ -77.981102866206555, 24.928671370448622 ], [ -77.981110595647692, 24.928640532896658 ], [ -77.981112342679566, 24.928608940280629 ], [ -77.981127731494865, 24.928572167292053 ], [ -77.981137348922644, 24.92853379733512 ], [ -77.981155150470414, 24.928506647079615 ], [ -77.981167518290604, 24.928477092992761 ], [ -77.981194615754589, 24.928446456057252 ], [ -77.981216765491496, 24.928412674053121 ], [ -77.987592824703469, 24.92145226142156 ], [ -77.98770997659021, 24.921359104816467 ], [ -77.987853047363345, 24.921303703140143 ], [ -77.988007908292175, 24.921291527474938 ], [ -77.988159266374893, 24.921323780191063 ], [ -77.988292174526151, 24.921397276218013 ], [ -77.988393507605196, 24.92150475757628 ], [ -77.9884532585437, 24.92163561011089 ], [ -77.990375535218803, 24.928899199942318 ], [ -77.990376422225424, 24.928898906358302 ], [ -77.990531093333914, 24.928894105055381 ], [ -77.990679821452716, 24.928933121723052 ], [ -77.990808048180085, 24.929012137163348 ], [ -77.990903221864613, 24.929123416854981 ], [ -77.990956026220076, 24.929256068039017 ], [ -77.990961292277134, 24.929397105950315 ], [ -77.990918504400497, 24.929532724835006 ], [ -77.990831850822943, 24.929649649346441 ], [ -77.990709813726255, 24.929736434038229 ], [ -77.990610396105623, 24.929786580768493 ], [ -77.991242544439871, 24.932174963060724 ], [ -77.991371232329286, 24.932166873687368 ], [ -77.991521363002661, 24.932201148108959 ], [ -77.991652530407279, 24.932276047477441 ], [ -77.991751895047372, 24.932384240178358 ], [ -77.991809730407809, 24.932515135629 ], [ -77.991820375057586, 24.932655920930628 ], [ -77.991782786869564, 24.932792815061415 ], [ -77.99170064509012, 24.932912417849522 ], [ -77.991581990245209, 24.933003021683135 ], [ -77.99147237747033, 24.93304328919476 ], [ -77.991749445800181, 24.934090053338217 ], [ -77.991760722812614, 24.934241438085007 ], [ -77.991716306384234, 24.934387666848789 ], [ -77.991621222747426, 24.93451219153896 ], [ -77.99148623200935, 24.934600920172247 ], [ -77.989147772027138, 24.935645617638773 ], [ -77.990173811490891, 24.936680378809424 ], [ -77.993210782434659, 24.934187058957374 ], [ -77.993352240104869, 24.934105628071869 ], [ -77.993515375489196, 24.934071845728141 ], [ -77.993681531189594, 24.934089575510914 ], [ -77.997583849347961, 24.935137405220033 ], [ -77.997714292461467, 24.935192252987736 ], [ -77.997821953893322, 24.93527896020229 ], [ -77.99789775541953, 24.935390215572827 ], [ -77.997935305241143, 24.935516637854338 ], [ -77.998299024110295, 24.938295617934813 ], [ -77.998580430892986, 24.938243510678312 ], [ -77.998335348457601, 24.93623843209123 ], [ -77.998342479225045, 24.93609746321885 ], [ -77.998397036336868, 24.935965403033205 ], [ -77.998493679233079, 24.93585517846952 ], [ -77.99862294778292, 24.935777579009873 ], [ -77.998772188327791, 24.935740200558808 ], [ -77.998926792291257, 24.935746701930444 ], [ -77.999071626119417, 24.935796446717053 ], [ -77.999192512597816, 24.935884565588172 ], [ -77.99927761856641, 24.936002432920926 ], [ -77.999318613212324, 24.936138511110805 ], [ -77.999553891003217, 24.938063253606757 ], [ -78.001304816169082, 24.937739015137073 ], [ -78.001410542418427, 24.937734838576556 ], [ -77.997627997632563, 24.928984533490265 ], [ -77.997594471586496, 24.928846765684398 ], [ -77.997609274217382, 24.928706293765572 ], [ -77.997670956381967, 24.928576868104905 ], [ -77.99777348008034, 24.928471157745889 ], [ -77.997906809543096, 24.928399510286159 ], [ -77.998057893615993, 24.928368939008845 ], [ -77.998211943273944, 24.928382436400057 ], [ -77.998353879221668, 24.928438681240145 ], [ -77.998469807899582, 24.928532167934179 ], [ -77.99854838143645, 24.92865374542205 ], [ -78.003943101868828, 24.941132888601839 ], [ -78.006698265936507, 24.940942198379553 ], [ -78.005089795865416, 24.937986434842646 ], [ -78.005043541813478, 24.937851766204709 ], [ -78.005045192522601, 24.937710656239261 ], [ -78.00509458625109, 24.937576917786199 ], [ -78.005186887860688, 24.937463642065854 ], [ -78.005313062165413, 24.937381917231082 ], [ -78.005460758382029, 24.937339743006007 ], [ -78.005615519096636, 24.937341247644838 ], [ -78.005762195410966, 24.937386283849719 ], [ -78.005886429761446, 24.9374704431944 ], [ -78.005976061285551, 24.937585487639719 ], [ -78.007762650827047, 24.94086851652369 ], [ -78.009648696722834, 24.940737936545986 ], [ -78.008295330039317, 24.937715989257786 ], [ -78.008259957658979, 24.937578606642205 ], [ -78.008261282153683, 24.937564189857106 ], [ -78.006055951721422, 24.9357691395698 ], [ -78.005958041477172, 24.935659850003059 ], [ -78.005901962379781, 24.935528321855276 ], [ -78.005893203736207, 24.935387430077 ], [ -78.00593262274792, 24.935250966159909 ], [ -78.006016360661505, 24.935132288120858 ], [ -78.006136220546097, 24.93504301293455 ], [ -78.006280469696719, 24.934991879405512 ], [ -78.00643498810733, 24.934983892780803 ], [ -78.00658465059486, 24.935019834824107 ], [ -78.006714807298152, 24.935096187299973 ], [ -78.008421749114206, 24.936485572864491 ], [ -78.008565873471738, 24.935477428612792 ], [ -78.008613483703371, 24.935334864325984 ], [ -78.008709445135779, 24.935214227982566 ], [ -78.0088432818157, 24.935128689086511 ], [ -78.009000383161791, 24.935087585627908 ], [ -78.009163598947282, 24.935095404712957 ], [ -78.00931511148616, 24.935151292742486 ], [ -78.011095782852777, 24.93614758145765 ], [ -78.011141659609606, 24.936182070898223 ], [ -78.008994600285021, 24.933143061885623 ], [ -78.008932173390534, 24.933013933951898 ], [ -78.008916563297234, 24.932873535965928 ], [ -78.008949297877919, 24.932735611089633 ], [ -78.009027172692782, 24.932613660354964 ], [ -78.009142564720008, 24.932519621094929 ], [ -78.009284178585531, 24.932462698455126 ], [ -78.009438152232306, 24.932448464357559 ], [ -78.009589413798949, 24.932478312106049 ], [ -78.00972315690035, 24.932549320010903 ], [ -78.009826289922273, 24.932654537378244 ], [ -78.011706844766223, 24.935316316311365 ], [ -78.011707862310246, 24.935314361952791 ], [ -78.012905804495134, 24.93371880848045 ], [ -78.012919541194321, 24.933532867684491 ], [ -78.010245645738863, 24.932351803753942 ], [ -78.010116112053211, 24.932268946230117 ], [ -78.010021898157135, 24.932153032574949 ], [ -78.009972643993351, 24.932015923162457 ], [ -78.008529382893883, 24.92364324640592 ], [ -78.004324237058597, 24.92426066885773 ], [ -78.004169484266058, 24.924261028128619 ], [ -78.004022183928896, 24.92421776184764 ], [ -78.003896754968522, 24.924135105249327 ], [ -78.003805475310585, 24.924021149400321 ], [ -78.003757280011314, 24.923887049165415 ], [ -78.00375688664441, 24.923745931263991 ], [ -78.003804333557127, 24.923611609314655 ], [ -78.003894976177023, 24.923497231656192 ], [ -78.004019941707767, 24.923413994307818 ], [ -78.004166997685232, 24.923370045048852 ], [ -78.008862280837107, 24.922680653262358 ], [ -78.009017398197344, 24.922680341561893 ], [ -78.009164993457276, 24.922723857186075 ], [ -78.009290550500893, 24.922806920326117 ], [ -78.009381720635929, 24.922921361638736 ], [ -78.009429537084628, 24.923055925691184 ], [ -78.01074679912378, 24.930697445762618 ], [ -78.011823916128989, 24.92042159258872 ], [ -78.008430020392098, 24.9186256849733 ], [ -78.003938243521176, 24.918487267967912 ], [ -78.003901356117623, 24.918478581684752 ], [ -78.003707280078658, 24.918994041427133 ], [ -78.003637998212866, 24.919114715699404 ], [ -78.003532371344193, 24.91921102589421 ], [ -78.003400032643469, 24.9192741884439 ], [ -78.003253051488343, 24.9192984428546 ], [ -78.000011047543367, 24.919379552650458 ], [ -77.99985871354869, 24.919361604222683 ], [ -77.999719763289804, 24.919301903611473 ], [ -77.999607597330566, 24.919206208426885 ], [ -77.999533033054817, 24.919083747642997 ], [ -77.999503261421211, 24.918946331523834 ], [ -77.99936912237294, 24.915823618034359 ], [ -77.999385129580261, 24.915690823478425 ], [ -77.999443088287848, 24.915568129741711 ], [ -77.99953791387199, 24.915466300294479 ], [ -77.999661287570092, 24.915394268231211 ], [ -77.999802386269693, 24.915358352620309 ], [ -77.999948831968339, 24.915361704174391 ], [ -78.000328926234573, 24.915422536887679 ], [ -78.000442931288021, 24.915454067243324 ], [ -78.000545361935366, 24.915509543271739 ], [ -78.001422608487559, 24.916126130326287 ], [ -78.003271257837199, 24.917205304843687 ], [ -78.003422267793752, 24.916671912917121 ], [ -77.99949638425278, 24.913535694402441 ], [ -77.997279258048152, 24.913725695019529 ], [ -77.99697990317631, 24.916838962804412 ], [ -77.996926688373478, 24.917006462878589 ], [ -77.996807776909492, 24.917143034985106 ], [ -77.992006529304064, 24.920869688261782 ], [ -77.991893944312679, 24.922853511230787 ], [ -77.991894788656225, 24.922870162484251 ], [ -77.991892583708747, 24.922877485976759 ], [ -77.991861049322637, 24.923433142780731 ], [ -77.99185668494583, 24.923473964245737 ], [ -77.9917878148092, 24.923911169664702 ], [ -77.991791180695671, 24.923990242601892 ], [ -77.991758996000684, 24.924094118306094 ], [ -77.991700178944114, 24.924467501852792 ], [ -77.991657922413708, 24.924595816145999 ], [ -77.991576197578169, 24.924707151450324 ], [ -77.991462214673021, 24.924791684984296 ], [ -77.991326030030763, 24.924841958583411 ], [ -77.990677629535867, 24.924983892550575 ], [ -77.990513505635207, 24.924994163329025 ], [ -77.990354765231743, 24.92495478291902 ], [ -77.990218967615561, 24.924870107424251 ], [ -77.990121134167211, 24.924749503322719 ], [ -77.99007208672603, 24.924606311359625 ], [ -77.990077250544971, 24.924456370819698 ], [ -77.990121968474241, 24.924253609029265 ], [ -77.990190346488959, 24.924099300000861 ], [ -77.990315436616612, 24.923978107975671 ], [ -77.990650814805491, 24.923755070232055 ], [ -77.990700790028114, 24.923725855332258 ], [ -77.990827799377982, 24.923661066489704 ], [ -77.990874279216015, 24.923366015356894 ], [ -77.990899322228103, 24.922924803290442 ], [ -77.989506265176914, 24.920692834860141 ], [ -77.989452810007222, 24.920565557057181 ], [ -77.989443485197711, 24.920429529187111 ], [ -77.989479142016307, 24.920297171387759 ], [ -77.990418208804087, 24.918228918635961 ], [ -77.990536745069306, 24.918072552712022 ], [ -77.99648412502485, 24.912982889059272 ], [ -77.996605904280955, 24.912907466588436 ], [ -77.996611420980329, 24.912903914212229 ], [ -77.996611788152819, 24.912903822480807 ], [ -77.996612136280788, 24.912903606871783 ], [ -77.996760746313342, 24.912864280559631 ], [ -77.996769094157273, 24.912864522319264 ], [ -77.99677630711237, 24.912862720283769 ], [ -77.999615835099547, 24.912619385669828 ], [ -77.999749356634695, 24.912624480341275 ], [ -77.999876508345054, 24.912661989771504 ], [ -77.99998800689653, 24.912729175393469 ], [ -78.004184113094126, 24.916081254974742 ], [ -78.004866048541899, 24.916143508936933 ], [ -78.002948151462533, 24.912809228146291 ], [ -78.003352516051763, 24.913954217602807 ], [ -78.003376329143421, 24.914093655146726 ], [ -78.003351728861148, 24.914232978989386 ], [ -78.003281123096599, 24.914358551134093 ], [ -78.003171423128421, 24.914458079655297 ], [ -78.003033367138357, 24.914521821936695 ], [ -78.002880469089206, 24.914543538373565 ], [ -78.002727695853125, 24.914521103173993 ], [ -78.002590002094237, 24.914456712459884 ], [ -78.002480866342609, 24.914356669292104 ], [ -78.002410971581398, 24.914230766664129 ], [ -78.000398718549135, 24.908532540364 ], [ -78.000374910533694, 24.908393101839696 ], [ -78.000382724293715, 24.908348854019408 ], [ -77.999422202805704, 24.906678740507342 ], [ -77.989142331265612, 24.912471501132337 ], [ -77.988987052309639, 24.912528611965257 ], [ -77.988819777145636, 24.91253520242384 ], [ -77.988659675944433, 24.912490517205871 ], [ -77.98429625936447, 24.910483658016837 ], [ -77.98187229953875, 24.910461088362936 ], [ -77.981871864143102, 24.914466514828362 ], [ -77.98184767608673, 24.914605800361134 ], [ -77.981777505956131, 24.914731466545092 ], [ -77.981668212713075, 24.914831229574112 ], [ -77.978937258484208, 24.916642827758068 ], [ -77.976928900312359, 24.920931026286119 ], [ -77.976899217693585, 24.920974523098419 ], [ -77.97687618571652, 24.921016457703924 ], [ -77.973706116249957, 24.925053541830788 ], [ -77.973725332631801, 24.925109007455941 ], [ -77.973724070714312, 24.925250124291548 ], [ -77.97367504923082, 24.925383978781543 ], [ -77.973583066609493, 24.925497468284792 ], [ -77.973457126688302, 24.925579483594255 ], [ -77.973309557380375, 24.925621996407962 ], [ -77.973260014630682, 24.925621627885189 ], [ -77.966541095837911, 24.934177074300937 ], [ -77.96653521257798, 24.934185522183608 ], [ -77.966533369630838, 24.934186911576582 ], [ -77.966030639088828, 24.934827001702605 ], [ -77.965921950221315, 24.934927470064974 ], [ -77.965784531666841, 24.934992396271511 ], [ -77.965631834989182, 24.935015424826158 ], [ -77.965478807347864, 24.934994301496761 ], [ -77.965340428310697, 24.934931093989057 ], [ -77.965230243489728, 24.934831989542555 ], [ -77.965159038561126, 24.934706689261958 ], [ -77.965133783481164, 24.934567458478352 ], [ -77.965156950248243, 24.934427926107684 ], [ -77.965226270981688, 24.934301750543487 ], [ -77.965402196757523, 24.934077760003671 ], [ -77.962947765709984, 24.933108507596675 ], [ -77.962804388822619, 24.93302225229607 ], [ -77.962702004630401, 24.932896490208567 ], [ -77.962652958068176, 24.932746385198378 ], [ -77.961240478222578, 24.92160074006005 ], [ -77.961246982058938, 24.92145974183957 ], [ -77.961300947134873, 24.921327477316609 ], [ -77.961397090842439, 24.92121689342877 ], [ -77.961526001913995, 24.92113881483154 ], [ -77.961675061682286, 24.921100884330777 ], [ -77.961829679265762, 24.921106814778831 ], [ -77.961974719777146, 24.921156025653534 ], [ -77.962095985770929, 24.921243699887043 ], [ -77.962181606938444, 24.92136125538044 ], [ -77.962223202036625, 24.921497185054221 ], [ -77.963602983037759, 24.932384167847246 ], [ -77.965991535885237, 24.933327400416928 ], [ -77.970746223546357, 24.927273241878723 ], [ -77.969901647917013, 24.927328856895329 ], [ -77.969766337005993, 24.927320774107606 ], [ -77.969638517415163, 24.927279489872781 ], [ -77.969527794820195, 24.927208106705358 ], [ -77.969442490020796, 24.927111989060755 ], [ -77.964707379077637, 24.919955053127289 ], [ -77.963929047296915, 24.919844956078087 ], [ -77.963902110978395, 24.919837061287257 ], [ -77.963777719535216, 24.919825290433149 ], [ -77.96363626306794, 24.919768061160159 ], [ -77.963521122970164, 24.919673770274901 ], [ -77.963443569989821, 24.919551647695354 ], [ -77.963411195488078, 24.919413647699468 ], [ -77.963407165264414, 24.919345246283555 ], [ -77.962292786239658, 24.919533527932881 ], [ -77.962128798565288, 24.919536015060071 ], [ -77.961972934314019, 24.919489464506679 ], [ -77.961842330847148, 24.919398994519394 ], [ -77.956468249872245, 24.914186437632647 ], [ -77.956456573703491, 24.914170788882203 ], [ -77.956441282304823, 24.914157990478643 ], [ -77.956413256577363, 24.914112733928128 ], [ -77.956381194700569, 24.914069763560526 ], [ -77.956375392548395, 24.914051590208086 ], [ -77.956365186279797, 24.914035108873442 ], [ -77.956353867293231, 24.913984169297436 ], [ -77.956337935028827, 24.913934266565601 ], [ -77.956338574833367, 24.913915347553726 ], [ -77.956334452743761, 24.913896796604131 ], [ -77.95634094843075, 24.913845160341516 ], [ -77.956342705290155, 24.913793210088297 ], [ -77.956349724401676, 24.913775397344821 ], [ -77.956352089969783, 24.913756592680429 ], [ -77.956375764428401, 24.913709314251292 ], [ -77.956395038379213, 24.913660401729569 ], [ -77.956407749698812, 24.913645438887031 ], [ -77.956416371345583, 24.913628221237364 ], [ -77.956454907108224, 24.913589928570516 ], [ -77.956489811436384, 24.913548841662919 ], [ -77.956506970681417, 24.913538193380898 ], [ -77.956521004446472, 24.913524248122005 ], [ -77.956570629347567, 24.913498689546532 ], [ -77.956617747359502, 24.913469450099718 ], [ -77.956637674866485, 24.913464158696886 ], [ -77.956655747026034, 24.913454850877702 ], [ -77.956711603454238, 24.913444528219891 ], [ -77.956766322932211, 24.913429998367814 ], [ -77.95678706807287, 24.913430581796288 ], [ -77.956807409609766, 24.91342682252181 ], [ -77.961365447727047, 24.913248486793186 ], [ -77.959706703733218, 24.911150773926629 ], [ -77.953761170254978, 24.911556950571967 ], [ -77.953575904307925, 24.914257399725258 ], [ -77.954877501692835, 24.919970055583086 ], [ -77.954884895225973, 24.920111018027775 ], [ -77.954844159916021, 24.920247164775308 ], [ -77.954759283074424, 24.92036516880988 ], [ -77.954638572960107, 24.92045347901497 ], [ -77.954493845538806, 24.920503450899783 ], [ -77.954339267846876, 24.920510192810038 ], [ -77.954189971181904, 24.920473044779257 ], [ -77.95406056988611, 24.920395643139109 ], [ -77.953963730737655, 24.920285564560842 ], [ -77.953908933008421, 24.920153584375289 ], [ -77.952853522063549, 24.915521326700386 ], [ -77.949511308487004, 24.915149819509676 ], [ -77.949378839556971, 24.915117639558176 ], [ -77.94926114464198, 24.915053535436108 ], [ -77.949167265105686, 24.914962431649123 ], [ -77.949104412760576, 24.914851326823364 ], [ -77.948053369578219, 24.91211774916453 ], [ -77.945855053232009, 24.910724551445991 ], [ -77.945510788512337, 24.910826349605212 ], [ -77.945606502457764, 24.911080333186142 ], [ -77.945633285919655, 24.911219327947361 ], [ -77.945611661778372, 24.911359067947487 ], [ -77.9455437465991, 24.911485874455973 ], [ -77.945436188282912, 24.911587334721112 ], [ -77.945299515365932, 24.911653517034658 ], [ -77.945147106420947, 24.911677942943584 ], [ -77.944993880440691, 24.911658221431832 ], [ -77.944854836408169, 24.911596282984082 ], [ -77.944743585031901, 24.911498190614306 ], [ -77.944671016392988, 24.911373546357691 ], [ -77.944569676641819, 24.911104629096723 ], [ -77.941156819622677, 24.912113725792938 ], [ -77.941008343533611, 24.912135696275314 ], [ -77.940859492308817, 24.912115949403844 ], [ -77.940724033118485, 24.912056311542891 ], [ -77.937390854384176, 24.909965825414307 ], [ -77.937362990023303, 24.910027548372771 ], [ -77.937262743638072, 24.910135056489416 ], [ -77.937130975959988, 24.910209050969595 ], [ -77.936980585384504, 24.910242288648007 ], [ -77.936826293322355, 24.910231515943671 ], [ -77.936683203114399, 24.910177787360446 ], [ -77.936565321550688, 24.910086362266156 ], [ -77.936484187741129, 24.9099661900539 ], [ -77.936447743571222, 24.909829034087121 ], [ -77.936405061754343, 24.909347531606443 ], [ -77.934703708533306, 24.90828040325075 ], [ -77.932773500742996, 24.909028260082987 ], [ -77.932722726590256, 24.909039820014339 ], [ -77.933073715143493, 24.914036198068867 ], [ -77.933059329149771, 24.914176712904961 ], [ -77.932998034227808, 24.914306296278923 ], [ -77.932895830231459, 24.914412263625472 ], [ -77.93276272156406, 24.914484242053717 ], [ -77.932611737891406, 24.91451518574425 ], [ -77.932457658683546, 24.914502065669524 ], [ -77.932315566445354, 24.914446166112821 ], [ -77.932199370275256, 24.914352958954009 ], [ -77.932120444299898, 24.914231568027901 ], [ -77.932086514281664, 24.914093875993483 ], [ -77.931176415734669, 24.901135520347427 ], [ -77.931190803998362, 24.900995005423212 ], [ -77.931252095836342, 24.900865423022694 ], [ -77.931354291456429, 24.900759457532303 ], [ -77.931487387203362, 24.900687481523899 ], [ -77.931638354800072, 24.900656540441378 ], [ -77.931792416622457, 24.900669662969975 ], [ -77.931934492184268, 24.900725564584111 ], [ -77.932050674259685, 24.900818773286062 ], [ -77.93212959017356, 24.900940165227304 ], [ -77.932163515024499, 24.901077857788156 ], [ -77.932335866136015, 24.903531960585148 ], [ -77.933989276539108, 24.902623554166244 ], [ -77.934132677999784, 24.902570539302932 ], [ -77.934287023023089, 24.902560535315004 ], [ -77.934437203397067, 24.9025945214381 ], [ -77.934568518567573, 24.902669170894129 ], [ -77.934668114574706, 24.902777176531639 ], [ -77.934726242255906, 24.902907966078818 ], [ -77.934737211566272, 24.903048737003445 ], [ -77.934699948598976, 24.903185709690973 ], [ -77.934618100765647, 24.903305476280003 ], [ -77.934499679818572, 24.903396313124897 ], [ -77.932407086318278, 24.904546011819647 ], [ -77.932423254741849, 24.90477621782993 ], [ -77.932441626130199, 24.904761767372872 ], [ -77.932584298062537, 24.904707133969314 ], [ -77.932738497968003, 24.904695384344599 ], [ -77.93288913183882, 24.904727668607787 ], [ -77.933021454730891, 24.904800826568962 ], [ -77.934758692847623, 24.906140886623785 ], [ -77.934768592522957, 24.906151355161146 ], [ -77.93478105316963, 24.906159226521581 ], [ -77.934818927723299, 24.906204582717212 ], [ -77.934859754752296, 24.906247755694679 ], [ -77.934865622925088, 24.906260501905003 ], [ -77.934874806713609, 24.906271499814565 ], [ -77.934895459833058, 24.906325310359648 ], [ -77.934919660642919, 24.90637787663939 ], [ -77.934920922887514, 24.906391652841666 ], [ -77.934925930839896, 24.906404700755001 ], [ -77.93492734081218, 24.906461698323703 ], [ -77.934932546414132, 24.906518512374124 ], [ -77.934929079158806, 24.906531970061558 ], [ -77.934929421049048, 24.906545790762458 ], [ -77.934911449793574, 24.906600396046411 ], [ -77.934897150563472, 24.90665589651941 ], [ -77.934889293192001, 24.906667718359284 ], [ -77.934884935537795, 24.906680958981628 ], [ -77.934849342146563, 24.906727826827776 ], [ -77.934816937734766, 24.906776580939194 ], [ -77.934805459370978, 24.906785609722924 ], [ -77.934796828717111, 24.906796974178413 ], [ -77.934747097285367, 24.906831516813021 ], [ -77.934699759631286, 24.906868752145272 ], [ -77.93468578385594, 24.906874104065921 ], [ -77.93467372502603, 24.906882479915549 ], [ -77.934614723617599, 24.906901316036418 ], [ -77.934557086469738, 24.906923387705362 ], [ -77.934541981337105, 24.906924538873483 ], [ -77.934527674738263, 24.906929106223362 ], [ -77.934465178863817, 24.906930391996418 ], [ -77.934402884192679, 24.906935139449267 ], [ -77.93438812831279, 24.906931977177344 ], [ -77.934372974387315, 24.90693228893829 ], [ -77.932558962392122, 24.906708362718124 ], [ -77.932656255520698, 24.908093512162459 ], [ -77.934566850292867, 24.90735325220318 ], [ -77.934727125982604, 24.907318352333498 ], [ -77.934891077331983, 24.907333409627473 ], [ -77.934963095336443, 24.907363938289937 ], [ -77.934963537708171, 24.9073636478346 ], [ -77.935110910625312, 24.907320620868656 ], [ -77.935265649276687, 24.907321233631929 ], [ -77.935412606923265, 24.907365426129008 ], [ -77.936264848615451, 24.907765714804768 ], [ -77.935699125092214, 24.901382823976345 ], [ -77.933929943571997, 24.901297957303374 ], [ -77.93379132021451, 24.901272863901671 ], [ -77.933666138451002, 24.901213035666974 ], [ -77.933564620772032, 24.901123358244291 ], [ -77.933495057182995, 24.901011154795302 ], [ -77.932765225812275, 24.899301322553622 ], [ -77.932235445550333, 24.898746290054795 ], [ -77.932147518963632, 24.898817239753662 ], [ -77.932017019880149, 24.898893065129396 ], [ -77.931867217815679, 24.898928398203623 ], [ -77.931712776570635, 24.898919780281712 ], [ -77.931568814089005, 24.898868054940227 ], [ -77.931449422547999, 24.898778285453851 ], [ -77.931366288869256, 24.898659259152389 ], [ -77.931327550704012, 24.898522627230054 ], [ -77.931336999883172, 24.898381764218474 ], [ -77.931393711296408, 24.898250458776385 ], [ -77.931492133508996, 24.898141563957431 ], [ -77.931585969460997, 24.898065846271432 ], [ -77.92888231171419, 24.895233155810548 ], [ -77.92883420151415, 24.895352693634248 ], [ -77.928738606940485, 24.895463663067176 ], [ -77.928621288228939, 24.895535411821793 ], [ -77.928633533719633, 24.895561154086643 ], [ -77.929564502244972, 24.896474354589113 ], [ -77.929650841969135, 24.896591466074447 ], [ -77.929693278969722, 24.896727180896736 ], [ -77.929687659091528, 24.896868214393336 ], [ -77.929634532288532, 24.897000761232256 ], [ -77.929539098851336, 24.897111846770599 ], [ -77.929410700416483, 24.89719059711636 ], [ -77.929261905562313, 24.897229303565734 ], [ -77.929107279491845, 24.897224177212006 ], [ -77.928961958241032, 24.897175719849127 ], [ -77.92884016699746, 24.897088674856185 ], [ -77.92870852596765, 24.896959546920648 ], [ -77.928604688284011, 24.896983961930971 ], [ -77.928450256342032, 24.896975236561342 ], [ -77.92830633906506, 24.896923410959925 ], [ -77.928187024205158, 24.896833558215679 ], [ -77.92810399117765, 24.896714473808274 ], [ -77.927793693142476, 24.896062167266905 ], [ -77.924739173468438, 24.893065776645699 ], [ -77.924652840898361, 24.892948661615193 ], [ -77.924610411011315, 24.892812944673604 ], [ -77.924616037014317, 24.892671910790522 ], [ -77.924669168036218, 24.892539365354295 ], [ -77.924764603111399, 24.892428282800932 ], [ -77.92489300033661, 24.89234953659917 ], [ -77.92504179134184, 24.892310834904677 ], [ -77.925196411552719, 24.892315966059197 ], [ -77.925341725824509, 24.892364427780329 ], [ -77.92546350991482, 24.892451476331967 ], [ -77.926966389290286, 24.893925776167464 ], [ -77.926982244863851, 24.893889147059674 ], [ -77.927080756194641, 24.893780321259943 ], [ -77.927211314964765, 24.89370458813146 ], [ -77.927361141224807, 24.893669360890037 ], [ -77.927515569067253, 24.893678087776518 ], [ -77.927659482177773, 24.89372991453687 ], [ -77.927778793464626, 24.893819768044665 ], [ -77.927861823953251, 24.893938852879561 ], [ -77.928230665066948, 24.894714243417859 ], [ -77.928343417376624, 24.894685060766484 ], [ -77.928498032728754, 24.894690375284224 ], [ -77.928643280224151, 24.89473900917741 ], [ -77.928684416819735, 24.894768490980937 ], [ -77.928160148480075, 24.887338162999836 ], [ -77.92715259647872, 24.883541999307226 ], [ -77.92329367598947, 24.884472156297431 ], [ -77.92312451651695, 24.884485427693249 ], [ -77.922960406756857, 24.884445722962642 ], [ -77.922820693264143, 24.884357722796604 ], [ -77.92272184649994, 24.884231801328315 ], [ -77.922093346771447, 24.883041581772861 ], [ -77.920931694860087, 24.883265471700145 ], [ -77.920777185406394, 24.883272685589976 ], [ -77.92062779444737, 24.883235992384638 ], [ -77.920498145555513, 24.883158983893914 ], [ -77.920400929746037, 24.883049198304541 ], [ -77.920345663161925, 24.882917382267383 ], [ -77.920337755574408, 24.88277643891271 ], [ -77.920377980877717, 24.882640164779684 ], [ -77.920462401394303, 24.882521899306724 ], [ -77.920582753377474, 24.882433219083225 ], [ -77.920727255954347, 24.882382804674876 ], [ -77.921651430120647, 24.88220468625812 ], [ -77.92016577030455, 24.879391060990788 ], [ -77.919415969496839, 24.879580735101161 ], [ -77.919262256336978, 24.879596708386547 ], [ -77.919110655500589, 24.879568569018417 ], [ -77.918976006885401, 24.879499071488663 ], [ -77.918871490930883, 24.879395018753147 ], [ -77.918807338388845, 24.879266596290606 ], [ -77.918789828865371, 24.87912637504947 ], [ -77.918820676164259, 24.878988080891833 ], [ -77.91889686058542, 24.878865250998899 ], [ -77.919010924572021, 24.878769908762969 ], [ -77.91915170274433, 24.878711386874386 ], [ -77.91972969889423, 24.878565174338348 ], [ -77.918806445679564, 24.876816556333861 ], [ -77.917855306450235, 24.877464134829577 ], [ -77.917718376061245, 24.87752981405324 ], [ -77.917565898931784, 24.877553678149706 ], [ -77.917412800729309, 24.877533391097689 ], [ -77.917274067928474, 24.877470938741581 ], [ -77.917163280771064, 24.877372434400723 ], [ -77.917091283895743, 24.877247520436907 ], [ -77.917065124781828, 24.8771084243659 ], [ -77.917087363921993, 24.876968761917517 ], [ -77.91715582423835, 24.876842204218899 ], [ -77.917263804249544, 24.876741139571799 ], [ -77.918369252730827, 24.875988502524933 ], [ -77.917498763098152, 24.874339733316926 ], [ -77.916317958528381, 24.87466006184388 ], [ -77.91616460197487, 24.87467863083549 ], [ -77.916012461241138, 24.874653058915438 ], [ -77.915876429075396, 24.874585849253268 ], [ -77.915769821353322, 24.874483580850576 ], [ -77.91570307358937, 24.874356264522788 ], [ -77.915682719432894, 24.874216362943432 ], [ -77.915710751142228, 24.874077570686257 ], [ -77.915784424625201, 24.873953473692588 ], [ -77.915896528108476, 24.873856219389204 ], [ -77.916036088114211, 24.873795327633317 ], [ -77.917620557947501, 24.873365491699996 ], [ -77.917792973327693, 24.873347694049027 ], [ -77.917961512544281, 24.873385332324688 ], [ -77.918105420738286, 24.873473771521851 ], [ -77.918206976179945, 24.873602120720985 ], [ -77.920698046292216, 24.878320211120336 ], [ -77.920767240499089, 24.878302706763826 ], [ -77.920920951708467, 24.878286732087332 ], [ -77.921072551154168, 24.878314869722995 ], [ -77.921207199377747, 24.878384365377467 ], [ -77.921311716167807, 24.878488416385313 ], [ -77.921375870694732, 24.878616837580903 ], [ -77.921393382974756, 24.878757058265894 ], [ -77.921362538633559, 24.878895352692702 ], [ -77.921286356778552, 24.879018183624801 ], [ -77.921172294525633, 24.879113527461314 ], [ -77.92112689284788, 24.879132401786162 ], [ -77.92267793497841, 24.882069802695845 ], [ -77.922735161621702, 24.882083857989524 ], [ -77.922864810491816, 24.882160864518568 ], [ -77.922962027524079, 24.882270648375545 ], [ -77.923017296420255, 24.882402463224079 ], [ -77.923025206968603, 24.88254340616653 ], [ -77.922990361765073, 24.882661462984093 ], [ -77.923435699751693, 24.883504812516016 ], [ -77.926840725950683, 24.882684060932846 ], [ -77.916867808589913, 24.856759519899757 ], [ -77.916866340804887, 24.856752176948255 ], [ -77.916862695888724, 24.856745494678361 ], [ -77.916542596911142, 24.855816851299647 ], [ -77.915022271682716, 24.85520605315201 ], [ -77.914587268004723, 24.855421078685318 ], [ -77.914432029708564, 24.855469559163964 ], [ -77.914267950794383, 24.855469012609273 ], [ -77.914113104571356, 24.855419499207223 ], [ -77.913984547347937, 24.855326472846766 ], [ -77.913896439629454, 24.855200180362861 ], [ -77.912320622967485, 24.851800697315397 ], [ -77.909516558505743, 24.847002410076698 ], [ -77.909511928405564, 24.847009790047522 ], [ -77.909397368023505, 24.847104608042862 ], [ -77.909256303364884, 24.847162482813935 ], [ -77.909102542914184, 24.847177749112344 ], [ -77.908951137966241, 24.847148912537158 ], [ -77.9088169092431, 24.847078795828455 ], [ -77.90871299608078, 24.846974262552084 ], [ -77.908649570223986, 24.846845545225435 ], [ -77.908632840144605, 24.846705243659805 ], [ -77.908669629287758, 24.846016482379245 ], [ -77.908701232358723, 24.845878330299545 ], [ -77.908778074763546, 24.8457558509905 ], [ -77.908892634538873, 24.845661033526369 ], [ -77.909033697775342, 24.845603159229242 ], [ -77.909073367999298, 24.845599220551119 ], [ -77.909079234179757, 24.845591557019155 ], [ -77.909202647381193, 24.845506491814096 ], [ -77.909348828037267, 24.8454603889118 ], [ -77.909503467081166, 24.84545776113049 ], [ -77.909651427522817, 24.845498865678707 ], [ -77.909778226102944, 24.845579678984443 ], [ -77.909871450962157, 24.845692290539901 ], [ -77.912717372081417, 24.850562232817484 ], [ -77.912786262104788, 24.850414666053076 ], [ -77.912868390913118, 24.850295076176906 ], [ -77.912987001330293, 24.850204496475033 ], [ -77.913130482954543, 24.850151793447449 ], [ -77.913284790907582, 24.850142125974202 ], [ -77.913434820605914, 24.850176440350975 ], [ -77.913565886243816, 24.850251377668258 ], [ -77.913665158286463, 24.850359602596843 ], [ -77.913722919282378, 24.850490521398999 ], [ -77.913733515080068, 24.850631318889722 ], [ -77.913695908334944, 24.850768212853573 ], [ -77.913304355310316, 24.851606953381786 ], [ -77.914595001337673, 24.85439120912331 ], [ -77.915839207735132, 24.853776179526076 ], [ -77.914515706120937, 24.849936214291834 ], [ -77.901225498462566, 24.827475126571766 ], [ -77.901172071625084, 24.827330377987543 ], [ -77.90044977596331, 24.823105642036818 ], [ -77.890182044617447, 24.829076566093967 ], [ -77.89018124119454, 24.829077807712476 ], [ -77.890065304486001, 24.829171208393159 ], [ -77.889923415486606, 24.829227342346961 ], [ -77.889769463376496, 24.829240714729899 ], [ -77.889618518212586, 24.829210016532599 ], [ -77.8893775960087, 24.829123128886767 ], [ -77.892418546924645, 24.833588933769768 ], [ -77.892483853393074, 24.83374059985999 ], [ -77.894210325536648, 24.841810652742144 ], [ -77.894215850385336, 24.841951693864676 ], [ -77.894173341746708, 24.842087389839914 ], [ -77.894086960520369, 24.84220445777505 ], [ -77.89396516222881, 24.842291438184613 ], [ -77.893819869360101, 24.842339816747863 ], [ -77.893665304303028, 24.842344857777359 ], [ -77.893516597118449, 24.842306067802692 ], [ -77.893388304443761, 24.842227243882185 ], [ -77.893292984533659, 24.842116101910673 ], [ -77.893239967942364, 24.841983521310933 ], [ -77.891530946078362, 24.833994757371766 ], [ -77.888494903217051, 24.829536113736655 ], [ -77.888434834232925, 24.829406063268376 ], [ -77.888421741930458, 24.829265437931742 ], [ -77.888456907722812, 24.829128003140507 ], [ -77.888536889189055, 24.829007211951037 ], [ -77.888653857098916, 24.828914888190479 ], [ -77.888724665549134, 24.828887649423041 ], [ -77.88811516062492, 24.828667827877936 ], [ -77.888158944943783, 24.828779673954191 ], [ -77.888163423868491, 24.828920746784696 ], [ -77.8881199148409, 24.829056178120354 ], [ -77.888062624981941, 24.829132706024303 ], [ -77.888807268265793, 24.830478862166064 ], [ -77.888904403289501, 24.830505516798517 ], [ -77.889031492962658, 24.830585932192584 ], [ -77.889125132757812, 24.830698251780039 ], [ -77.889176156532457, 24.830831481009152 ], [ -77.889179569610519, 24.830972578530027 ], [ -77.889142542783475, 24.83108495496209 ], [ -77.890071687893169, 24.832764578953796 ], [ -77.890109273460737, 24.832791698601064 ], [ -77.890195008948453, 24.832909157850569 ], [ -77.89023677418173, 24.833045045698242 ], [ -77.890236032669705, 24.833061660541379 ], [ -77.890389019865793, 24.83333820973283 ], [ -77.890434520794145, 24.833463004833451 ], [ -77.890455993692356, 24.833573897169405 ], [ -77.890474741294682, 24.833594669038909 ], [ -77.890531362021065, 24.833726001984004 ], [ -77.890540739188751, 24.833866874024313 ], [ -77.890524085113782, 24.833925539495507 ], [ -77.891086963814658, 24.836832295688858 ], [ -77.891086961677516, 24.836836085688827 ], [ -77.891089792586186, 24.836972938114041 ], [ -77.890344176951629, 24.841864595909911 ], [ -77.890299167696369, 24.841999619167694 ], [ -77.890210636084944, 24.842115342175823 ], [ -77.890087248139281, 24.842200437098374 ], [ -77.889941081959165, 24.842246574179352 ], [ -77.88978644542297, 24.84224923714477 ], [ -77.889638475589209, 24.842208165308104 ], [ -77.889636265451117, 24.842206757404682 ], [ -77.889434504576187, 24.843414035360315 ], [ -77.889387556505952, 24.843548508000097 ], [ -77.889297366857704, 24.843663160798116 ], [ -77.889172763957347, 24.843746770677086 ], [ -77.889025944837002, 24.843791153247587 ], [ -77.888871281292225, 24.843791963980607 ], [ -77.888723913025856, 24.843749123500874 ], [ -77.888598265608209, 24.843666825362405 ], [ -77.888506638349227, 24.843553125542982 ], [ -77.888458000331369, 24.843419153845037 ], [ -77.888457112465531, 24.843278024405574 ], [ -77.889184934993352, 24.838923080145353 ], [ -77.888596672055627, 24.837294119861209 ], [ -77.888099931480511, 24.837381857664308 ], [ -77.887945363216531, 24.837386670599262 ], [ -77.88779673029218, 24.837347661024399 ], [ -77.887668582075463, 24.837268647494241 ], [ -77.887573462680038, 24.83715736446408 ], [ -77.887520683031838, 24.837024705164467 ], [ -77.887515409459695, 24.836883655268334 ], [ -77.887558158021463, 24.836748021741339 ], [ -77.887644744048231, 24.83663108131255 ], [ -77.887766691823145, 24.836544280865485 ], [ -77.887912064271504, 24.836496116960483 ], [ -77.888284728460775, 24.836430294822566 ], [ -77.88714228276983, 24.833266541770758 ], [ -77.887060925522036, 24.833259705373969 ], [ -77.88691884326812, 24.833203969468524 ], [ -77.88680258859155, 24.833110894143392 ], [ -77.886800162162899, 24.833107170614639 ], [ -77.886789936327588, 24.833107376468128 ], [ -77.886641834398617, 24.833066734956617 ], [ -77.886514743338552, 24.83298631763979 ], [ -77.886421103775746, 24.832873996386294 ], [ -77.886370081776064, 24.832740766055089 ], [ -77.886366671614795, 24.832599668214545 ], [ -77.886411206945567, 24.832464514521753 ], [ -77.886499328199861, 24.832348534734653 ], [ -77.886731011581958, 24.83212756785986 ], [ -77.8860332602206, 24.83019515743603 ], [ -77.885384787844146, 24.830518599208052 ], [ -77.885239151710906, 24.830566078027367 ], [ -77.885084566434045, 24.830570162606794 ], [ -77.884936164053897, 24.830530453100913 ], [ -77.884808471370405, 24.830450836579079 ], [ -77.884713987904959, 24.830339106521997 ], [ -77.884661962332643, 24.830206199918262 ], [ -77.884657487166962, 24.830065126648165 ], [ -77.884701000311921, 24.829929695964626 ], [ -77.884788242256761, 24.829813164740301 ], [ -77.884910673080199, 24.82972693980253 ], [ -77.885718685540283, 24.829323924107751 ], [ -77.885332895525679, 24.828255435177663 ], [ -77.883717388730602, 24.826646865004086 ], [ -77.882953481575029, 24.82696605981905 ], [ -77.882804532915841, 24.827004014614968 ], [ -77.882650022611799, 24.82699810593293 ], [ -77.882505075366268, 24.826948912147635 ], [ -77.882383879754983, 24.826861248725052 ], [ -77.882298299299961, 24.826743696837461 ], [ -77.882256711165752, 24.826607763353483 ], [ -77.882263186162078, 24.826466754438485 ], [ -77.882317090312881, 24.826334473035821 ], [ -77.88241314697494, 24.826223867735333 ], [ -77.882541953401727, 24.82614576528875 ], [ -77.883015448504537, 24.825947918935992 ], [ -77.881144122432076, 24.82408451643559 ], [ -77.872280008234739, 24.819813753537268 ], [ -77.872115677636586, 24.819685881348093 ], [ -77.861335049064493, 24.806593992606381 ], [ -77.861262635600013, 24.806469291622552 ], [ -77.861235983723489, 24.806330268865025 ], [ -77.86125770216357, 24.806190532887268 ], [ -77.861325664812583, 24.806063762014258 ], [ -77.861433218904153, 24.80596236541513 ], [ -77.861569836273858, 24.805896268425208 ], [ -77.861722143937186, 24.805871941011912 ], [ -77.861875233101586, 24.805891764474602 ], [ -77.862014118488403, 24.805953798360751 ], [ -77.862125205137104, 24.806051970408539 ], [ -77.872839374947972, 24.819063076119715 ], [ -77.88168135758076, 24.823323166901829 ], [ -77.881815004907196, 24.823417306409215 ], [ -77.883975766974288, 24.825568904492247 ], [ -77.883988209312179, 24.825565733838882 ], [ -77.884011414441773, 24.825566621070692 ], [ -77.884034269457416, 24.825562850313862 ], [ -77.884088268417599, 24.825569559502448 ], [ -77.884142717741099, 24.825571641291507 ], [ -77.884164486721573, 24.825579029334563 ], [ -77.884187499919122, 24.825581888628108 ], [ -77.886237771525899, 24.826145112826012 ], [ -77.886358987478204, 24.826195517361004 ], [ -77.886461053218923, 24.82627363228006 ], [ -77.886536556010498, 24.826373784346334 ], [ -77.887057977706021, 24.827316460003022 ], [ -77.889718878201421, 24.828276139997598 ], [ -77.900184306516749, 24.822190253097411 ], [ -77.89901262759038, 24.819993229615267 ], [ -77.886750707652965, 24.811089428018814 ], [ -77.886656269642941, 24.81099864581844 ], [ -77.886592803529297, 24.810887669699 ], [ -77.886565197119964, 24.810765046567266 ], [ -77.886575576433515, 24.8106402203105 ], [ -77.888648750863808, 24.80197271384494 ], [ -77.884959728453794, 24.79833830799776 ], [ -77.869002282758188, 24.806689214870644 ], [ -77.868860183181241, 24.806738917252233 ], [ -77.86870825308516, 24.806746801222058 ], [ -77.868560897631014, 24.806712119252794 ], [ -77.86843208823349, 24.806638159681725 ], [ -77.866568672876937, 24.805158103147608 ], [ -77.866469345350581, 24.805049941346311 ], [ -77.866411496989514, 24.804919056511007 ], [ -77.866400790291877, 24.804778260620605 ], [ -77.866438273150166, 24.804641335781632 ], [ -77.866520276334924, 24.804521685130577 ], [ -77.866638772720293, 24.804431020849375 ], [ -77.866782163066674, 24.804378217717435 ], [ -77.866936411430402, 24.804368444413917 ], [ -77.867086419060584, 24.804402657594039 ], [ -77.867217502311334, 24.804477508254159 ], [ -77.86881571183882, 24.805746919548756 ], [ -77.884232070402007, 24.79767919824771 ], [ -77.878402264041313, 24.79295187596755 ], [ -77.878399092317565, 24.792953845798667 ], [ -77.878250648743929, 24.792993289105446 ], [ -77.878096118488884, 24.792988926907245 ], [ -77.87795062820841, 24.7929411861966 ], [ -77.877828419635961, 24.792854740200941 ], [ -77.877741455452451, 24.792738050921557 ], [ -77.877698248274839, 24.792602540789151 ], [ -77.877703027398397, 24.792461474529581 ], [ -77.877725902357099, 24.792403381658843 ], [ -77.865762618124194, 24.782700386961821 ], [ -77.856181562791974, 24.797101686285867 ], [ -77.856081615615821, 24.797209368002736 ], [ -77.855950107343418, 24.797283585900079 ], [ -77.855799910977211, 24.797317074943418 ], [ -77.855645728916414, 24.797306556946719 ], [ -77.855502653733197, 24.797253061481349 ], [ -77.855384690746263, 24.797161825095735 ], [ -77.855303387035732, 24.797041778710451 ], [ -77.855266701118836, 24.796904673371667 ], [ -77.855278223936295, 24.796763929950338 ], [ -77.855336827396656, 24.796633325396613 ], [ -77.86495154379881, 24.782181582410505 ], [ -77.848151592312149, 24.773260313419623 ], [ -77.840232351981015, 24.780894915113173 ], [ -77.840109798338162, 24.780980945499511 ], [ -77.839964123380824, 24.781028190253668 ], [ -77.83980958690104, 24.781032024674477 ], [ -77.839661316162193, 24.780992073404249 ], [ -77.839533825077552, 24.780912247178268 ], [ -77.83943959343371, 24.780800360004587 ], [ -77.839387845255004, 24.780667364251237 ], [ -77.839383645901492, 24.780526278524661 ], [ -77.839427406279142, 24.780390913296635 ], [ -77.839514842676977, 24.780274519032243 ], [ -77.847274075325089, 24.772794234804088 ], [ -77.840638837871808, 24.769269745109156 ], [ -77.840608652693916, 24.769247274426299 ], [ -77.840574994183299, 24.76922938398792 ], [ -77.840311687156188, 24.769033268416983 ], [ -77.840169466095546, 24.769117610290785 ], [ -77.832812396024522, 24.77364151352285 ], [ -77.83267224625132, 24.773701067194395 ], [ -77.832518799410209, 24.77371816450318 ], [ -77.832367076095892, 24.773691131814896 ], [ -77.832231928194787, 24.773622615291028 ], [ -77.832126585021129, 24.773519321858871 ], [ -77.832061358302838, 24.773391362670736 ], [ -77.832042632796131, 24.773251263326561 ], [ -77.832072241335368, 24.773112737756854 ], [ -77.83214728547911, 24.772989345795963 ], [ -77.832260419287664, 24.772893165856175 ], [ -77.839509433366274, 24.768435729018691 ], [ -77.827931758657726, 24.75981119117634 ], [ -77.826591602334915, 24.760856745274893 ], [ -77.826459824661939, 24.760930512698199 ], [ -77.826309531971319, 24.760963486312416 ], [ -77.826155436091639, 24.760952438385921 ], [ -77.82601262115864, 24.760898450363968 ], [ -77.825895067014841, 24.760806807010308 ], [ -77.825814280718632, 24.760686479082473 ], [ -77.82577817013798, 24.760549245185679 ], [ -77.825790269895236, 24.760408538774428 ], [ -77.825849395424456, 24.760278133175373 ], [ -77.825949758985075, 24.76017079335714 ], [ -77.827252872795427, 24.759154144317701 ], [ -77.821687961298593, 24.752305798194111 ], [ -77.821384360519559, 24.752057309149315 ], [ -77.819831966872158, 24.753792410517462 ], [ -77.822599476190035, 24.758291274709322 ], [ -77.822653163989671, 24.758423626973673 ], [ -77.82265943410998, 24.758564650659856 ], [ -77.822617672632717, 24.75870054140653 ], [ -77.822531967320273, 24.758817997255797 ], [ -77.822410707531247, 24.758905520750968 ], [ -77.822265763040036, 24.758954544410617 ], [ -77.822111322132415, 24.758960269400792 ], [ -77.82196250271565, 24.75892213529994 ], [ -77.821833872413137, 24.758843874964356 ], [ -77.821738022529601, 24.758733149120751 ], [ -77.818805576602031, 24.753966101359275 ], [ -77.818783805474453, 24.753912423606856 ], [ -77.818758559470297, 24.75386003023716 ], [ -77.818757067432045, 24.753846499611839 ], [ -77.818751895162876, 24.753833747110924 ], [ -77.818749354354267, 24.753776553100888 ], [ -77.818743074090094, 24.753719600059526 ], [ -77.818746233883459, 24.75370631064315 ], [ -77.818745630252792, 24.753692722768875 ], [ -77.818762568413433, 24.75363761106097 ], [ -77.818775868582264, 24.753581673316223 ], [ -77.818783370889591, 24.753569925969135 ], [ -77.818787394969661, 24.753556832797923 ], [ -77.818822154014313, 24.753509198103593 ], [ -77.818853732644357, 24.753459751221254 ], [ -77.820647854219928, 24.751454491508845 ], [ -77.819180110706213, 24.750253138858913 ], [ -77.81570848056117, 24.751718246709817 ], [ -77.815559762494431, 24.751756683754682 ], [ -77.815405316183117, 24.751751273022009 ], [ -77.815260260065855, 24.751702544143551 ], [ -77.815138793375411, 24.751615267076584 ], [ -77.815052806169476, 24.751497985173835 ], [ -77.815010715429196, 24.751362178875663 ], [ -77.815016641163893, 24.751221141897584 ], [ -77.815070003163783, 24.751088679930138 ], [ -77.815165577855169, 24.750977759238491 ], [ -77.815294009669657, 24.750899237447445 ], [ -77.818378918983342, 24.74959734406173 ], [ -77.814290794182369, 24.746250929582999 ], [ -77.811175869828887, 24.747600769944597 ], [ -77.811027591386761, 24.747640584577244 ], [ -77.810873097458995, 24.747636606664155 ], [ -77.810727511145146, 24.747589225581287 ], [ -77.810605083579048, 24.747503079352999 ], [ -77.810517798878593, 24.747386600637039 ], [ -77.810474201035788, 24.747251191252484 ], [ -77.810478557587615, 24.747110106063221 ], [ -77.810530441926986, 24.746977155480472 ], [ -77.810624775122164, 24.746865353599741 ], [ -77.810752323128042, 24.746785644303383 ], [ -77.813493117905352, 24.745597939908048 ], [ -77.810105995021345, 24.74282505917326 ], [ -77.80979836973664, 24.743101803123608 ], [ -77.809672656709949, 24.743183903014003 ], [ -77.809525315941016, 24.743226507400891 ], [ -77.8093707702904, 24.743225445818094 ], [ -77.809224147920119, 24.743180822167897 ], [ -77.809099801383979, 24.743097004555288 ], [ -77.809009902648029, 24.74298219769554 ], [ -77.808963251590598, 24.742847639755201 ], [ -77.808964414622764, 24.742706502254983 ], [ -77.809013277741826, 24.742572600729584 ], [ -77.809105057750671, 24.74245904236205 ], [ -77.8093689479294, 24.742221644629371 ], [ -77.809111255098344, 24.742010671196702 ], [ -77.809103814561354, 24.742002317207756 ], [ -77.809094225305529, 24.74199605060987 ], [ -77.804427472238601, 24.737794956880286 ], [ -77.799500023498751, 24.739031418087709 ], [ -77.799339877881366, 24.739046743848899 ], [ -77.799182843910913, 24.73901421596306 ], [ -77.799045608671449, 24.738937290964557 ], [ -77.798942755300828, 24.738824143206415 ], [ -77.798648481770869, 24.738364564182923 ], [ -77.798544359052471, 24.738306335655814 ], [ -77.798443950178736, 24.73819904108775 ], [ -77.798439581493028, 24.738189418022394 ], [ -77.797335090685891, 24.738219289119279 ], [ -77.797181799602654, 24.738201344986393 ], [ -77.797042082800246, 24.738141017367944 ], [ -77.796929616843968, 24.738044211597256 ], [ -77.796855410709597, 24.737920403767266 ], [ -77.796826728138868, 24.737781713117844 ], [ -77.796846376641199, 24.737641715694689 ], [ -77.796912432728817, 24.737514115416563 ], [ -77.797018430260408, 24.737411402642032 ], [ -77.797153993434705, 24.737343631543517 ], [ -77.797305852455366, 24.737317435961451 ], [ -77.798114622932999, 24.737295563971628 ], [ -77.798141001609068, 24.737203616379535 ], [ -77.798224451637338, 24.737084819434241 ], [ -77.798344012958196, 24.736995388108177 ], [ -77.798487982092553, 24.736944076490765 ], [ -77.798642266443508, 24.736935907262676 ], [ -77.798791763737768, 24.736971680062986 ], [ -77.798921840282588, 24.73704789322327 ], [ -77.799019763358572, 24.737157086526736 ], [ -77.799091511546848, 24.737269139654938 ], [ -77.799260778504163, 24.73726456042629 ], [ -77.796407174915132, 24.732639543110636 ], [ -77.794037707291324, 24.73410080924037 ], [ -77.794600542411189, 24.735025376326817 ], [ -77.796133341871126, 24.735537585936964 ], [ -77.79625891425944, 24.735599609993855 ], [ -77.796359820467629, 24.735691841494951 ], [ -77.79642763173473, 24.735806576328255 ], [ -77.79645668367543, 24.735934230658014 ], [ -77.796444549449546, 24.736064141452619 ], [ -77.796095955744789, 24.737423137057437 ], [ -77.796037600635685, 24.737553831272734 ], [ -77.795937880019153, 24.737661659827335 ], [ -77.795806555202773, 24.737736067643816 ], [ -77.795656481230608, 24.737769771097312 ], [ -77.795502348520543, 24.737759471014034 ], [ -77.795359244813454, 24.737706175634479 ], [ -77.795241178219868, 24.737615101921175 ], [ -77.795159705961737, 24.737495164870943 ], [ -77.79512280305525, 24.737358104827251 ], [ -77.795134081682178, 24.737217338227083 ], [ -77.795382849545788, 24.736247546819289 ], [ -77.794561097210874, 24.735972944986599 ], [ -77.794339005582003, 24.73656128127525 ], [ -77.794266398984405, 24.73668587754322 ], [ -77.794155187972365, 24.73678388438848 ], [ -77.794016258645016, 24.73684570814719 ], [ -77.79386321045763, 24.736865297015029 ], [ -77.793711024979643, 24.736840733464469 ], [ -77.793574599338456, 24.73677442195817 ], [ -77.793467287926418, 24.736672853579176 ], [ -77.793399595141764, 24.736545970619076 ], [ -77.793378147141212, 24.736406193330097 ], [ -77.793405043257934, 24.736267204119834 ], [ -77.793719345604117, 24.735434610786868 ], [ -77.793288803216228, 24.734727354174961 ], [ -77.792630928713365, 24.735376332720179 ], [ -77.792509490144568, 24.735463627902579 ], [ -77.792364458521675, 24.735512377442742 ], [ -77.792210030659987, 24.735517809339793 ], [ -77.792061323189657, 24.735479391862604 ], [ -77.791932892775435, 24.735400885606701 ], [ -77.791837311154836, 24.73528997537133 ], [ -77.791799388864334, 24.73519586889185 ], [ -77.791672770982075, 24.735124414737889 ], [ -77.791572839539924, 24.735016750072816 ], [ -77.791514227739114, 24.73488615162012 ], [ -77.79150267281004, 24.734745403325604 ], [ -77.791539305676935, 24.734608282637161 ], [ -77.791620540313517, 24.734488211862914 ], [ -77.791738424823905, 24.734396944309935 ], [ -77.792694681651085, 24.733866180432269 ], [ -77.791104889631981, 24.73190943790571 ], [ -77.791033348801918, 24.731784329343252 ], [ -77.791007639084427, 24.731645152818402 ], [ -77.791030276982738, 24.731505531935294 ], [ -77.791099046387274, 24.731379133751531 ], [ -77.791207215562892, 24.731278330954151 ], [ -77.79134419613878, 24.731212990753075 ], [ -77.791496579578876, 24.731189509036689 ], [ -77.791649449673429, 24.731210184322819 ], [ -77.7917878425868, 24.731272992777637 ], [ -77.791898211563094, 24.73137178631983 ], [ -77.793500246303822, 24.733343583475577 ], [ -77.794473248394269, 24.732743537175409 ], [ -77.794467029444476, 24.732732878677496 ], [ -77.794440053267039, 24.732593902585716 ], [ -77.794441968474658, 24.732581372280691 ], [ -77.794357383462099, 24.732539977024278 ], [ -77.794234263201275, 24.732454673071334 ], [ -77.794146031163095, 24.732338795677514 ], [ -77.79410132407385, 24.732203687800396 ], [ -77.794104518052819, 24.732062574790895 ], [ -77.794155300293909, 24.73192926978448 ], [ -77.794248699745268, 24.731816821571023 ], [ -77.794375573761073, 24.731736237300943 ], [ -77.794523503069044, 24.731695405053173 ], [ -77.794678007439899, 24.73169832172205 ], [ -77.794823963066506, 24.731744701792802 ], [ -77.795531447861734, 24.73209093691381 ], [ -77.795920628518459, 24.731850922589281 ], [ -77.795098141528044, 24.73051776253552 ], [ -77.791095837796746, 24.727354015686842 ], [ -77.790906431631669, 24.727468596554051 ], [ -77.790874883986362, 24.727493420083849 ], [ -77.790849037679664, 24.727503316821629 ], [ -77.789392181671815, 24.728384623487184 ], [ -77.789491908095414, 24.728495576434181 ], [ -77.789502703626965, 24.728512393455322 ], [ -77.789517385717005, 24.728526542965309 ], [ -77.789541592022161, 24.728572972819826 ], [ -77.789570069922988, 24.728617334929794 ], [ -77.789574647340885, 24.728636375802981 ], [ -77.789583823605867, 24.728653976665022 ], [ -77.789591136428953, 24.7287049660791 ], [ -77.789603211361253, 24.728755194566105 ], [ -77.789601122578645, 24.72877459544539 ], [ -77.789603894767339, 24.728793924772123 ], [ -77.78959359822656, 24.728844482561421 ], [ -77.789588088159391, 24.728895660723452 ], [ -77.789579537618948, 24.728913522517388 ], [ -77.789575634348779, 24.728932688222311 ], [ -77.789548736284488, 24.728977865437098 ], [ -77.789526180525129, 24.729024983595462 ], [ -77.789512005195135, 24.729039557862929 ], [ -77.789501808525245, 24.729056683869764 ], [ -77.789460941867219, 24.729092058233416 ], [ -77.789423548291595, 24.729130504116 ], [ -77.789405135744573, 24.729140364217585 ], [ -77.789389643784872, 24.729153774104919 ], [ -77.789046281995226, 24.729369009607897 ], [ -77.789024699704242, 24.729399902182134 ], [ -77.788905385691564, 24.729489602060887 ], [ -77.78878488956336, 24.72953286184034 ], [ -77.788325317364325, 24.729820939786784 ], [ -77.789252371143363, 24.730866243869908 ], [ -77.789329658886913, 24.730988467713019 ], [ -77.789361810780576, 24.731126522799411 ], [ -77.789345679436011, 24.731266895376631 ], [ -77.789282843745184, 24.731395844797657 ], [ -77.789179454387224, 24.731500748551539 ], [ -77.7890456318014, 24.731571337859279 ], [ -77.788894475540033, 24.731600702879643 ], [ -77.788740781968144, 24.731585969118537 ], [ -77.788599595839827, 24.731528578820313 ], [ -77.788484737553105, 24.731434149790381 ], [ -77.786503733485304, 24.729200415009984 ], [ -77.786418626702158, 24.7292506008617 ], [ -77.786277284758668, 24.729307665589765 ], [ -77.786123553479001, 24.729322045010971 ], [ -77.785972481302295, 24.729292331539604 ], [ -77.785838856374781, 24.729221433753725 ], [ -77.785735758926108, 24.729116291677013 ], [ -77.785673280850659, 24.7289871974201 ], [ -77.785657537843463, 24.728846787689704 ], [ -77.785690070789371, 24.728708806796316 ], [ -77.785695342504383, 24.728700518289642 ], [ -77.785553329007087, 24.72878024598733 ], [ -77.785410637907816, 24.728834436489556 ], [ -77.785256596034813, 24.728845701418916 ], [ -77.785106282232206, 24.72881293806082 ], [ -77.784974410408864, 24.72873935354059 ], [ -77.784873889182606, 24.728632150880205 ], [ -77.784814558262227, 24.728501823894756 ], [ -77.78480222527179, 24.728361129957332 ], [ -77.784838097298078, 24.728223841195604 ], [ -77.784918662790616, 24.728103396370564 ], [ -77.785036035352732, 24.728011585404449 ], [ -77.785312040375629, 24.727856633963295 ], [ -77.784344378186503, 24.726765444915493 ], [ -77.784267098102092, 24.726643217778197 ], [ -77.784234953403853, 24.726505160927665 ], [ -77.784251090501854, 24.726364788371594 ], [ -77.784313929628141, 24.726235840752619 ], [ -77.784417319535137, 24.726130940318981 ], [ -77.784551139667002, 24.726060355387325 ], [ -77.784591731512947, 24.726052470695915 ], [ -77.784576810468408, 24.725991508014111 ], [ -77.784591349210459, 24.725850989868416 ], [ -77.784652717271456, 24.725721452674492 ], [ -77.784754907399815, 24.725615576393491 ], [ -77.784887916479136, 24.725543724865251 ], [ -77.785038724716287, 24.725512931349577 ], [ -77.785062847551416, 24.725515013456228 ], [ -77.785063190462708, 24.725510442171743 ], [ -77.785120877405106, 24.725379501457827 ], [ -77.785220041309543, 24.725271251413854 ], [ -77.785350975279655, 24.725196288241396 ], [ -77.785500862640887, 24.725161949788607 ], [ -77.785596398453293, 24.725167928203895 ], [ -77.785620098380221, 24.725118422647085 ], [ -77.785722731162934, 24.72501290469231 ], [ -77.785856039826086, 24.724941519031898 ], [ -77.786006975252263, 24.72491125332342 ], [ -77.786160762966233, 24.724925070143268 ], [ -77.786302349311626, 24.724981617005049 ], [ -77.786417874947901, 24.725075358750363 ], [ -77.787441597402974, 24.726214398491837 ], [ -77.788031428353662, 24.726003769742217 ], [ -77.78800787870351, 24.725966662700309 ], [ -77.787975488256109, 24.725828654178752 ], [ -77.787991375025612, 24.725688258174429 ], [ -77.788053983747886, 24.725559217625541 ], [ -77.788157185728593, 24.72545416387711 ], [ -77.788290878806876, 24.725383380253408 ], [ -77.78912958168786, 24.725087794213497 ], [ -77.78738488813994, 24.722231092884972 ], [ -77.785882915157941, 24.723843539771423 ], [ -77.785907839358629, 24.723926506812788 ], [ -77.785900678054716, 24.724067499275911 ], [ -77.785846166455315, 24.724199569785199 ], [ -77.785749640407957, 24.724309790322827 ], [ -77.785620548505577, 24.724387371668882 ], [ -77.785471527211158, 24.724424719550477 ], [ -77.785346478079646, 24.724419420317503 ], [ -77.784637664336842, 24.725180341783485 ], [ -77.78452034733175, 24.725272209224034 ], [ -77.784377691081602, 24.72532646771084 ], [ -77.784223659873788, 24.72533780598544 ], [ -77.784073331508324, 24.725305114153638 ], [ -77.783941421319639, 24.725231592339188 ], [ -77.78384084168114, 24.725124437425926 ], [ -77.783781438019574, 24.724994138555125 ], [ -77.783769025079593, 24.724853450347826 ], [ -77.783804817774012, 24.724716144370877 ], [ -77.783885312317921, 24.724595661070481 ], [ -77.784600549245084, 24.723827849786783 ], [ -77.784591357872387, 24.723818637489593 ], [ -77.784506420718188, 24.723700726576752 ], [ -77.784465532472652, 24.723564612949978 ], [ -77.784472695435142, 24.723423620407246 ], [ -77.784527208287628, 24.723291550288174 ], [ -77.784623734804683, 24.723181330500001 ], [ -77.784752826249189, 24.723103750057806 ], [ -77.784901846299249, 24.723066403005642 ], [ -77.785056207961105, 24.723072945085356 ], [ -77.785200801397124, 24.723122735905445 ], [ -77.785234462685537, 24.723147329733425 ], [ -77.785509996244755, 24.722851535442345 ], [ -77.784663510828139, 24.721443140275014 ], [ -77.784609413614717, 24.72130092936915 ], [ -77.784609558420499, 24.721150378617573 ], [ -77.784663928929731, 24.721008254729384 ], [ -77.784766469791961, 24.720890385865619 ], [ -77.785896634712927, 24.719963390280761 ], [ -77.785972565043508, 24.719918481367621 ], [ -77.785709900281759, 24.719488368330577 ], [ -77.785352287298068, 24.719630005410966 ], [ -77.78520419177751, 24.719665069374042 ], [ -77.785051453748679, 24.719657053937478 ], [ -77.781126950341672, 24.718882075921751 ], [ -77.780958370234245, 24.718817110701274 ], [ -77.780827251281821, 24.718700544579448 ], [ -77.775111381240961, 24.7112715459672 ], [ -77.771206198161025, 24.713206069619883 ], [ -77.771060517037157, 24.713253115537487 ], [ -77.7709060507716, 24.713256736450514 ], [ -77.77075791975426, 24.713216577901466 ], [ -77.770630624220544, 24.713136570915879 ], [ -77.770536624814198, 24.713024547195829 ], [ -77.770485122825846, 24.712891472475153 ], [ -77.770481159516621, 24.71275037308963 ], [ -77.770525122687246, 24.712615060847494 ], [ -77.770533230299208, 24.712604297143354 ], [ -77.76687672271018, 24.707444211953014 ], [ -77.766507243033985, 24.707626306746331 ], [ -77.766361457633849, 24.707673066857463 ], [ -77.766206989599056, 24.707676384652967 ], [ -77.766058959492696, 24.707635935346932 ], [ -77.765931857671973, 24.707555678426495 ], [ -77.765838125818007, 24.707443470059253 ], [ -77.76578693903086, 24.707310294053546 ], [ -77.765783307717086, 24.70716918665941 ], [ -77.765827587179388, 24.70703396046871 ], [ -77.765915442896471, 24.706917852335923 ], [ -77.766038274869302, 24.706832227673019 ], [ -77.768507433449486, 24.705615302290447 ], [ -77.764547551937795, 24.703657718478535 ], [ -77.764424844385289, 24.70357194861969 ], [ -77.764337155684544, 24.703455736477068 ], [ -77.764293069374858, 24.703320457775561 ], [ -77.764296900808588, 24.703179354586982 ], [ -77.764348274781312, 24.70304623908471 ], [ -77.764442162319369, 24.70293414150807 ], [ -77.764569373001052, 24.702854034684499 ], [ -77.764717454600159, 24.702813759957358 ], [ -77.764871911980833, 24.702817259647595 ], [ -77.765017625935485, 24.702864191170971 ], [ -77.769546637515219, 24.705103111826322 ], [ -77.771620250786484, 24.704081061383768 ], [ -77.771501197785042, 24.703920098878758 ], [ -77.77146695178439, 24.70393698382242 ], [ -77.771321179632039, 24.703983765740141 ], [ -77.771166717293852, 24.703987106782133 ], [ -77.771018684775342, 24.703946679886908 ], [ -77.770891572669839, 24.703866442347842 ], [ -77.770797823665205, 24.703754248435306 ], [ -77.770746614540428, 24.703621080542717 ], [ -77.770742957888771, 24.703479974125965 ], [ -77.770787211493158, 24.703344741681299 ], [ -77.770875043363461, 24.703228620675414 ], [ -77.77095072746593, 24.703175842626436 ], [ -77.770138743500254, 24.70207798857869 ], [ -77.767177722131976, 24.70206361171099 ], [ -77.767625690711924, 24.702576564942749 ], [ -77.767701967831016, 24.702699311168011 ], [ -77.767732991360504, 24.702837582783804 ], [ -77.767715724363228, 24.70297784484125 ], [ -77.767651856897302, 24.703106367510625 ], [ -77.767547640641013, 24.703210570053592 ], [ -77.767413276978644, 24.703280252330298 ], [ -77.767261918428929, 24.703308593286533 ], [ -77.767108381159261, 24.703292818671759 ], [ -77.766967694623247, 24.703234472617449 ], [ -77.766853630313477, 24.703139266485941 ], [ -77.765761599232022, 24.701888801537585 ], [ -77.765684086276508, 24.701763008600242 ], [ -77.765654034283713, 24.701621288945962 ], [ -77.765674520036242, 24.701478152857963 ], [ -77.765743445895083, 24.701348255596962 ], [ -77.765853754636581, 24.701244896895943 ], [ -77.765994152066085, 24.701178659261149 ], [ -77.766150263404199, 24.701156324491542 ], [ -77.769752121154056, 24.701173832274971 ], [ -77.769005517640238, 24.698707405101416 ], [ -77.765346018540072, 24.700539799499204 ], [ -77.765296458401224, 24.70057476601599 ], [ -77.765238110819269, 24.700593829262655 ], [ -77.763678792211309, 24.701374572064559 ], [ -77.764404798769206, 24.701962187605716 ], [ -77.764502992314078, 24.702071162281882 ], [ -77.764559518225767, 24.702202523503868 ], [ -77.764568843249791, 24.702343412777996 ], [ -77.764530054434346, 24.702480038902539 ], [ -77.764446948554919, 24.702599027938209 ], [ -77.764327660514539, 24.702688732351067 ], [ -77.764183867073086, 24.702740371176439 ], [ -77.764029643838867, 24.702748889588346 ], [ -77.763880087410115, 24.702713453723234 ], [ -77.763749837556077, 24.702637532312732 ], [ -77.76249854970979, 24.701624755190981 ], [ -77.762399100836262, 24.7015138145176 ], [ -77.76234278454379, 24.701379967733139 ], [ -77.762335290281996, 24.701236737261702 ], [ -77.762377375024712, 24.701098593510189 ], [ -77.762464786857564, 24.700979492933779 ], [ -77.762588694601661, 24.700891468043867 ], [ -77.76438476907677, 24.699992194875623 ], [ -77.762028787488433, 24.696057187967472 ], [ -77.761976765306542, 24.695924283339679 ], [ -77.761974640377176, 24.695857982310979 ], [ -77.757952624596143, 24.696247978193192 ], [ -77.757805469896041, 24.696242062169755 ], [ -77.7576667718252, 24.696196756217685 ], [ -77.757548871225566, 24.696116091485816 ], [ -77.757462258411252, 24.696007245213437 ], [ -77.756563610662582, 24.694425987819493 ], [ -77.756514745903644, 24.69429208629407 ], [ -77.756513563604273, 24.694150942916657 ], [ -77.756560179339999, 24.694016373799137 ], [ -77.756650029901351, 24.693901551475005 ], [ -77.756774320024618, 24.693817715491164 ], [ -77.756920883358333, 24.693773072226552 ], [ -77.757075373378385, 24.693771991621819 ], [ -77.757222667681333, 24.693814579439369 ], [ -77.757348348211025, 24.693896666916231 ], [ -77.757440112546291, 24.694010218820416 ], [ -77.758183489642917, 24.695318251069622 ], [ -77.762120336624193, 24.694936508305776 ], [ -77.762150286022759, 24.694937913857252 ], [ -77.762406288692219, 24.670642420334101 ], [ -77.762413712612897, 24.67060210692377 ], [ -77.762415217001873, 24.670561249835924 ], [ -77.763679935749806, 24.664574917837665 ], [ -77.760674955488881, 24.664728815022062 ], [ -77.760667974704802, 24.664783353288623 ], [ -77.760603501567502, 24.664911616417147 ], [ -77.760498810514605, 24.66501539550196 ], [ -77.760364149408218, 24.665084531854209 ], [ -77.76021269988415, 24.665112257858897 ], [ -77.760059287015324, 24.665095859461829 ], [ -77.759918928077639, 24.665036941855298 ], [ -77.759805362494902, 24.664941272349566 ], [ -77.759729706885182, 24.664818215811373 ], [ -77.759713421877819, 24.664778046315465 ], [ -77.751649255826337, 24.665190695175436 ], [ -77.750016296897272, 24.668024588827105 ], [ -77.749923834847834, 24.668137655533819 ], [ -77.749797662549042, 24.668219078919254 ], [ -77.749650130662758, 24.668260888624356 ], [ -77.749495680758301, 24.668258991972863 ], [ -77.749349431624921, 24.668213574610547 ], [ -77.749225699279677, 24.668129082337312 ], [ -77.749136595565147, 24.66801378590911 ], [ -77.749090842535495, 24.667878971414481 ], [ -77.749092918695737, 24.667737835486431 ], [ -77.749142620660336, 24.667604193504676 ], [ -77.750905805945024, 24.664544334098533 ], [ -77.75100875713548, 24.664422202257352 ], [ -77.751150696444043, 24.664338877609353 ], [ -77.75131504902572, 24.664304090270232 ], [ -77.759624147075186, 24.663878921956325 ], [ -77.759687311520196, 24.663816308101392 ], [ -77.759821971773462, 24.663747172433247 ], [ -77.759973419806073, 24.663719446955568 ], [ -77.760126830967721, 24.66373584559161 ], [ -77.760267188460375, 24.663794763131555 ], [ -77.76032452348214, 24.663843063330276 ], [ -77.763872937619368, 24.663661337482853 ], [ -77.764469018829601, 24.660839703854101 ], [ -77.759910080242634, 24.634905757771495 ], [ -77.759905722306371, 24.634794768851211 ], [ -77.760400569651949, 24.629640181361921 ], [ -77.760401007230698, 24.629638578897588 ], [ -77.760400894706038, 24.629636930474419 ], [ -77.76153847117024, 24.618696299424442 ], [ -77.761584562785998, 24.618544322584352 ], [ -77.765310669174212, 24.611422464651604 ], [ -77.765145965949742, 24.603838763028758 ], [ -77.764488613084524, 24.603827077998577 ], [ -77.764340482558595, 24.603803495958822 ], [ -77.764206997003384, 24.603740222263372 ], [ -77.764100550809488, 24.603643131997568 ], [ -77.764031027649736, 24.603521240175613 ], [ -77.764004882762976, 24.603385864661973 ], [ -77.763941764541954, 24.600741174212114 ], [ -77.759443336893668, 24.600848312640629 ], [ -77.759290280955966, 24.600829867571012 ], [ -77.759150950342615, 24.60076908177636 ], [ -77.759038983814293, 24.600671905439686 ], [ -77.758965341457909, 24.600547850927128 ], [ -77.758937231828185, 24.600409061624951 ], [ -77.758957406351584, 24.600269123234888 ], [ -77.759023890051012, 24.600141733896606 ], [ -77.759130174929311, 24.600039363320221 ], [ -77.759265857059006, 24.599972032181729 ], [ -77.759417655000178, 24.599946331255886 ], [ -77.763916914989338, 24.599839175820993 ], [ -77.763874169430125, 24.598470907791796 ], [ -77.76389395598396, 24.598330923598347 ], [ -77.76396008544306, 24.598203381171583 ], [ -77.764066084485151, 24.598100765207292 ], [ -77.764201577161643, 24.598033120401865 ], [ -77.764353300576843, 24.598007068233798 ], [ -77.764506403125282, 24.598025158832645 ], [ -77.764645898217083, 24.598085621369133 ], [ -77.764758131210783, 24.598182537394511 ], [ -77.764832115982841, 24.598306420162128 ], [ -77.764860610316759, 24.598445143229899 ], [ -77.76486777472978, 24.598674421308203 ], [ -77.765033706601784, 24.598668019228342 ], [ -77.764894727704714, 24.59226452913213 ], [ -77.75747447980838, 24.580646050090721 ], [ -77.757419469261762, 24.580518698407701 ], [ -77.754120668759725, 24.567266703327437 ], [ -77.754108733333609, 24.567149141174134 ], [ -77.754496564950969, 24.557976028582718 ], [ -77.752571111618053, 24.557391468744463 ], [ -77.752434052342522, 24.557326591419937 ], [ -77.752325621169916, 24.557226151959895 ], [ -77.752256432111835, 24.5570999821486 ], [ -77.752233257794458, 24.556960432430472 ], [ -77.752258366537632, 24.556821162938004 ], [ -77.752329300370832, 24.556695806329913 ], [ -77.752439115694429, 24.556596633335175 ], [ -77.752577063006513, 24.556533351627415 ], [ -77.752729639143908, 24.556512155596867 ], [ -77.75288190903504, 24.556535120024908 ], [ -77.754536251231514, 24.557037374265516 ], [ -77.754928167201399, 24.547768010555789 ], [ -77.753250240203741, 24.54767855598018 ], [ -77.753099487990937, 24.54764839981593 ], [ -77.752966302156764, 24.547577108713767 ], [ -77.752863719947612, 24.547471661197758 ], [ -77.752801782821635, 24.547342379276479 ], [ -77.752786553522057, 24.547201918025799 ], [ -77.752819522649617, 24.547064026798672 ], [ -77.752897462809216, 24.546942203332375 ], [ -77.753012744586002, 24.546848372502307 ], [ -77.753154083399664, 24.546791719052848 ], [ -77.75330764411656, 24.546777788557726 ], [ -77.754966296481101, 24.546866216714886 ], [ -77.755001089170875, 24.546043339077638 ], [ -77.752351694497506, 24.546423366854864 ], [ -77.75220636218252, 24.546424386091562 ], [ -77.752067014696564, 24.546386616730224 ], [ -77.75194575158001, 24.546313338274903 ], [ -77.75185310206929, 24.546210913481396 ], [ -77.751797110830935, 24.546088235867671 ], [ -77.751569088499721, 24.54526317183916 ], [ -77.747152129789768, 24.547323222144055 ], [ -77.747005380148593, 24.547366876901773 ], [ -77.746851064678751, 24.547366915381041 ], [ -77.746704289008747, 24.547323333801593 ], [ -77.746579420698069, 24.547240398262119 ], [ -77.746488682789177, 24.547126227133347 ], [ -77.746440957307087, 24.54699199635154 ], [ -77.74644091583778, 24.546850845412958 ], [ -77.746488562285393, 24.546716591168586 ], [ -77.746579232549422, 24.546602375329211 ], [ -77.746704051130479, 24.54651937807472 ], [ -77.751671706436269, 24.544202479120365 ], [ -77.751811134585694, 24.544159933892722 ], [ -77.751958077700237, 24.544156860474033 ], [ -77.752099486056053, 24.544193531796665 ], [ -77.752222801452689, 24.544266691142237 ], [ -77.752317072450978, 24.544369841359632 ], [ -77.752373926935221, 24.544493821852317 ], [ -77.752643227799254, 24.545468228993382 ], [ -77.755039941859977, 24.545124441905106 ], [ -77.755048951851165, 24.544911348860932 ], [ -77.744217488174428, 24.519900836680236 ], [ -77.736752481438756, 24.522318663055071 ], [ -77.736600775868922, 24.522344370268861 ], [ -77.736447812182718, 24.522325930156843 ], [ -77.736308563684986, 24.522265147770661 ], [ -77.736196661097921, 24.522167972959519 ], [ -77.736123058249234, 24.522043917940021 ], [ -77.736094959826616, 24.521905126147736 ], [ -77.736115116160093, 24.521765183527993 ], [ -77.736181554053815, 24.52163778863445 ], [ -77.736287769994846, 24.521535411721153 ], [ -77.73642336680399, 24.521468074084645 ], [ -77.743854030195607, 24.519061378874614 ], [ -77.743032593745824, 24.517164104278891 ], [ -77.74120878488165, 24.513335866407662 ], [ -77.729580019686836, 24.504011908574387 ], [ -77.723339868291518, 24.509387153516037 ], [ -77.720995265736704, 24.516240492854724 ], [ -77.72169652921923, 24.519512198866412 ], [ -77.721702170113474, 24.519653258308477 ], [ -77.721659890324702, 24.519789008591626 ], [ -77.721573828353797, 24.519906161506981 ], [ -77.721452408473951, 24.519993249251382 ], [ -77.721307516131645, 24.52004174699859 ], [ -77.721153334507704, 24.520046907395876 ], [ -77.72100495612716, 24.520008225289043 ], [ -77.720876905439127, 24.519929487177567 ], [ -77.720781717009288, 24.519818400555948 ], [ -77.72072870852169, 24.51968583942773 ], [ -77.72000339076024, 24.516301786878227 ], [ -77.719994917093914, 24.51619023092719 ], [ -77.720016692349773, 24.516080194914807 ], [ -77.722376778092553, 24.50918176140868 ], [ -77.720538159565422, 24.5075853401394 ], [ -77.720634496433831, 24.512085298976864 ], [ -77.720613351576887, 24.512225120928818 ], [ -77.720546017772563, 24.512352121103461 ], [ -77.720439086015404, 24.512453867792384 ], [ -77.720303023509985, 24.512520401251532 ], [ -77.720151149076187, 24.512545208656874 ], [ -77.719998329381923, 24.512525861649902 ], [ -77.719859523636686, 24.512464254056454 ], [ -77.719748319221353, 24.512366416503497 ], [ -77.719675601619684, 24.512241926081611 ], [ -77.719648488863356, 24.51210296884615 ], [ -77.719533136280717, 24.506712678087407 ], [ -77.719532187780402, 24.506711854494796 ], [ -77.719438276290674, 24.506599868412792 ], [ -77.719386782024401, 24.506466810037374 ], [ -77.719382745488133, 24.506325704103784 ], [ -77.719426561652341, 24.506190363061044 ], [ -77.719513941347728, 24.506074035006694 ], [ -77.719519389677046, 24.506070209817839 ], [ -77.719479838198836, 24.504221586293742 ], [ -77.719500983909555, 24.504081764376888 ], [ -77.719568315265647, 24.503954764838614 ], [ -77.71967524129748, 24.503853019232132 ], [ -77.719811295319289, 24.503786487057134 ], [ -77.719963159489225, 24.50376168088097 ], [ -77.720115968424395, 24.503781028868207 ], [ -77.720254764274472, 24.503842637109035 ], [ -77.720365960842003, 24.503940475006033 ], [ -77.720438673452975, 24.504064965573352 ], [ -77.720465784416646, 24.504203922872382 ], [ -77.720511028711456, 24.506317840802762 ], [ -77.72297785716907, 24.508459730693598 ], [ -77.728851040840581, 24.503400605176402 ], [ -77.725624006353698, 24.500492896707765 ], [ -77.725524388138908, 24.500364610865812 ], [ -77.725478984751078, 24.500212820521373 ], [ -77.725314719509313, 24.498581026684612 ], [ -77.721066068082251, 24.498422767705232 ], [ -77.720794029537316, 24.502864273442857 ], [ -77.720765582747106, 24.502992030679273 ], [ -77.720698397350645, 24.503107009664628 ], [ -77.720598084354179, 24.503199607724923 ], [ -77.720473021527894, 24.50326209134586 ], [ -77.720333653728588, 24.503289242066405 ], [ -77.718781779946667, 24.503381336849095 ], [ -77.718628172243797, 24.503368323918433 ], [ -77.718486477431014, 24.503312514388277 ], [ -77.71837056570088, 24.503219371325716 ], [ -77.718291783335758, 24.503098012290113 ], [ -77.718257842041325, 24.502960316817134 ], [ -77.718272064094492, 24.502819763541169 ], [ -77.718333057186754, 24.502690110796593 ], [ -77.718434850772198, 24.502584049855969 ], [ -77.718567480550874, 24.502511962635715 ], [ -77.718717963857074, 24.502480905467497 ], [ -77.719134542599136, 24.50245618574607 ], [ -77.719109444519461, 24.502350404297413 ], [ -77.718932340093261, 24.499495444275357 ], [ -77.718947798564443, 24.499355000391255 ], [ -77.718978521576702, 24.499291112843494 ], [ -77.718052243987401, 24.499738414228073 ], [ -77.717906232742521, 24.499783954933125 ], [ -77.717751988273633, 24.499785979953685 ], [ -77.717604609258274, 24.499744291051176 ], [ -77.717478522317379, 24.499662969054089 ], [ -77.717386069785135, 24.499549974387264 ], [ -77.71733630153004, 24.499416367826697 ], [ -77.717334089102167, 24.499275227766688 ], [ -77.717379648915056, 24.49914036999515 ], [ -77.717468521120779, 24.499024995302122 ], [ -77.717592006222731, 24.498940397305255 ], [ -77.718836036348023, 24.498339652470705 ], [ -77.718012903499286, 24.498308965191242 ], [ -77.717963460711047, 24.498299897507408 ], [ -77.717913230858059, 24.498295831054506 ], [ -77.717888261133311, 24.498286106058504 ], [ -77.717861652914138, 24.498281226155587 ], [ -77.717817692259473, 24.498258621462185 ], [ -77.717771294123807, 24.498240550664761 ], [ -77.717750830704119, 24.498224241018704 ], [ -77.717727172772015, 24.498212076015893 ], [ -77.717692997460887, 24.498178147034238 ], [ -77.717654972850298, 24.498147840802364 ], [ -77.717641018847502, 24.498126543019879 ], [ -77.717622627019225, 24.498108283722225 ], [ -77.717601582375281, 24.498066351681111 ], [ -77.717575653410066, 24.49802677662182 ], [ -77.717569574731954, 24.498002575491242 ], [ -77.717558249324568, 24.497980009258054 ], [ -77.71755239531926, 24.497934178780092 ], [ -77.717541100082613, 24.497889208796497 ], [ -77.717086043590839, 24.491848890349484 ], [ -77.717099639123759, 24.491708284973011 ], [ -77.717160049713783, 24.491578405869259 ], [ -77.717261361833579, 24.491471966468897 ], [ -77.717393658311195, 24.491399385734834 ], [ -77.71754398910555, 24.491367768307168 ], [ -77.717697638923823, 24.491380209077452 ], [ -77.717839567606092, 24.491435490255405 ], [ -77.717955882301922, 24.491528200575075 ], [ -77.718035197354268, 24.491649264971631 ], [ -77.718069748793269, 24.491786832886291 ], [ -77.71819318555778, 24.493425233933465 ], [ -77.724703685486844, 24.492510510016793 ], [ -77.724449555929198, 24.489985513370531 ], [ -77.724450346526197, 24.489974439427932 ], [ -77.724447935465079, 24.489963563423892 ], [ -77.724290303560352, 24.486616388941414 ], [ -77.723256773811514, 24.48644711377198 ], [ -77.721791420798311, 24.488036370701305 ], [ -77.722200786834549, 24.489139920715811 ], [ -77.722226865524178, 24.48927644682508 ], [ -77.722206426659113, 24.489413775198976 ], [ -77.722141398936003, 24.489538945978932 ], [ -77.722037919000286, 24.48964014659613 ], [ -77.72190575236138, 24.489707826554572 ], [ -77.721757371817816, 24.489735598747519 ], [ -77.721606780359465, 24.489720842240093 ], [ -77.721468189639992, 24.489664949624164 ], [ -77.720339079588712, 24.489003663282837 ], [ -77.72031474883498, 24.488983881588258 ], [ -77.720286897604552, 24.488968471460339 ], [ -77.720257441070416, 24.48893728846814 ], [ -77.720223768585925, 24.488909911589595 ], [ -77.720207308564895, 24.488884217626115 ], [ -77.720186024184457, 24.488861685718341 ], [ -77.720168539243076, 24.488823698966218 ], [ -77.720145759448613, 24.488788139819935 ], [ -77.720138781372341, 24.488759048707198 ], [ -77.720126147299624, 24.488731600614081 ], [ -77.720122345474351, 24.488690528529393 ], [ -77.720112688191975, 24.488650267910543 ], [ -77.720115875096923, 24.488620627300264 ], [ -77.720113128019193, 24.488590949843225 ], [ -77.720123381416741, 24.488550812858072 ], [ -77.720127791926743, 24.488509791765924 ], [ -77.720140831823443, 24.488482503090015 ], [ -77.720148240611124, 24.488453501308197 ], [ -77.720171545513267, 24.488418228307896 ], [ -77.720189592039588, 24.488380462169538 ], [ -77.720211208464903, 24.488358196627015 ], [ -77.720228047865064, 24.488332709410454 ], [ -77.720678757922684, 24.487843906836023 ], [ -77.720674603712368, 24.487832707667934 ], [ -77.720648481972688, 24.487693592105586 ], [ -77.720670614668848, 24.487553898363132 ], [ -77.72073883514588, 24.487427300630518 ], [ -77.720846465402332, 24.487326191128773 ], [ -77.720982969820028, 24.487260467091062 ], [ -77.721134986470929, 24.487236561979046 ], [ -77.721227453595091, 24.487248830756798 ], [ -77.722135943840655, 24.486263531596638 ], [ -77.721731836566775, 24.486197340137526 ], [ -77.721586126654628, 24.486151040709888 ], [ -77.721463182435784, 24.486065801305998 ], [ -77.721375038603071, 24.485949965816076 ], [ -77.721330323249134, 24.485814873095006 ], [ -77.72133341330391, 24.485673747009464 ], [ -77.721384006136205, 24.485540401974667 ], [ -77.721477149236605, 24.485427890699096 ], [ -77.721603725053427, 24.485347226506835 ], [ -77.721751343503655, 24.485306305301012 ], [ -77.72190555478528, 24.485309132684449 ], [ -77.724246802048356, 24.485692606543036 ], [ -77.723936087484674, 24.479093551965679 ], [ -77.723939356902036, 24.479067423341402 ], [ -77.723936944144398, 24.479041216813947 ], [ -77.723940277629438, 24.479028193048265 ], [ -77.723939908802976, 24.479014820994664 ], [ -77.723949718108443, 24.478984618310371 ], [ -77.723953635114654, 24.478953314234186 ], [ -77.723965566888069, 24.478929389059928 ], [ -77.723972120898324, 24.478903782817927 ], [ -77.72632683208252, 24.473618555737563 ], [ -77.726342072382977, 24.473595508638795 ], [ -77.726352137966373, 24.473570193427186 ], [ -77.726381766919175, 24.473535480652448 ], [ -77.726406686692158, 24.473497795741924 ], [ -77.726428962608637, 24.47348018694144 ], [ -77.726447082875978, 24.473458957511941 ], [ -77.729052670348494, 24.471234853302168 ], [ -77.729023747236837, 24.471247993123907 ], [ -77.728871176731971, 24.471268609227426 ], [ -77.728719112937966, 24.471245064936738 ], [ -77.72858244106925, 24.471179664941218 ], [ -77.72847453962089, 24.471078811097559 ], [ -77.727968354485384, 24.470426853092761 ], [ -77.727949765509393, 24.470455995255136 ], [ -77.727834657318581, 24.470549937263417 ], [ -77.72769346523269, 24.470606725295095 ], [ -77.727540010210475, 24.470620800481509 ], [ -77.727538635504217, 24.470620526670825 ], [ -77.727444189117421, 24.470672075674734 ], [ -77.727293803378529, 24.470703370236873 ], [ -77.727140212064114, 24.470690599483063 ], [ -77.726998449916792, 24.470635013502928 ], [ -77.726882393720516, 24.470542053480607 ], [ -77.726803403899552, 24.470420819058017 ], [ -77.726769212467445, 24.470283177572849 ], [ -77.726783166186877, 24.470142602374978 ], [ -77.726843899015918, 24.470012853944947 ], [ -77.726945465884853, 24.469906632922012 ], [ -77.727074855728361, 24.469807932979545 ], [ -77.72713671765473, 24.469710952250082 ], [ -77.727251825720927, 24.469617010786639 ], [ -77.727393016989026, 24.469560223241153 ], [ -77.727400485208378, 24.469559538252586 ], [ -77.727531718261361, 24.469459431392156 ], [ -77.727596815642613, 24.469360092907483 ], [ -77.727721026844335, 24.469264401801745 ], [ -77.730715044826482, 24.467643158195532 ], [ -77.730434802529103, 24.467352350585681 ], [ -77.730352138078487, 24.467233187663126 ], [ -77.730313751444584, 24.467096476394925 ], [ -77.730323400050381, 24.466955599077963 ], [ -77.730380139267993, 24.466824345770299 ], [ -77.730478414944727, 24.466715564422408 ], [ -77.730608607129057, 24.466639903244676 ], [ -77.730757971755224, 24.466604768411557 ], [ -77.730911888101133, 24.466613599119874 ], [ -77.731055289917563, 24.466665530953641 ], [ -77.731174140158316, 24.466755480500925 ], [ -77.731578817872162, 24.467175412043602 ], [ -77.732663600552485, 24.466587974424808 ], [ -77.732847108100188, 24.466529352059649 ], [ -77.748735986608409, 24.464518419479798 ], [ -77.748763947589012, 24.464430145424945 ], [ -77.748850557527675, 24.464313357107908 ], [ -77.748972357477015, 24.464226781820027 ], [ -77.749117424833159, 24.46417889408286 ], [ -77.749271559501949, 24.464174381426819 ], [ -77.749419673861269, 24.464213685564083 ], [ -77.749547269584099, 24.464292959157579 ], [ -77.749641302401173, 24.464403789005445 ], [ -77.750148930056056, 24.464339511098053 ], [ -77.750303113998967, 24.464342278676007 ], [ -77.750448817343212, 24.464388520608743 ], [ -77.750571777760825, 24.4644737104461 ], [ -77.750659959085652, 24.464589509276578 ], [ -77.750704729475757, 24.464724581973872 ], [ -77.750701706373292, 24.464865706731306 ], [ -77.750651185545649, 24.464999069285234 ], [ -77.750558112192934, 24.465111615147286 ], [ -77.7504315969271, 24.465192327480988 ], [ -77.750284023983326, 24.465233305530717 ], [ -77.750150529515523, 24.465250209405923 ], [ -77.751035416972258, 24.466721471942048 ], [ -77.755592767698502, 24.465348167954314 ], [ -77.755744987843926, 24.465325542367996 ], [ -77.755897396549869, 24.465347078170431 ], [ -77.75603507514208, 24.465410667295224 ], [ -77.756144546784469, 24.465510085243679 ], [ -77.756215095646056, 24.465635600363864 ], [ -77.756239815835059, 24.465774926425897 ], [ -77.75621628742536, 24.46591442525909 ], [ -77.756146813389833, 24.466040441737707 ], [ -77.756038194227386, 24.466140640442934 ], [ -77.75590106232228, 24.466205213157806 ], [ -77.751519110781416, 24.467525669428724 ], [ -77.753316830526302, 24.470514474390175 ], [ -77.753332357607988, 24.47055387416497 ], [ -77.753353277167676, 24.470591126064782 ], [ -77.753358364227054, 24.470619865566938 ], [ -77.753369157256643, 24.470647252691293 ], [ -77.753370621902747, 24.470689115620644 ], [ -77.753377940282888, 24.470730460949159 ], [ -77.753389130872378, 24.473630324833916 ], [ -77.753365543140148, 24.473769815638434 ], [ -77.753296012424883, 24.473895808123356 ], [ -77.753187344773721, 24.473995969218443 ], [ -77.75305017731749, 24.474060494388265 ], [ -77.752897937040331, 24.474083067395036 ], [ -77.75274552642324, 24.474061478600625 ], [ -77.752607864631102, 24.473997841274709 ], [ -77.752498427063017, 24.473898384730131 ], [ -77.752427926246625, 24.473772844535983 ], [ -77.7524032632152, 24.47363350950577 ], [ -77.75239253848315, 24.470848773492509 ], [ -77.75113195989465, 24.46875298688974 ], [ -77.751095669910086, 24.468740158867199 ], [ -77.750976018019585, 24.468651105125112 ], [ -77.750892289161541, 24.468532568307054 ], [ -77.750452093611457, 24.467622632168005 ], [ -77.749104852510158, 24.465382615150645 ], [ -77.743990309393823, 24.466030121947462 ], [ -77.744080559584461, 24.466105399321837 ], [ -77.744156867707005, 24.466228060877814 ], [ -77.744188028500659, 24.466366301886527 ], [ -77.744355730495286, 24.469673272497655 ], [ -77.744338693716642, 24.469813560993561 ], [ -77.744275125514804, 24.469942164735279 ], [ -77.744171248275151, 24.4700464950492 ], [ -77.744037230196525, 24.470116339289181 ], [ -77.743886189968293, 24.470144860547535 ], [ -77.743732912596357, 24.470129266924719 ], [ -77.743592402091835, 24.470071084835201 ], [ -77.743478412715049, 24.469976009590635 ], [ -77.743402102569505, 24.469853347886492 ], [ -77.743370941357867, 24.469715106771847 ], [ -77.743203264848518, 24.466408132818664 ], [ -77.743220302839248, 24.466267844324559 ], [ -77.743283870705824, 24.466139241040263 ], [ -77.743306310069542, 24.466116703542067 ], [ -77.738442806425965, 24.466732241001843 ], [ -77.739066374546383, 24.469142525994606 ], [ -77.739077987295929, 24.469283384598537 ], [ -77.739041438490773, 24.469420625595728 ], [ -77.738960311018147, 24.46954079465981 ], [ -77.738842558059389, 24.469632111060776 ], [ -77.73869972343806, 24.469685622600554 ], [ -77.737037975605617, 24.470043848003236 ], [ -77.73822802617741, 24.476172975471243 ], [ -77.738230924969983, 24.476314103456019 ], [ -77.738186030740607, 24.476449143970378 ], [ -77.738097737912653, 24.476564878280321 ], [ -77.737974689136095, 24.476649977444492 ], [ -77.737828929310467, 24.476696111293045 ], [ -77.737674726535474, 24.476698763869752 ], [ -77.737527175406953, 24.476657675505713 ], [ -77.737400719394103, 24.476576868243839 ], [ -77.73730773695965, 24.476464252122692 ], [ -77.737257329844198, 24.476330850863569 ], [ -77.735996984942147, 24.469839409459102 ], [ -77.735982850234677, 24.469807791351059 ], [ -77.735977096165001, 24.46973696480196 ], [ -77.735466874835481, 24.46710880325795 ], [ -77.733080279817571, 24.467410749786307 ], [ -77.732242708385343, 24.467864318069324 ], [ -77.7329202539389, 24.468567382098186 ], [ -77.733001826444479, 24.468684245931872 ], [ -77.733040764719021, 24.46881826556039 ], [ -77.733033389650288, 24.468956778496377 ], [ -77.732980397906985, 24.469086697675163 ], [ -77.732886796170106, 24.469195747953108 ], [ -77.727198809672998, 24.474051142649913 ], [ -77.725225258601967, 24.478480940670647 ], [ -77.730669148404317, 24.477562245312495 ], [ -77.730823330915925, 24.477558676536091 ], [ -77.7309711722434, 24.477598887201079 ], [ -77.731098200785141, 24.477678941234128 ], [ -77.73119198217131, 24.477791002448974 ], [ -77.731243336400482, 24.477924101583941 ], [ -77.73124723645185, 24.478065210022621 ], [ -77.7312033004076, 24.47820051510493 ], [ -77.731115828896321, 24.47831677219996 ], [ -77.73099338417002, 24.478402601192965 ], [ -77.730847951997632, 24.478449600473294 ], [ -77.72493956615115, 24.479446677194442 ], [ -77.725065269917081, 24.482116114146528 ], [ -77.727557167697157, 24.480172034570366 ], [ -77.727688749333922, 24.480098393139794 ], [ -77.727838756195609, 24.480065568166175 ], [ -77.727992504696644, 24.480076772743036 ], [ -77.728134945017487, 24.480130910086014 ], [ -77.728252134226651, 24.48022268089461 ], [ -77.728332601066356, 24.480343102069433 ], [ -77.728368468824399, 24.480480386015049 ], [ -77.728356226383511, 24.480621094465956 ], [ -77.728337272811316, 24.48066286275056 ], [ -77.728864176013886, 24.482945659759476 ], [ -77.728864743674478, 24.482955817641752 ], [ -77.728868245823804, 24.482965470628457 ], [ -77.730114898551051, 24.489880877818802 ], [ -77.731333605175763, 24.489001837135241 ], [ -77.731468190185396, 24.488932876848125 ], [ -77.731619474475593, 24.488905350578161 ], [ -77.731772649423206, 24.488921952749241 ], [ -77.73191272135098, 24.488981058228337 ], [ -77.732025979154315, 24.489076881403552 ], [ -77.732101336397221, 24.48920004250332 ], [ -77.732131416519465, 24.489338485727583 ], [ -77.732113274931876, 24.489478659328135 ], [ -77.732048687305593, 24.489606842133195 ], [ -77.73194397581581, 24.489710486672468 ], [ -77.730352769270951, 24.490858208744513 ], [ -77.73120889245709, 24.497083741616446 ], [ -77.731208676206805, 24.497089944336366 ], [ -77.731210387169725, 24.497095949474101 ], [ -77.731727026109624, 24.501906292029766 ], [ -77.731717912506113, 24.502047198610793 ], [ -77.731661658698357, 24.502178631780716 ], [ -77.731563771077333, 24.502287725907657 ], [ -77.731433831520775, 24.50236380203259 ], [ -77.731284559469231, 24.50239941322533 ], [ -77.731130566839028, 24.502391073568354 ], [ -77.730986927657156, 24.502339599400173 ], [ -77.730867702451178, 24.502250029408458 ], [ -77.730784561859579, 24.50213113139386 ], [ -77.730745644211325, 24.501994543991476 ], [ -77.730229698106498, 24.497190308130367 ], [ -77.729439742390468, 24.491445640155213 ], [ -77.727397394341509, 24.492378531532339 ], [ -77.728180603141567, 24.494085031123252 ], [ -77.728217350247377, 24.494222120838923 ], [ -77.728206004587861, 24.494362892104128 ], [ -77.728147676600059, 24.494493565249744 ], [ -77.728048075712977, 24.49460134903866 ], [ -77.727916951515155, 24.49467569277612 ], [ -77.727767139412279, 24.494709319110662 ], [ -77.727613304187145, 24.494698936418111 ], [ -77.727470504458594, 24.494645561025614 ], [ -77.727352718579795, 24.494554417727667 ], [ -77.727271476293524, 24.494434428331818 ], [ -77.726513263269794, 24.492782367191126 ], [ -77.725756075831242, 24.493128214136842 ], [ -77.726444385548788, 24.499965747471826 ], [ -77.729792238402467, 24.502982294004909 ], [ -77.741941686720907, 24.512723745385117 ], [ -77.742068746773612, 24.512882800862009 ], [ -77.7439399991556, 24.516810571598018 ], [ -77.743942120549377, 24.51681804835416 ], [ -77.743946419538986, 24.516824696572137 ], [ -77.745619521434307, 24.520688930493289 ], [ -77.750782901641642, 24.519747873030276 ], [ -77.7506990717864, 24.519702762324783 ], [ -77.750596767868799, 24.519597106546652 ], [ -77.750535157758904, 24.519467698723997 ], [ -77.749618467326272, 24.51623322802989 ], [ -77.749603583528867, 24.516092735295189 ], [ -77.749636879993687, 24.515954910728709 ], [ -77.749715097284039, 24.515833245542236 ], [ -77.749830578858294, 24.515739649117524 ], [ -77.74997202057925, 24.515683283253793 ], [ -77.750125577240354, 24.515669665374126 ], [ -77.750276217794891, 24.515700128464697 ], [ -77.750409196642508, 24.515771690603003 ], [ -77.750511496975392, 24.515877346842753 ], [ -77.750573104920278, 24.516006754885971 ], [ -77.751489816976232, 24.51924121784614 ], [ -77.751504703596368, 24.519381710125035 ], [ -77.751471408705484, 24.519519534949097 ], [ -77.75139651884885, 24.519636025085038 ], [ -77.756818779357943, 24.518647559698216 ], [ -77.756972937517304, 24.518641968939868 ], [ -77.757121439021859, 24.518680235296262 ], [ -77.757249747649581, 24.518758613014629 ], [ -77.757345303731185, 24.518869429997029 ], [ -77.757398753550092, 24.519001838776219 ], [ -77.757404864957593, 24.519142878314096 ], [ -77.75736303957332, 24.519278742697139 ], [ -77.757277371417331, 24.519396132548149 ], [ -77.757156246212489, 24.519483556871354 ], [ -77.757011520559274, 24.519532457893785 ], [ -77.745988751329222, 24.521541673079934 ], [ -77.756004349417694, 24.544667467203602 ], [ -77.756038665783663, 24.544851092224572 ], [ -77.756020356241123, 24.545284207136106 ], [ -77.756031119109821, 24.545297800652289 ], [ -77.756078581942432, 24.545432108173326 ], [ -77.756078348396898, 24.545573258029872 ], [ -77.756030441179078, 24.545707433503981 ], [ -77.756000897367656, 24.545744510415364 ], [ -77.755941670179311, 24.547145545515534 ], [ -77.755983426206768, 24.547232698049896 ], [ -77.755998659046185, 24.547373158662587 ], [ -77.755965693428266, 24.547511050282161 ], [ -77.755923425950883, 24.5475771191471 ], [ -77.755097116350569, 24.567124498124887 ], [ -77.758364742376685, 24.580250866004185 ], [ -77.765391224942306, 24.591252743634819 ], [ -77.766048000606446, 24.590989127157172 ], [ -77.766197314616008, 24.590953309216893 ], [ -77.766351425565659, 24.590961433666347 ], [ -77.76649524815808, 24.591012705222258 ], [ -77.766614704160475, 24.591102105104856 ], [ -77.76669810043245, 24.591220882296689 ], [ -77.76673727351475, 24.591357410128047 ], [ -77.766728388744994, 24.591498324349885 ], [ -77.766709872730161, 24.591541749581847 ], [ -77.768448429086988, 24.591848880728485 ], [ -77.768593547461677, 24.59189700487244 ], [ -77.768715299395112, 24.591983777222179 ], [ -77.768801767012249, 24.592100703960107 ], [ -77.768844486216267, 24.592236339552571 ], [ -77.768839275230093, 24.592377407091615 ], [ -77.768786643985166, 24.592510097912594 ], [ -77.768691744265482, 24.592621423279049 ], [ -77.768563865464287, 24.592700485823865 ], [ -77.768415525293662, 24.592739546284186 ], [ -77.768261244446776, 24.592734781101122 ], [ -77.765882802956597, 24.59231460458702 ], [ -77.7660221753776, 24.598733881275379 ], [ -77.767429148370368, 24.598664321662046 ], [ -77.767582705573844, 24.598678841795355 ], [ -77.767723839766376, 24.598736036843558 ], [ -77.767838735865411, 24.598830308199574 ], [ -77.767916147071944, 24.59895242799443 ], [ -77.767948495773382, 24.599090442359365 ], [ -77.767932615317662, 24.599230841527948 ], [ -77.767870060039101, 24.599359882250415 ], [ -77.767766953168575, 24.599464933079052 ], [ -77.767633387493319, 24.599535710838616 ], [ -77.767482437416547, 24.599565287241258 ], [ -77.766041776831671, 24.599636513086882 ], [ -77.766047196768326, 24.599886089121597 ], [ -77.77132389754685, 24.599724065663032 ], [ -77.771477099058629, 24.599741451588635 ], [ -77.771616926349807, 24.599801271301342 ], [ -77.771729692262099, 24.599897669275887 ], [ -77.771804358507751, 24.600021209475891 ], [ -77.771833616164315, 24.600159798992458 ], [ -77.771814601149671, 24.600299871756896 ], [ -77.771749174631424, 24.600427716467276 ], [ -77.771643740901794, 24.600530818747565 ], [ -77.77150862052342, 24.600599086159217 ], [ -77.771357040090493, 24.600625836145699 ], [ -77.766066789853497, 24.600788278742755 ], [ -77.766119686289628, 24.603223743220646 ], [ -77.766142009522753, 24.603265800096558 ], [ -77.766163192990277, 24.603405613093397 ], [ -77.766136084194443, 24.603544568061999 ], [ -77.76612699282957, 24.603560126385993 ], [ -77.766299744582895, 24.611511581205576 ], [ -77.766251545158383, 24.61171519422604 ], [ -77.762512758516266, 24.618861400081187 ], [ -77.76138372642707, 24.629720677713632 ], [ -77.76089442686532, 24.634817897412876 ], [ -77.765457696147877, 24.660775312322173 ], [ -77.765455000342499, 24.660932401816503 ], [ -77.76479617532776, 24.664051155728025 ], [ -77.764799621821325, 24.664065711957925 ], [ -77.764784036506185, 24.664206138762381 ], [ -77.764747387204707, 24.664282104794982 ], [ -77.763393223912516, 24.670692066536066 ], [ -77.763140536891726, 24.694690722235453 ], [ -77.764689856453131, 24.693232143537372 ], [ -77.764813467385011, 24.693147475658474 ], [ -77.764959665990844, 24.693101849655861 ], [ -77.765114141446986, 24.693099731666699 ], [ -77.765261772775361, 24.693141328998738 ], [ -77.765388108930566, 24.693222569843627 ], [ -77.765480783316363, 24.693335501843077 ], [ -77.765530724288695, 24.693469070497525 ], [ -77.765533043162691, 24.693610201230328 ], [ -77.765487512794977, 24.693745079197839 ], [ -77.765398589877506, 24.693860501576502 ], [ -77.763557995119967, 24.695593301537421 ], [ -77.786360537544638, 24.696030430527827 ], [ -77.786488678721227, 24.696052189715953 ], [ -77.786490153427238, 24.696050507629803 ], [ -77.786619270671153, 24.695973002066406 ], [ -77.786768284149318, 24.695935741539785 ], [ -77.786922607511144, 24.695942373322175 ], [ -77.787013858549315, 24.695959627052986 ], [ -77.797941308628353, 24.683944399659008 ], [ -77.798010619711576, 24.68388190801944 ], [ -77.815351052382283, 24.671068101000888 ], [ -77.815431877614145, 24.671019506477862 ], [ -77.82344422542927, 24.66717204454833 ], [ -77.823553034516024, 24.667133983409499 ], [ -77.82366857452881, 24.667120284186403 ], [ -77.828188927597452, 24.667075798616715 ], [ -77.832854669766817, 24.664104800236068 ], [ -77.832993640688997, 24.66404321500287 ], [ -77.833146635254437, 24.664023887602646 ], [ -77.833298677435209, 24.664048709903433 ], [ -77.833434884435121, 24.664115252136671 ], [ -77.833541923463471, 24.664217000735608 ], [ -77.833609316803546, 24.664343995909249 ], [ -77.833630467441068, 24.664483806549054 ], [ -77.83360330485813, 24.664622747048039 ], [ -77.833530487765799, 24.66474721693093 ], [ -77.833419143908984, 24.664845032167669 ], [ -77.828628588480612, 24.667895516245789 ], [ -77.828496805424734, 24.667955049515676 ], [ -77.828351681126293, 24.667976482776531 ], [ -77.823798193942523, 24.668021301471786 ], [ -77.815934192928651, 24.671797538100048 ], [ -77.798669580771517, 24.68455537712865 ], [ -77.788109504389908, 24.696166786777358 ], [ -77.792513123660328, 24.696999313563751 ], [ -77.792657653743092, 24.697049182778667 ], [ -77.792778242064543, 24.697137413817259 ], [ -77.792863084648516, 24.697255370076405 ], [ -77.792903876463569, 24.697391505245715 ], [ -77.792896624395723, 24.697532493514036 ], [ -77.792842038170789, 24.697664533974507 ], [ -77.792745460941418, 24.697774701550699 ], [ -77.792616346310794, 24.697852212206985 ], [ -77.792467332966723, 24.697889478590184 ], [ -77.792313007500496, 24.697882852759317 ], [ -77.7873944223861, 24.696952962695629 ], [ -77.787324641267318, 24.697029680834124 ], [ -77.797276069391259, 24.711128640795962 ], [ -77.797342205368707, 24.711271570244982 ], [ -77.797351411163689, 24.711426515198085 ], [ -77.797302597396254, 24.711575143477038 ], [ -77.79583518753978, 24.714251530751007 ], [ -77.795760734856543, 24.714351258191087 ], [ -77.795659997246986, 24.714429381620175 ], [ -77.794342975018765, 24.715200003113068 ], [ -77.796448041520904, 24.717195064887832 ], [ -77.796492517873403, 24.717172657367936 ], [ -77.797542690124288, 24.713804305643816 ], [ -77.797607737416982, 24.713676278816347 ], [ -77.797712911464913, 24.713572879224561 ], [ -77.797847917072886, 24.713504228271688 ], [ -77.797999539020964, 24.713477045924151 ], [ -77.79815293563567, 24.713493992940069 ], [ -77.798293091543201, 24.713553410430816 ], [ -77.798406287419439, 24.713649482243266 ], [ -77.798481442889951, 24.713772804268306 ], [ -77.798511201144038, 24.713911304954056 ], [ -77.798492649097241, 24.714051426927846 ], [ -77.797710932996068, 24.716558802761618 ], [ -77.799951233872605, 24.715430067860705 ], [ -77.799819864565166, 24.71312308595461 ], [ -77.799836075889303, 24.712982722042007 ], [ -77.799898977522133, 24.712853804090955 ], [ -77.800002412097626, 24.712748951445576 ], [ -77.800136254687558, 24.712678427744738 ], [ -77.800287403911938, 24.712649136271722 ], [ -77.800441064368485, 24.712663944238734 ], [ -77.800582194857327, 24.712721402139945 ], [ -77.800696980658827, 24.712815885638779 ], [ -77.800774185770337, 24.712938146100704 ], [ -77.800806252752338, 24.713076215887785 ], [ -77.800912718790983, 24.714945625283764 ], [ -77.804064635720621, 24.713357470361711 ], [ -77.80420993944908, 24.713309469807541 ], [ -77.80436436964311, 24.713304834114055 ], [ -77.804512809754556, 24.713344017036775 ], [ -77.804640729571574, 24.713423183104062 ], [ -77.804735607483352, 24.713534583049949 ], [ -77.804788156155055, 24.713667312343283 ], [ -77.804793231645959, 24.713808378571755 ], [ -77.80475033697644, 24.713943973208533 ], [ -77.804663670835069, 24.714060823279979 ], [ -77.80454171663547, 24.714147490626665 ], [ -77.800969767565405, 24.715947285121121 ], [ -77.800986622079023, 24.716243209950047 ], [ -77.800970412026118, 24.716383573856625 ], [ -77.800907510155611, 24.716512492263877 ], [ -77.800804073624874, 24.716617345696726 ], [ -77.800670227490912, 24.716687870301957 ], [ -77.800519073611142, 24.716717162571918 ], [ -77.800365408117372, 24.716702355133854 ], [ -77.800224273015118, 24.716644897444137 ], [ -77.800109483707445, 24.716550413904915 ], [ -77.800032276602906, 24.716428153291947 ], [ -77.800030505651904, 24.716420528267097 ], [ -77.79728489447325, 24.717803840710832 ], [ -77.797198078733572, 24.717889188837308 ], [ -77.797063068222627, 24.717957839619196 ], [ -77.79693291474554, 24.71798117190454 ], [ -77.796593647112275, 24.718152097398761 ], [ -77.796442116890333, 24.718201145109344 ], [ -77.796281368794283, 24.718203140713296 ], [ -77.796128435190226, 24.718157872747163 ], [ -77.795999520430684, 24.718070137647707 ], [ -77.793494787077819, 24.715696287681347 ], [ -77.79116156117469, 24.717061442008141 ], [ -77.791865971002821, 24.719424025323249 ], [ -77.794809909878921, 24.718351363655827 ], [ -77.794960621978461, 24.718320219420789 ], [ -77.795114493955978, 24.718333139956481 ], [ -77.795256463906995, 24.7183888605101 ], [ -77.795372634942254, 24.718481926807247 ], [ -77.795451635466861, 24.718603228938377 ], [ -77.795485732297621, 24.718740893074258 ], [ -77.795471587664338, 24.718881443732922 ], [ -77.795410585985536, 24.719011122837362 ], [ -77.795308698411816, 24.719117236451709 ], [ -77.795175898373344, 24.719189397367991 ], [ -77.792118579961553, 24.72030337201533 ], [ -77.79212894550129, 24.720390035719653 ], [ -77.792097437962951, 24.720528214058248 ], [ -77.792020725095512, 24.720650736155086 ], [ -77.791906315996499, 24.720745608639923 ], [ -77.7917654098257, 24.720803544661464 ], [ -77.79161179955338, 24.720818872976334 ], [ -77.791460521772933, 24.720790093113575 ], [ -77.791326384757085, 24.72072002226216 ], [ -77.791232974508574, 24.720626039265959 ], [ -77.788208665758347, 24.721727885191669 ], [ -77.790551516393961, 24.725563914868015 ], [ -77.79140250055454, 24.725137021450543 ], [ -77.790533763946414, 24.72389786690044 ], [ -77.790471817112248, 24.723768560729859 ], [ -77.790456649186936, 24.723628098653762 ], [ -77.790489744762056, 24.723490230106087 ], [ -77.790567864063519, 24.723368450603925 ], [ -77.790683360140065, 24.723274680718706 ], [ -77.790824927434372, 24.723218099228497 ], [ -77.79097870844852, 24.723204244662654 ], [ -77.791129650176032, 24.723234473175314 ], [ -77.791183290943579, 24.723263180060375 ], [ -77.792657885340091, 24.722798222849264 ], [ -77.792649910335271, 24.722772076807853 ], [ -77.79263223556093, 24.722631859666087 ], [ -77.792662863736254, 24.722493516461864 ], [ -77.792738796611829, 24.722370589177235 ], [ -77.79285260125485, 24.722275110738121 ], [ -77.792993137672141, 24.722216427167989 ], [ -77.793146649271009, 24.722200282761218 ], [ -77.793298109415701, 24.722228257815345 ], [ -77.793432692282124, 24.722297613951845 ], [ -77.793537224055569, 24.722401562162002 ], [ -77.793593043390857, 24.722513086527094 ], [ -77.793681758842567, 24.722498731422082 ], [ -77.793834798291073, 24.72251826269602 ], [ -77.793973739800109, 24.722580033978311 ], [ -77.794084982915209, 24.722677998712388 ], [ -77.794157638406062, 24.722802567497457 ], [ -77.794184594172165, 24.722941546739115 ], [ -77.794163211453437, 24.723081332218044 ], [ -77.794095583184571, 24.723208240751603 ], [ -77.793988329183222, 24.723309849601353 ], [ -77.793858622128454, 24.723372964988332 ], [ -77.793950662575654, 24.723674706302148 ], [ -77.795811741452496, 24.723176317254456 ], [ -77.795819901048148, 24.722515677032586 ], [ -77.79584579438432, 24.722376529539645 ], [ -77.795917496228299, 24.722251500911522 ], [ -77.79602798780239, 24.722152829771399 ], [ -77.796166453409867, 24.722090174667169 ], [ -77.79631933915519, 24.722069668652541 ], [ -77.796471679662034, 24.722093318965602 ], [ -77.796608562932974, 24.722158810559154 ], [ -77.796716589981386, 24.722259732709762 ], [ -77.796785186378713, 24.722386206524963 ], [ -77.796807637348778, 24.722525851930946 ], [ -77.796798165698704, 24.723293216500974 ], [ -77.796846226095099, 24.723423131852648 ], [ -77.796848032775245, 24.723564265233179 ], [ -77.796625351885609, 24.724953360237507 ], [ -77.796581344059121, 24.7250843184889 ], [ -77.796496331730964, 24.72519717468553 ], [ -77.796378153717541, 24.725281522442529 ], [ -77.796237707087215, 24.725329584092723 ], [ -77.796087942347626, 24.725336927879326 ], [ -77.795942669259759, 24.725302876621409 ], [ -77.795815283406299, 24.725230570162974 ], [ -77.795717530953823, 24.725126675844646 ], [ -77.795149149582571, 24.72429399088653 ], [ -77.794399075426071, 24.724494855965098 ], [ -77.795272606264206, 24.725668065909591 ], [ -77.795334927651751, 24.72578518911196 ], [ -77.795358024502065, 24.72591369195214 ], [ -77.795339972133689, 24.726042866832028 ], [ -77.795282274655179, 24.726161950123522 ], [ -77.793807098497084, 24.728304010326077 ], [ -77.795809533531568, 24.729886855576961 ], [ -77.795916622549427, 24.730006511919292 ], [ -77.796909122840191, 24.731615225755068 ], [ -77.79691108228721, 24.731616216554343 ], [ -77.797016534411412, 24.73171939242085 ], [ -77.797081916755502, 24.731847280577043 ], [ -77.797090215362076, 24.731908747449989 ], [ -77.800376132822734, 24.73723438163589 ], [ -77.801086796089791, 24.737215148474824 ], [ -77.801240086084519, 24.737233088666372 ], [ -77.801379803438266, 24.737293412281669 ], [ -77.801492271754142, 24.737390214470668 ], [ -77.801566481874218, 24.737514019630233 ], [ -77.801578908654548, 24.737574096448853 ], [ -77.804440450433631, 24.736856014293505 ], [ -77.804611113732619, 24.736841356694047 ], [ -77.804776985727983, 24.736880850691847 ], [ -77.804918090763977, 24.736969740082049 ], [ -77.806167921254314, 24.73809490542547 ], [ -77.806461418134603, 24.737676154367357 ], [ -77.806564070904471, 24.737570647189692 ], [ -77.806697398573888, 24.737499274463097 ], [ -77.806848350164955, 24.737469022579013 ], [ -77.807002149620175, 24.737482852760508 ], [ -77.807143742134002, 24.737539411213177 ], [ -77.807259267762177, 24.737633161643995 ], [ -77.807337418084884, 24.737754927175999 ], [ -77.807370543140664, 24.737892788618833 ], [ -77.807355400282304, 24.738033251176088 ], [ -77.807293471641586, 24.738162565393864 ], [ -77.806948955322497, 24.738654113938498 ], [ -77.806874317443146, 24.738730827143876 ], [ -77.809779420917963, 24.741345989150066 ], [ -77.821513443143076, 24.750951365245367 ] ], [ [ -77.860874629550835, 24.736235750142324 ], [ -77.851280557517626, 24.745501330251688 ], [ -77.852467836166383, 24.746268701735513 ], [ -77.860630420072084, 24.737791662697266 ], [ -77.860874629550835, 24.736235750142324 ] ], [ [ -77.862641894040863, 24.73321563202996 ], [ -77.856591420988011, 24.734179894448953 ], [ -77.856551153631656, 24.734272564076274 ], [ -77.856452554572613, 24.734381239651292 ], [ -77.852489289772251, 24.737567127339616 ], [ -77.852927474020632, 24.739421624129587 ], [ -77.852936826128101, 24.739554847766339 ], [ -77.852903074505448, 24.739684737526279 ], [ -77.852829174868205, 24.739799918135184 ], [ -77.851300567590172, 24.741531406501007 ], [ -77.851334327655167, 24.741664950917151 ], [ -77.851345108472557, 24.741805744323727 ], [ -77.851307721358864, 24.741942689269418 ], [ -77.851225825879609, 24.742062380608104 ], [ -77.851107438452303, 24.742153102060406 ], [ -77.850964147675185, 24.742205973106536 ], [ -77.850809979949958, 24.742215818300984 ], [ -77.850715356666129, 24.74219427261 ], [ -77.849061783807315, 24.744067221187894 ], [ -77.850466003893644, 24.744974849881803 ], [ -77.861131800039146, 24.734674212160499 ], [ -77.861154833747236, 24.734606074271838 ], [ -77.861243818092831, 24.734490685050577 ], [ -77.861367489010163, 24.734406057086737 ], [ -77.861429410395644, 24.734386757848693 ], [ -77.862641894040863, 24.73321563202996 ] ], [ [ -77.866500339177051, 24.755336792739467 ], [ -77.866849047970675, 24.755562100067312 ], [ -77.86693882209218, 24.755594431618018 ], [ -77.867058042310703, 24.755684250535584 ], [ -77.867074380586203, 24.755707690805533 ], [ -77.868510527021613, 24.756635589410266 ], [ -77.8707950498423, 24.749656398341667 ], [ -77.868228189521389, 24.752098391643781 ], [ -77.866500339177051, 24.755336792739467 ] ], [ [ -77.921355122021737, 24.78132263920703 ], [ -77.909119333245556, 24.78367615018686 ], [ -77.90753260008772, 24.784373256981951 ], [ -77.90770126684005, 24.784456841853693 ], [ -77.90784780047025, 24.784567461787692 ], [ -77.907937726986347, 24.784720408723711 ], [ -77.907964858315538, 24.784800762317921 ], [ -77.907965418704222, 24.784801442263532 ], [ -77.908015641663795, 24.784934917514871 ], [ -77.908015956374811, 24.784952096713461 ], [ -77.909458751477771, 24.789224958801679 ], [ -77.921181965834535, 24.787316111784147 ], [ -77.921355122021737, 24.78132263920703 ] ], [ [ -77.899482454107329, 24.776523676113317 ], [ -77.901030097350002, 24.778871476596194 ], [ -77.909033010575769, 24.78277078221041 ], [ -77.925394324930437, 24.779623497830698 ], [ -77.927766815443746, 24.77252317331109 ], [ -77.923155672159254, 24.773698703341505 ], [ -77.923079529557228, 24.773749263982989 ], [ -77.922932543141641, 24.773792940811841 ], [ -77.922785732353049, 24.773793006053893 ], [ -77.908544505299247, 24.777422504967873 ], [ -77.908397340606953, 24.777438918460163 ], [ -77.908251467954429, 24.777414731706962 ], [ -77.902552507028346, 24.775630915726524 ], [ -77.899482454107329, 24.776523676113317 ] ], [ [ -77.928078905233775, 24.771589106952273 ], [ -77.928640458398974, 24.769908380612094 ], [ -77.928696420906732, 24.769797503751732 ], [ -77.928782897942, 24.769704389650645 ], [ -77.92889355498663, 24.769635858924612 ], [ -77.935690432205178, 24.766558907107175 ], [ -77.935845634949999, 24.765069019419716 ], [ -77.929993492590469, 24.765587280508317 ], [ -77.929822220734508, 24.765575042509926 ], [ -77.929665894758841, 24.765509990336895 ], [ -77.925195732106928, 24.762703161832221 ], [ -77.92347029320949, 24.772681834896179 ], [ -77.927790396745692, 24.771580489655509 ], [ -77.927943943734164, 24.771564264566159 ], [ -77.928078905233775, 24.771589106952273 ] ], [ [ -77.900843518124518, 24.779803194730576 ], [ -77.900833206520616, 24.779863353391764 ], [ -77.90076328107348, 24.77998922078168 ], [ -77.900654174886185, 24.780089200172547 ], [ -77.900516568016258, 24.780153504814365 ], [ -77.900363930462007, 24.78017584005504 ], [ -77.900211203595077, 24.780154019529888 ], [ -77.900073337539709, 24.780090179191884 ], [ -77.899963827691451, 24.779990568226676 ], [ -77.896056305659513, 24.775099124646736 ], [ -77.895509923389355, 24.77481026858576 ], [ -77.897992856343166, 24.779018590974829 ], [ -77.898043975835691, 24.779151782684263 ], [ -77.898047511656529, 24.779292877591963 ], [ -77.898003117538693, 24.779428064362829 ], [ -77.897915138947909, 24.779544109946919 ], [ -77.897862620413974, 24.779580650470567 ], [ -77.906553404687784, 24.783887998467225 ], [ -77.906634109722646, 24.783791289640178 ], [ -77.906761208129126, 24.783710951519627 ], [ -77.907866830729262, 24.783225220821802 ], [ -77.900843518124518, 24.779803194730576 ] ], [ [ -77.893878789167644, 24.773947915591958 ], [ -77.891639073396348, 24.772763765017856 ], [ -77.895616620406784, 24.777926745427195 ], [ -77.895684682403484, 24.778053461488554 ], [ -77.895706523753645, 24.778193177749465 ], [ -77.895680006327268, 24.778332217842369 ], [ -77.895607725681657, 24.778456971543786 ], [ -77.895603406773517, 24.778460795659853 ], [ -77.896929014941421, 24.779117884580714 ], [ -77.893878789167644, 24.773947915591958 ] ], [ [ -77.889600844099917, 24.771686090369503 ], [ -77.888820589768727, 24.771273532961782 ], [ -77.892688549308957, 24.776621741363506 ], [ -77.892752501984248, 24.776750229361266 ], [ -77.892769835843779, 24.776890471676829 ], [ -77.892738853978912, 24.777028740444933 ], [ -77.892733124826833, 24.777037962421559 ], [ -77.894335841798892, 24.777832459788097 ], [ -77.889600844099917, 24.771686090369503 ] ], [ [ -77.886903409298114, 24.770259798550942 ], [ -77.88651960614105, 24.770056852401297 ], [ -77.889961733440472, 24.775393437267994 ], [ -77.890018374706742, 24.775524754261021 ], [ -77.890027797911983, 24.775665624505528 ], [ -77.89002004818326, 24.77569297339565 ], [ -77.891286886063739, 24.776321009734975 ], [ -77.886903409298114, 24.770259798550942 ] ], [ [ -77.884779413611113, 24.769136657544209 ], [ -77.881421701528211, 24.767361035603425 ], [ -77.887000011749592, 24.774014542079005 ], [ -77.887073616852163, 24.77413864842158 ], [ -77.887094586257135, 24.77424260398907 ], [ -77.888532459786802, 24.774955476919907 ], [ -77.884779413611113, 24.769136657544209 ] ], [ [ -77.992317094114952, 24.796287964305225 ], [ -77.990498774509234, 24.796392890686377 ], [ -77.990544855722547, 24.802761271588697 ], [ -77.990691239682249, 24.809325161718153 ], [ -77.994080359430768, 24.807512141927649 ], [ -77.992317094114952, 24.796287964305225 ] ], [ [ -77.99169815820143, 24.7923474236255 ], [ -77.990462592372708, 24.791388528054583 ], [ -77.990492239925558, 24.795489352605955 ], [ -77.992176388013419, 24.795392169880682 ], [ -77.99169815820143, 24.7923474236255 ] ], [ [ -77.995641254502161, 24.80206802851448 ], [ -77.996045400740726, 24.813905477396325 ], [ -77.99855670198032, 24.81397052832553 ], [ -77.999004511464307, 24.807808153732751 ], [ -77.996773607166503, 24.806639581052472 ], [ -77.996663886087731, 24.806561493936996 ], [ -77.996582360644254, 24.806458585262305 ], [ -77.996535493384201, 24.806339012716453 ], [ -77.996526999422841, 24.80621225493158 ], [ -77.996773497124593, 24.803411273200521 ], [ -77.995641254502161, 24.80206802851448 ] ], [ [ -77.995055665392769, 24.813879828346312 ], [ -77.995023186241781, 24.812928512451066 ], [ -77.994953434980502, 24.813877178663436 ], [ -77.995055665392769, 24.813879828346312 ] ], [ [ -77.994947074801416, 24.810699052871879 ], [ -77.994859748620783, 24.808140828410025 ], [ -77.993151362535656, 24.809054758560855 ], [ -77.994947074801416, 24.810699052871879 ] ], [ [ -77.989552232752516, 24.80216575782099 ], [ -77.989510920036338, 24.796449885667034 ], [ -77.987582323451633, 24.796561138583339 ], [ -77.987515559468804, 24.80162663557627 ], [ -77.989552232752516, 24.80216575782099 ] ], [ [ -77.986525591987018, 24.801748535101062 ], [ -77.986593251195274, 24.796618184473086 ], [ -77.984777039175469, 24.796722919521311 ], [ -77.984697469000395, 24.803114821844694 ], [ -77.986525591987018, 24.801748535101062 ] ], [ [ -77.983711371331864, 24.802932668077244 ], [ -77.98378801323048, 24.79677994413067 ], [ -77.982145630579922, 24.796874625058653 ], [ -77.982712093264141, 24.8019400216651 ], [ -77.983711371331864, 24.802932668077244 ] ], [ [ -77.981594512971938, 24.800829829376788 ], [ -77.981158602246779, 24.796931517076782 ], [ -77.979582209557776, 24.797022366328125 ], [ -77.979571501539624, 24.799328544247771 ], [ -77.980109738119523, 24.799459326628302 ], [ -77.980238340070585, 24.79950923987732 ], [ -77.980346491163402, 24.799590021996398 ], [ -77.981594512971938, 24.800829829376788 ] ], [ [ -77.977362334919491, 24.796246353372037 ], [ -77.978597884336878, 24.796175167422611 ], [ -77.97863291726911, 24.78865074976677 ], [ -77.976173162082745, 24.789987498789635 ], [ -77.977362334919491, 24.796246353372037 ] ], [ [ -77.977149343448986, 24.780139558608393 ], [ -77.978553264369822, 24.783950259834196 ], [ -77.978532135524745, 24.783843976677208 ], [ -77.978552882975805, 24.78370413024453 ], [ -77.979879945566566, 24.779669197731028 ], [ -77.979245506673081, 24.77904855011365 ], [ -77.977149343448986, 24.780139558608393 ] ], [ [ -77.976956400079231, 24.786262965429085 ], [ -77.978389734105107, 24.786336128950769 ], [ -77.977008168270714, 24.782586191415795 ], [ -77.976956400079231, 24.786262965429085 ] ], [ [ -77.968327218600578, 24.77675007788757 ], [ -77.976099639176098, 24.779303728847466 ], [ -77.9761421927372, 24.778685724455574 ], [ -77.973249353397321, 24.776571719281979 ], [ -77.97322033797235, 24.776543030287101 ], [ -77.973190211343962, 24.776520656623749 ], [ -77.969617284448958, 24.772881568086891 ], [ -77.969009228429044, 24.772913411521326 ], [ -77.968328893156652, 24.776745429846233 ], [ -77.968327218600578, 24.77675007788757 ] ], [ [ -77.973071008960616, 24.775047739001732 ], [ -77.973084994045649, 24.772699919427147 ], [ -77.970879320835834, 24.77281546829153 ], [ -77.973071008960616, 24.775047739001732 ] ], [ [ -77.965432170735127, 24.766896546830569 ], [ -77.96211446964459, 24.768028460062922 ], [ -77.962054433493719, 24.768045060194837 ], [ -77.961388182305754, 24.768187828558126 ], [ -77.96132909489107, 24.768197078579725 ], [ -77.96090600957335, 24.768239388012727 ], [ -77.960893692239424, 24.770606188109809 ], [ -77.960877111719896, 24.77069891635 ], [ -77.963569851613585, 24.775186771560172 ], [ -77.963683789031677, 24.775224214552839 ], [ -77.966391479615879, 24.769603983943409 ], [ -77.965432170735127, 24.766896546830569 ] ], [ [ -77.979627387599635, 24.787302824391666 ], [ -77.979586408944016, 24.796118206388513 ], [ -77.981058178952253, 24.796033387512974 ], [ -77.98072543369598, 24.793057359893986 ], [ -77.980734313628247, 24.792915089287408 ], [ -77.980791368929715, 24.792782447393407 ], [ -77.980890904865305, 24.792672672964951 ], [ -77.983868951530894, 24.79028462711921 ], [ -77.98390339855294, 24.787520967254597 ], [ -77.979627387599635, 24.787302824391666 ] ], [ [ -77.984891013533428, 24.787571333320507 ], [ -77.984855537028707, 24.790419417190879 ], [ -77.984861768828381, 24.790441740184054 ], [ -77.984853871414842, 24.790553145337306 ], [ -77.984788302067912, 24.795818353494312 ], [ -77.986605183029951, 24.795713580200211 ], [ -77.986700761752914, 24.788468889658368 ], [ -77.985590303218913, 24.787606991470689 ], [ -77.984891013533428, 24.787571333320507 ] ], [ [ -77.987679004777902, 24.78922814906705 ], [ -77.987594248127948, 24.795656534900964 ], [ -77.989504392571504, 24.795546346875643 ], [ -77.989468797815817, 24.790617246535241 ], [ -77.987679004777902, 24.78922814906705 ] ], [ [ -78.009536609644201, 24.812038893970652 ], [ -78.013389465746073, 24.814279675217879 ], [ -78.014502232443263, 24.813066609898723 ], [ -78.011651590063394, 24.807368849506528 ], [ -78.009536609644201, 24.812038893970652 ] ], [ [ -78.015205290193052, 24.812300167137746 ], [ -78.019589982760166, 24.807519900344907 ], [ -78.019582724057841, 24.807516919158015 ], [ -78.019564821722994, 24.807502089022815 ], [ -78.01954384296215, 24.80749112191862 ], [ -78.019507882136836, 24.80745492073487 ], [ -78.01946823808133, 24.807422079886898 ], [ -78.019456232735365, 24.80740292605801 ], [ -78.019439993700757, 24.807386578452043 ], [ -78.019418048928216, 24.807342005971318 ], [ -78.019391463547066, 24.807299590466375 ], [ -78.019386530349621, 24.807277987865742 ], [ -78.019376620627938, 24.80725785998645 ], [ -78.019370839988056, 24.807209279297677 ], [ -78.019359915615738, 24.807161441082922 ], [ -78.019362537442646, 24.807139504331932 ], [ -78.019359927049365, 24.80711756644493 ], [ -78.019743303717703, 24.799966246611422 ], [ -78.017500138218779, 24.801740076671162 ], [ -78.017422022036598, 24.801790640533813 ], [ -78.016734679161146, 24.802149676816967 ], [ -78.014364439134482, 24.8050971156283 ], [ -78.014242199796328, 24.805204281553696 ], [ -78.014087477816929, 24.805267440246006 ], [ -78.013918475455725, 24.805279161371683 ], [ -78.012648739282966, 24.805166949872266 ], [ -78.012167802995435, 24.806228960046187 ], [ -78.015205290193052, 24.812300167137746 ] ], [ [ -78.014620813421999, 24.803253831637782 ], [ -78.01268680797736, 24.804263996936747 ], [ -78.013734024956008, 24.804356545495171 ], [ -78.014620813421999, 24.803253831637782 ] ], [ [ -78.011298164930906, 24.81655939407689 ], [ -78.01274959239862, 24.814977209776252 ], [ -78.009130403301455, 24.812872325113748 ], [ -78.008773548122349, 24.813567257578157 ], [ -78.011298164930906, 24.81655939407689 ] ], [ [ -78.027489300439356, 24.816564027471422 ], [ -78.031042852897158, 24.815428773898311 ], [ -78.031854339962763, 24.814496663821959 ], [ -78.029958417497923, 24.813786235762436 ], [ -78.027489300439356, 24.816564027471422 ] ], [ [ -78.026765814830497, 24.806743508539491 ], [ -78.026636947700169, 24.806345363438815 ], [ -78.026633115763687, 24.806318648033013 ], [ -78.026623679996248, 24.80629311828589 ], [ -78.026623139278101, 24.806249094125633 ], [ -78.026616877707411, 24.806205439747789 ], [ -78.026622277763892, 24.806178951043599 ], [ -78.026621946860843, 24.806152009338309 ], [ -78.028765898239186, 24.792830639841913 ], [ -78.028577618646594, 24.792979555703258 ], [ -78.026376297263155, 24.803240697043915 ], [ -78.026323217600108, 24.803373236763559 ], [ -78.02622786575418, 24.80348431736676 ], [ -78.026099575374872, 24.803563065444994 ], [ -78.025950904462519, 24.803601772516508 ], [ -78.025868947956099, 24.80359905499834 ], [ -78.025476770479301, 24.807880871488717 ], [ -78.026765814830497, 24.806743508539491 ] ], [ [ -78.02449022309942, 24.807823989068844 ], [ -78.025636889633944, 24.795305392148009 ], [ -78.024679890896053, 24.796062257560223 ], [ -78.023407063266404, 24.807554931127502 ], [ -78.02449022309942, 24.807823989068844 ] ], [ [ -78.022440316612233, 24.807314782500715 ], [ -78.023591284799849, 24.796923190255072 ], [ -78.022703095398455, 24.797625607989144 ], [ -78.021398189717871, 24.807055900467134 ], [ -78.022440316612233, 24.807314782500715 ] ], [ [ -78.020435139266212, 24.806816654735524 ], [ -78.021584615878851, 24.798510131192312 ], [ -78.020776532917452, 24.799149172309519 ], [ -78.020366460639721, 24.806799592973245 ], [ -78.020435139266212, 24.806816654735524 ] ], [ [ -78.071121286359585, 24.788809649114018 ], [ -78.067261655436909, 24.783261568751819 ], [ -78.063689377249688, 24.788304037316131 ], [ -78.066116380316615, 24.789793876104497 ], [ -78.071121286359585, 24.788809649114018 ] ], [ [ -77.903154754254999, 24.748649597146603 ], [ -77.902803465046532, 24.750328845649214 ], [ -77.906126502039854, 24.749174980299351 ], [ -77.905379261405159, 24.747772944680207 ], [ -77.903154754254999, 24.748649597146603 ] ], [ [ -77.899970121974064, 24.746538287455298 ], [ -77.899382149836441, 24.746020959498733 ], [ -77.896716490459909, 24.748230654699608 ], [ -77.897197022798082, 24.749411952259425 ], [ -77.899970121974064, 24.746538287455298 ] ], [ [ -77.898867576817452, 24.755575427979604 ], [ -77.899176048064689, 24.755426912665925 ], [ -77.899296277714797, 24.755236498418437 ], [ -77.899393472136396, 24.755126766397243 ], [ -77.899523043419094, 24.755049831241788 ], [ -77.899672308272258, 24.755013223830815 ], [ -77.899826655740014, 24.755020527504978 ], [ -77.899938690588201, 24.755059729817109 ], [ -77.903731475895228, 24.753233564295456 ], [ -77.903751004093479, 24.753199826385771 ], [ -77.903861915010765, 24.753101538747952 ], [ -77.904000658060426, 24.753039358861535 ], [ -77.904153652189635, 24.753019373262404 ], [ -77.904170695138248, 24.753022077970826 ], [ -77.904335995782105, 24.75294248436186 ], [ -77.904397225680142, 24.752873371381224 ], [ -77.904526804018275, 24.752796450354417 ], [ -77.904676070323106, 24.752759859041905 ], [ -77.904711756348419, 24.752761551568067 ], [ -77.908413128839058, 24.750979225197916 ], [ -77.908423915896932, 24.7509758710139 ], [ -77.908433342470701, 24.750970024375505 ], [ -77.908448750172496, 24.750965940867367 ], [ -77.908462575031663, 24.750958507145047 ], [ -77.908501396676087, 24.750950653804821 ], [ -77.908538447391606, 24.750937473444338 ], [ -77.911125217095972, 24.7504231059924 ], [ -77.911115211169431, 24.750416168537996 ], [ -77.911027025378786, 24.750300268451905 ], [ -77.910194706665195, 24.748727450346877 ], [ -77.907429510751271, 24.749687710318909 ], [ -77.90742821140141, 24.749752655325427 ], [ -77.907377776664674, 24.749886060143069 ], [ -77.907284667097528, 24.749998703357939 ], [ -77.90715799685502, 24.750079558603378 ], [ -77.907010165342157, 24.750120711133398 ], [ -77.906855643458826, 24.750118132600335 ], [ -77.906709557040898, 24.750072075397178 ], [ -77.906586206177977, 24.749987047956111 ], [ -77.906582276275202, 24.749981913723133 ], [ -77.902200370998045, 24.751503441119308 ], [ -77.898867576817452, 24.755575427979604 ] ], [ [ -77.883918640771356, 24.763088974259119 ], [ -77.885836730501183, 24.764145392924853 ], [ -77.884833398820703, 24.762281638999347 ], [ -77.883918640771356, 24.763088974259119 ] ], [ [ -77.887401748699062, 24.765007318695069 ], [ -77.889183488822866, 24.765988566759756 ], [ -77.886266860269359, 24.761043724137362 ], [ -77.886227387041501, 24.761051321987722 ], [ -77.885579753486127, 24.761622919827921 ], [ -77.887401748699062, 24.765007318695069 ] ], [ [ -77.891881266504626, 24.767474225853679 ], [ -77.892640066187397, 24.767892078926184 ], [ -77.889882151631895, 24.763707156697201 ], [ -77.889761800032758, 24.763655870275251 ], [ -77.889648791384658, 24.763559584529915 ], [ -77.889573899928294, 24.763436124733808 ], [ -77.889544456491208, 24.763297576059419 ], [ -77.889555970798497, 24.763212178302904 ], [ -77.887917658247005, 24.760725966761864 ], [ -77.887755567739305, 24.760757167961138 ], [ -77.891881266504626, 24.767474225853679 ] ], [ [ -77.888940956563928, 24.760528985228596 ], [ -77.89036688072845, 24.762692862827933 ], [ -77.891150589241988, 24.762432660832413 ], [ -77.893492363639353, 24.761573297706686 ], [ -77.894119957231553, 24.758880961938161 ], [ -77.891927403267317, 24.75993644209921 ], [ -77.891798937747907, 24.759978793719512 ], [ -77.888940956563928, 24.760528985228596 ] ], [ [ -77.892035048577156, 24.763080413334574 ], [ -77.895022204922725, 24.767901084563807 ], [ -77.895908426838687, 24.767618631694329 ], [ -77.893088659923393, 24.762693768624029 ], [ -77.892035048577156, 24.763080413334574 ] ], [ [ -77.896851323344649, 24.767318108781215 ], [ -77.898448943466079, 24.766808893937522 ], [ -77.898456061819672, 24.766798095294778 ], [ -77.898572792831459, 24.766705584387374 ], [ -77.898715119741226, 24.766650537182649 ], [ -77.898869110697333, 24.766638342023821 ], [ -77.898938184523928, 24.766652952366773 ], [ -77.900010456341249, 24.766311167771086 ], [ -77.899739419018957, 24.766100357258324 ], [ -77.899636229677654, 24.765989170556768 ], [ -77.899577251635847, 24.765853746041429 ], [ -77.899568641004038, 24.765708219608189 ], [ -77.899806595059815, 24.763709472422853 ], [ -77.899821804160268, 24.763658372560339 ], [ -77.89983022629427, 24.763612400347352 ], [ -77.903243417275576, 24.754488476652487 ], [ -77.899889366963194, 24.756103379092501 ], [ -77.897543613691454, 24.759818382299354 ], [ -77.89744641430417, 24.759928113540752 ], [ -77.897316836802062, 24.760005047432809 ], [ -77.897198278128727, 24.760034121405489 ], [ -77.896837606904057, 24.762532268856756 ], [ -77.896788398419119, 24.762677385587967 ], [ -77.896689222300438, 24.762799357439803 ], [ -77.896551326420081, 24.762884351034664 ], [ -77.896390350137381, 24.762922726832794 ], [ -77.896224550554606, 24.762910132428445 ], [ -77.894032100867477, 24.762394264565014 ], [ -77.896851323344649, 24.767318108781215 ] ], [ [ -77.898250786532898, 24.756892279177368 ], [ -77.897607132715734, 24.75720216115003 ], [ -77.897474346314411, 24.758121924455871 ], [ -77.898250786532898, 24.756892279177368 ] ], [ [ -77.896536138870871, 24.757717773388126 ], [ -77.895257784557913, 24.758333200895414 ], [ -77.894502535005302, 24.761573301366404 ], [ -77.895930945845578, 24.761909398913289 ], [ -77.896536138870871, 24.757717773388126 ] ], [ [ -77.901091243350791, 24.765966659583807 ], [ -77.901430323424691, 24.765858573568401 ], [ -77.900655142019829, 24.764930244158609 ], [ -77.900579175525849, 24.765568381578248 ], [ -77.901091243350791, 24.765966659583807 ] ], [ [ -77.902411622280368, 24.765545767053737 ], [ -77.905422799265352, 24.764585852164529 ], [ -77.904204546693634, 24.761037812745791 ], [ -77.904182310311157, 24.760885008387454 ], [ -77.904217717049619, 24.760734289480098 ], [ -77.904306632096151, 24.760603256194408 ], [ -77.90443867229321, 24.76050720986089 ], [ -77.906281199173719, 24.759585949875635 ], [ -77.90699965529133, 24.7561839130076 ], [ -77.904655302266491, 24.753808651082633 ], [ -77.904516784427869, 24.753875348591375 ], [ -77.900850470042698, 24.763676189554804 ], [ -77.902411622280368, 24.765545767053737 ] ], [ [ -77.906356109929632, 24.764288312850532 ], [ -77.909777303838524, 24.763197576580897 ], [ -77.908242694736657, 24.752081224611171 ], [ -77.905556857680935, 24.753374539859152 ], [ -77.907898233816084, 24.75574676428041 ], [ -77.907981228682786, 24.755862558239855 ], [ -77.908021874711395, 24.755995878386258 ], [ -77.908016346111779, 24.75613417645463 ], [ -77.907207344298683, 24.759965109946243 ], [ -77.907159631454803, 24.760089439922087 ], [ -77.907074613363406, 24.760195879746856 ], [ -77.906959541697219, 24.760275350451415 ], [ -77.905268512072212, 24.761120869748535 ], [ -77.906356109929632, 24.764288312850532 ] ], [ [ -77.890885928796365, 24.763480507718352 ], [ -77.894011488983153, 24.768223207900203 ], [ -77.894074155578224, 24.768203235789777 ], [ -77.891103057770124, 24.763408417886811 ], [ -77.890885928796365, 24.763480507718352 ] ], [ [ -77.893574569175868, 24.769310032042778 ], [ -77.893488571334188, 24.769325084768393 ], [ -77.89334518033094, 24.769311494434227 ], [ -77.893212190650885, 24.769260688699063 ], [ -77.892859242005798, 24.769066333571462 ], [ -77.895861547137542, 24.773953648877225 ], [ -77.896641653159335, 24.774366067746278 ], [ -77.89679326110884, 24.774490632031441 ], [ -77.897913148946301, 24.775892556380988 ], [ -77.893574569175868, 24.769310032042778 ] ], [ [ -77.890103984132239, 24.767549067948242 ], [ -77.888208044285008, 24.766504958108467 ], [ -77.89076880031935, 24.771261089607016 ], [ -77.892984961161133, 24.772432821681406 ], [ -77.890103984132239, 24.767549067948242 ] ], [ [ -77.886643001493809, 24.765643043146909 ], [ -77.885793786343982, 24.765175343013933 ], [ -77.887778330928271, 24.767751843662385 ], [ -77.886643001493809, 24.765643043146909 ] ], [ [ -77.883695923335779, 24.76401992005729 ], [ -77.882689154515958, 24.763465411204507 ], [ -77.882414014858142, 24.763690876271379 ], [ -77.885499179848438, 24.768474696217904 ], [ -77.88704910958856, 24.769294279361773 ], [ -77.887138550789416, 24.769285067900778 ], [ -77.887289986658402, 24.769313360648539 ], [ -77.887424435290541, 24.769382995711176 ], [ -77.887528736010978, 24.769487156776901 ], [ -77.887599852441284, 24.769585498397941 ], [ -77.888245879918415, 24.769927097025477 ], [ -77.883695923335779, 24.76401992005729 ] ], [ [ -77.881663818164611, 24.764305623729328 ], [ -77.88110426037187, 24.764764146416688 ], [ -77.881359897650128, 24.766285758340707 ], [ -77.883759016929403, 24.767554486619428 ], [ -77.881663818164611, 24.764305623729328 ] ], [ [ -77.884334862900204, 24.772874316185618 ], [ -77.885130182676789, 24.773268649317533 ], [ -77.883161919165119, 24.770921041189126 ], [ -77.884317532765166, 24.772830658533156 ], [ -77.884334862900204, 24.772874316185618 ] ], [ [ -77.957670251509811, 24.877144998991668 ], [ -77.962439426037747, 24.879885192546265 ], [ -77.962435944313157, 24.879627929622117 ], [ -77.962382297690695, 24.879538563718597 ], [ -77.962353559756679, 24.879399896555952 ], [ -77.962373201889974, 24.879259915208969 ], [ -77.962429493320442, 24.879151254480949 ], [ -77.962403936727782, 24.877262648631461 ], [ -77.959930295341366, 24.875826906653568 ], [ -77.957670251509811, 24.877144998991668 ] ], [ [ -77.954904074594651, 24.885532515501811 ], [ -77.962579625349463, 24.890239912313948 ], [ -77.962550960804919, 24.888123551024407 ], [ -77.955321938812844, 24.884044044799325 ], [ -77.954904074594651, 24.885532515501811 ] ], [ [ -77.962536484492901, 24.887054595082542 ], [ -77.96250093389439, 24.884429076908152 ], [ -77.956260681553886, 24.88070004885672 ], [ -77.955579014996559, 24.883128301102108 ], [ -77.962536484492901, 24.887054595082542 ] ], [ [ -77.962486214474694, 24.883341837020556 ], [ -77.962480258657521, 24.882901886908453 ], [ -77.96245652113771, 24.882864907006812 ], [ -77.962423429784707, 24.882727049749938 ], [ -77.962438658496211, 24.882586611721742 ], [ -77.962474966920809, 24.882510978328359 ], [ -77.962453968724077, 24.880959685417807 ], [ -77.957058083782059, 24.877859419548173 ], [ -77.956519936942144, 24.879776501135726 ], [ -77.962486214474694, 24.883341837020556 ] ], [ [ -77.982175635807195, 24.908799964966697 ], [ -77.982167912633059, 24.909561687242967 ], [ -77.984421338927163, 24.909582667542573 ], [ -77.984573720674902, 24.909616478275083 ], [ -77.984050014025428, 24.908818487390384 ], [ -77.982175635807195, 24.908799964966697 ] ], [ [ -77.989672339024523, 24.898922576697959 ], [ -77.985624048720354, 24.898707206645138 ], [ -77.985741743007907, 24.89922139725277 ], [ -77.98574605591152, 24.899384341148348 ], [ -77.985686592764694, 24.899538044606043 ], [ -77.985571117993956, 24.899662437156461 ], [ -77.984587502574783, 24.900397678129586 ], [ -77.984514221345478, 24.90087408054228 ], [ -77.984469019163754, 24.901009044899393 ], [ -77.984380301946615, 24.901124663639667 ], [ -77.984256753884097, 24.9012096191335 ], [ -77.984110468749321, 24.901255595272836 ], [ -77.983955766065137, 24.901258091537436 ], [ -77.983807789365628, 24.90121686355829 ], [ -77.98368102378133, 24.90113594704475 ], [ -77.983650010873788, 24.90109842877817 ], [ -77.983238240958499, 24.901406211943936 ], [ -77.987652182186153, 24.90165992890498 ], [ -77.989672339024523, 24.898922576697959 ] ], [ [ -77.99246529507613, 24.894175479452844 ], [ -77.984082895481777, 24.891973608103754 ], [ -77.985414664750209, 24.897792422515153 ], [ -77.990274584865475, 24.898050970214094 ], [ -77.99246529507613, 24.894175479452844 ] ], [ [ -77.995565415362606, 24.888252977427616 ], [ -77.990950145835484, 24.887112055469878 ], [ -77.991309021561023, 24.888379676032685 ], [ -77.995021306340675, 24.889299884202085 ], [ -77.995565415362606, 24.888252977427616 ] ], [ [ -77.994590895343649, 24.89012801503533 ], [ -77.991593662522661, 24.889385061525019 ], [ -77.991971017410322, 24.890717892057264 ], [ -77.991975520988561, 24.890760708063183 ], [ -77.994098770797819, 24.891074872224603 ], [ -77.994590895343649, 24.89012801503533 ] ], [ [ -77.993657691597491, 24.891923505036601 ], [ -77.983735369335605, 24.890455068783993 ], [ -77.983854305237529, 24.890974772742563 ], [ -77.992913892012297, 24.893354543423651 ], [ -77.993657691597491, 24.891923505036601 ] ], [ [ -77.995216861104083, 24.882548879000719 ], [ -77.995204530357597, 24.87934623710596 ], [ -77.990849051957071, 24.879790745146963 ], [ -77.990633860248352, 24.879769203000464 ], [ -77.988700490218463, 24.87916508377527 ], [ -77.989272563763947, 24.881186070644443 ], [ -77.995216861104083, 24.882548879000719 ] ], [ [ -77.981057860269686, 24.878753906125272 ], [ -77.981190278104876, 24.879332660930629 ], [ -77.98818031523497, 24.880935628511459 ], [ -77.987580048964233, 24.87881496537241 ], [ -77.98642028261807, 24.878452547239437 ], [ -77.983275969012382, 24.879557201401401 ], [ -77.983146477383187, 24.879585186901284 ], [ -77.983013494021407, 24.879580656001735 ], [ -77.982886651593972, 24.879543936889494 ], [ -77.981057860269686, 24.878753906125272 ] ], [ [ -77.98141489282601, 24.880314362128011 ], [ -77.981436857305809, 24.880410359020889 ], [ -77.981458351443735, 24.880479444071167 ], [ -77.981457482647016, 24.880500502965603 ], [ -77.981695274365435, 24.881539769779895 ], [ -77.988924956212756, 24.883566222570881 ], [ -77.988461888806867, 24.881930360238865 ], [ -77.98141489282601, 24.880314362128011 ] ], [ [ -77.981926014930153, 24.882548198184395 ], [ -77.981991856816265, 24.88283594965274 ], [ -77.982018446549361, 24.882890665848425 ], [ -77.982032277144143, 24.883012599402754 ], [ -77.982265059481506, 24.884029920019461 ], [ -77.989567361346175, 24.885835535604656 ], [ -77.989215127181211, 24.884591272036623 ], [ -77.981926014930153, 24.882548198184395 ] ], [ [ -77.982491763459805, 24.885020655974664 ], [ -77.982535099657611, 24.885210040406761 ], [ -77.982560509962482, 24.885251027499741 ], [ -77.982591324182977, 24.885389321148377 ], [ -77.982585950957628, 24.885432265797572 ], [ -77.982776313065514, 24.886264158622588 ], [ -77.990210504852186, 24.888107352719004 ], [ -77.989851868083662, 24.886840529891366 ], [ -77.982491763459805, 24.885020655974664 ] ], [ [ -77.983003107113589, 24.887255242292351 ], [ -77.983518887111103, 24.889509110694572 ], [ -77.990917367143837, 24.890604127477545 ], [ -77.990495136261799, 24.889112741234168 ], [ -77.983003107113589, 24.887255242292351 ] ], [ [ -77.985599594770576, 24.870732254790507 ], [ -77.985633604372879, 24.870708670332952 ], [ -77.985582927287865, 24.870713821114421 ], [ -77.985599594770576, 24.870732254790507 ] ], [ [ -77.97020898067359, 24.872470252095152 ], [ -77.97257834391921, 24.87256052475966 ], [ -77.972470301306771, 24.871202520485969 ], [ -77.970346172627572, 24.871229904307221 ], [ -77.97020898067359, 24.872470252095152 ] ], [ [ -77.963597069524553, 24.892331944314623 ], [ -77.972220334494551, 24.891935570532976 ], [ -77.972104429869518, 24.889446530410712 ], [ -77.963562857019255, 24.889807847387942 ], [ -77.963577413055731, 24.890881812752397 ], [ -77.963649298467715, 24.890999680567841 ], [ -77.963679050692235, 24.89113816977731 ], [ -77.963660429037233, 24.891278267006122 ], [ -77.963595256162762, 24.891406258558636 ], [ -77.963584662508936, 24.891416652355499 ], [ -77.963597069524553, 24.892331944314623 ] ], [ [ -77.963550624933916, 24.888905272868719 ], [ -77.972009997398828, 24.888547439161268 ], [ -77.971649630314133, 24.886274235787027 ], [ -77.963519329838533, 24.886595781091984 ], [ -77.963533990381364, 24.887677743560843 ], [ -77.963577700515145, 24.887743425971312 ], [ -77.963613183846164, 24.887880787396391 ], [ -77.963600396124875, 24.888021427712825 ], [ -77.963540588944028, 24.88815158006927 ], [ -77.963540413770787, 24.888151765568121 ], [ -77.963550624933916, 24.888905272868719 ] ], [ [ -77.971507381946097, 24.885376898385982 ], [ -77.971085583773387, 24.882715987429531 ], [ -77.963472280786121, 24.883122861888154 ], [ -77.963507102184352, 24.88569329427693 ], [ -77.971507381946097, 24.885376898385982 ] ], [ [ -77.970943547066511, 24.881819914399369 ], [ -77.970595965388213, 24.87962703578825 ], [ -77.963427574908451, 24.879821980827014 ], [ -77.963460049467827, 24.882219845725739 ], [ -77.970943547066511, 24.881819914399369 ] ], [ [ -77.970453530878913, 24.878728391423763 ], [ -77.9699062985202, 24.875275639359714 ], [ -77.963362895527567, 24.875044752817995 ], [ -77.96337703358877, 24.876089152969744 ], [ -77.968885037446753, 24.875521264775958 ], [ -77.969039580696517, 24.875527545100194 ], [ -77.969184432746133, 24.875577084040824 ], [ -77.969305414597301, 24.875665032416833 ], [ -77.969390683754412, 24.875782781294316 ], [ -77.969431893431121, 24.875918804663812 ], [ -77.96942500960985, 24.876059787659212 ], [ -77.969370705968288, 24.87619192989094 ], [ -77.969274297995639, 24.876302296321029 ], [ -77.969145222725089, 24.87638008344841 ], [ -77.968996114990588, 24.876417676856025 ], [ -77.963389307248434, 24.87699575387995 ], [ -77.963415358074869, 24.87891978818811 ], [ -77.970453530878913, 24.878728391423763 ] ], [ [ -77.973066482617071, 24.888933383016319 ], [ -77.973071467230369, 24.888955821256797 ], [ -77.973209152564735, 24.891912118840253 ], [ -77.97320965752472, 24.891912168167909 ], [ -77.973350873874111, 24.891969821500346 ], [ -77.973465646694166, 24.892064456877144 ], [ -77.973542741253496, 24.892186810797472 ], [ -77.973574610933838, 24.892324906475899 ], [ -77.973558135970677, 24.89246522618734 ], [ -77.973494928890304, 24.892594034460071 ], [ -77.973391176724832, 24.892698722599679 ], [ -77.973257035427181, 24.89276904293245 ], [ -77.97324913593765, 24.892770559652824 ], [ -77.973412768805233, 24.896283474512874 ], [ -77.973483021784091, 24.896294456181206 ], [ -77.973619980420864, 24.896360109791864 ], [ -77.973727992750426, 24.896461152408897 ], [ -77.973796485785527, 24.896587693348373 ], [ -77.973818754867281, 24.896727345966809 ], [ -77.973792619995876, 24.896866440127219 ], [ -77.97372063928016, 24.896991360314232 ], [ -77.973609858591189, 24.897089878419365 ], [ -77.973471121902577, 24.897152350732661 ], [ -77.973453354340634, 24.897154707713874 ], [ -77.973545291032082, 24.899128175227553 ], [ -77.97477746381162, 24.899131311544778 ], [ -77.974690828522427, 24.898899474286015 ], [ -77.974665685334372, 24.898786627644899 ], [ -77.974530529584513, 24.897089058955185 ], [ -77.974491514174815, 24.8970165321428 ], [ -77.97446961953149, 24.896876830347995 ], [ -77.974496127258803, 24.896737794970321 ], [ -77.974501786409078, 24.896728031730131 ], [ -77.973663288266479, 24.886194529080189 ], [ -77.972642659659286, 24.886234932065559 ], [ -77.973066821690395, 24.888910406768385 ], [ -77.973066482617071, 24.888933383016319 ] ], [ [ -77.973587324632959, 24.900030401439437 ], [ -77.973690397157512, 24.902242668950265 ], [ -77.973723428728576, 24.902257503128293 ], [ -77.973834327043363, 24.902355915421833 ], [ -77.973906454352914, 24.902480766689269 ], [ -77.973932750257461, 24.902619835685584 ], [ -77.973910640587093, 24.902759509406106 ], [ -77.973842289434103, 24.902886115607885 ], [ -77.97373438737641, 24.902987261146389 ], [ -77.97372529415, 24.902991630975976 ], [ -77.97381655214123, 24.904950122688167 ], [ -77.973884076060202, 24.905011417056912 ], [ -77.973954648431828, 24.905137006001048 ], [ -77.973979214638334, 24.905276337893369 ], [ -77.97395536982313, 24.905415773993713 ], [ -77.973885447927287, 24.90554166531739 ], [ -77.973845809529635, 24.905577987816216 ], [ -77.973896431746908, 24.906664310117229 ], [ -77.9739059475868, 24.906672819114018 ], [ -77.97397755334994, 24.906797920978889 ], [ -77.974003266828277, 24.906937080601214 ], [ -77.973980570863247, 24.907076676104744 ], [ -77.973920761445839, 24.907186395833119 ], [ -77.9739501131005, 24.907816233668125 ], [ -77.978038395273927, 24.90785683255471 ], [ -77.97608870095678, 24.902640070105495 ], [ -77.976056697200136, 24.902623476374323 ], [ -77.975952398292591, 24.902519234742702 ], [ -77.975888522849388, 24.902390699379477 ], [ -77.975871323351839, 24.902250452284715 ], [ -77.975898326835619, 24.902130660425559 ], [ -77.975114900482538, 24.900034286652797 ], [ -77.973587324632959, 24.900030401439437 ] ], [ [ -77.973992176505391, 24.908718819920136 ], [ -77.974027912717602, 24.909485615994029 ], [ -77.978663384622791, 24.909528990805949 ], [ -77.978376841955111, 24.908762353152898 ], [ -77.973992176505391, 24.908718819920136 ] ], [ [ -77.973591646585902, 24.885294399151096 ], [ -77.973008507534587, 24.877966811640238 ], [ -77.972987676446465, 24.877927060342273 ], [ -77.972967350642961, 24.877787161375419 ], [ -77.972986626018468, 24.877691824750311 ], [ -77.972802494110041, 24.875377740363 ], [ -77.970911083476736, 24.875311067959295 ], [ -77.971490210261166, 24.878964856559104 ], [ -77.971518050890978, 24.879011227098037 ], [ -77.971546798741286, 24.879149891556018 ], [ -77.971534002381503, 24.879241134860717 ], [ -77.971970301615144, 24.881993592477521 ], [ -77.972022210306051, 24.882074447007852 ], [ -77.97205531184278, 24.882212301168206 ], [ -77.972040094136403, 24.882352739170525 ], [ -77.972030425976442, 24.882372882618796 ], [ -77.972500404283181, 24.885337596272588 ], [ -77.973591646585902, 24.885294399151096 ] ], [ [ -77.972730460090816, 24.874472409905454 ], [ -77.9726503995266, 24.873466174448083 ], [ -77.963336723107574, 24.873111118397304 ], [ -77.963350669443201, 24.874141520657911 ], [ -77.972730460090816, 24.874472409905454 ] ], [ [ -77.93247855647455, 24.905563592263821 ], [ -77.932494960015092, 24.905797138964076 ], [ -77.932543891441043, 24.905796132944193 ], [ -77.932825002481877, 24.905830836003126 ], [ -77.93247855647455, 24.905563592263821 ] ], [ [ -77.936832056338844, 24.902968950374081 ], [ -77.937353125501403, 24.908847277003446 ], [ -77.94108366438391, 24.911186994614585 ], [ -77.945477433511655, 24.909887845509314 ], [ -77.945127290524411, 24.909848701905172 ], [ -77.944998234281186, 24.909817732042903 ], [ -77.94488295460728, 24.909756422430235 ], [ -77.939625410985357, 24.906009762160995 ], [ -77.938195475200345, 24.906334000352803 ], [ -77.938041316472791, 24.906346206011058 ], [ -77.937890567265569, 24.906314367332101 ], [ -77.937757984110448, 24.906241600925906 ], [ -77.937656545258562, 24.906135029731303 ], [ -77.937596180244995, 24.906005085751787 ], [ -77.937582797919276, 24.905864488870609 ], [ -77.937617708083593, 24.90572700171662 ], [ -77.937697493338788, 24.905606082472168 ], [ -77.937814343660065, 24.905513567499373 ], [ -77.937956820930296, 24.90545851273593 ], [ -77.93863586964963, 24.905304540718685 ], [ -77.93806386977765, 24.904896883598333 ], [ -77.93793724883659, 24.904762460782386 ], [ -77.936832056338844, 24.902968950374081 ] ], [ [ -77.949289088865953, 24.909251686600768 ], [ -77.952925840313569, 24.909286333737519 ], [ -77.952981683109869, 24.908472450149649 ], [ -77.952874321091798, 24.90842118825373 ], [ -77.95276612046473, 24.908320301117147 ], [ -77.952697399344061, 24.908193857850513 ], [ -77.95267488454877, 24.908054235667176 ], [ -77.952700779837016, 24.90791510179367 ], [ -77.952772550242955, 24.907790075613228 ], [ -77.952883170275911, 24.907691395509385 ], [ -77.953021811663888, 24.907628720906839 ], [ -77.953039738524694, 24.907626316390278 ], [ -77.953043230683818, 24.907575419536183 ], [ -77.952043816411077, 24.90758427476635 ], [ -77.951902746449008, 24.90756517608698 ], [ -77.949289088865953, 24.909251686600768 ] ], [ [ -77.952641093698787, 24.914588912959587 ], [ -77.952593846521168, 24.914381528046736 ], [ -77.952584470283526, 24.914261601819696 ], [ -77.952863979641776, 24.910187922665806 ], [ -77.947831980837407, 24.910139961102118 ], [ -77.947036988216254, 24.910375049299311 ], [ -77.948579636482606, 24.911352705261063 ], [ -77.952013288830472, 24.910768794693634 ], [ -77.952167973721913, 24.910764944996703 ], [ -77.952316392270291, 24.910804877058535 ], [ -77.952444016375537, 24.910884682077054 ], [ -77.952538353372987, 24.910996548242093 ], [ -77.952590168874863, 24.911129525386468 ], [ -77.952594390706153, 24.911270596836964 ], [ -77.952550605447513, 24.911405953555523 ], [ -77.95246309896352, 24.911522345857112 ], [ -77.952340436926647, 24.911608380391197 ], [ -77.952194626376823, 24.911655635425685 ], [ -77.94912466902035, 24.912177703867428 ], [ -77.949936173767682, 24.914288242717326 ], [ -77.952641093698787, 24.914588912959587 ] ], [ [ -77.982223100875686, 24.904119501804814 ], [ -77.982208549188229, 24.905554253445803 ], [ -77.985484502228346, 24.905141172351165 ], [ -77.985939104649603, 24.904414363105111 ], [ -77.982223100875686, 24.904119501804814 ] ], [ [ -77.980779681264067, 24.868923267965556 ], [ -77.97740090809701, 24.868808787205747 ], [ -77.973866880925826, 24.870282290941709 ], [ -77.977879542399592, 24.870230442761297 ], [ -77.978032654514024, 24.870250540798111 ], [ -77.978171465194308, 24.870312819596208 ], [ -77.978282386793026, 24.870411182920162 ], [ -77.978354561551868, 24.870536002353006 ], [ -77.97838092442673, 24.870675059765876 ], [ -77.978358894692462, 24.87081474328803 ], [ -77.978290628616904, 24.870941379717177 ], [ -77.978182808450043, 24.871042572950063 ], [ -77.978045988360421, 24.871108417417471 ], [ -77.977893561327548, 24.871132467737262 ], [ -77.97346073874084, 24.871189741632975 ], [ -77.973572822990789, 24.872598403066696 ], [ -77.98135746831413, 24.872894678099136 ], [ -77.980779681264067, 24.868923267965556 ] ], [ [ -77.973644885861205, 24.8735040515927 ], [ -77.973724728819334, 24.874507449692615 ], [ -77.981632634166701, 24.874785900340626 ], [ -77.981489565909371, 24.87380259853002 ], [ -77.973644885861205, 24.8735040515927 ] ], [ [ -77.973796770094182, 24.875412778988785 ], [ -77.973951621003465, 24.877358684774876 ], [ -77.979737554102144, 24.877492151325217 ], [ -77.97940313458551, 24.876238115924412 ], [ -77.979390532186912, 24.876097463262777 ], [ -77.979426191390971, 24.875960142001485 ], [ -77.979506621477967, 24.875839594083658 ], [ -77.979623949303743, 24.875747619523089 ], [ -77.979766690011033, 24.875693221358201 ], [ -77.979920871244417, 24.875681724399524 ], [ -77.980071400823718, 24.87571425402345 ], [ -77.980203544013278, 24.875787626022422 ], [ -77.980304365803903, 24.875894658290285 ], [ -77.980363997048414, 24.876024873835313 ], [ -77.980618474408232, 24.876979111105207 ], [ -77.98176788136378, 24.875715428160657 ], [ -77.981764665884754, 24.875693329023132 ], [ -77.973796770094182, 24.875412778988785 ] ], [ [ -77.974023567535056, 24.878262752121756 ], [ -77.974493538008971, 24.884167761200089 ], [ -77.977036054696129, 24.880669267305439 ], [ -77.977130877178794, 24.880572560441415 ], [ -77.977251954178001, 24.880504477120141 ], [ -77.977389267492924, 24.880470650688714 ], [ -77.980365861652359, 24.880144771621367 ], [ -77.979966636297135, 24.87839983231687 ], [ -77.974023567535056, 24.878262752121756 ] ], [ [ -77.9748988946656, 24.885242640862742 ], [ -77.981472691690954, 24.884982188605228 ], [ -77.981119279358595, 24.883437647506472 ], [ -77.976380498981442, 24.88320398622518 ], [ -77.9748988946656, 24.885242640862742 ] ], [ [ -77.977014337253706, 24.882331815972286 ], [ -77.98091020968846, 24.882523913335547 ], [ -77.98056866305798, 24.881031154440752 ], [ -77.977734026586333, 24.881341496859029 ], [ -77.977014337253706, 24.882331815972286 ] ], [ [ -77.974651747800323, 24.886155392888618 ], [ -77.974682586051912, 24.886542809309205 ], [ -77.981872072126365, 24.886727567608773 ], [ -77.981677449974612, 24.885877034540972 ], [ -77.974651747800323, 24.886155392888618 ] ], [ [ -77.974754571488106, 24.887447135590431 ], [ -77.97481613771177, 24.888220551215085 ], [ -77.982473153530719, 24.889354304496951 ], [ -77.982079802425986, 24.887635369046205 ], [ -77.974754571488106, 24.887447135590431 ] ], [ [ -77.974889758773685, 24.889145382034435 ], [ -77.97502583812313, 24.890854754106311 ], [ -77.982822282604047, 24.890879939356157 ], [ -77.982689627538164, 24.890300264892893 ], [ -77.974889758773685, 24.889145382034435 ] ], [ [ -77.975097675219857, 24.891757109149246 ], [ -77.975262424391389, 24.89382645961906 ], [ -77.983502851274253, 24.893853770341931 ], [ -77.9830288810345, 24.891782716743577 ], [ -77.975097675219857, 24.891757109149246 ] ], [ [ -77.97533426787615, 24.89472882065186 ], [ -77.975470472232772, 24.896439498494736 ], [ -77.981132637584878, 24.896517313613732 ], [ -77.982432530503871, 24.894752364798993 ], [ -77.97533426787615, 24.89472882065186 ] ], [ [ -77.975542388263563, 24.897342705346638 ], [ -77.975647548096163, 24.898663386642561 ], [ -77.975823402903288, 24.899133965825879 ], [ -77.979138077220696, 24.899142328918977 ], [ -77.979319175223623, 24.899174149803859 ], [ -77.979474897288767, 24.899264276621594 ], [ -77.981839386564232, 24.90128544583283 ], [ -77.983661705735798, 24.899923336402367 ], [ -77.984156220953025, 24.89670857936277 ], [ -77.983709466242416, 24.89475656432343 ], [ -77.983621121918972, 24.894756274133673 ], [ -77.981804005548099, 24.897223521620059 ], [ -77.981691930633716, 24.897331668629597 ], [ -77.981547372200083, 24.897400666216978 ], [ -77.981386065288063, 24.897423004028742 ], [ -77.975542388263563, 24.897342705346638 ] ], [ [ -77.976160846945248, 24.900036937853589 ], [ -77.976834332583991, 24.901839080579787 ], [ -77.981255228843921, 24.902023346308564 ], [ -77.981255237534882, 24.902022490257227 ], [ -77.978940617884646, 24.900043948116437 ], [ -77.976160846945248, 24.900036937853589 ] ], [ [ -77.97717716793872, 24.902756429796483 ], [ -77.979087311136951, 24.907867230738006 ], [ -77.981195700288453, 24.907888109369249 ], [ -77.981246064913051, 24.902926015353383 ], [ -77.97717716793872, 24.902756429796483 ] ], [ [ -77.979425765261297, 24.908772748233915 ], [ -77.979712090109572, 24.909538783649499 ], [ -77.98117881133642, 24.909552467525756 ], [ -77.981186546325432, 24.908790181352352 ], [ -77.979425765261297, 24.908772748233915 ] ], [ [ -77.97226230848861, 24.892836903342204 ], [ -77.963609306827493, 24.8932346484868 ], [ -77.963648950532686, 24.896158567941534 ], [ -77.972421736226053, 24.896260127080978 ], [ -77.97226230848861, 24.892836903342204 ] ], [ [ -77.963661186729013, 24.89706090552454 ], [ -77.963694805102406, 24.899539689789918 ], [ -77.972556913250841, 24.899162313552985 ], [ -77.972463779176536, 24.897162801421235 ], [ -77.963661186729013, 24.89706090552454 ] ], [ [ -77.963707048034806, 24.900442272295116 ], [ -77.963732193026885, 24.90229581925114 ], [ -77.972697678628023, 24.902184160136034 ], [ -77.972598897055107, 24.90006362475879 ], [ -77.963707048034806, 24.900442272295116 ] ], [ [ -77.963744431565416, 24.903197872744276 ], [ -77.963766807098494, 24.904846909870265 ], [ -77.972820837114554, 24.904827768036402 ], [ -77.972739683945278, 24.903085836020626 ], [ -77.963744431565416, 24.903197872744276 ] ], [ [ -77.963779048821792, 24.905749008271282 ], [ -77.963790293945308, 24.906577607626147 ], [ -77.972898558856954, 24.906495943928473 ], [ -77.972862862787025, 24.905729795823234 ], [ -77.963779048821792, 24.905749008271282 ] ], [ [ -77.963802536830428, 24.907479662888097 ], [ -77.963805731143211, 24.907715008682263 ], [ -77.972959616463925, 24.907806380569873 ], [ -77.972940575534594, 24.907397725013823 ], [ -77.963802536830428, 24.907479662888097 ] ], [ [ -77.963817978474481, 24.908617306896303 ], [ -77.963828462846678, 24.909389669215226 ], [ -77.969415901769409, 24.909442317241435 ], [ -77.969522065430809, 24.909393591123226 ], [ -77.969675017912408, 24.909372210310515 ], [ -77.969827728907674, 24.909394981547528 ], [ -77.96993880144322, 24.909447233551564 ], [ -77.973037429063737, 24.909476329143587 ], [ -77.973001672666769, 24.908708967773244 ], [ -77.963817978474481, 24.908617306896303 ] ], [ [ -77.962620810577576, 24.893280053847278 ], [ -77.961151435209572, 24.893347535671687 ], [ -77.958744134879524, 24.896101561131957 ], [ -77.962659660095426, 24.896147082824182 ], [ -77.962620810577576, 24.893280053847278 ] ], [ [ -77.957975573328753, 24.896980787642566 ], [ -77.955431482406112, 24.899891092753247 ], [ -77.962706213526943, 24.899581754410459 ], [ -77.962671889083154, 24.897049421156698 ], [ -77.958072452722064, 24.896995941639457 ], [ -77.957975573328753, 24.896980787642566 ] ], [ [ -77.95472568158992, 24.90069846186212 ], [ -77.954487408950314, 24.900971020231943 ], [ -77.954388579716777, 24.902411613654525 ], [ -77.962743175775032, 24.90230810376255 ], [ -77.962718449301477, 24.900484337658739 ], [ -77.955065670810029, 24.900809745122483 ], [ -77.95491188516398, 24.900794179692646 ], [ -77.954770900134605, 24.900736032328133 ], [ -77.95472568158992, 24.90069846186212 ] ], [ [ -77.954326632441763, 24.903314590430625 ], [ -77.954220165973439, 24.904866496805248 ], [ -77.962777630807295, 24.904848967801097 ], [ -77.962755407128839, 24.903210158002054 ], [ -77.954326632441763, 24.903314590430625 ] ], [ [ -77.954282182025366, 24.905768501698958 ], [ -77.954287022404955, 24.90579883024439 ], [ -77.954260902340806, 24.905937928960959 ], [ -77.9541889306619, 24.906062858201583 ], [ -77.954134787024572, 24.906111015801319 ], [ -77.954096856439762, 24.906663906158879 ], [ -77.96280119574503, 24.906586442247676 ], [ -77.962789865334202, 24.905751066949797 ], [ -77.954282182025366, 24.905768501698958 ] ], [ [ -77.954034925943915, 24.907566626071635 ], [ -77.954031482273209, 24.907616822107506 ], [ -77.962816369602905, 24.907705099353738 ], [ -77.962813431440253, 24.907488498256445 ], [ -77.954034925943915, 24.907566626071635 ] ], [ [ -77.953969631192635, 24.908518381686672 ], [ -77.953916299753232, 24.909295754375105 ], [ -77.962839095569436, 24.909380324946003 ], [ -77.962828609723033, 24.908607398317137 ], [ -77.953969631192635, 24.908518381686672 ] ], [ [ -77.953823526380802, 24.910648038143737 ], [ -77.95961996995409, 24.910252048234831 ], [ -77.953854446343883, 24.910197343049703 ], [ -77.953823526380802, 24.910648038143737 ] ], [ [ -77.962548420093711, 24.913202179549398 ], [ -77.963044106978444, 24.91318277318009 ], [ -77.962994750173323, 24.912344908774397 ], [ -77.962905690741167, 24.912278727562285 ], [ -77.962821806913979, 24.912160138627524 ], [ -77.962782211579778, 24.912023713851109 ], [ -77.962790780476183, 24.911882807488567 ], [ -77.962846674660895, 24.911751212443107 ], [ -77.962944422693923, 24.911641810117544 ], [ -77.962953034689718, 24.911636743563474 ], [ -77.962873282369031, 24.910282818032211 ], [ -77.96009859767382, 24.910256579558627 ], [ -77.960227501910012, 24.910311296388272 ], [ -77.960347051959033, 24.910418271524996 ], [ -77.962548420093711, 24.913202179549398 ] ], [ [ -77.9579285640921, 24.914285923802655 ], [ -77.96004293123319, 24.91633677626367 ], [ -77.960158174933824, 24.91631512051616 ], [ -77.963221039760867, 24.916186141953315 ], [ -77.963154541622529, 24.915057393982462 ], [ -77.963102092535209, 24.915036071431331 ], [ -77.962987141585785, 24.914941593132266 ], [ -77.962909830761561, 24.914819344357433 ], [ -77.962877727719231, 24.914681291737562 ], [ -77.962893974790191, 24.914540948867185 ], [ -77.962956981439788, 24.914412053483744 ], [ -77.963060580020496, 24.9143072227223 ], [ -77.96310885225806, 24.914281833495195 ], [ -77.963097177020344, 24.91408364749693 ], [ -77.9579285640921, 24.914285923802655 ] ], [ [ -77.960918677506243, 24.917186184626804 ], [ -77.962378069934232, 24.918601645918656 ], [ -77.963353641220806, 24.918436816089887 ], [ -77.963274113226149, 24.917086988915674 ], [ -77.960918677506243, 24.917186184626804 ] ], [ [ -77.964334538735315, 24.918271079586557 ], [ -77.966070198111879, 24.917977798762955 ], [ -77.965853062768488, 24.917669337898158 ], [ -77.96431730145764, 24.917978554812301 ], [ -77.964334538735315, 24.918271079586557 ] ], [ [ -77.967393461351719, 24.918845820451679 ], [ -77.967933312990127, 24.919617291781972 ], [ -77.973040625114365, 24.924351528063188 ], [ -77.975283298857377, 24.921495530746984 ], [ -77.974501546381688, 24.921676889936972 ], [ -77.974358268398788, 24.921690393681867 ], [ -77.974216799364385, 24.921665681433232 ], [ -77.974089136561361, 24.921604848902149 ], [ -77.973999087715029, 24.921524620587888 ], [ -77.973991619402398, 24.921525358576485 ], [ -77.973840144935409, 24.921496462347694 ], [ -77.973705876255437, 24.921426295285638 ], [ -77.973601956610295, 24.921321725885178 ], [ -77.970499215695867, 24.916995116453144 ], [ -77.970435823264395, 24.916866378876758 ], [ -77.970419156824249, 24.916726077717669 ], [ -77.970450570877361, 24.916589153039386 ], [ -77.969559800701163, 24.91645785870131 ], [ -77.969426548254944, 24.916420028865051 ], [ -77.969310188120829, 24.916349759484898 ], [ -77.969219984461205, 24.91625264515832 ], [ -77.96916311890547, 24.916136417774283 ], [ -77.969144118781273, 24.916010330915938 ], [ -77.969150541852613, 24.914835696983182 ], [ -77.964146090390614, 24.915072875046413 ], [ -77.964263502396705, 24.917065541855607 ], [ -77.965976420568452, 24.916720653600652 ], [ -77.966126058614279, 24.916711753187911 ], [ -77.966271744252026, 24.916744156142254 ], [ -77.966400086480178, 24.916814884066035 ], [ -77.96649928841444, 24.916917435839274 ], [ -77.967463312071501, 24.918286901119309 ], [ -77.967525510699204, 24.918416122674437 ], [ -77.967540877413626, 24.918556547473798 ], [ -77.96750790786173, 24.918694429788047 ], [ -77.967429829182322, 24.918816272719294 ], [ -77.967393461351719, 24.918845820451679 ] ], [ [ -77.973788653089585, 24.919933860035098 ], [ -77.973578111350974, 24.917046448937445 ], [ -77.97355292163931, 24.917046376960275 ], [ -77.971501096748867, 24.9167439871078 ], [ -77.973788653089585, 24.919933860035098 ] ], [ [ -77.964093014523073, 24.914172052744799 ], [ -77.969155483464888, 24.913932127506136 ], [ -77.969166693038488, 24.911882915350116 ], [ -77.963986551644439, 24.912365050019279 ], [ -77.964093014523073, 24.914172052744799 ] ], [ [ -77.963933419152895, 24.911463189519083 ], [ -77.969171657045663, 24.910975648419146 ], [ -77.969175123182168, 24.910342218221523 ], [ -77.96386443208246, 24.910292178164877 ], [ -77.963933419152895, 24.911463189519083 ] ], [ [ -77.964976077544719, 24.919080153406753 ], [ -77.966538595952002, 24.919301162344418 ], [ -77.966235078068564, 24.918867412528833 ], [ -77.964976077544719, 24.919080153406753 ] ], [ [ -77.965981986793267, 24.920135340333125 ], [ -77.970132879452294, 24.926409166820317 ], [ -77.971495242325219, 24.926319451449427 ], [ -77.972456021432123, 24.925095983367822 ], [ -77.967306578459571, 24.920322685213854 ], [ -77.965981986793267, 24.920135340333125 ] ], [ [ -77.973511026674942, 24.916126386085811 ], [ -77.973402220486165, 24.914634063141477 ], [ -77.970140013922801, 24.91478878258755 ], [ -77.970135426714293, 24.915628880316291 ], [ -77.973511026674942, 24.916126386085811 ] ], [ [ -77.970144948343474, 24.913885213742137 ], [ -77.973336587125004, 24.913733842870016 ], [ -77.973174441775313, 24.911509774524625 ], [ -77.970156388665345, 24.911790780033304 ], [ -77.970144948343474, 24.913885213742137 ] ], [ [ -77.970161345485963, 24.910883513732124 ], [ -77.973108780021292, 24.910609083983196 ], [ -77.973092007067308, 24.910379003526501 ], [ -77.970164252341917, 24.910351517342061 ], [ -77.970161345485963, 24.910883513732124 ] ], [ [ -77.980883140690395, 24.910451866880692 ], [ -77.974084034178929, 24.91038830373946 ], [ -77.974324545623801, 24.913686972769966 ], [ -77.980882798050587, 24.913375674006712 ], [ -77.980883140690395, 24.910451866880692 ] ], [ [ -77.974390186059949, 24.914587191946168 ], [ -77.974833691247284, 24.920668989303675 ], [ -77.976115175352334, 24.920371690250875 ], [ -77.978081132129645, 24.916174084907748 ], [ -77.978149164000556, 24.91607016426309 ], [ -77.978245047401202, 24.915986481971323 ], [ -77.980814146154941, 24.914282265555627 ], [ -77.974390186059949, 24.914587191946168 ] ], [ [ -77.978920247974628, 24.935678610787498 ], [ -77.980089742938787, 24.93611450097529 ], [ -77.980229425233347, 24.93619345253363 ], [ -77.98033303271049, 24.936309771574034 ], [ -77.980389130238677, 24.936450620101692 ], [ -77.980962988493147, 24.939302296836804 ], [ -77.981519634964343, 24.938419924240566 ], [ -77.981616842613775, 24.938310109635449 ], [ -77.981746510087902, 24.938233058643796 ], [ -77.981895944680076, 24.938196313482429 ], [ -77.981983916087259, 24.938200386982633 ], [ -77.982372627657156, 24.938057729414911 ], [ -77.982359985538096, 24.938020259414468 ], [ -77.982362417877383, 24.937879156438552 ], [ -77.982412552675882, 24.937745644862932 ], [ -77.982505482255107, 24.937632793698846 ], [ -77.982632109960662, 24.93755164954025 ], [ -77.987533152420625, 24.935362360574135 ], [ -77.986311378586635, 24.934130133974882 ], [ -77.978920247974628, 24.935678610787498 ] ], [ [ -77.982251622978865, 24.928690166372022 ], [ -77.983617109543388, 24.930067489530469 ], [ -77.988446584752552, 24.925455943737163 ], [ -77.987722117936215, 24.922718289176078 ], [ -77.982251622978865, 24.928690166372022 ] ], [ [ -77.984282351766495, 24.930738481470435 ], [ -77.985081365500761, 24.931544386500672 ], [ -77.989471834555374, 24.929329952401112 ], [ -77.988722529905317, 24.926498660108503 ], [ -77.984282351766495, 24.930738481470435 ] ], [ [ -77.985762748315295, 24.932231633473659 ], [ -77.986655798013359, 24.933132351427282 ], [ -77.990277350908229, 24.932373461746607 ], [ -77.9897125450196, 24.930239456569762 ], [ -77.985762748315295, 24.932231633473659 ] ], [ [ -77.987415680792523, 24.93389874332189 ], [ -77.988457477178201, 24.934949440233034 ], [ -77.990694630945384, 24.933950010612719 ], [ -77.990509466742466, 24.933250437715003 ], [ -77.987415680792523, 24.93389874332189 ] ], [ [ -77.99053252999056, 24.940633426890475 ], [ -77.990456338562453, 24.940633858444681 ], [ -77.989381509902259, 24.940447539036061 ], [ -77.987840631022351, 24.941492166517545 ], [ -77.988523187104349, 24.942963492404928 ], [ -77.989785136461137, 24.94263816836234 ], [ -77.99053252999056, 24.940633426890475 ] ], [ [ -77.990837336482016, 24.937349529998105 ], [ -77.992787408444713, 24.939316073445074 ], [ -77.992911757705244, 24.939293053024688 ], [ -77.992238696773398, 24.936199041283174 ], [ -77.990837336482016, 24.937349529998105 ] ], [ [ -77.993881363661984, 24.939113548881114 ], [ -77.995378462205466, 24.938836376314022 ], [ -77.994051280581402, 24.93593253704335 ], [ -77.994014828582394, 24.935795387776064 ], [ -77.994026641507617, 24.935654680233998 ], [ -77.994085562866573, 24.935524187855528 ], [ -77.994185824902218, 24.935416684104212 ], [ -77.994317613226514, 24.935342692128348 ], [ -77.994468027536854, 24.935309454707852 ], [ -77.994622344366007, 24.93532022530729 ], [ -77.994765458266585, 24.935373949621578 ], [ -77.994883360376789, 24.935465368780129 ], [ -77.994964509658033, 24.935585534106657 ], [ -77.996366686039778, 24.938653407956963 ], [ -77.997326208778318, 24.938475746899954 ], [ -77.99699156492629, 24.935918771127245 ], [ -77.993667295112729, 24.935026157149309 ], [ -77.993094486349563, 24.935496439172621 ], [ -77.993881363661984, 24.939113548881114 ] ], [ [ -78.022958353750724, 24.953587723983656 ], [ -78.023226296582251, 24.946829983671201 ], [ -78.023188587397328, 24.946820381627045 ], [ -78.020768489377588, 24.945809948514608 ], [ -78.020402670794965, 24.949053008138865 ], [ -78.021042026385956, 24.949542502057195 ], [ -78.021129701068418, 24.949629942612319 ], [ -78.021189378166753, 24.949735180298575 ], [ -78.022709772274808, 24.953586794179518 ], [ -78.022718434973612, 24.953628220994307 ], [ -78.02282947373898, 24.95359159855515 ], [ -78.022958353750724, 24.953587723983656 ] ], [ [ -78.023264756380399, 24.945860021259612 ], [ -78.023567096474721, 24.938235178313473 ], [ -78.021715130570627, 24.937417373288216 ], [ -78.020875371091179, 24.944862403116566 ], [ -78.023264756380399, 24.945860021259612 ] ], [ [ -78.014107083768224, 24.942036193696016 ], [ -78.014061714798046, 24.940314881985316 ], [ -78.01131574345483, 24.93642846544563 ], [ -78.011323246547775, 24.936448786757754 ], [ -78.012320217870183, 24.941289982453871 ], [ -78.014107083768224, 24.942036193696016 ] ], [ [ -78.011218819187661, 24.940830012646401 ], [ -78.010391372635667, 24.936811844109947 ], [ -78.009448256823163, 24.936284171459739 ], [ -78.009281714597648, 24.937449184454092 ], [ -78.009266182951421, 24.937497591920355 ], [ -78.010652744526169, 24.940593601953186 ], [ -78.011218819187661, 24.940830012646401 ] ], [ [ -78.082723371685688, 25.009464965262591 ], [ -78.078448070700645, 25.009481822127913 ], [ -78.078759766808318, 25.010391233989406 ], [ -78.078900099519103, 25.010344061686677 ], [ -78.082722997892915, 25.009651182705635 ], [ -78.082723371685688, 25.009464965262591 ] ], [ [ -78.077412428091066, 25.009485886981711 ], [ -78.076112662405095, 25.009490978282024 ], [ -78.076114717418704, 25.011427328809425 ], [ -78.078136810604917, 25.011599393549929 ], [ -78.077412428091066, 25.009485886981711 ] ], [ [ -78.084749081970415, 24.997634636342777 ], [ -78.082234892540498, 24.997576701963936 ], [ -78.08207070928934, 25.002023167756409 ], [ -78.085137901580296, 25.002065126692077 ], [ -78.084749081970415, 24.997634636342777 ] ], [ [ -78.081245392755932, 24.997553889229394 ], [ -78.080910680086035, 24.997546170991605 ], [ -78.080830013943, 24.999837899057411 ], [ -78.081158321633154, 24.99991144237422 ], [ -78.081245392755932, 24.997553889229394 ] ], [ [ -78.079921191602978, 24.99752334965434 ], [ -78.077428708397079, 24.997465834235715 ], [ -78.077317463689056, 24.997511794800179 ], [ -78.077163588139243, 24.997527491347338 ], [ -78.077011921458379, 24.997499084961078 ], [ -78.076925295166276, 24.997454212598086 ], [ -78.076099947869892, 24.997435155183904 ], [ -78.076101357836791, 24.99877855303518 ], [ -78.079847452708535, 24.999617793189287 ], [ -78.079921191602978, 24.99752334965434 ] ], [ [ -78.076102333991585, 24.999707665414412 ], [ -78.076111706304005, 25.008588940040124 ], [ -78.077778786537777, 25.008582408999334 ], [ -78.077781402995413, 25.008582059278165 ], [ -78.077783538491147, 25.008582390356072 ], [ -78.082725182795272, 25.00856292054296 ], [ -78.082736500182534, 25.002934412542714 ], [ -78.081551686574883, 25.002918193658676 ], [ -78.081397388922483, 25.002893482129348 ], [ -78.081259297256935, 25.002826059468159 ], [ -78.081151248613835, 25.002722681549482 ], [ -78.081084069590077, 25.002593707024058 ], [ -78.081064491503881, 25.002452059342147 ], [ -78.081124297403449, 25.000832701981853 ], [ -78.076102333991585, 24.999707665414412 ] ], [ [ -78.08372629851047, 25.002947954600263 ], [ -78.083715352284941, 25.008413541064883 ], [ -78.085666007638423, 25.008060150954886 ], [ -78.08566315330259, 25.008049377576636 ], [ -78.085217173241915, 25.002968339714592 ], [ -78.08372629851047, 25.002947954600263 ] ], [ [ -78.07511013811407, 24.997412294226034 ], [ -78.071828775684509, 24.997336459444192 ], [ -78.073195335604225, 25.008600320338989 ], [ -78.075121834825666, 25.008592809153001 ], [ -78.075112210578524, 24.999401590689882 ], [ -78.0751042865448, 24.999395354645003 ], [ -78.075024104124694, 24.999274639028833 ], [ -78.074988778909955, 24.999137250943498 ], [ -78.075001768643745, 24.998996638937342 ], [ -78.075061801640842, 24.998866567096247 ], [ -78.075111598047144, 24.998814015331604 ], [ -78.07511013811407, 24.997412294226034 ] ], [ [ -78.070830156879126, 24.997313366148468 ], [ -78.068721228308888, 24.997264574512126 ], [ -78.068472466490988, 25.002636515635906 ], [ -78.068442857826355, 25.002772261309758 ], [ -78.068369474751705, 25.002893433821672 ], [ -78.068259227292444, 25.002988622909992 ], [ -78.068122496895285, 25.003048865024077 ], [ -78.067972158861991, 25.003068487402167 ], [ -78.065507069044898, 25.003041996879784 ], [ -78.065716652762703, 25.003639466596027 ], [ -78.065778934520495, 25.003670422588236 ], [ -78.065885310356634, 25.003772964162621 ], [ -78.065951708531031, 25.003900443041726 ], [ -78.065971629440085, 25.00404038076956 ], [ -78.065943122936901, 25.004179079299178 ], [ -78.065919682259675, 25.004218245061104 ], [ -78.067464732096468, 25.008622515453244 ], [ -78.072199895538915, 25.008604191640828 ], [ -78.070830156879126, 24.997313366148468 ] ], [ [ -78.067731618223647, 24.997241668773533 ], [ -78.063437641810737, 24.997142202693556 ], [ -78.065189430123255, 25.002136475669136 ], [ -78.067503759473936, 25.002161354013595 ], [ -78.067731618223647, 24.997241668773533 ] ], [ [ -78.08842928134689, 25.008479179782388 ], [ -78.088084677348277, 25.008541618447065 ], [ -78.088425718531525, 25.008540256380023 ], [ -78.08842928134689, 25.008479179782388 ] ], [ [ -78.065054941096591, 24.986690166502193 ], [ -78.062058721941057, 24.986860612484637 ], [ -78.062458426282575, 24.98808608581064 ], [ -78.065136527425878, 24.986906765804367 ], [ -78.065054941096591, 24.986690166502193 ] ], [ [ -78.060144665959271, 24.980991794190299 ], [ -78.06284204340372, 24.980199630409718 ], [ -78.062937834364675, 24.980109386478453 ], [ -78.063074596939344, 24.980043255401249 ], [ -78.063227086186984, 24.980018881556912 ], [ -78.063380375541257, 24.980038650788689 ], [ -78.063384265382524, 24.980040384134629 ], [ -78.067935682152239, 24.978703577808059 ], [ -78.068046581417605, 24.978213712628946 ], [ -78.063898841486278, 24.978284202631738 ], [ -78.059585394443062, 24.979276842479926 ], [ -78.060144665959271, 24.980991794190299 ] ], [ [ -78.061045011119006, 24.986918265766146 ], [ -78.059875371643344, 24.986984778644214 ], [ -78.060885229921752, 24.989864489559487 ], [ -78.060931629611432, 24.989884964493321 ], [ -78.06104331375812, 24.989982695507415 ], [ -78.061054664520384, 24.990002017189891 ], [ -78.061983778122951, 24.989796507143204 ], [ -78.061714501381715, 24.988970926961301 ], [ -78.061682340013661, 24.988928731828416 ], [ -78.061637623790773, 24.98879363415454 ], [ -78.061638890644048, 24.988739108234022 ], [ -78.061045011119006, 24.986918265766146 ] ], [ [ -78.067705844040532, 24.97971881120662 ], [ -78.063896920078349, 24.980837536998013 ], [ -78.065746096487757, 24.985747040649155 ], [ -78.066348822204006, 24.985712743421566 ], [ -78.067705844040532, 24.97971881120662 ] ], [ [ -78.062954780873412, 24.981114236705665 ], [ -78.060426723841786, 24.98185667478743 ], [ -78.061769310405623, 24.985973272448767 ], [ -78.064721653733102, 24.985805329448596 ], [ -78.062954780873412, 24.981114236705665 ] ], [ [ -78.059484492202742, 24.982133375834881 ], [ -78.058296532486736, 24.982482228785901 ], [ -78.059564634125664, 24.98609864633605 ], [ -78.060755606467993, 24.986030923079728 ], [ -78.059484492202742, 24.982133375834881 ] ], [ [ -78.011816625650326, 24.992812073539273 ], [ -78.013367357634152, 24.999341099817112 ], [ -78.020060014095179, 24.999298118436545 ], [ -78.019870285227725, 24.997667997248641 ], [ -78.01908848781774, 24.997658682669996 ], [ -78.018935880450513, 24.997634786757203 ], [ -78.018798844932945, 24.997569082909536 ], [ -78.018690795359802, 24.997468002727796 ], [ -78.01862230838826, 24.997341440716198 ], [ -78.018600087916511, 24.997201785711958 ], [ -78.018626308891356, 24.997062708154495 ], [ -78.018698404465823, 24.996937821914329 ], [ -78.018809317319224, 24.996839351676385 ], [ -78.018948190516568, 24.996776936321879 ], [ -78.019101430265465, 24.99675668543486 ], [ -78.022603824557748, 24.996798384309429 ], [ -78.022310458307345, 24.99465558528971 ], [ -78.021237374773179, 24.99469832453865 ], [ -78.021187172068707, 24.994693113352543 ], [ -78.021136645084624, 24.994692952731111 ], [ -78.021110683295689, 24.994685173562509 ], [ -78.021083529877444, 24.994682354937186 ], [ -78.021037551255503, 24.994663260308833 ], [ -78.020989551726828, 24.99464887772573 ], [ -78.020967498309759, 24.994634167727018 ], [ -78.020942629608143, 24.994623839887836 ], [ -78.020905375818458, 24.994592730945769 ], [ -78.020864602315555, 24.994565534279765 ], [ -78.020848616027081, 24.994545333379101 ], [ -78.020828466381928, 24.994528507295449 ], [ -78.020803584100307, 24.994488429222578 ], [ -78.020774027833411, 24.994451080693938 ], [ -78.020765673520287, 24.994427366309782 ], [ -78.020752215320982, 24.994405689048193 ], [ -78.020742140181426, 24.99436056498973 ], [ -78.020726694307115, 24.994316720555137 ], [ -78.019621610333559, 24.987810499670992 ], [ -78.018328277025162, 24.988168127497431 ], [ -78.019266708744368, 24.993349950974483 ], [ -78.019267716013132, 24.993491063550412 ], [ -78.019220827293495, 24.993625553260372 ], [ -78.019130632240817, 24.993740255285477 ], [ -78.019005959708721, 24.993823941729513 ], [ -78.018859013544841, 24.993868420707674 ], [ -78.018704177981107, 24.993869338253013 ], [ -78.01855660955998, 24.993826604534004 ], [ -78.018430753445912, 24.993744402653846 ], [ -78.018338929378771, 24.993630779168114 ], [ -78.0182901257065, 24.993496856407859 ], [ -78.017372965453546, 24.98843227845262 ], [ -78.017133668969251, 24.988498444652137 ], [ -78.016990661571867, 24.98851786949454 ], [ -78.01684759769158, 24.988498793167736 ], [ -78.016716689526845, 24.98844284405034 ], [ -78.016609111617583, 24.988354798049773 ], [ -78.01522442283202, 24.986833384686449 ], [ -78.015474364329634, 24.988041106072568 ], [ -78.015593030903489, 24.988093082141695 ], [ -78.015705029799406, 24.988190519055543 ], [ -78.015778511031314, 24.98831473063785 ], [ -78.015806281670592, 24.988453558261313 ], [ -78.015785623190695, 24.988593412549967 ], [ -78.015718557630024, 24.988720603587101 ], [ -78.015632079824883, 24.988803174006666 ], [ -78.017139400748832, 24.996085800286533 ], [ -78.017143948019225, 24.996226855167215 ], [ -78.017100444534975, 24.996362286948873 ], [ -78.017013148577533, 24.996478838599131 ], [ -78.016890605210335, 24.996565101169328 ], [ -78.01674480985632, 24.996612630605249 ], [ -78.016590034093099, 24.996616774337735 ], [ -78.016441428608474, 24.996577126730347 ], [ -78.016313540085335, 24.996497568793099 ], [ -78.016218887216468, 24.99638588827229 ], [ -78.01616673525983, 24.996253017308234 ], [ -78.014694436992258, 24.989139350324844 ], [ -78.013463815657019, 24.989532825431102 ], [ -78.014140029374047, 24.992849166908933 ], [ -78.014144157511112, 24.992990232866102 ], [ -78.014100252924194, 24.993125557175048 ], [ -78.014012613157917, 24.993241893323212 ], [ -78.013889816930927, 24.993327853456574 ], [ -78.013743884418716, 24.993375023125555 ], [ -78.013589100625467, 24.993378784977782 ], [ -78.01344061702514, 24.993338770758299 ], [ -78.013312968369306, 24.993258897364058 ], [ -78.013218649870112, 24.993146983420665 ], [ -78.013166894054166, 24.993013983917464 ], [ -78.012518711992954, 24.989835001627764 ], [ -78.011249245549507, 24.990240874286783 ], [ -78.011816625650326, 24.992812073539273 ] ], [ [ -78.005951175527258, 25.006244430745092 ], [ -78.00713950868807, 25.006063668982257 ], [ -78.005798505396726, 24.999001430073779 ], [ -78.004620622165518, 24.999268344263633 ], [ -78.005951175527258, 25.006244430745092 ] ], [ [ -78.01289691975461, 25.005187747905673 ], [ -78.014646700571163, 25.004921493764545 ], [ -78.014216335783374, 25.000237763944874 ], [ -78.013447885475244, 25.000242684643357 ], [ -78.01289691975461, 25.005187747905673 ] ], [ [ -78.0156263569082, 25.004772415705226 ], [ -78.017746257168, 25.004449799366228 ], [ -78.017103836912327, 25.000219238565027 ], [ -78.01520906952581, 25.000231401182429 ], [ -78.0156263569082, 25.004772415705226 ] ], [ [ -78.018102147124793, 25.000212820632449 ], [ -78.018723000897396, 25.004301143352496 ], [ -78.020608946026044, 25.004014092073508 ], [ -78.02016493305463, 25.000199538144031 ], [ -78.018102147124793, 25.000212820632449 ] ], [ [ -78.021587048192757, 25.003865209712181 ], [ -78.023530913401316, 25.003569303321981 ], [ -78.022727541728884, 24.997702004410758 ], [ -78.020867049008899, 24.997679867021887 ], [ -78.021587048192757, 25.003865209712181 ] ], [ [ -78.024508093472264, 25.003420541339622 ], [ -78.02642418142031, 25.003128824382909 ], [ -78.025446652111953, 24.997734316189792 ], [ -78.023726671638897, 24.997713883087055 ], [ -78.024508093472264, 25.003420541339622 ] ], [ [ -78.027400517770417, 25.002980171080221 ], [ -78.028997649853778, 25.002736983371435 ], [ -78.027884504297205, 24.99776324329531 ], [ -78.026452045975816, 24.997746250868019 ], [ -78.027400517770417, 25.002980171080221 ] ], [ [ -78.023602947216659, 24.996810264507918 ], [ -78.025282834432431, 24.996830224240938 ], [ -78.024870333577894, 24.994553598133031 ], [ -78.023302526018, 24.994616065878748 ], [ -78.023602947216659, 24.996810264507918 ] ], [ [ -78.026288221022767, 24.996842160723858 ], [ -78.028296169607998, 24.996865979738551 ], [ -78.028460437178836, 24.996893620957913 ], [ -78.028605257619134, 24.996969491984633 ], [ -78.028714132618106, 24.997084949405505 ], [ -78.028774658762657, 24.997226840016339 ], [ -78.029991581636651, 25.002664103634128 ], [ -78.030460763050471, 25.002676223090905 ], [ -78.028123173440548, 24.994423939154689 ], [ -78.025866345979239, 24.994513904405792 ], [ -78.026288221022767, 24.996842160723858 ] ], [ [ -78.02775247005475, 24.993115134992639 ], [ -78.02748374835123, 24.992166365250149 ], [ -78.027397175899353, 24.992184534436884 ], [ -78.027242711323154, 24.992194299239532 ], [ -78.027092495932024, 24.99216008364025 ], [ -78.026961234002997, 24.992085236920691 ], [ -78.02686177445247, 24.991977085656924 ], [ -78.026803853062574, 24.991846216521065 ], [ -78.026799056891093, 24.991783194860634 ], [ -78.02668146226398, 24.991701089454502 ], [ -78.026593663660691, 24.991584855133279 ], [ -78.023982187046855, 24.986604633255219 ], [ -78.020578220005916, 24.987545973095699 ], [ -78.021534536935661, 24.993176134300487 ], [ -78.02775247005475, 24.993115134992639 ] ], [ [ -78.034885818565073, 25.059539154592123 ], [ -78.037521911581052, 25.058844095628384 ], [ -78.037245468362016, 25.054763012505273 ], [ -78.037254216100891, 25.054679790622423 ], [ -78.035144634646187, 25.054483080463285 ], [ -78.034885818565073, 25.059539154592123 ] ], [ [ -78.038506986195415, 25.058739045410139 ], [ -78.040671108560957, 25.058620035662152 ], [ -78.040508250871696, 25.056838273358419 ], [ -78.038423495879556, 25.055029517840453 ], [ -78.038329418187089, 25.05491740698335 ], [ -78.038277977505444, 25.05478430150055 ], [ -78.038277734872494, 25.054775218551054 ], [ -78.038238204248501, 25.054771533042725 ], [ -78.038506986195415, 25.058739045410139 ] ], [ [ -78.040384585419488, 25.055485241603595 ], [ -78.040337239568217, 25.054967214679571 ], [ -78.039721336436472, 25.054909800563458 ], [ -78.040384585419488, 25.055485241603595 ] ], [ [ -77.996067114438148, 25.124597324301934 ], [ -77.995909202797648, 25.12377083607802 ], [ -77.995904892999206, 25.123643824390214 ], [ -77.995939667565139, 25.123520758980984 ], [ -77.995946008124207, 25.123506839975381 ], [ -77.994022581092722, 25.122813760522558 ], [ -77.994013007851876, 25.122863469972973 ], [ -77.993404593254141, 25.124477172160184 ], [ -77.996067114438148, 25.124597324301934 ] ], [ [ -78.000163608858799, 25.118062419612642 ], [ -77.999624348535662, 25.117786444152326 ], [ -77.999032979489144, 25.11908476848917 ], [ -77.999437520052425, 25.11923761491451 ], [ -78.000163608858799, 25.118062419612642 ] ], [ [ -78.076933695964769, 25.117864552442136 ], [ -78.065593638365044, 25.113825260403534 ], [ -78.064393245556957, 25.116605107336088 ], [ -78.064435363031478, 25.116716776962939 ], [ -78.064437937495114, 25.116857866169536 ], [ -78.06439249848637, 25.116992774286228 ], [ -78.064303493750273, 25.117108295538852 ], [ -78.064179635620462, 25.117193121839968 ], [ -78.064133030918669, 25.117207691972173 ], [ -78.063523164933613, 25.118619950118806 ], [ -78.063947891119668, 25.118811815153531 ], [ -78.064313112624632, 25.11788807499514 ], [ -78.064385020088963, 25.117767677692243 ], [ -78.064493324006904, 25.117672500539257 ], [ -78.064628024559568, 25.117611331271355 ], [ -78.064776684786651, 25.117589817647083 ], [ -78.064925578875943, 25.117609946007221 ], [ -78.074701541806647, 25.120362065100036 ], [ -78.074840632949531, 25.120424321179005 ], [ -78.074951785548379, 25.12052266136379 ], [ -78.075024119233589, 25.120647459503257 ], [ -78.075050553403486, 25.120786499553837 ], [ -78.075028500352246, 25.120926171345019 ], [ -78.074960118627942, 25.121052802823058 ], [ -78.074852101799337, 25.121153998368978 ], [ -78.074715023284952, 25.121219852186318 ], [ -78.074562301361468, 25.12124391797677 ], [ -78.074408885659921, 25.121223839974704 ], [ -78.072582395166862, 25.120709709542627 ], [ -78.071085642892498, 25.126081515604628 ], [ -78.072730876467148, 25.126642814755371 ], [ -78.073571966900275, 25.124916854552815 ], [ -78.074572358597806, 25.122425234404918 ], [ -78.074586833119426, 25.12234165625215 ], [ -78.07465464740649, 25.122220278115133 ], [ -78.075411368876559, 25.120335486725871 ], [ -78.065293322480983, 25.117518405082969 ], [ -78.065154026981915, 25.117456532644876 ], [ -78.065042549646975, 25.117358498666512 ], [ -78.064969802676515, 25.117233899467973 ], [ -78.064942906975133, 25.117094931754895 ], [ -78.064964495136778, 25.116955198694029 ], [ -78.065032453803468, 25.116828378325643 ], [ -78.06514013059585, 25.11672688466372 ], [ -78.065276985337135, 25.116660652543818 ], [ -78.065429621807468, 25.116636165159335 ], [ -78.06558309903032, 25.11665581946734 ], [ -78.076198796516962, 25.119611442098574 ], [ -78.076227447662234, 25.119616549302915 ], [ -78.076240034596765, 25.119622921788093 ], [ -78.076355666557234, 25.119655110869594 ], [ -78.076933695964769, 25.117864552442136 ] ], [ [ -78.077303193287733, 25.119918874740371 ], [ -78.079098828324689, 25.120418706917093 ], [ -78.079286301796685, 25.119075942242993 ], [ -78.077943654361746, 25.11793487048768 ], [ -78.077303193287733, 25.119918874740371 ] ], [ [ -78.074811845647673, 25.124456208094312 ], [ -78.076227891531886, 25.124154086935985 ], [ -78.076522748615105, 25.123387052092667 ], [ -78.075376866250053, 25.123048910108277 ], [ -78.074811845647673, 25.124456208094312 ] ], [ [ -78.071634574933483, 25.120442901057014 ], [ -78.068035485229743, 25.119429700427851 ], [ -78.066708933712945, 25.123797898399548 ], [ -78.066644768077509, 25.123926347326712 ], [ -78.066540143068707, 25.124030457931617 ], [ -78.066405300080618, 25.124100039072676 ], [ -78.066253438552394, 25.124128279593627 ], [ -78.066099423889227, 25.124112415073451 ], [ -78.065958332279095, 25.124053998443244 ], [ -78.065843974869566, 25.123958747973973 ], [ -78.065767545791374, 25.12383598751542 ], [ -78.065736526387212, 25.123697733785967 ], [ -78.065753952911763, 25.123557520065976 ], [ -78.067088504909478, 25.11916309263292 ], [ -78.065085027291758, 25.118599019681099 ], [ -78.064778697282421, 25.119373819631726 ], [ -78.064787951254019, 25.119398838614515 ], [ -78.064789603544313, 25.119539939189046 ], [ -78.064743282573644, 25.119674598659117 ], [ -78.064653522420457, 25.119789635589008 ], [ -78.064599976117975, 25.119825854643629 ], [ -78.063191574730382, 25.123387983302564 ], [ -78.065358858483407, 25.124127537152862 ], [ -78.065359273115718, 25.124127608405885 ], [ -78.065359720495678, 25.124127831293535 ], [ -78.06788511839413, 25.124989533149257 ], [ -78.067885764439836, 25.124989646442412 ], [ -78.067886428165352, 25.124989980047058 ], [ -78.070152178003909, 25.125763037528792 ], [ -78.071634574933483, 25.120442901057014 ] ], [ [ -78.0211968249628, 25.132337986359534 ], [ -78.02078257585697, 25.121948880936369 ], [ -78.019181837577094, 25.122365604891449 ], [ -78.019743050973034, 25.133289001659783 ], [ -78.0211968249628, 25.132337986359534 ] ], [ [ -78.021510560581973, 25.136993343989641 ], [ -78.021978906844836, 25.139631266667514 ], [ -78.023497679152328, 25.13957908871507 ], [ -78.023321726643104, 25.135508861193525 ], [ -78.021510560581973, 25.136993343989641 ] ], [ [ -78.039240739355904, 25.111122992545077 ], [ -78.041221719414509, 25.111122954665689 ], [ -78.041199079744644, 25.109029016990576 ], [ -78.041197227244183, 25.109026800773677 ], [ -78.041146070314994, 25.108893598561426 ], [ -78.041142624778729, 25.108752522112923 ], [ -78.041187227749475, 25.108617380992051 ], [ -78.041194526055193, 25.108607793474718 ], [ -78.041146456237186, 25.104160157866094 ], [ -78.03905679917797, 25.103997346885951 ], [ -78.039240739355904, 25.111122992545077 ] ], [ [ -78.036000391917668, 25.090735112840161 ], [ -78.035771705071795, 25.090510551773175 ], [ -78.035775089087323, 25.090627645701623 ], [ -78.036000391917668, 25.090735112840161 ] ], [ [ -78.036992112030774, 25.090382352187618 ], [ -78.036968464960353, 25.088742961020774 ], [ -78.035689484700427, 25.087665353642777 ], [ -78.035732248269397, 25.089145216043686 ], [ -78.036992112030774, 25.090382352187618 ] ], [ [ -78.036950522814834, 25.087498933872766 ], [ -78.036927645291755, 25.085912529851242 ], [ -78.036190486320933, 25.086858559376541 ], [ -78.036950522814834, 25.087498933872766 ] ], [ [ -78.040733061876125, 25.078709380107167 ], [ -78.040725467170944, 25.078569915301944 ], [ -78.04060278551114, 25.078580436270549 ], [ -78.040350919547365, 25.078729951117051 ], [ -78.040733061876125, 25.078709380107167 ] ], [ [ -78.039287455011575, 25.077787188849591 ], [ -78.039978027514834, 25.077727971424949 ], [ -78.039973971105866, 25.077723336570259 ], [ -78.039919563600918, 25.077591210621957 ], [ -78.039912649719938, 25.07745023921154 ], [ -78.039953906084193, 25.077314221624178 ], [ -78.04003929408789, 25.077196472185083 ], [ -78.040160455280457, 25.077108516969741 ], [ -78.041503803909208, 25.076414688180552 ], [ -78.041349732153407, 25.076404507626524 ], [ -78.041206226412285, 25.076351304513143 ], [ -78.041087796263909, 25.07626031730566 ], [ -78.041006034519484, 25.076140452533981 ], [ -78.040972045000345, 25.076014896499334 ], [ -78.039077769943106, 25.077105349532253 ], [ -78.03916125713846, 25.077188519577525 ], [ -78.03922534824359, 25.077316993230191 ], [ -78.039242711297206, 25.077457216441406 ], [ -78.039217169171934, 25.077570885958174 ], [ -78.039287455011575, 25.077787188849591 ] ], [ [ -78.041606982136557, 25.077398409337192 ], [ -78.041631169065326, 25.077436811015389 ], [ -78.041662958772335, 25.077574920763237 ], [ -78.041663422376146, 25.07758343315362 ], [ -78.042399120031433, 25.077520334180246 ], [ -78.042352744610042, 25.077013222441778 ], [ -78.041606982136557, 25.077398409337192 ] ], [ [ -78.03877565883603, 25.076212127472267 ], [ -78.040875753498327, 25.075003189492051 ], [ -78.040817155377155, 25.074374220559392 ], [ -78.038593095028901, 25.075650272148742 ], [ -78.03877565883603, 25.076212127472267 ] ], [ [ -78.038301116956717, 25.074751672060806 ], [ -78.040722871203187, 25.07336218978925 ], [ -78.040698916580183, 25.073105060506961 ], [ -78.037821055574625, 25.073274185942459 ], [ -78.038301116956717, 25.074751672060806 ] ], [ [ -78.030299711538774, 25.071316865936865 ], [ -78.033837415464006, 25.068938927384242 ], [ -78.033387081530478, 25.068440359406235 ], [ -78.029886810662049, 25.070565820266815 ], [ -78.030299711538774, 25.071316865936865 ] ], [ [ -78.041832570442793, 25.071324688287255 ], [ -78.041602536864531, 25.068808806556785 ], [ -78.039651211624715, 25.069427323297699 ], [ -78.040517025296523, 25.071411790728337 ], [ -78.041398621861049, 25.071353421383346 ], [ -78.041486643851556, 25.071328946261772 ], [ -78.041641552785876, 25.07133146545555 ], [ -78.041656993077652, 25.071336313968686 ], [ -78.041832570442793, 25.071324688287255 ] ], [ [ -78.039481204118857, 25.071480364355658 ], [ -78.038714959816787, 25.069724078533117 ], [ -78.037777013666329, 25.070021363665784 ], [ -78.036345183947148, 25.070624594017179 ], [ -78.036614231083149, 25.071670126349339 ], [ -78.036768169368187, 25.071659938747047 ], [ -78.036778661998397, 25.071655383752724 ], [ -78.036932276672061, 25.071637003525336 ], [ -78.036983603742414, 25.071645681077431 ], [ -78.039481204118857, 25.071480364355658 ] ], [ [ -78.035614012575465, 25.071736316683801 ], [ -78.035403955837324, 25.070919999696706 ], [ -78.033599591366766, 25.071338051674079 ], [ -78.033275495120463, 25.071891043681195 ], [ -78.035614012575465, 25.071736316683801 ] ], [ [ -78.032107521196991, 25.071968308302214 ], [ -78.032828431018757, 25.070738268996458 ], [ -78.030877407007864, 25.072049673679395 ], [ -78.032107521196991, 25.071968308302214 ] ], [ [ -78.033174262378012, 25.070505808904066 ], [ -78.034893037547377, 25.070107591282451 ], [ -78.034467511613798, 25.069636501572141 ], [ -78.033174262378012, 25.070505808904066 ] ], [ [ -78.042212494110913, 25.111122925769269 ], [ -78.043569035429769, 25.111122875443002 ], [ -78.042199589040351, 25.109930284720644 ], [ -78.042212494110913, 25.111122925769269 ] ], [ [ -78.042185955642353, 25.108670177151076 ], [ -78.044822174608925, 25.110965939520064 ], [ -78.044903633345442, 25.111058439764683 ], [ -78.044934547648992, 25.111122812221179 ], [ -78.045473462909982, 25.111122783801168 ], [ -78.044862705993424, 25.10444962656603 ], [ -78.043724083580756, 25.104360946352305 ], [ -78.043485461904339, 25.105999319837526 ], [ -78.043441305357319, 25.106134581969158 ], [ -78.043353404281817, 25.106250799607441 ], [ -78.043230362975152, 25.106336596498505 ], [ -78.043084225603451, 25.10638357417168 ], [ -78.042929297224987, 25.106387134068292 ], [ -78.042780743467716, 25.106346927702251 ], [ -78.042653105951359, 25.106266890779434 ], [ -78.042558878797749, 25.106154857933198 ], [ -78.042507285591398, 25.106021795792287 ], [ -78.042503376520713, 25.105880729462882 ], [ -78.042735948937192, 25.104283979425279 ], [ -78.042138010289435, 25.104237402026097 ], [ -78.042185955642353, 25.108670177151076 ] ], [ [ -78.042128212415918, 25.103331296261647 ], [ -78.044779258968688, 25.103537788572904 ], [ -78.044733391382394, 25.103036577237603 ], [ -78.044607012577529, 25.103101821254267 ], [ -78.044455178430965, 25.103130079781771 ], [ -78.044301185363025, 25.10311423267126 ], [ -78.04416010744761, 25.103055831149717 ], [ -78.044045754491577, 25.102960592009168 ], [ -78.043969320189589, 25.102837837990389 ], [ -78.043938286395758, 25.102699585181284 ], [ -78.043689449656185, 25.097614967471539 ], [ -78.043706854258048, 25.09747474905009 ], [ -78.043770991203502, 25.097346290851455 ], [ -78.043875582203995, 25.09724216721494 ], [ -78.044010389133021, 25.097172570417445 ], [ -78.044162216217075, 25.097144313009185 ], [ -78.044194519960129, 25.097147637679047 ], [ -78.043852352086702, 25.093407850897936 ], [ -78.043651709134011, 25.093212802808736 ], [ -78.043564766427352, 25.093095994575243 ], [ -78.043521717534077, 25.092960437751181 ], [ -78.043526776253472, 25.092819401633943 ], [ -78.043579447242351, 25.092686691831627 ], [ -78.043674574563937, 25.09257529887001 ], [ -78.043770752284715, 25.092515935850166 ], [ -78.043177896667146, 25.086035175833342 ], [ -78.043036734844065, 25.086064852383405 ], [ -78.042882372682499, 25.086052551205125 ], [ -78.042739739744988, 25.08599741208511 ], [ -78.042622798059995, 25.085904832465772 ], [ -78.042542994732983, 25.085783874754199 ], [ -78.042508141409158, 25.085646379204285 ], [ -78.042172610619573, 25.08127502092518 ], [ -78.041865343686169, 25.081290750381307 ], [ -78.041895804670702, 25.081849980556527 ], [ -78.041894760182657, 25.081859090527065 ], [ -78.041896388991987, 25.08186789537416 ], [ -78.042128212415918, 25.103331296261647 ] ], [ [ -78.024487945299654, 25.139545059380254 ], [ -78.026102719107158, 25.139489555357535 ], [ -78.025013380812638, 25.116025314306604 ], [ -78.023469537251344, 25.115982435492068 ], [ -78.024487945299654, 25.139545059380254 ] ], [ [ -78.027092990620787, 25.139455508403959 ], [ -78.028708402826339, 25.139399953993976 ], [ -78.02814319850215, 25.113209037083479 ], [ -78.028164434452592, 25.113069255301955 ], [ -78.028232073158534, 25.112942289697358 ], [ -78.02833949356031, 25.112840568500562 ], [ -78.028476180577897, 25.112774048819887 ], [ -78.028628754408885, 25.112749241997204 ], [ -78.02878228020802, 25.112768576258301 ], [ -78.028921729958796, 25.112830159036115 ], [ -78.029033453459931, 25.112927962226408 ], [ -78.029106514459315, 25.113052412242599 ], [ -78.029133761162058, 25.113191327117992 ], [ -78.029698823323344, 25.139365884476398 ], [ -78.031151199474124, 25.139315912137551 ], [ -78.030492327455519, 25.112024897175285 ], [ -78.025956656747709, 25.112024618902517 ], [ -78.025984197026403, 25.115576163018464 ], [ -78.027092990620787, 25.139455508403959 ] ], [ [ -78.032141577906202, 25.13928182771685 ], [ -78.033745623989276, 25.139226609522506 ], [ -78.032948093117341, 25.112024989811633 ], [ -78.031483309878283, 25.112024939463236 ], [ -78.032141577906202, 25.13928182771685 ] ], [ [ -78.034735936523759, 25.139192510005969 ], [ -78.03629950021022, 25.139138658189921 ], [ -78.035842193368055, 25.117328082589744 ], [ -78.035863515253268, 25.117188312464627 ], [ -78.035931233347924, 25.117061381919463 ], [ -78.036038718821288, 25.116959715753211 ], [ -78.036175450223837, 25.116893265687406 ], [ -78.036328043408588, 25.116868536249498 ], [ -78.036481561635895, 25.116887948090366 ], [ -78.036620977630449, 25.116949601048933 ], [ -78.036732644495174, 25.117047460151241 ], [ -78.03680563152183, 25.117171946337674 ], [ -78.036832794156354, 25.117310874100962 ], [ -78.037289922011368, 25.139104537816188 ], [ -78.038970984711881, 25.139046609449071 ], [ -78.038273019678897, 25.112025050644885 ], [ -78.033939186955834, 25.11202501565149 ], [ -78.034735936523759, 25.139192510005969 ] ], [ [ -78.039961330855405, 25.139012473801742 ], [ -78.041523136986484, 25.138958627373714 ], [ -78.041411432425619, 25.128651975300325 ], [ -78.041392046104988, 25.128604953986446 ], [ -78.041385088646194, 25.128463985226976 ], [ -78.041408557421121, 25.128386564675225 ], [ -78.041328797457723, 25.121020542675296 ], [ -78.04130920160587, 25.120915772100432 ], [ -78.041326500105754, 25.120808295083329 ], [ -78.041231473838465, 25.112025001615606 ], [ -78.039264029545265, 25.112025040811233 ], [ -78.039961330855405, 25.139012473801742 ] ], [ [ -78.042515000644471, 25.139038205981461 ], [ -78.048231668653088, 25.141244295007951 ], [ -78.047749714605814, 25.135982767039817 ], [ -78.046787233049329, 25.136020071864593 ], [ -78.046633233910811, 25.136003945627849 ], [ -78.046492246440224, 25.135945288721999 ], [ -78.046378071590766, 25.135849842938189 ], [ -78.046301885622242, 25.135726951245061 ], [ -78.04627114607942, 25.135588643207051 ], [ -78.046288861821779, 25.135448457420324 ], [ -78.046353298549349, 25.135320116244714 ], [ -78.046458148629, 25.135216182564182 ], [ -78.04659314857436, 25.135146830061231 ], [ -78.046745083718861, 25.135118847372773 ], [ -78.047667312516353, 25.135083103464183 ], [ -78.047461804992665, 25.132839284403513 ], [ -78.042679992901853, 25.133774837110447 ], [ -78.042525211549275, 25.133782538461393 ], [ -78.042457804862295, 25.133766244099547 ], [ -78.042515000644471, 25.139038205981461 ] ], [ [ -78.042448422346382, 25.13290115114593 ], [ -78.042471798170581, 25.132892927877354 ], [ -78.047378792905903, 25.131932884877582 ], [ -78.047156873113394, 25.129509660414183 ], [ -78.042406366890305, 25.129022592691118 ], [ -78.042448422346382, 25.13290115114593 ] ], [ [ -78.042396515544141, 25.128113832936844 ], [ -78.044297438140859, 25.128308755790638 ], [ -78.044169118124913, 25.121336637036372 ], [ -78.042323287614124, 25.121356127376476 ], [ -78.042396515544141, 25.128113832936844 ] ], [ [ -78.042313517119425, 25.120454124409324 ], [ -78.044152522698127, 25.120434707421751 ], [ -78.043997830980985, 25.112024902242965 ], [ -78.042222255815105, 25.112024971970829 ], [ -78.042313517119425, 25.120454124409324 ] ], [ [ -78.045290315747266, 25.12841055655797 ], [ -78.047072957624792, 25.128593315317524 ], [ -78.046406324594301, 25.121312983257809 ], [ -78.045159871705735, 25.12132616606096 ], [ -78.045290315747266, 25.12841055655797 ] ], [ [ -78.046323811240342, 25.120411752641505 ], [ -78.045556029907701, 25.112024823494096 ], [ -78.044988701152505, 25.112024854065986 ], [ -78.045143269012058, 25.12042423723976 ], [ -78.046323811240342, 25.120411752641505 ] ], [ [ -78.025329854061582, 25.143130240219751 ], [ -78.028049231934503, 25.143133823775415 ], [ -78.027961898630195, 25.140328325571843 ], [ -78.022786246523538, 25.140506231326068 ], [ -78.025329854061582, 25.143130240219751 ] ], [ [ -78.029040665866773, 25.143135117824741 ], [ -78.039077005223945, 25.143147843087107 ], [ -78.038994297388214, 25.139948498145383 ], [ -78.036969172874294, 25.140018281506627 ], [ -78.036966694302521, 25.140019485911647 ], [ -78.036814073017212, 25.140044218624947 ], [ -78.03668604438829, 25.140028035566171 ], [ -78.034483060709263, 25.140103912049884 ], [ -78.034421090651819, 25.140134578361184 ], [ -78.034268679929511, 25.140160366732815 ], [ -78.034114974136472, 25.140142021266875 ], [ -78.034060629740765, 25.140118457922636 ], [ -78.031845650249579, 25.14019470818155 ], [ -78.031821472944159, 25.140206538509261 ], [ -78.031668930068719, 25.140231673120969 ], [ -78.03151532052425, 25.14021266874451 ], [ -78.031501392486007, 25.140206556214103 ], [ -78.029331179281257, 25.140281228193153 ], [ -78.029223396518162, 25.140298751364483 ], [ -78.029137201318989, 25.140287900973085 ], [ -78.028952209029995, 25.140294264411818 ], [ -78.029040665866773, 25.143135117824741 ] ], [ [ -78.040068298746334, 25.143149062980587 ], [ -78.04725293424859, 25.143157705702755 ], [ -78.047305212497861, 25.141866539714414 ], [ -78.042061025112375, 25.139842769619566 ], [ -78.042030942555769, 25.139843807054685 ], [ -78.042028244300596, 25.139844220973508 ], [ -78.042026350824727, 25.139843965405809 ], [ -78.0399846507717, 25.13991436166425 ], [ -78.040068298746334, 25.143149062980587 ] ], [ [ -78.02760752864576, 25.145479767158548 ], [ -78.028121995587711, 25.145471009781094 ], [ -78.028077315810336, 25.144035914354909 ], [ -78.026205431207927, 25.144033454638329 ], [ -78.02760752864576, 25.145479767158548 ] ], [ [ -78.029112882715197, 25.145454137626778 ], [ -78.02984136871946, 25.145441729228569 ], [ -78.029994915730086, 25.145461192019471 ], [ -78.030134340243904, 25.145522891316485 ], [ -78.030245994529949, 25.145620787609836 ], [ -78.030318949111134, 25.145745298199529 ], [ -78.030346062609098, 25.145884235189541 ], [ -78.030324680820982, 25.146023998498027 ], [ -78.030256896586593, 25.146150907113284 ], [ -78.030149344987208, 25.146252538288515 ], [ -78.03001255390032, 25.146318943584898 ], [ -78.029859913466268, 25.14634362272135 ], [ -78.029735363600395, 25.14634574453509 ], [ -78.029779765320569, 25.146421952229396 ], [ -78.029806522217172, 25.146560946556857 ], [ -78.029784781549978, 25.146700664050897 ], [ -78.029777811120809, 25.146713637150881 ], [ -78.048743775287775, 25.146834192419284 ], [ -78.048324709183007, 25.1422599403747 ], [ -78.048281604090732, 25.142243307297971 ], [ -78.048225635559476, 25.14362589633312 ], [ -78.04819696206971, 25.143761347084403 ], [ -78.048124652864175, 25.143882574027412 ], [ -78.048015471770043, 25.143978237346147 ], [ -78.047879631756317, 25.144039388468979 ], [ -78.047729839599583, 25.144060307157492 ], [ -78.039987389049671, 25.144051009195682 ], [ -78.039889727151149, 25.144144191306257 ], [ -78.039753292605994, 25.144211195405436 ], [ -78.039600788368332, 25.144236543653971 ], [ -78.039447142759556, 25.144217754749256 ], [ -78.039307395841263, 25.144156667884737 ], [ -78.039195227128459, 25.144059262715057 ], [ -78.039189753565353, 25.144050028261713 ], [ -78.02906875702611, 25.14403720753549 ], [ -78.029112882715197, 25.145454137626778 ] ], [ [ -78.038309421762506, 25.152823679397255 ], [ -78.038733541658374, 25.152999482768386 ], [ -78.03906509783107, 25.15062984482045 ], [ -78.038309421762506, 25.152823679397255 ] ], [ [ -78.039265102377414, 25.149200381847777 ], [ -78.039374949859493, 25.148415276551315 ], [ -78.039028385093445, 25.148414463752136 ], [ -78.03908077032419, 25.149094718604879 ], [ -78.039214256678719, 25.149155050162637 ], [ -78.039265102377414, 25.149200381847777 ] ], [ [ -78.038383529668408, 25.149593292643253 ], [ -78.038328828710959, 25.14957216801912 ], [ -78.03821210854845, 25.149479846024377 ], [ -78.038255032027806, 25.14996633978917 ], [ -78.038383529668408, 25.149593292643253 ] ], [ [ -77.994787285778173, 25.062523755783772 ], [ -77.992356275588492, 25.064088060572661 ], [ -77.992085823169347, 25.065210578399807 ], [ -77.994787285778173, 25.062523755783772 ] ], [ [ -77.993267464932842, 25.058979404835149 ], [ -77.991818379356701, 25.056725955556676 ], [ -77.991239268955169, 25.05723363787688 ], [ -77.993267464932842, 25.058979404835149 ] ], [ [ -77.990524909295559, 25.057859879322567 ], [ -77.989035682944433, 25.059165375889176 ], [ -77.989158498307205, 25.05910577786878 ], [ -77.989311047267719, 25.059081161010781 ], [ -77.989464481236993, 25.059100687973459 ], [ -77.989603781186915, 25.059162447327115 ], [ -77.989715311578919, 25.059260393683161 ], [ -77.990117536309441, 25.059745773302527 ], [ -77.990145084090926, 25.059609277951154 ], [ -77.990218809691356, 25.059485163586043 ], [ -77.990331032757055, 25.05938787579716 ], [ -77.990470768104174, 25.059326937718886 ], [ -77.990624337550727, 25.0593083143299 ], [ -77.990776708799018, 25.059333828584286 ], [ -77.990912966844434, 25.059400982980765 ], [ -77.991019773900902, 25.05950320403096 ], [ -77.992179497383162, 25.061035401607775 ], [ -77.993335789032656, 25.060279328792973 ], [ -77.990524909295559, 25.057859879322567 ] ], [ [ -77.992132155053213, 25.062176808452445 ], [ -77.992193291796752, 25.062250579899509 ], [ -77.993173681024658, 25.061548811983318 ], [ -77.993182571958926, 25.061504822950603 ], [ -77.993197011967311, 25.061480529052318 ], [ -77.992132155053213, 25.062176808452445 ] ], [ [ -77.993610428267075, 25.061210204013673 ], [ -77.993654103455526, 25.061204917997937 ], [ -77.994029858225232, 25.060935944486182 ], [ -77.993610428267075, 25.061210204013673 ] ], [ [ -77.988941854744411, 25.059247626914548 ], [ -77.988650842990396, 25.059502730606361 ], [ -77.989697031225973, 25.060735669665643 ], [ -77.988924864145403, 25.05980386520924 ], [ -77.988852021192983, 25.059679318975331 ], [ -77.988824996135122, 25.059540364884285 ], [ -77.988846434228591, 25.059400604769113 ], [ -77.988914236805599, 25.059273719318217 ], [ -77.988941854744411, 25.059247626914548 ] ], [ [ -77.987933060539135, 25.060131939037845 ], [ -77.987868877038025, 25.060188201871373 ], [ -77.987900933015155, 25.0601820048423 ], [ -77.987983491155575, 25.060191372900608 ], [ -77.987933060539135, 25.060131939037845 ] ], [ [ -77.987435564926699, 25.060568038460843 ], [ -77.985667115133353, 25.062118206746927 ], [ -77.98557395381701, 25.062182441609245 ], [ -77.984106838159377, 25.062964870484564 ], [ -77.984450831284434, 25.063493875812238 ], [ -77.987639536466745, 25.062067413620778 ], [ -77.987431489359324, 25.06069430451738 ], [ -77.987435564926699, 25.060568038460843 ] ], [ [ -77.989458643742523, 25.061929844761789 ], [ -77.99008364648229, 25.064554690517401 ], [ -77.990092395270239, 25.064695582854792 ], [ -77.990052915830802, 25.064832041906993 ], [ -77.989969072539779, 25.064950710088713 ], [ -77.989849072481846, 25.065039971272451 ], [ -77.989704662114804, 25.065091087878518 ], [ -77.989549977438244, 25.065099056198115 ], [ -77.9894001602228, 25.065063096213883 ], [ -77.989310904747313, 25.065010777757792 ], [ -77.989311868021488, 25.065297271719647 ], [ -77.990057408904832, 25.065307123982144 ], [ -77.990617408569832, 25.06348911457302 ], [ -77.990678757632892, 25.063367700322097 ], [ -77.989458643742523, 25.061929844761789 ] ], [ [ -77.988117467025134, 25.062858624384628 ], [ -77.987664325863705, 25.063061343145151 ], [ -77.987745051475258, 25.063213848752593 ], [ -77.988246010203241, 25.062860958183798 ], [ -77.988117467025134, 25.062858624384628 ] ], [ [ -77.986775350721416, 25.063459032333228 ], [ -77.986398348361206, 25.063627684656808 ], [ -77.986526158580389, 25.063620195439128 ], [ -77.986676275807724, 25.063655096944196 ], [ -77.986932352082135, 25.063755640272252 ], [ -77.986775350721416, 25.063459032333228 ] ], [ [ -77.986153990363761, 25.063736997683172 ], [ -77.984611662435995, 25.064426941531291 ], [ -77.984578485091959, 25.065234632752837 ], [ -77.984870779622852, 25.06523850520616 ], [ -77.986112823249385, 25.064363615537246 ], [ -77.986054373694827, 25.064299445805176 ], [ -77.985997136857947, 25.064168310963357 ], [ -77.985987190913534, 25.064027484092708 ], [ -77.986025509283834, 25.063890750332305 ], [ -77.986108340951986, 25.063771494113887 ], [ -77.986153990363761, 25.063736997683172 ] ], [ [ -77.983626875785149, 25.06427360416771 ], [ -77.983507205792336, 25.064325678406963 ], [ -77.983589079830921, 25.065193552542972 ], [ -77.983626875785149, 25.06427360416771 ] ], [ [ -77.982552356916699, 25.064741174784494 ], [ -77.981678958046899, 25.065121221166638 ], [ -77.981774982888496, 25.065287637350892 ], [ -77.981824720389383, 25.065421286401627 ], [ -77.981826680755049, 25.065562393475908 ], [ -77.981780671932185, 25.065697146046684 ], [ -77.981712380141133, 25.065785078707322 ], [ -77.982623252617771, 25.065492735189821 ], [ -77.982552356916699, 25.064741174784494 ] ], [ [ -77.980784641736605, 25.065510361986785 ], [ -77.979959186901553, 25.065869532637617 ], [ -77.979810659520595, 25.065909693551582 ], [ -77.979655776174127, 25.065906083877167 ], [ -77.979509698083419, 25.065859056943435 ], [ -77.979386724524019, 25.0657732161079 ], [ -77.979298893061767, 25.065656964134956 ], [ -77.979263316524879, 25.065547807534305 ], [ -77.979110260903752, 25.065629424367195 ], [ -77.979638617298946, 25.066450625328759 ], [ -77.981240071928681, 25.065936662839594 ], [ -77.98111741606111, 25.065901919239927 ], [ -77.980990930201472, 25.0658204224687 ], [ -77.980898284546385, 25.065707313373789 ], [ -77.980784641736605, 25.065510361986785 ] ], [ [ -77.986459849720177, 25.065259547833612 ], [ -77.988321422529864, 25.065284177248468 ], [ -77.988321419734561, 25.065283343908764 ], [ -77.987104400747171, 25.064805520848921 ], [ -77.986459849720177, 25.065259547833612 ] ], [ [ -77.988318120794332, 25.064299724234797 ], [ -77.988316952691719, 25.063951373595266 ], [ -77.987999835267189, 25.064174759813813 ], [ -77.988318120794332, 25.064299724234797 ] ], [ [ -77.983252159843531, 25.063420669018644 ], [ -77.983086675176594, 25.063508920800366 ], [ -77.983260391701208, 25.063433328466719 ], [ -77.983252159843531, 25.063420669018644 ] ], [ [ -78.0113799179002, 25.04728139363457 ], [ -78.013024367700766, 25.047227308409571 ], [ -78.012213547639192, 25.04418634653101 ], [ -78.0113799179002, 25.04728139363457 ] ], [ [ -78.009328202527783, 25.037789189891829 ], [ -78.010970597487017, 25.037303974116444 ], [ -78.010614969793522, 25.035742400047443 ], [ -78.009725686247535, 25.036112958602484 ], [ -78.009562879841965, 25.036152111059867 ], [ -78.009395086507183, 25.03613928560992 ], [ -78.009241716701013, 25.036075965891218 ], [ -78.009120512319996, 25.035969476755174 ], [ -78.009045494258189, 25.035832136905434 ], [ -78.007878927837808, 25.032281717622155 ], [ -78.006922091938875, 25.032607736038571 ], [ -78.007722604012457, 25.035974627974976 ], [ -78.009328202527783, 25.037789189891829 ] ], [ [ -78.011918087499609, 25.037024045667437 ], [ -78.013127738536085, 25.036666653471016 ], [ -78.012716523671003, 25.034866667558052 ], [ -78.011538551804776, 25.035357541843386 ], [ -78.011918087499609, 25.037024045667437 ] ], [ [ -78.01363996234906, 25.034481851218654 ], [ -78.014075153967866, 25.036386730857902 ], [ -78.015684110864271, 25.035911333427439 ], [ -78.015165437157108, 25.033846136555685 ], [ -78.01363996234906, 25.034481851218654 ] ], [ [ -78.016084911817757, 25.033462951396928 ], [ -78.016629668083326, 25.035631940688788 ], [ -78.01835314879645, 25.03512266930499 ], [ -78.017723823605905, 25.032779926140151 ], [ -78.016084911817757, 25.033462951396928 ] ], [ [ -78.017484188964985, 25.031887826149667 ], [ -78.017089861218082, 25.030419806871979 ], [ -78.017077031201367, 25.030279176662425 ], [ -78.017112526667105, 25.030141817164356 ], [ -78.017192872921996, 25.030021174063901 ], [ -78.017310205026803, 25.029929056691749 ], [ -78.017453037704982, 25.029874482065193 ], [ -78.017607389598751, 25.029862792267483 ], [ -78.017758151823685, 25.02989513155099 ], [ -78.017890566872566, 25.029968334339909 ], [ -78.017991673125849, 25.030075235091772 ], [ -78.018051573591634, 25.030205369689085 ], [ -78.018400887744065, 25.031505775981291 ], [ -78.019061747319924, 25.031230346455352 ], [ -78.019210940744344, 25.0311924412099 ], [ -78.019365688512067, 25.031198395314416 ], [ -78.019510842993441, 25.031247625930867 ], [ -78.019632195587633, 25.031335314058996 ], [ -78.019717867509399, 25.031452876240103 ], [ -78.019759472547378, 25.031588804740483 ], [ -78.019752937982787, 25.031729793981185 ], [ -78.01969890330426, 25.031862042961823 ], [ -78.019602657671442, 25.031972606195232 ], [ -78.019473622225291, 25.032050660915552 ], [ -78.01864052780671, 25.032397873978343 ], [ -78.019297534766167, 25.034843602673238 ], [ -78.020854667277575, 25.034383453627758 ], [ -78.019322873176691, 25.028621121231645 ], [ -78.010723777701187, 25.031312359499445 ], [ -78.010625006411814, 25.031346016099135 ], [ -78.011332226505047, 25.034451563438957 ], [ -78.017484188964985, 25.031887826149667 ] ], [ [ -78.009686625813217, 25.031665767912081 ], [ -78.008808397025732, 25.031965016423079 ], [ -78.009830968497511, 25.03507713712661 ], [ -78.010408650185028, 25.034836419824572 ], [ -78.009686625813217, 25.031665767912081 ] ], [ [ -78.014278115713367, 25.037275089915706 ], [ -78.016525808009035, 25.047112086872975 ], [ -78.016665678320919, 25.047107482458713 ], [ -78.018197381312916, 25.045917146540926 ], [ -78.015905836304341, 25.036794148114463 ], [ -78.014278115713367, 25.037275089915706 ] ], [ [ -78.016851399418627, 25.036514753403928 ], [ -78.01904727323388, 25.045256652245275 ], [ -78.020725354301447, 25.043952496861522 ], [ -78.018589169912858, 25.036001259010543 ], [ -78.016851399418627, 25.036514753403928 ] ], [ [ -78.01953356169588, 25.035722190323707 ], [ -78.021568680934777, 25.043297071536109 ], [ -78.022940940249541, 25.042230541094177 ], [ -78.021088415936376, 25.035262713989596 ], [ -78.01953356169588, 25.035722190323707 ] ], [ [ -78.023785271775694, 25.041574305558068 ], [ -78.025176865998816, 25.040492699502568 ], [ -78.023601442863153, 25.034520046697633 ], [ -78.022032965801188, 25.034983579878844 ], [ -78.023785271775694, 25.041574305558068 ] ], [ [ -78.023369401379469, 25.033640282656929 ], [ -78.021838033774827, 25.027833844514195 ], [ -78.020263325627596, 25.028326753838073 ], [ -78.021799211316917, 25.034104321559358 ], [ -78.023369401379469, 25.033640282656929 ] ], [ [ -78.02602195265537, 25.039835847551679 ], [ -78.027244739780286, 25.038885404441462 ], [ -78.024284640882584, 25.027067976851693 ], [ -78.022778634198374, 25.027539411687741 ], [ -78.024418382971987, 25.033756600364764 ], [ -78.024441318082125, 25.033797658582046 ], [ -78.024464511892972, 25.033931488989243 ], [ -78.02602195265537, 25.039835847551679 ] ], [ [ -78.028094820114845, 25.038224643626304 ], [ -78.029366429528906, 25.037236210484 ], [ -78.026781809904989, 25.026286231788639 ], [ -78.025419125181855, 25.026712829924911 ], [ -78.025322506097623, 25.026789069416935 ], [ -78.025238403421469, 25.026821428775577 ], [ -78.028094820114845, 25.038224643626304 ] ], [ [ -77.983628842117326, 25.051791111968775 ], [ -77.987232783845172, 25.052593353115018 ], [ -77.987359809308884, 25.052566753267651 ], [ -77.987514123436256, 25.052579184134839 ], [ -77.987656668032542, 25.052634444777283 ], [ -77.987749978307662, 25.052708472891219 ], [ -77.989865704740225, 25.053179380502574 ], [ -77.990010456434675, 25.053234963464099 ], [ -77.990128810797771, 25.053329051623702 ], [ -77.9921211299676, 25.05551022876903 ], [ -77.994607657188666, 25.05507000618385 ], [ -77.994726690615181, 25.055062275378571 ], [ -77.994844297567852, 25.055080710645775 ], [ -77.999271220698816, 25.056289311412574 ], [ -77.999303634020151, 25.049170073932444 ], [ -77.993828463322544, 25.049077073968647 ], [ -77.993675938287623, 25.049052400842413 ], [ -77.993539248155386, 25.048985999195995 ], [ -77.99343177321056, 25.048884368936399 ], [ -77.993373447955051, 25.048775095858595 ], [ -77.9856465695661, 25.049028051113073 ], [ -77.983628842117326, 25.051791111968775 ] ], [ [ -78.000260319046248, 25.056559324654199 ], [ -78.003691053189144, 25.057495816160465 ], [ -78.012249345639702, 25.053688408329251 ], [ -78.012373754940668, 25.053650658863148 ], [ -78.020528298426086, 25.052231573165901 ], [ -78.020671702313663, 25.052225908806044 ], [ -78.022365912539854, 25.052384062773509 ], [ -78.022435424348643, 25.052318943202067 ], [ -78.023704358896055, 25.05145412012407 ], [ -78.021463130893522, 25.047629528783407 ], [ -78.021414891595171, 25.047507748977516 ], [ -78.021406614775941, 25.047378502752263 ], [ -78.021438982270567, 25.047252439179424 ], [ -78.021509327089888, 25.04713994506848 ], [ -78.021611853201193, 25.047050289165291 ], [ -78.023810193435523, 25.045617727077659 ], [ -78.023946637650397, 25.045555198054647 ], [ -78.024097510456983, 25.045533530389882 ], [ -78.024248453841324, 25.045554786101349 ], [ -78.024385103082679, 25.045616942347891 ], [ -78.024494453748886, 25.045714083934882 ], [ -78.027236217736458, 25.049046920494376 ], [ -78.027769804980451, 25.048683230163501 ], [ -78.027770535679878, 25.048682574488364 ], [ -78.027771232979418, 25.048682256841548 ], [ -78.028435292912363, 25.048229631595063 ], [ -78.028417198731134, 25.048214645155856 ], [ -78.028288600299732, 25.048068539629121 ], [ -78.028284800064554, 25.048132028466362 ], [ -78.028228981156118, 25.048263662274366 ], [ -78.028131241231591, 25.048373140232655 ], [ -78.028001147707258, 25.04844974580887 ], [ -78.027851435094178, 25.048485980244077 ], [ -78.027696758436264, 25.048478296610821 ], [ -78.027552258722764, 25.04842744702961 ], [ -78.027432080721383, 25.048338409048796 ], [ -78.02734798834075, 25.048219898393334 ], [ -78.026581982842586, 25.046643596307153 ], [ -78.026567377442177, 25.046737266239855 ], [ -78.026499266794474, 25.046864007333571 ], [ -78.026391496922187, 25.046965371648078 ], [ -78.026254617069839, 25.047031436866977 ], [ -78.026102026067036, 25.04705573599875 ], [ -78.025948660728645, 25.047035890436749 ], [ -78.025809533680217, 25.046973842808466 ], [ -78.025698263757278, 25.046875666815449 ], [ -78.023535424902789, 25.044252866626913 ], [ -78.01728306922459, 25.049071727840431 ], [ -78.017133577299902, 25.049150906048368 ], [ -78.016963312732173, 25.049178424285461 ], [ -78.000293863249112, 25.049178457704524 ], [ -78.000260319046248, 25.056559324654199 ] ], [ [ -78.023308735307324, 25.043248670902784 ], [ -78.023318795455296, 25.043239208914333 ], [ -78.023374712493478, 25.04321222129526 ], [ -78.023428820173649, 25.043182329051966 ], [ -78.023442895880152, 25.043179313442607 ], [ -78.023455673200004, 25.043173146624916 ], [ -78.023518007783849, 25.043163221283695 ], [ -78.023579606834019, 25.043150024120909 ], [ -78.023594016535426, 25.043151118610442 ], [ -78.023608260303064, 25.043148850608322 ], [ -78.023670910745523, 25.043156959089483 ], [ -78.023733971480027, 25.043161748820161 ], [ -78.023747304669456, 25.043166846271426 ], [ -78.023761620620064, 25.043168699089662 ], [ -78.023818454324839, 25.04319404767908 ], [ -78.023876803984479, 25.043216355451637 ], [ -78.023887755529287, 25.04322495689388 ], [ -78.023900742332216, 25.043230749166877 ], [ -78.023946196069915, 25.043270856586258 ], [ -78.023970625172367, 25.043290043390787 ], [ -78.025521309849083, 25.042140578454127 ], [ -78.025578357672885, 25.042110060609158 ], [ -78.02562497363003, 25.042081474100957 ], [ -78.025638260093956, 25.042078015653683 ], [ -78.025650655311679, 25.042071384794927 ], [ -78.025718684576319, 25.042057081248835 ], [ -78.025773911901453, 25.042042705607848 ], [ -78.025785288714019, 25.04204307731117 ], [ -78.025796810092544, 25.042040654865794 ], [ -78.025870651220501, 25.042045866247726 ], [ -78.025928710967904, 25.042047763128988 ], [ -78.02593711133423, 25.042050556678063 ], [ -78.025946358810074, 25.04205120931735 ], [ -78.026020097253891, 25.042078153683747 ], [ -78.026074218178323, 25.04209615158921 ], [ -78.026835267251812, 25.042481315069171 ], [ -78.027471324153922, 25.041412684125515 ], [ -78.027549574980284, 25.040755809925546 ], [ -78.027590171097501, 25.040619628697595 ], [ -78.027674972707217, 25.040501541270093 ], [ -78.027795678758238, 25.040413106803651 ], [ -78.027940473719426, 25.040362981806915 ], [ -78.028095184159369, 25.04035607280515 ], [ -78.028099569861268, 25.040357157872588 ], [ -78.028320048068977, 25.039986724273803 ], [ -78.028419197715408, 25.039870519058223 ], [ -78.028554134384009, 25.03978958216376 ], [ -78.028710489024206, 25.039752532298778 ], [ -78.028871611927471, 25.039763314766578 ], [ -78.028950247656056, 25.039793697461189 ], [ -78.028962239113525, 25.039669060563718 ], [ -78.029016534841972, 25.039546074570563 ], [ -78.029107731001375, 25.039442780517842 ], [ -78.031790759352802, 25.037184090359677 ], [ -78.031915159361972, 25.037107584599024 ], [ -78.032059007115478, 25.03706855731166 ], [ -78.032209081234726, 25.037070595569194 ], [ -78.032351588088801, 25.037113512017378 ], [ -78.032473429557484, 25.03719336210062 ], [ -78.032563406874829, 25.037302806608267 ], [ -78.032613249920686, 25.037431786223454 ], [ -78.032618377362624, 25.037568446082229 ], [ -78.032578317777592, 25.037700225372213 ], [ -78.031740941607509, 25.039397793556766 ], [ -78.032263196278535, 25.0394148559195 ], [ -78.033528763930946, 25.038416093797878 ], [ -78.031949349648428, 25.036414207461295 ], [ -78.01717718213861, 25.047895692309574 ], [ -78.017035444346234, 25.047972868342988 ], [ -78.016873730074877, 25.048003292806676 ], [ -78.008564896105412, 25.048276599289359 ], [ -78.016781925692513, 25.048276364178967 ], [ -78.023296371412485, 25.043255501426849 ], [ -78.023308735307324, 25.043248670902784 ] ], [ [ -78.024506502726595, 25.050907419919834 ], [ -78.02644334517268, 25.049587331246947 ], [ -78.023992453166343, 25.046608064747147 ], [ -78.022541222851984, 25.047553771656748 ], [ -78.024506502726595, 25.050907419919834 ] ], [ [ -78.026197668877927, 25.043190546225933 ], [ -78.026028092987204, 25.044042980431605 ], [ -78.026306633444122, 25.043857060337629 ], [ -78.026309819400439, 25.043851077669295 ], [ -78.026417188019124, 25.043749362928626 ], [ -78.02655380390749, 25.043682852058591 ], [ -78.026572078050094, 25.043679880500612 ], [ -78.02682757891823, 25.043509337059895 ], [ -78.026197668877927, 25.043190546225933 ] ], [ [ -78.027706865049311, 25.042922418614051 ], [ -78.0279574987823, 25.042755120158205 ], [ -78.027808611742643, 25.042761769106221 ], [ -78.027796507366787, 25.042758774417276 ], [ -78.02770090187208, 25.042919400762376 ], [ -78.027706865049311, 25.042922418614051 ] ], [ [ -78.02828716773115, 25.042535064288963 ], [ -78.028430529316765, 25.042439369178247 ], [ -78.029412617837039, 25.041664385454617 ], [ -78.028836063770086, 25.041012192633971 ], [ -78.028434689857306, 25.041686555913824 ], [ -78.028354228132571, 25.042362030370402 ], [ -78.028313632527542, 25.042498211754783 ], [ -78.02828716773115, 25.042535064288963 ] ], [ [ -78.030161530086616, 25.0410733950234 ], [ -78.0311648714667, 25.040281612521628 ], [ -78.029425969984146, 25.040224783079005 ], [ -78.029408765023206, 25.040221876568467 ], [ -78.030161530086616, 25.0410733950234 ] ], [ [ -78.025093035470604, 25.044639874544842 ], [ -78.025107518621141, 25.044657437792317 ], [ -78.025115814061195, 25.044651900870807 ], [ -78.025093035470604, 25.044639874544842 ] ], [ [ -78.026347540815038, 25.046161146569521 ], [ -78.025998136217751, 25.045442110796547 ], [ -78.025958062568421, 25.045302980739617 ], [ -78.025965035536316, 25.045203352469322 ], [ -78.02570230894132, 25.045378714696078 ], [ -78.026347540815038, 25.046161146569521 ] ], [ [ -78.02653948102882, 25.044819923915128 ], [ -78.026575469792206, 25.044823023821184 ], [ -78.026719989960043, 25.044880959355062 ], [ -78.026771934283801, 25.044923720754028 ], [ -78.026633538772629, 25.044757142215769 ], [ -78.02653948102882, 25.044819923915128 ] ], [ [ -78.027432377886726, 25.044223928044406 ], [ -78.027838673951479, 25.044712957520332 ], [ -78.029029595875613, 25.043871928176848 ], [ -78.028642787178669, 25.043415980289524 ], [ -78.027432377886726, 25.044223928044406 ] ], [ [ -78.034280239646037, 25.037823031296849 ], [ -78.034396191628659, 25.037731521522417 ], [ -78.034505752266554, 25.037665970310336 ], [ -78.034630355156551, 25.037628910779425 ], [ -78.034763136846038, 25.037606549704851 ], [ -78.033712911056355, 25.037103964422418 ], [ -78.034280239646037, 25.037823031296849 ] ], [ [ -78.036727944821308, 25.037275652017996 ], [ -78.037041152022852, 25.037222901571191 ], [ -78.037123399381613, 25.037187338390353 ], [ -78.036727944821308, 25.037275652017996 ] ], [ [ -78.037361166949864, 25.037169003848319 ], [ -78.037839820233827, 25.037088386499821 ], [ -78.037180071617428, 25.033616397057909 ], [ -78.036839483583762, 25.034949418932186 ], [ -78.036781200986283, 25.035080160535106 ], [ -78.036768686260871, 25.035093698588959 ], [ -78.037076863887989, 25.035652142103565 ], [ -78.03721184881627, 25.035674162565204 ], [ -78.037348414946791, 25.035740740655349 ], [ -78.037455714927958, 25.035842507824125 ], [ -78.037523245500012, 25.035969502464077 ], [ -78.03754439621423, 25.036109293520433 ], [ -78.037517096542445, 25.036248197304371 ], [ -78.037459715460699, 25.036345892114628 ], [ -78.037557061354576, 25.036522287138439 ], [ -78.037602973715082, 25.036650143538111 ], [ -78.037605454090382, 25.036784649197688 ], [ -78.03756428168812, 25.036913838496535 ], [ -78.0374831190842, 25.037026218720523 ], [ -78.0373691864433, 25.037111792462685 ], [ -78.037232619235937, 25.037162947011538 ], [ -78.037195485217651, 25.037171239926703 ], [ -78.037301129369311, 25.037158757373543 ], [ -78.037361166949864, 25.037169003848319 ] ], [ [ -78.036280628410736, 25.033197200067143 ], [ -78.035795939829583, 25.033148402784626 ], [ -78.035660932174167, 25.033116823651767 ], [ -78.035540938028561, 25.03305220866028 ], [ -78.035445470037899, 25.032959680227098 ], [ -78.035382096465511, 25.032846573629477 ], [ -78.035088743844227, 25.032068173542743 ], [ -78.035078670451924, 25.032066107061361 ], [ -78.034945477571029, 25.031994085338191 ], [ -78.034843231747033, 25.031888089304029 ], [ -78.03478194150938, 25.031758494662057 ], [ -78.034767606276162, 25.031617987101036 ], [ -78.034801629126378, 25.031480320507885 ], [ -78.034843171921878, 25.031416548391498 ], [ -78.034387612369031, 25.030207698468704 ], [ -78.031765420276187, 25.031017651671693 ], [ -78.031612763037032, 25.031041494265622 ], [ -78.031459490638113, 25.031021190191556 ], [ -78.031320606607053, 25.030958726959771 ], [ -78.031209705990335, 25.030860218954267 ], [ -78.031169333951439, 25.0307902388139 ], [ -78.031041276775071, 25.030751802873606 ], [ -78.030916345711418, 25.030668393215361 ], [ -78.03082581953737, 25.030553892281347 ], [ -78.030778559550683, 25.030419508293317 ], [ -78.030779191768062, 25.030278395746052 ], [ -78.030827654144346, 25.030144367733225 ], [ -78.032658545691149, 25.026903178479788 ], [ -78.032733357376401, 25.026805232609799 ], [ -78.03283374203869, 25.026728590039895 ], [ -78.032952672995876, 25.026678615524219 ], [ -78.035714312500929, 25.025901769306117 ], [ -78.035555029322708, 25.02506334783833 ], [ -78.035161674181097, 25.025157889928007 ], [ -78.035007584592222, 25.025172094622068 ], [ -78.034856219111134, 25.025142218996404 ], [ -78.03472239459748, 25.025071187501354 ], [ -78.034619210819855, 25.02496595324936 ], [ -78.034556768123807, 25.024836817374965 ], [ -78.034541178740142, 25.024696420660128 ], [ -78.034573968513712, 25.024558506142487 ], [ -78.034651927601288, 25.024436573839967 ], [ -78.034767424731399, 25.024342559281095 ], [ -78.034909154241802, 25.024285665193212 ], [ -78.035385536302854, 25.024171167992382 ], [ -78.035281764135163, 25.023624922050857 ], [ -78.034602022938543, 25.023837768419376 ], [ -78.034530787229414, 25.023863009630201 ], [ -78.034519556459401, 25.023863590773683 ], [ -78.032555666117759, 25.024478518608156 ], [ -78.032539874259868, 25.024490672480322 ], [ -78.032396466406581, 25.024543962026055 ], [ -78.032333168787346, 25.024548184382958 ], [ -78.029958603159258, 25.025291655826344 ], [ -78.030822398979268, 25.029014893538626 ], [ -78.030830331637517, 25.029155822068152 ], [ -78.030790077741784, 25.029292086483554 ], [ -78.030705577477917, 25.029410348251496 ], [ -78.03058510224102, 25.029499031026813 ], [ -78.030440445004118, 25.02954945384851 ], [ -78.030285765933058, 25.029556680920642 ], [ -78.03013620624975, 25.029520004784843 ], [ -78.030006406043995, 25.029443015579783 ], [ -78.02990907114372, 25.029333249604637 ], [ -78.029853729349711, 25.029201451590865 ], [ -78.02901520342327, 25.025587019630457 ], [ -78.02772481788675, 25.025991007654742 ], [ -78.030222176445136, 25.036571016695476 ], [ -78.031715980041724, 25.035409817865627 ], [ -78.031855718999367, 25.035333334739764 ], [ -78.032015148136011, 25.035302347435859 ], [ -78.032176980830798, 25.035320215834361 ], [ -78.032323669869953, 25.035385002481185 ], [ -78.032439310000314, 25.035489682663183 ], [ -78.033102945959754, 25.036330844554378 ], [ -78.033133304740886, 25.036267855866232 ], [ -78.033245007472104, 25.036158019325832 ], [ -78.033570006177428, 25.035929758588459 ], [ -78.033576411948644, 25.035897170781762 ], [ -78.033649493777688, 25.035772752709807 ], [ -78.033761199361706, 25.035674998895555 ], [ -78.033900594169808, 25.03561347809136 ], [ -78.034046387937892, 25.03559517227648 ], [ -78.03573260375218, 25.034410834616459 ], [ -78.035859011757267, 25.034346421715501 ], [ -78.035983326695558, 25.03432152959051 ], [ -78.036257137463366, 25.033249895743729 ], [ -78.036280628410736, 25.033197200067143 ] ], [ [ -78.033002296996258, 25.045116586081221 ], [ -78.033421131623939, 25.044831078158985 ], [ -78.033313032120901, 25.044816568732326 ], [ -78.033174956266265, 25.044754472107819 ], [ -78.033119490742962, 25.04470539212457 ], [ -78.033125055948219, 25.044749751050844 ], [ -78.033135947687313, 25.044805641037097 ], [ -78.033133816107338, 25.04481957609844 ], [ -78.03313556985924, 25.04483355480432 ], [ -78.033123168645602, 25.044889183135908 ], [ -78.033114568826463, 25.044945403816165 ], [ -78.033107814644239, 25.04495805678361 ], [ -78.033104740830623, 25.044971845023049 ], [ -78.033074076803388, 25.045021259629795 ], [ -78.033046827173791, 25.045072307726326 ], [ -78.033036111523018, 25.045082440035713 ], [ -78.033028511015573, 25.045094688116997 ], [ -78.033002296996258, 25.045116586081221 ] ], [ [ -78.032835548742455, 25.044378805379885 ], [ -78.031107207065332, 25.042280695675672 ], [ -78.031030505629715, 25.042144106928429 ], [ -78.031008500149568, 25.041991997749761 ], [ -78.031043736726573, 25.041841968999325 ], [ -78.031132137881272, 25.041711380744871 ], [ -78.031930938848646, 25.040887534080277 ], [ -78.031932602257655, 25.040869190619063 ], [ -78.0299721981864, 25.042416231905328 ], [ -78.030121444266797, 25.042442639630892 ], [ -78.030258932318759, 25.042512979648134 ], [ -78.032835548742455, 25.044378805379885 ] ], [ [ -78.029464367650974, 25.042816973413149 ], [ -78.029417461445576, 25.042853988041426 ], [ -78.029463304422663, 25.042908025022683 ], [ -78.029455767159618, 25.042864512811718 ], [ -78.029464367650974, 25.042816973413149 ] ], [ [ -78.032503294990377, 25.041659804207722 ], [ -78.032141288606482, 25.042033164048288 ], [ -78.033562076248657, 25.043757904491876 ], [ -78.034111983307611, 25.043389233913 ], [ -78.032503294990377, 25.041659804207722 ] ], [ [ -78.036066900991798, 25.043027475824093 ], [ -78.036134995383037, 25.042981055106011 ], [ -78.036135656293951, 25.042980429230536 ], [ -78.036136555000525, 25.042979991896356 ], [ -78.037018159880091, 25.042378986172224 ], [ -78.036987160418633, 25.042373695849943 ], [ -78.036851176200372, 25.042306124088551 ], [ -78.036744768287136, 25.042203577592129 ], [ -78.036678352634297, 25.04207609439851 ], [ -78.036658430380669, 25.041936153515802 ], [ -78.036774188403186, 25.038185206044549 ], [ -78.03628112571397, 25.038268246288428 ], [ -78.035061584536408, 25.041809809110273 ], [ -78.035119024960636, 25.041879383426178 ], [ -78.035826147953074, 25.041782364387998 ], [ -78.035981040550112, 25.041783436164518 ], [ -78.036127988681017, 25.041828060379739 ], [ -78.036252608176198, 25.04191186893549 ], [ -78.036342700473824, 25.042026658130382 ], [ -78.036389446676097, 25.042161191670775 ], [ -78.036388270818208, 25.042302300529798 ], [ -78.036339287841756, 25.04243617200304 ], [ -78.036247292404411, 25.042549701787021 ], [ -78.036121289597915, 25.042631776731515 ], [ -78.035973613490881, 25.042674362696562 ], [ -78.035795537010671, 25.042698795686565 ], [ -78.036066900991798, 25.043027475824093 ] ], [ [ -78.037648591429971, 25.041949203318833 ], [ -78.038635669796449, 25.041276273525582 ], [ -78.038008735929836, 25.037977279444473 ], [ -78.037769896007731, 25.038017506499902 ], [ -78.037648591429971, 25.041949203318833 ] ], [ [ -78.035179516331439, 25.038453770054552 ], [ -78.034942731215736, 25.038493646286415 ], [ -78.033357002201683, 25.039745095521223 ], [ -78.033478966649213, 25.039892830910262 ], [ -78.033528255627047, 25.039921386959193 ], [ -78.033626876977792, 25.040030201288896 ], [ -78.033665007567095, 25.040118181096283 ], [ -78.034329282967761, 25.040922804272206 ], [ -78.035179516331439, 25.038453770054552 ] ], [ [ -78.026882641206655, 24.990043983365442 ], [ -78.026229739094674, 24.987738620681597 ], [ -78.026225207192041, 24.987742350489565 ], [ -78.026083853025071, 24.987799931716395 ], [ -78.025929894152668, 24.987814883128216 ], [ -78.025778401293806, 24.98778574114705 ], [ -78.02566814544754, 24.987727915141537 ], [ -78.026882641206655, 24.990043983365442 ] ], [ [ -78.025397090378277, 25.025765900375465 ], [ -78.026572185130348, 25.025398027775946 ], [ -78.025400593282129, 25.020433557689877 ], [ -78.024067382916598, 25.020867832727916 ], [ -78.025397090378277, 25.025765900375465 ] ], [ [ -78.027515187202894, 25.025102805535429 ], [ -78.028808913092789, 25.024697771770978 ], [ -78.027649790478208, 25.01970087944677 ], [ -78.026340942157731, 25.020127243144856 ], [ -78.027515187202894, 25.025102805535429 ] ], [ [ -78.02975230689951, 25.024402409841709 ], [ -78.031695206265667, 25.023794095612811 ], [ -78.030411327605009, 25.018801249242806 ], [ -78.028590571259514, 25.019394406863011 ], [ -78.02975230689951, 25.024402409841709 ] ], [ [ -78.032636275566972, 25.023499439514222 ], [ -78.033847244268131, 25.023120265292661 ], [ -78.032644715847226, 25.018073629192862 ], [ -78.031349533007671, 25.018495594396875 ], [ -78.032636275566972, 25.023499439514222 ] ], [ [ -78.034789989243137, 25.022825068130498 ], [ -78.035094337182599, 25.022729767602989 ], [ -78.033928605657408, 25.017655329640139 ], [ -78.033584784174735, 25.017767350213873 ], [ -78.034789989243137, 25.022825068130498 ] ], [ [ -78.02382845721489, 25.019987681728068 ], [ -78.025190665420524, 25.019543961165688 ], [ -78.023569352476557, 25.012672883036192 ], [ -78.021925772771127, 25.01297803565766 ], [ -78.02382845721489, 25.019987681728068 ] ], [ [ -78.026131008425821, 25.019237648507936 ], [ -78.02744319293825, 25.018810197976748 ], [ -78.026262425066903, 25.013719364653916 ], [ -78.026078741462314, 25.013715578078152 ], [ -78.025930342810796, 25.013691605580139 ], [ -78.025796740336219, 25.013628050560897 ], [ -78.025690320487286, 25.013530805284354 ], [ -78.025620949516139, 25.013408885474821 ], [ -78.025595058767919, 25.01327359444074 ], [ -78.025573906334586, 25.012300684552848 ], [ -78.024539423194312, 25.012492767321032 ], [ -78.026131008425821, 25.019237648507936 ] ], [ [ -78.028383967828432, 25.018503727261937 ], [ -78.030184041387628, 25.017917307641888 ], [ -78.029119825695929, 25.013778239623349 ], [ -78.02727910534658, 25.013740319049383 ], [ -78.028383967828432, 25.018503727261937 ] ], [ [ -78.031122241031539, 25.017611654781767 ], [ -78.032432899591214, 25.017184647722708 ], [ -78.031633625478051, 25.013829989252383 ], [ -78.03014199457597, 25.013799287370052 ], [ -78.031122241031539, 25.017611654781767 ] ], [ [ -78.033372962062472, 25.016878370642896 ], [ -78.033723866354592, 25.016764042403612 ], [ -78.032090050181793, 25.009650990817882 ], [ -78.031650167509966, 25.009647499785206 ], [ -78.03185892942372, 25.010523767978409 ], [ -78.031864342394272, 25.01052996456291 ], [ -78.031918626002295, 25.010662124637737 ], [ -78.031925424359969, 25.010802873958394 ], [ -78.033372962062472, 25.016878370642896 ] ], [ [ -78.030635272036264, 25.009639440308511 ], [ -78.029069290242674, 25.009626990917457 ], [ -78.029340188841147, 25.010680688070121 ], [ -78.030817948238251, 25.010406243678631 ], [ -78.030635272036264, 25.009639440308511 ] ], [ [ -78.028050484652155, 25.00961888263646 ], [ -78.026505454061962, 25.009606572970998 ], [ -78.02652460309352, 25.010487151696918 ], [ -78.026683890948064, 25.011173967284424 ], [ -78.028369788622214, 25.010860898959962 ], [ -78.028050484652155, 25.00961888263646 ] ], [ [ -78.03102797679017, 25.011287846442915 ], [ -78.029566090061095, 25.011559344308694 ], [ -78.02990877053972, 25.012892190118301 ], [ -78.031417597067275, 25.012923249495795 ], [ -78.03102797679017, 25.011287846442915 ] ], [ [ -78.028595683564191, 25.011739557276638 ], [ -78.026888588040705, 25.012056563480378 ], [ -78.027068826562029, 25.012833687764516 ], [ -78.028886609062056, 25.012871140051946 ], [ -78.028595683564191, 25.011739557276638 ] ], [ [ -78.025553972634768, 25.011383779804834 ], [ -78.025536722160979, 25.010590257605138 ], [ -78.024146370361123, 25.004594727947175 ], [ -78.024015439775852, 25.004590797492462 ], [ -78.023869822445874, 25.004542795460523 ], [ -78.023747609690261, 25.004456136222771 ], [ -78.023744103503489, 25.004451419320421 ], [ -78.022680403937557, 25.004613346217457 ], [ -78.024331322722176, 25.011610801198696 ], [ -78.025553972634768, 25.011383779804834 ] ], [ [ -78.02170300236368, 25.004762128997619 ], [ -78.02167300414304, 25.004766695304276 ], [ -78.021671250633617, 25.004797764403907 ], [ -78.021615897183182, 25.004929555849124 ], [ -78.021518562419629, 25.005039309193954 ], [ -78.021388774098426, 25.005116280949604 ], [ -78.0212392368542, 25.005152936512985 ], [ -78.021084588563653, 25.005145687733453 ], [ -78.020939967438807, 25.005095244164551 ], [ -78.020819530132343, 25.005006543610865 ], [ -78.020748718417934, 25.004907386298033 ], [ -78.019775623439116, 25.005055500376187 ], [ -78.021687892931169, 25.012101596150885 ], [ -78.023361258345744, 25.01179091494906 ], [ -78.02170300236368, 25.004762128997619 ] ], [ [ -78.026110439645237, 25.008701320361482 ], [ -78.027818097123017, 25.008714930607013 ], [ -78.026609940199904, 25.004015113832065 ], [ -78.025077797205611, 25.004248380050317 ], [ -78.026110439645237, 25.008701320361482 ] ], [ [ -78.028836895397447, 25.008723041187842 ], [ -78.030419960283695, 25.00873562996097 ], [ -78.029201480393311, 25.003620518761895 ], [ -78.027588319376193, 25.003866148637947 ], [ -78.028836895397447, 25.008723041187842 ] ], [ [ -78.03143484845863, 25.008743691612263 ], [ -78.03188248375416, 25.008747245145027 ], [ -78.030696870392916, 25.003584749406645 ], [ -78.03020284391323, 25.003571989358374 ], [ -78.03143484845863, 25.008743691612263 ] ], [ [ -78.067780766358524, 25.009523344742483 ], [ -78.069524528300875, 25.014493499357354 ], [ -78.069622297913, 25.014593141410245 ], [ -78.069684789763144, 25.014722251454071 ], [ -78.069700438506885, 25.014862638902432 ], [ -78.069681722324034, 25.014941516964175 ], [ -78.070509825275934, 25.017301620879355 ], [ -78.073529629344947, 25.017000498431788 ], [ -78.072324866632982, 25.009505750506328 ], [ -78.067780766358524, 25.009523344742483 ] ], [ [ -78.07081746451037, 25.018178368067744 ], [ -78.073466262978258, 25.025726592138692 ], [ -78.074448998534265, 25.024811092980563 ], [ -78.074470790263859, 25.01810573977469 ], [ -78.074494560993898, 25.01796898132255 ], [ -78.074562742574685, 25.01784523835445 ], [ -78.074668908779543, 25.017746173617809 ], [ -78.074803053408559, 25.017681123911501 ], [ -78.075272154330605, 25.017532344431611 ], [ -78.074589787096784, 25.014424040549276 ], [ -78.074496517003666, 25.014338024010705 ], [ -78.074427043201595, 25.01421191215503 ], [ -78.074403737500489, 25.014072410078015 ], [ -78.074428881077822, 25.013933173250681 ], [ -78.074467205985755, 25.013865640235124 ], [ -78.073509152724569, 25.009501142233141 ], [ -78.073324688309782, 25.009501860639109 ], [ -78.074583526383591, 25.017332574763181 ], [ -78.074581108174172, 25.017476912667384 ], [ -78.074528767239087, 25.017613161305871 ], [ -78.074431865322737, 25.01772736311711 ], [ -78.074300329151114, 25.017807819016646 ], [ -78.074147633546119, 25.01784628689775 ], [ -78.07081746451037, 25.018178368067744 ] ], [ [ -78.075439845423759, 25.024552813769922 ], [ -78.076818626493605, 25.024576045346141 ], [ -78.075468189979858, 25.01842528392983 ], [ -78.075459701119584, 25.018427976261684 ], [ -78.075439845423759, 25.024552813769922 ] ], [ [ -78.077831994382734, 25.024593111750331 ], [ -78.078693771774951, 25.024607619715209 ], [ -78.085908340396841, 25.022559233003896 ], [ -78.08606158161713, 25.022538840995328 ], [ -78.086214238608363, 25.022562593880469 ], [ -78.086351368396279, 25.022628166570783 ], [ -78.086459547866014, 25.022729140404664 ], [ -78.08652818767014, 25.02285563143155 ], [ -78.086550568783082, 25.022995257894479 ], [ -78.0865245002378, 25.023134352217433 ], [ -78.086452533649435, 25.023259298869601 ], [ -78.086341713504908, 25.023357867151919 ], [ -78.086202887639232, 25.02342040844232 ], [ -78.081835492270159, 25.024660467852087 ], [ -78.084214502524858, 25.024700441737412 ], [ -78.084363318266782, 25.024687135242512 ], [ -78.084449475627849, 25.024704387852541 ], [ -78.088083189489979, 25.024765364564185 ], [ -78.086102970640965, 25.019559780710072 ], [ -78.07761788178469, 25.021981751595032 ], [ -78.077464672884361, 25.022002346284264 ], [ -78.077311977950998, 25.021978794741177 ], [ -78.077251649722939, 25.021950048193549 ], [ -78.077831994382734, 25.024593111750331 ] ], [ [ -78.077099738047153, 25.021258172538047 ], [ -78.077183241866209, 25.021183684527198 ], [ -78.077321966846952, 25.02112096005791 ], [ -78.086265367483634, 25.018568161355859 ], [ -78.086415597279753, 25.018547537689265 ], [ -78.08656561538298, 25.018569403253821 ], [ -78.086701288765383, 25.018631698106404 ], [ -78.08680983576663, 25.018728553507042 ], [ -78.086881030214116, 25.018850844794823 ], [ -78.089137696228718, 25.024783043343902 ], [ -78.090378002574781, 25.024803827427888 ], [ -78.090774875842754, 25.024338468141089 ], [ -78.088067151910877, 25.018465799451995 ], [ -78.078502601596995, 25.014545818135073 ], [ -78.075622605130718, 25.014530103114126 ], [ -78.076228328320667, 25.01728917662183 ], [ -78.076298691455122, 25.01729796837412 ], [ -78.07643810675961, 25.017359401092168 ], [ -78.076549864850719, 25.017457082792035 ], [ -78.076623026091085, 25.017581451779133 ], [ -78.076650428874515, 25.017720334018396 ], [ -78.076629390682285, 25.017860134787703 ], [ -78.0765619707215, 25.017987169409086 ], [ -78.076454768415786, 25.018089002802093 ], [ -78.076408851358053, 25.018111429301044 ], [ -78.077099738047153, 25.021258172538047 ] ], [ [ -78.090165237855544, 25.02570243746052 ], [ -78.08498228189967, 25.025615513283842 ], [ -78.087811012435751, 25.035505437326655 ], [ -78.088032448232369, 25.035510249516904 ], [ -78.090516186498803, 25.029112190106449 ], [ -78.090165237855544, 25.02570243746052 ] ], [ [ -78.073807457662951, 25.026698803986299 ], [ -78.074095663491875, 25.027520012754561 ], [ -78.074096208991719, 25.02752324854945 ], [ -78.07409777902312, 25.027526193223771 ], [ -78.076711645788762, 25.035359296192421 ], [ -78.079498688091803, 25.03544396671704 ], [ -78.079501064309838, 25.035444383969704 ], [ -78.079503468527633, 25.035444132972529 ], [ -78.079577050361408, 25.035457726739484 ], [ -78.079650772958757, 25.035470672017265 ], [ -78.079652891352367, 25.035471737828868 ], [ -78.079655263034525, 25.035472175979759 ], [ -78.079720632777054, 25.035505820040395 ], [ -78.079786356359946, 25.035538886981023 ], [ -78.079788009567864, 25.035540497023252 ], [ -78.079790116559849, 25.035541581433286 ], [ -78.079840875417318, 25.03559198249749 ], [ -78.079892166546301, 25.035641934304842 ], [ -78.07989319274148, 25.035643930976715 ], [ -78.079894828797464, 25.035645555497165 ], [ -78.079926008147069, 25.035707779993576 ], [ -78.07995784608562, 25.03576972707106 ], [ -78.079958144815876, 25.035771914925579 ], [ -78.07995914978693, 25.035773920538169 ], [ -78.079967697537299, 25.035841877532864 ], [ -78.079976965717762, 25.035909756098008 ], [ -78.079976507739062, 25.035911920973451 ], [ -78.07997678324989, 25.035914111355694 ], [ -78.07967746383639, 25.042254578653605 ], [ -78.082459863570193, 25.039732032809042 ], [ -78.082609541552699, 25.035838429465979 ], [ -78.08263873481917, 25.035700859778796 ], [ -78.082712861224351, 25.035578091538628 ], [ -78.082824766211544, 25.035481973918262 ], [ -78.08296364903839, 25.035421783832618 ], [ -78.083116105234836, 25.035403330585311 ], [ -78.086781460413391, 25.035483058986422 ], [ -78.083954282055913, 25.025598250951358 ], [ -78.075147887762128, 25.025450079847563 ], [ -78.073807457662951, 25.026698803986299 ] ], [ [ -78.077015928502618, 25.036271074741428 ], [ -78.078726869348216, 25.041397570846083 ], [ -78.078966124034267, 25.036330321512239 ], [ -78.077015928502618, 25.036271074741428 ] ], [ [ -78.087041167060548, 25.036390984595773 ], [ -78.083581891336479, 25.036315750290711 ], [ -78.083445431626387, 25.039866257297252 ], [ -78.085235350193898, 25.045195755997696 ], [ -78.08694341106866, 25.044714213480017 ], [ -78.084552555820537, 25.037380397743565 ], [ -78.084532230693398, 25.037240510214708 ], [ -78.084560348729482, 25.037101747169455 ], [ -78.084634157384741, 25.036977691690144 ], [ -78.084746431652817, 25.036880487139804 ], [ -78.084886181337538, 25.036819648504874 ], [ -78.085039726853154, 25.036801131029616 ], [ -78.085192038244216, 25.036826747300228 ], [ -78.085328206365347, 25.036893989828997 ], [ -78.085434902233004, 25.036996276500329 ], [ -78.085501681720856, 25.037123594854389 ], [ -78.087889365830478, 25.044447516790633 ], [ -78.090582176216529, 25.043688284073426 ], [ -78.090735486462677, 25.043668163944176 ], [ -78.090765961095968, 25.043672960497346 ], [ -78.088371530149473, 25.040893131330417 ], [ -78.088281940568848, 25.040728454354742 ], [ -78.087041167060548, 25.036390984595773 ] ], [ [ -78.091211336622848, 25.044190002203859 ], [ -78.091197209908202, 25.044264491246253 ], [ -78.091124964452604, 25.044389309298893 ], [ -78.091013915331871, 25.044487680299028 ], [ -78.09087493279543, 25.044549974935823 ], [ -78.088171305476564, 25.045312259772231 ], [ -78.090023993057088, 25.050994300509018 ], [ -78.092744742988856, 25.050277084574578 ], [ -78.09348128462625, 25.047991728448629 ], [ -78.091871140947802, 25.046478967734796 ], [ -78.09178204001087, 25.046363543504796 ], [ -78.091736453760177, 25.046228685947106 ], [ -78.091738844373197, 25.046087595911935 ], [ -78.091788977680281, 25.045954084288002 ], [ -78.091881946147794, 25.045841220091482 ], [ -78.092008649313783, 25.04576005119187 ], [ -78.092156684627696, 25.045718522894084 ], [ -78.092311561483953, 25.045720700224404 ], [ -78.092458119616595, 25.045766370037526 ], [ -78.092582013030651, 25.045851061885728 ], [ -78.092897672365325, 25.046147633223868 ], [ -78.091211336622848, 25.044190002203859 ] ], [ [ -78.087225345098446, 25.045578958811443 ], [ -78.085525058439018, 25.046058311023724 ], [ -78.087414103210804, 25.051682239339581 ], [ -78.089072785061404, 25.051245034729675 ], [ -78.087225345098446, 25.045578958811443 ] ], [ [ -78.08271470746061, 25.040773570379375 ], [ -78.079623425912146, 25.043576133450124 ], [ -78.079497892591348, 25.043658796581177 ], [ -78.079483051782674, 25.04366315310277 ], [ -78.07966709834767, 25.04421455546494 ], [ -78.079773756138906, 25.044214080761357 ], [ -78.07992686060669, 25.044235473646864 ], [ -78.080065215059747, 25.044298920136338 ], [ -78.080175276508527, 25.044398209693739 ], [ -78.080246271389825, 25.044523623236827 ], [ -78.080271250151171, 25.044662884481291 ], [ -78.080247767551626, 25.044802361603409 ], [ -78.080178122074614, 25.04492840160372 ], [ -78.080069130996336, 25.04502866676037 ], [ -78.079956497567807, 25.045081581315973 ], [ -78.080445430880076, 25.04654636704009 ], [ -78.08044748627664, 25.046545445964163 ], [ -78.084289439017127, 25.045462420795307 ], [ -78.08271470746061, 25.040773570379375 ] ], [ [ -78.084579141684458, 25.046324978217026 ], [ -78.083288245977187, 25.046688888538608 ], [ -78.085043070047348, 25.052307172863699 ], [ -78.08646279531095, 25.0519329808644 ], [ -78.084579141684458, 25.046324978217026 ] ], [ [ -78.082342074581035, 25.046955610990459 ], [ -78.080740183257547, 25.047407162689421 ], [ -78.080733075282154, 25.047408095032441 ], [ -78.082229327775565, 25.051890341535628 ], [ -78.082460396055367, 25.051891521335133 ], [ -78.082613254990008, 25.051914376073093 ], [ -78.082750879565765, 25.051979141022635 ], [ -78.082859798236115, 25.052079476588833 ], [ -78.082929349297615, 25.052205561299139 ], [ -78.082952724526038, 25.052345053170136 ], [ -78.082927635643969, 25.05248429780146 ], [ -78.082856538369583, 25.052609664949937 ], [ -78.082746392093611, 25.05270888275599 ], [ -78.082607978686084, 25.052772239017742 ], [ -78.082527473626527, 25.052783433240947 ], [ -78.082574984009739, 25.052925748438398 ], [ -78.082706965675229, 25.052922858059038 ], [ -78.084091852762768, 25.052557873217967 ], [ -78.082342074581035, 25.046955610990459 ] ], [ [ -78.086752565599369, 25.052795626947567 ], [ -78.085557269490934, 25.053110669129964 ], [ -78.087613440354104, 25.055358362283869 ], [ -78.086752565599369, 25.052795626947567 ] ], [ [ -78.099095485244348, 25.082665840098716 ], [ -78.09705123343916, 25.08200699410283 ], [ -78.093355780727933, 25.091199616453451 ], [ -78.095204098907118, 25.091816776898863 ], [ -78.099095485244348, 25.082665840098716 ] ], [ [ -78.09611747833732, 25.081706040153851 ], [ -78.094961300174589, 25.081333387577445 ], [ -78.09111128082904, 25.090450128641113 ], [ -78.092425804182852, 25.090889082287905 ], [ -78.09611747833732, 25.081706040153851 ] ], [ [ -78.09402726853898, 25.081032327436862 ], [ -78.092073064392437, 25.080402417279789 ], [ -78.088365408259136, 25.089533160639931 ], [ -78.090181199983377, 25.090139541109327 ], [ -78.09402726853898, 25.081032327436862 ] ], [ [ -78.091139293224359, 25.080101417522613 ], [ -78.089381048186809, 25.079534629146405 ], [ -78.087094558570712, 25.085257778661131 ], [ -78.087098507535089, 25.085259774020489 ], [ -78.087204134120086, 25.085363012163132 ], [ -78.087269559953228, 25.085490922522443 ], [ -78.087288380608143, 25.08563098440591 ], [ -78.08725875363703, 25.085769487612573 ], [ -78.087183578979932, 25.085892874470737 ], [ -78.087070215157397, 25.085989066962277 ], [ -78.086929759004789, 25.086048649023304 ], [ -78.086775959438924, 25.086065788281871 ], [ -78.086772010120242, 25.086065087651523 ], [ -78.085737070750085, 25.088655380065585 ], [ -78.087435450532794, 25.089222591547077 ], [ -78.091139293224359, 25.080101417522613 ] ], [ [ -78.088447344426953, 25.079233629149677 ], [ -78.087841827467187, 25.079038423332094 ], [ -78.086669276530174, 25.079304449173257 ], [ -78.085711356850055, 25.081634220469383 ], [ -78.087319923255791, 25.082055601529905 ], [ -78.088447344426953, 25.079233629149677 ] ], [ [ -78.086980458846085, 25.08290526901536 ], [ -78.086125626298966, 25.082681339216169 ], [ -78.086217950664832, 25.082739232778238 ], [ -78.086312167832503, 25.082851254377598 ], [ -78.086363762999923, 25.082984308063093 ], [ -78.086367685558841, 25.083125369669823 ], [ -78.086323551383231, 25.0832606311237 ], [ -78.086235680490788, 25.083376852064788 ], [ -78.08611267422414, 25.083462655916083 ], [ -78.085966573319183, 25.083509643525595 ], [ -78.085811679264197, 25.083513215361883 ], [ -78.08566315432715, 25.083473021769898 ], [ -78.085062759325069, 25.083211638486535 ], [ -78.084574683158081, 25.084398636891731 ], [ -78.086171995102674, 25.084928782236588 ], [ -78.086980458846085, 25.08290526901536 ] ], [ [ -78.085833321804301, 25.085776433489972 ], [ -78.084227321644136, 25.085243405244022 ], [ -78.08317603762984, 25.087800017995797 ], [ -78.084807125094855, 25.088344793299974 ], [ -78.085833321804301, 25.085776433489972 ] ], [ [ -78.098280813958795, 25.10052851326795 ], [ -78.097254367348, 25.103483247334175 ], [ -78.098793933281868, 25.104044568459905 ], [ -78.09941474778266, 25.101331419463907 ], [ -78.098280813958795, 25.10052851326795 ] ], [ [ -78.099442757380189, 25.094192685480159 ], [ -78.097975515563249, 25.093702830723565 ], [ -78.097253001283008, 25.095404583694677 ], [ -78.098836524304062, 25.095937916768449 ], [ -78.099442757380189, 25.094192685480159 ] ], [ [ -78.097045368695348, 25.093392281098389 ], [ -78.095776470347658, 25.092968619583317 ], [ -78.095055310805051, 25.094664360993988 ], [ -78.096323858793042, 25.095091636616274 ], [ -78.097045368695348, 25.093392281098389 ] ], [ [ -78.094846324230502, 25.092658052043486 ], [ -78.093012255899808, 25.09204565038107 ], [ -78.092317871252433, 25.093742280615064 ], [ -78.094126170601442, 25.094351396477695 ], [ -78.094846324230502, 25.092658052043486 ] ], [ [ -78.098537911066103, 25.096797552297318 ], [ -78.098528092392371, 25.096795766155545 ], [ -78.096895756464448, 25.096245993731209 ], [ -78.094282851865202, 25.102399779559192 ], [ -78.09633217504836, 25.103147008262152 ], [ -78.098537911066103, 25.096797552297318 ] ], [ [ -78.095966608009263, 25.09593304496153 ], [ -78.094697545930828, 25.095505596612941 ], [ -78.092103399718084, 25.101605060229087 ], [ -78.093363166826023, 25.102064429331325 ], [ -78.095966608009263, 25.09593304496153 ] ], [ [ -78.09376839976494, 25.095192630401552 ], [ -78.091971938238061, 25.094587502745167 ], [ -78.089489747397366, 25.100651955305253 ], [ -78.091183731137477, 25.10126969742177 ], [ -78.09376839976494, 25.095192630401552 ] ], [ [ -78.04044585775496, 25.059536120159134 ], [ -78.040487144455042, 25.059967460064573 ], [ -78.040776272034265, 25.061574365694849 ], [ -78.040777103792777, 25.061715475796316 ], [ -78.040730022091324, 25.061849913592297 ], [ -78.040674118432861, 25.061920796692018 ], [ -78.040686224258891, 25.06204726407891 ], [ -78.040981624693615, 25.062017037334929 ], [ -78.040753298458824, 25.059519211146647 ], [ -78.04044585775496, 25.059536120159134 ] ], [ [ -78.039674459437364, 25.061862592679802 ], [ -78.039563970159392, 25.060708211707354 ], [ -78.037959315089921, 25.061398901909367 ], [ -78.039674459437364, 25.061862592679802 ] ], [ [ -78.082828664678914, 25.088644771185983 ], [ -78.081851481356907, 25.091021061102559 ], [ -78.083743159167071, 25.09100757838203 ], [ -78.084468434242822, 25.089192445531427 ], [ -78.082828664678914, 25.088644771185983 ] ], [ [ -78.084726406834776, 25.091184818726251 ], [ -78.086408438609979, 25.091751516839079 ], [ -78.087091880395505, 25.090068612987658 ], [ -78.08539838595307, 25.089503033864879 ], [ -78.084726406834776, 25.091184818726251 ] ], [ [ -78.087337436963381, 25.092064497504932 ], [ -78.089115246097634, 25.09266342209364 ], [ -78.089825588565603, 25.090981540262579 ], [ -78.088021844155989, 25.090379183681058 ], [ -78.087337436963381, 25.092064497504932 ] ], [ [ -78.090044333124752, 25.092976410210404 ], [ -78.091388847831595, 25.093429332759086 ], [ -78.092082260428541, 25.091735110311543 ], [ -78.090755675393538, 25.091292129476347 ], [ -78.090044333124752, 25.092976410210404 ] ], [ [ -78.085502875085425, 25.079569069721494 ], [ -78.0813899642894, 25.080502081991703 ], [ -78.084756582004132, 25.081384097142276 ], [ -78.085502875085425, 25.079569069721494 ] ], [ [ -78.080594046101083, 25.081232157206095 ], [ -78.079594407874154, 25.080970242175081 ], [ -78.078941563446122, 25.082528832940412 ], [ -78.079251322380799, 25.082631658661725 ], [ -78.07959054910576, 25.081636403259456 ], [ -78.079659065516154, 25.081509842007748 ], [ -78.079767172268774, 25.081408757325569 ], [ -78.079904287100589, 25.08134304401468 ], [ -78.080056988333197, 25.081319134484112 ], [ -78.080210328650963, 25.081339369127061 ], [ -78.080349298193013, 25.081401767241484 ], [ -78.080460293762769, 25.081500220912798 ], [ -78.080532450361417, 25.081625092880941 ], [ -78.080558704721625, 25.081764159875316 ], [ -78.080536486738794, 25.08190380908783 ], [ -78.080182999428189, 25.08294092747628 ], [ -78.083644048670976, 25.084089750341562 ], [ -78.084165709127362, 25.08282109880852 ], [ -78.08073417460237, 25.081327069970637 ], [ -78.080606562697426, 25.081247040619321 ], [ -78.080594046101083, 25.081232157206095 ] ], [ [ -78.078588501918588, 25.083371711393774 ], [ -78.077524328634965, 25.085912191858508 ], [ -78.078070902966317, 25.086094775095262 ], [ -78.078957343710911, 25.083494149681819 ], [ -78.078588501918588, 25.083371711393774 ] ], [ [ -78.079002006841478, 25.086405804375175 ], [ -78.082246085004854, 25.087489407754489 ], [ -78.083296681133277, 25.084934517066472 ], [ -78.079889027023214, 25.083803419764024 ], [ -78.079002006841478, 25.086405804375175 ] ], [ [ -78.077171259882391, 25.086755044674373 ], [ -78.075364877331438, 25.091067110183538 ], [ -78.076378404225565, 25.091059933775465 ], [ -78.077776880581766, 25.086957351982647 ], [ -78.077171259882391, 25.086755044674373 ] ], [ [ -78.077418081685323, 25.091052564998908 ], [ -78.077473528687946, 25.091052171809967 ], [ -78.077541926224143, 25.091020663464718 ], [ -78.077695042448255, 25.090998994534718 ], [ -78.077848017775423, 25.091021473459673 ], [ -78.077907125477054, 25.091049096347888 ], [ -78.080790663392278, 25.091028611390172 ], [ -78.081898706038089, 25.088334159317601 ], [ -78.078707990716211, 25.087268382530318 ], [ -78.077418081685323, 25.091052564998908 ] ], [ [ -78.077730001777908, 25.114641961856371 ], [ -78.066736791323081, 25.111177859218639 ], [ -78.065956133904649, 25.11298577700147 ], [ -78.077175492656565, 25.116982087126786 ], [ -78.077730001777908, 25.114641961856371 ] ], [ [ -78.069781856325548, 25.134093739517514 ], [ -78.067965321510897, 25.133458998613321 ], [ -78.066647775292836, 25.135728478213593 ], [ -78.066843438042014, 25.135799666845639 ], [ -78.066976607041411, 25.135871889958469 ], [ -78.067078741185199, 25.135978038472238 ], [ -78.067139842867164, 25.136107721904043 ], [ -78.067153930930573, 25.136248245998519 ], [ -78.067119626183143, 25.136385855306063 ], [ -78.067040286460937, 25.136507079651494 ], [ -78.066923677997934, 25.136600052695265 ], [ -78.066781215247602, 25.136655673514845 ], [ -78.066637560221864, 25.136667607243684 ], [ -78.066655980805848, 25.136704179159825 ], [ -78.066673882112667, 25.136844343187235 ], [ -78.066643325979797, 25.136982682685815 ], [ -78.066567303300275, 25.137105656007737 ], [ -78.06645325560639, 25.137201225613858 ], [ -78.066312346677705, 25.137260036412385 ], [ -78.066158369753865, 25.137276331528312 ], [ -78.066006397321075, 25.13724851585096 ], [ -78.065804839057961, 25.13718039482319 ], [ -78.064822373743496, 25.138872599112652 ], [ -78.067448700847024, 25.139687225117594 ], [ -78.069781856325548, 25.134093739517514 ] ], [ [ -78.063872608826586, 25.138577989344356 ], [ -78.064867894445342, 25.136863729110814 ], [ -78.063753728117646, 25.136487156323717 ], [ -78.06299448463038, 25.138305595063127 ], [ -78.063872608826586, 25.138577989344356 ] ], [ [ -78.062055955341904, 25.138014455768328 ], [ -78.062824753847167, 25.136173167403602 ], [ -78.061280298424222, 25.135651131684035 ], [ -78.060507706673505, 25.137534160061115 ], [ -78.062055955341904, 25.138014455768328 ] ], [ [ -78.059569360695221, 25.137243057531563 ], [ -78.060351361064335, 25.135337134700904 ], [ -78.058137059544094, 25.134588631170008 ], [ -78.057523287304647, 25.136157268089633 ], [ -78.057449071332996, 25.136281153445829 ], [ -78.057336432601005, 25.136378098528155 ], [ -78.057196396964969, 25.1364386136039 ], [ -78.057042672177062, 25.136456774970615 ], [ -78.057025565136726, 25.13645385915952 ], [ -78.059569360695221, 25.137243057531563 ] ], [ [ -78.060698064829452, 25.134492116864674 ], [ -78.06198007312048, 25.131367397027326 ], [ -78.059708085728744, 25.130573344398545 ], [ -78.058469567973901, 25.133738813753588 ], [ -78.060698064829452, 25.134492116864674 ] ], [ [ -78.056788726465669, 25.136380378447665 ], [ -78.056754213371661, 25.136363245344764 ], [ -78.056647715967756, 25.136260709747845 ], [ -78.05658123854495, 25.136133235014753 ], [ -78.056561288288137, 25.135993299325726 ], [ -78.056589817916858, 25.135854600593898 ], [ -78.057208054729173, 25.13427458528378 ], [ -78.056818859266087, 25.134143017220541 ], [ -78.056670438253178, 25.13448662792019 ], [ -78.056765034733814, 25.134580941462374 ], [ -78.056829064655517, 25.134709449851179 ], [ -78.056846337039303, 25.134849680330468 ], [ -78.056815160991377, 25.134987906194471 ], [ -78.056738588086858, 25.135110596918079 ], [ -78.056624113718954, 25.135205742624422 ], [ -78.056482943434446, 25.135264029715913 ], [ -78.056328896057408, 25.135279752581944 ], [ -78.056327927078925, 25.135279571476548 ], [ -78.0559673866439, 25.136114244016639 ], [ -78.055994460628881, 25.136133948866856 ], [ -78.056788726465669, 25.136380378447665 ] ], [ [ -78.057540569235471, 25.133424769399905 ], [ -78.05878277494871, 25.130249937685978 ], [ -78.058631389020036, 25.130197025830533 ], [ -78.058600643943109, 25.130209650187947 ], [ -78.058514057887962, 25.130218321517479 ], [ -78.057181527037457, 25.133303394536377 ], [ -78.057540569235471, 25.133424769399905 ] ], [ [ -78.067033585673656, 25.133133416101725 ], [ -78.065393256675492, 25.132560206119191 ], [ -78.064410371708107, 25.134914410967212 ], [ -78.065722455384574, 25.135391811172617 ], [ -78.067033585673656, 25.133133416101725 ] ], [ [ -78.063490116928648, 25.134579567758177 ], [ -78.064468189935639, 25.13223693245617 ], [ -78.062905161544847, 25.131690699168384 ], [ -78.061949881766765, 25.134019121397735 ], [ -78.063490116928648, 25.134579567758177 ] ], [ [ -78.05766466545883, 24.940828625396232 ], [ -78.056297300083401, 24.940830999122081 ], [ -78.056144391968104, 24.940809188898356 ], [ -78.056006359752146, 24.940745363849345 ], [ -78.055896715097546, 24.940645771664087 ], [ -78.055826190804154, 24.940520161190733 ], [ -78.055808564349832, 24.940419920924686 ], [ -78.055535333450905, 24.947365559047409 ], [ -78.057533864570061, 24.947442159748913 ], [ -78.05766466545883, 24.940828625396232 ] ], [ [ -78.060624723841599, 24.93992139044472 ], [ -78.059562433382297, 24.938315965745485 ], [ -78.058709491018149, 24.938030827319423 ], [ -78.058705839131491, 24.938215514282497 ], [ -78.059127198558414, 24.938226126987345 ], [ -78.059279330693883, 24.938252041638343 ], [ -78.059415234248206, 24.938319552212239 ], [ -78.059521606134425, 24.938422050355328 ], [ -78.059588033938937, 24.938549502907154 ], [ -78.059608015158219, 24.938689433988667 ], [ -78.059579593742342, 24.938828146203498 ], [ -78.059505551623801, 24.938952061421954 ], [ -78.059393136461182, 24.939049049907435 ], [ -78.059253352226065, 24.939109617679286 ], [ -78.059099882060565, 24.939127835877251 ], [ -78.058688004861509, 24.939117462300263 ], [ -78.058672041468071, 24.939924813967789 ], [ -78.060624723841599, 24.93992139044472 ] ], [ [ -78.057726508185439, 24.937702208420145 ], [ -78.055938988736031, 24.937104604709248 ], [ -78.055812604675282, 24.940317216873531 ], [ -78.055825611435267, 24.940241411392396 ], [ -78.055895612771096, 24.940115558069024 ], [ -78.056004841884032, 24.940015587505709 ], [ -78.056142606650312, 24.939951285446565 ], [ -78.056295421773982, 24.939928946158556 ], [ -78.057682508754269, 24.939926539067734 ], [ -78.057726508185439, 24.937702208420145 ] ], [ [ -78.061464521302426, 24.941190526003197 ], [ -78.061216496705384, 24.940815704843896 ], [ -78.061170143936991, 24.94082248250022 ], [ -78.061003321785762, 24.940822776707197 ], [ -78.061077965706772, 24.941445438758155 ], [ -78.061464521302426, 24.941190526003197 ] ], [ [ -78.055267266487519, 24.954180268212355 ], [ -78.057273049944072, 24.954247697057191 ], [ -78.05750719941507, 24.948343987340969 ], [ -78.05549987113109, 24.948267051002642 ], [ -78.055267266487519, 24.954180268212355 ] ], [ [ -78.058261831499436, 24.954280927107114 ], [ -78.059945888798111, 24.954337508092696 ], [ -78.060105540148072, 24.948443535268787 ], [ -78.058495749193227, 24.948381866169115 ], [ -78.058261831499436, 24.954280927107114 ] ], [ [ -78.060934742403887, 24.95437072266143 ], [ -78.062256322405858, 24.954415102824267 ], [ -78.062204378131881, 24.948523912762457 ], [ -78.061094220432679, 24.94848140167629 ], [ -78.060934742403887, 24.95437072266143 ] ], [ [ -78.063246098109317, 24.954448332872715 ], [ -78.065031208905623, 24.954508248178289 ], [ -78.065163431745219, 24.951100520570289 ], [ -78.063197891321806, 24.9489861517009 ], [ -78.063246098109317, 24.954448332872715 ] ], [ [ -78.068335839067217, 24.954619107537614 ], [ -78.069789519140741, 24.954667850246619 ], [ -78.069843050772803, 24.953056913677862 ], [ -78.069871882136212, 24.952918272605444 ], [ -78.069946295278328, 24.95279453957399 ], [ -78.070059006023072, 24.952697826382767 ], [ -78.070198981450474, 24.952637599920738 ], [ -78.070352519878384, 24.952619755508977 ], [ -78.070504592045069, 24.952646039850308 ], [ -78.070640312220945, 24.952713880062241 ], [ -78.070746395268856, 24.952816635524105 ], [ -78.07081245704795, 24.952944247887377 ], [ -78.070832030883025, 24.953084225629471 ], [ -78.070778318346058, 24.954700997059675 ], [ -78.072103563696871, 24.954745411931661 ], [ -78.072121007469818, 24.952255555914203 ], [ -78.069809775519815, 24.951659140203322 ], [ -78.068469993595201, 24.952558358748949 ], [ -78.068335839067217, 24.954619107537614 ] ], [ [ -78.073101524005665, 24.953531429651118 ], [ -78.073092797363032, 24.95477855780188 ], [ -78.077655456454153, 24.954931351265021 ], [ -78.077658164170927, 24.954930991351031 ], [ -78.077661843997561, 24.954931565071018 ], [ -78.078336302529038, 24.954954139218433 ], [ -78.077109727124238, 24.953772506234593 ], [ -78.073101524005665, 24.953531429651118 ] ], [ [ -78.083797144376049, 24.956039440382579 ], [ -78.080544327309426, 24.955930663502155 ], [ -78.080718926731791, 24.957679797139331 ], [ -78.082781607033056, 24.957038742523348 ], [ -78.083797144376049, 24.956039440382579 ] ], [ [ -78.079547461369359, 24.955897313136262 ], [ -78.078140525623041, 24.9558502323417 ], [ -78.078104898594617, 24.95849215447971 ], [ -78.079755268022183, 24.957979278204473 ], [ -78.079547461369359, 24.955897313136262 ] ], [ [ -78.077151447122944, 24.955817126427334 ], [ -78.075562416136833, 24.955763925344428 ], [ -78.075646744967486, 24.959256020849217 ], [ -78.077111185780609, 24.958800954615302 ], [ -78.077151447122944, 24.955817126427334 ] ], [ [ -78.074571924140827, 24.955730754816031 ], [ -78.073086483439667, 24.955680996523036 ], [ -78.07306371795417, 24.958935620313706 ], [ -78.074658093015245, 24.959300231479009 ], [ -78.074571924140827, 24.955730754816031 ] ], [ [ -78.072097242514374, 24.955647851304978 ], [ -78.07075525639361, 24.955602876513524 ], [ -78.070704556195153, 24.958396076939113 ], [ -78.072075800683876, 24.958709687607858 ], [ -78.072097242514374, 24.955647851304978 ] ], [ [ -78.069711251853178, 24.958599417411879 ], [ -78.069766268822406, 24.955569724167947 ], [ -78.068309726548051, 24.955520886624015 ], [ -78.068340048039019, 24.960362086972836 ], [ -78.069711251853178, 24.958599417411879 ] ], [ [ -78.067358434756827, 24.961623906112209 ], [ -78.067320047609044, 24.955487694706171 ], [ -78.066031752308319, 24.955444477833659 ], [ -78.066419432555691, 24.961912815992132 ], [ -78.066756008543749, 24.961924109043313 ], [ -78.066930690719644, 24.961959489169473 ], [ -78.067044311045734, 24.962027691576033 ], [ -78.067358434756827, 24.961623906112209 ] ], [ [ -78.066480571763904, 24.962932785063884 ], [ -78.066543562119264, 24.963983601633075 ], [ -78.067134568355655, 24.96418944785227 ], [ -78.066480571763904, 24.962932785063884 ] ], [ [ -78.065426451544582, 24.961879494272754 ], [ -78.065038824099503, 24.955411161609582 ], [ -78.063295594618126, 24.955352653991895 ], [ -78.063900187431045, 24.961828264010141 ], [ -78.065426451544582, 24.961879494272754 ] ], [ [ -78.063414995462125, 24.967267791280783 ], [ -78.062988519866067, 24.962700314968721 ], [ -78.06100344161554, 24.962633650252414 ], [ -78.062635090216162, 24.967415171267039 ], [ -78.063414995462125, 24.967267791280783 ] ], [ [ -78.062903977570414, 24.961794816925561 ], [ -78.062299438122281, 24.955319210974118 ], [ -78.06091605770176, 24.955272756905892 ], [ -78.060821931336449, 24.9617248918954 ], [ -78.062903977570414, 24.961794816925561 ] ], [ [ -78.061664273931655, 24.967607148040198 ], [ -78.059955141465039, 24.962598434504478 ], [ -78.058232427324157, 24.962540546867217 ], [ -78.06045353010667, 24.969736222839877 ], [ -78.061366148905364, 24.967848156108548 ], [ -78.061450937694573, 24.96772851716041 ], [ -78.061572425724819, 24.967638946124591 ], [ -78.061664273931655, 24.967607148040198 ] ], [ [ -78.059832818039425, 24.961691662469235 ], [ -78.059926996137946, 24.955239536161621 ], [ -78.058231530841354, 24.955182573210575 ], [ -78.058053246506532, 24.96163186077677 ], [ -78.059832818039425, 24.961691662469235 ] ], [ [ -78.057242675234207, 24.955149341403548 ], [ -78.055251215154428, 24.955082395639568 ], [ -78.05526967775522, 24.96153827718787 ], [ -78.057064339328448, 24.96159861972659 ], [ -78.057242675234207, 24.955149341403548 ] ], [ [ -78.05547464515071, 24.962447836418342 ], [ -78.055885149200364, 24.963669322574066 ], [ -78.055885232837085, 24.963669478525201 ], [ -78.05588525963563, 24.963669651178595 ], [ -78.058428246131342, 24.971235833729526 ], [ -78.059667570726432, 24.971362206312882 ], [ -78.059826167459462, 24.97103410658859 ], [ -78.057193710784546, 24.962505633596564 ], [ -78.05547464515071, 24.962447836418342 ] ], [ [ -78.05426974661961, 24.957888184553202 ], [ -78.054135823942588, 24.961500141973548 ], [ -78.054280065904706, 24.961504993786303 ], [ -78.05426974661961, 24.957888184553202 ] ], [ [ -78.054102397541541, 24.962401685334392 ], [ -78.053830216589134, 24.969742939258722 ], [ -78.054202474318714, 24.970804855748941 ], [ -78.054789354590412, 24.970864717944064 ], [ -78.054916228573845, 24.963865727798666 ], [ -78.054427900737593, 24.962412633729599 ], [ -78.054102397541541, 24.962401685334392 ] ], [ [ -78.055777251923914, 24.970965478727258 ], [ -78.057356516600265, 24.971126541986777 ], [ -78.055855263604869, 24.966659850770256 ], [ -78.055777251923914, 24.970965478727258 ] ], [ [ -77.990994205748791, 24.921253128693259 ], [ -77.991029636636753, 24.920628900853735 ], [ -77.991054558014554, 24.920509033902196 ], [ -77.991113794780176, 24.92039964243224 ], [ -77.991203012982879, 24.920308729710037 ], [ -77.99601220009869, 24.916575944747201 ], [ -77.996216749246102, 24.914448831465656 ], [ -77.991291393458937, 24.918663851545546 ], [ -77.990485697754877, 24.920438392212834 ], [ -77.990994205748791, 24.921253128693259 ] ], [ [ -78.004350160609889, 24.917003015282933 ], [ -78.004183354704693, 24.91759221658684 ], [ -78.006618949074181, 24.917667286115027 ], [ -78.005575007722442, 24.917114826318738 ], [ -78.004350160609889, 24.917003015282933 ] ], [ [ -78.02360615684799, 24.937250127181613 ], [ -78.024017662900022, 24.926872890037714 ], [ -78.022967083297246, 24.926317133216301 ], [ -78.021822817910106, 24.936462620161233 ], [ -78.02360615684799, 24.937250127181613 ] ], [ [ -78.012991251290046, 24.9325621932703 ], [ -78.013810482940087, 24.921472737467003 ], [ -78.012765427049018, 24.920919776654561 ], [ -78.011609138731316, 24.931951715840565 ], [ -78.012991251290046, 24.9325621932703 ] ], [ [ -78.012196053004558, 24.936008727535683 ], [ -78.014190639291186, 24.938831700829489 ], [ -78.014644025409112, 24.934294536014761 ], [ -78.01387235465802, 24.933953709101477 ], [ -78.013857633014894, 24.934019754579367 ], [ -78.013798449136246, 24.93412677600374 ], [ -78.012524224744809, 24.935823948604508 ], [ -78.012417896043488, 24.935926489152823 ], [ -78.012282019581107, 24.93599405138777 ], [ -78.012196053004558, 24.936008727535683 ] ], [ [ -78.014739950879147, 24.93333456350317 ], [ -78.015819009049167, 24.922535454174515 ], [ -78.014923342001751, 24.922061560157619 ], [ -78.014844791074978, 24.922049053682613 ], [ -78.014762320139383, 24.922009227827758 ], [ -78.013951476799434, 24.932986312103704 ], [ -78.014739950879147, 24.93333456350317 ] ], [ [ -78.015048143447601, 24.940192329459975 ], [ -78.015107775383044, 24.942454077618564 ], [ -78.015778640624688, 24.942734222081253 ], [ -78.015301167427438, 24.940889013928636 ], [ -78.015292209625017, 24.940726374861701 ], [ -78.016129024300824, 24.934950404139833 ], [ -78.015595461439872, 24.934714752122623 ], [ -78.015048143447601, 24.940192329459975 ] ], [ [ -78.015134228503513, 24.943457320545175 ], [ -78.015176262789666, 24.945051378552673 ], [ -78.019487089941819, 24.948352022445274 ], [ -78.019520634655848, 24.948054664737811 ], [ -78.01951148588391, 24.948051212354354 ], [ -78.019393762634067, 24.947959593144294 ], [ -78.01634559952619, 24.944707356206571 ], [ -78.016280501712188, 24.944618375319344 ], [ -78.016240214575461, 24.94451792088892 ], [ -78.016066497258493, 24.943846618183546 ], [ -78.015134228503513, 24.943457320545175 ] ], [ [ -78.016265503526938, 24.934008347842042 ], [ -78.017777426414582, 24.923571612300396 ], [ -78.017517516762538, 24.923434102087356 ], [ -78.01737907343859, 24.923389942880615 ], [ -78.017255939384924, 24.923304468433464 ], [ -78.017244806844758, 24.9232898187886 ], [ -78.016762465241726, 24.923034622992745 ], [ -78.015691379410683, 24.933754779707193 ], [ -78.016265503526938, 24.934008347842042 ] ], [ [ -78.019656392057243, 24.946851233469708 ], [ -78.01981859749111, 24.945413336162112 ], [ -78.018720458315229, 24.944954814303497 ], [ -78.018631423957984, 24.94575766449125 ], [ -78.019656392057243, 24.946851233469708 ] ], [ [ -78.019925486566493, 24.94446579075105 ], [ -78.020767757194648, 24.936999011349673 ], [ -78.019657098169276, 24.936508530356445 ], [ -78.018825618761326, 24.944006543529589 ], [ -78.019925486566493, 24.94446579075105 ] ], [ [ -78.020875451929811, 24.936044258208462 ], [ -78.022028605138971, 24.925820667050022 ], [ -78.020907959130412, 24.925227818276195 ], [ -78.019763055790136, 24.935553006222488 ], [ -78.020875451929811, 24.936044258208462 ] ], [ [ -78.017742188914838, 24.94480888999686 ], [ -78.017770019062496, 24.944557954030753 ], [ -78.017337889655778, 24.944377513440276 ], [ -78.017742188914838, 24.94480888999686 ] ], [ [ -78.017875186884197, 24.943609683232143 ], [ -78.018709139934899, 24.936089890011285 ], [ -78.017066939686913, 24.935364634346232 ], [ -78.01628495547628, 24.940762440981167 ], [ -78.016918355495022, 24.943210141686933 ], [ -78.017875186884197, 24.943609683232143 ] ], [ [ -78.018815104966208, 24.935134365851312 ], [ -78.019968762903744, 24.924730949381861 ], [ -78.018704231060212, 24.924061949669635 ], [ -78.017203411769586, 24.934422577861351 ], [ -78.018815104966208, 24.935134365851312 ] ], [ [ -78.024837389599014, 24.931165181878814 ], [ -78.025132430437765, 24.927462588024209 ], [ -78.024987233094294, 24.927385781290322 ], [ -78.024837389599014, 24.931165181878814 ] ], [ [ -78.040599761559392, 24.921979429975412 ], [ -78.03746872891098, 24.922300883134731 ], [ -78.036495756955873, 24.923931164317718 ], [ -78.041050204923167, 24.926487995996197 ], [ -78.041591387623242, 24.925725289373123 ], [ -78.03913065627404, 24.923945704533146 ], [ -78.03902713196706, 24.923843423127508 ], [ -78.038962736319405, 24.923717228115152 ], [ -78.038943601850605, 24.923579137516089 ], [ -78.03897155065448, 24.923442302174845 ], [ -78.03904392092862, 24.923319753351539 ], [ -78.039153820521236, 24.92322316171709 ], [ -78.039290783329164, 24.92316172593581 ], [ -78.039441766022364, 24.923141296672547 ], [ -78.042734664536269, 24.923164116794041 ], [ -78.040599761559392, 24.921979429975412 ] ], [ [ -78.0360222000661, 24.924724625297408 ], [ -78.03539602103244, 24.925773793843451 ], [ -78.039924565714557, 24.928074363226816 ], [ -78.04051267501184, 24.927245544357138 ], [ -78.0360222000661, 24.924724625297408 ] ], [ [ -78.042131266116897, 24.924964410477727 ], [ -78.042768406596863, 24.924066441919361 ], [ -78.040871413835774, 24.924053306315471 ], [ -78.042131266116897, 24.924964410477727 ] ], [ [ -78.036725709320947, 24.921660129208068 ], [ -78.036727274941128, 24.921656326305641 ], [ -78.036772809070726, 24.921604269134452 ], [ -78.03681731900474, 24.921551480514278 ], [ -78.036820992528888, 24.921549183044078 ], [ -78.036823770196619, 24.921546007453337 ], [ -78.036884716113505, 24.921509329451627 ], [ -78.036944935820699, 24.921471667185333 ], [ -78.036949208082376, 24.921470517343902 ], [ -78.036952925899385, 24.921468279911629 ], [ -78.037023317808831, 24.921450571344401 ], [ -78.037093352590418, 24.92143172204274 ], [ -78.037097805393998, 24.921431832382982 ], [ -78.037102099436495, 24.921430752122546 ], [ -78.040417540012882, 24.921090372388942 ], [ -78.041816608134326, 24.919016968893636 ], [ -78.039615895836789, 24.918215482787527 ], [ -78.035199603526848, 24.918294793587336 ], [ -78.035072499947333, 24.918281996039717 ], [ -78.0349532425696, 24.918239909097814 ], [ -78.033084666277091, 24.917311461069978 ], [ -78.032975380750599, 24.918121943399775 ], [ -78.032919689866404, 24.91828118918146 ], [ -78.032771209769081, 24.918531961758774 ], [ -78.032777776862162, 24.918565903574478 ], [ -78.032756257902804, 24.918705647766803 ], [ -78.032688438486161, 24.918832488270244 ], [ -78.032580957138848, 24.918934009005735 ], [ -78.032513904256845, 24.918966530430769 ], [ -78.03130119313029, 24.921014661377782 ], [ -78.035652177574605, 24.923457557069106 ], [ -78.036722994123949, 24.921663349416633 ], [ -78.036725709320947, 24.921660129208068 ] ], [ [ -78.030830437265863, 24.921809695606004 ], [ -78.03008189888412, 24.923073840115222 ], [ -78.034531808911723, 24.925334734329628 ], [ -78.035178616435203, 24.924251015746901 ], [ -78.030830437265863, 24.921809695606004 ] ], [ [ -78.029611846326588, 24.923867659378732 ], [ -78.028812433073, 24.925217675056203 ], [ -78.033405597867599, 24.92722164125102 ], [ -78.034058887539032, 24.926127096262249 ], [ -78.029611846326588, 24.923867659378732 ] ], [ [ -78.02834184546019, 24.926012369559526 ], [ -78.028307888571675, 24.9260697131032 ], [ -78.028265000654272, 24.926168421309274 ], [ -78.028220224147205, 24.926217753173557 ], [ -78.027377832322401, 24.927640292772008 ], [ -78.031725478301055, 24.93003648212861 ], [ -78.032932041575464, 24.928015041981496 ], [ -78.02834184546019, 24.926012369559526 ] ], [ [ -78.032572999553182, 24.930503563441537 ], [ -78.036618692400083, 24.932733082506655 ], [ -78.038303802189574, 24.930358432050184 ], [ -78.033825645888996, 24.92840489060216 ], [ -78.032572999553182, 24.930503563441537 ] ], [ [ -78.038845661631854, 24.929594824367111 ], [ -78.039385984869526, 24.928833371204007 ], [ -78.034923104150096, 24.926566158118899 ], [ -78.034299197333141, 24.927611487462993 ], [ -78.038845661631854, 24.929594824367111 ] ], [ [ -78.037465781860419, 24.933199875091884 ], [ -78.039398940737854, 24.934265118365428 ], [ -78.039489518111125, 24.934219843214166 ], [ -78.03964157313429, 24.93419356741849 ], [ -78.043107676719757, 24.934098001063617 ], [ -78.043778270118139, 24.931064498272409 ], [ -78.040252081558648, 24.929273335452102 ], [ -78.03954516863233, 24.930269565024783 ], [ -78.039507936357651, 24.930383700854737 ], [ -78.039420135739505, 24.930499905731942 ], [ -78.039344015905641, 24.930553039836056 ], [ -78.037465781860419, 24.933199875091884 ] ], [ [ -78.04084664653486, 24.9350628287539 ], [ -78.04425637721863, 24.936941546620417 ], [ -78.044931813849772, 24.934950150211414 ], [ -78.04084664653486, 24.9350628287539 ] ], [ [ -78.02653021512667, 24.92717310465768 ], [ -78.027282975750552, 24.925901941393516 ], [ -78.026711458612453, 24.924696795973723 ], [ -78.026202045291711, 24.926992222238553 ], [ -78.02653021512667, 24.92717310465768 ] ], [ [ -78.026083020922229, 24.927980685345968 ], [ -78.025331470108085, 24.937413020885455 ], [ -78.027121461968719, 24.937468562204906 ], [ -78.027366602561031, 24.931023078040703 ], [ -78.026806542825952, 24.930797186326593 ], [ -78.026676547660458, 24.930720615704924 ], [ -78.026578864303119, 24.930611163220195 ], [ -78.026523054665404, 24.930479542916949 ], [ -78.026514581677347, 24.930338638766464 ], [ -78.026554274578402, 24.930202243471353 ], [ -78.026638247805195, 24.930083708331093 ], [ -78.026758281393157, 24.929994636332367 ], [ -78.02690262563452, 24.929943746390279 ], [ -78.027057151215402, 24.929936019907988 ], [ -78.027206732250917, 24.929972213184783 ], [ -78.03550173579012, 24.933317568407048 ], [ -78.035636620444208, 24.933398172484718 ], [ -78.035735901489133, 24.933514054837577 ], [ -78.035789025835342, 24.933652897849694 ], [ -78.035790346509913, 24.93379994328636 ], [ -78.035030172844273, 24.938219740521504 ], [ -78.035015520318893, 24.938261072254225 ], [ -78.035006474872517, 24.938303719409344 ], [ -78.034991859417602, 24.938327814693974 ], [ -78.034982571181786, 24.938354014841703 ], [ -78.034954627882072, 24.938389195185234 ], [ -78.034931571413011, 24.938427206408686 ], [ -78.034909505036794, 24.938446004361086 ], [ -78.034891791780126, 24.938468305143751 ], [ -78.034853292966034, 24.938493890383654 ], [ -78.034818482376139, 24.938523544853361 ], [ -78.034791125084212, 24.938535205385808 ], [ -78.034766720694606, 24.938551423833598 ], [ -78.034721434903147, 24.938564909486647 ], [ -78.034678277699157, 24.93858330439312 ], [ -78.034648307427915, 24.938586686078697 ], [ -78.03461960078738, 24.938595234602381 ], [ -78.034571960940156, 24.938595300581436 ], [ -78.034524681681702, 24.93860063528361 ], [ -78.034176238931806, 24.938589842989423 ], [ -78.034004597442674, 24.942754149362841 ], [ -78.042880205082625, 24.942989769113453 ], [ -78.043180804067561, 24.938367805561043 ], [ -78.043190865682945, 24.938326057520385 ], [ -78.039571052350666, 24.936101058323807 ], [ -78.037930356915311, 24.938420528985233 ], [ -78.037827157498725, 24.938525692084678 ], [ -78.037693367600099, 24.938596630855802 ], [ -78.037542083570884, 24.938626401248118 ], [ -78.037388114283559, 24.938612089085176 ], [ -78.037246531483206, 24.938555095340906 ], [ -78.037131194399691, 24.938460999002601 ], [ -78.037053393064255, 24.938339010944581 ], [ -78.037020743149583, 24.938201072277216 ], [ -78.037036440519259, 24.938060685441361 ], [ -78.03709894844684, 24.937931592478936 ], [ -78.039013276585337, 24.93522530270214 ], [ -78.039089080829726, 24.935148368633058 ], [ -78.026083020922229, 24.927980685345968 ] ], [ [ -78.033187457433527, 24.938559213053185 ], [ -78.028075951865262, 24.938400766137931 ], [ -78.027916579924053, 24.942592223612053 ], [ -78.033015603498967, 24.94272786168516 ], [ -78.033187457433527, 24.938559213053185 ] ], [ [ -78.027882301098799, 24.943493769467398 ], [ -78.027762232092201, 24.946651679350698 ], [ -78.027826732241593, 24.946547367737555 ], [ -78.027940686804527, 24.946451872593784 ], [ -78.028081430653685, 24.946393156621887 ], [ -78.028235186891706, 24.946376967286621 ], [ -78.029725518461078, 24.946434200456054 ], [ -78.029829562080423, 24.943545587618715 ], [ -78.027882301098799, 24.943493769467398 ] ], [ [ -78.027750013743997, 24.946973035967073 ], [ -78.027730705374836, 24.947480869945625 ], [ -78.029682975114881, 24.947615373893594 ], [ -78.029693043810994, 24.94733582546008 ], [ -78.028193543230543, 24.947278241258214 ], [ -78.028041824111469, 24.947250319165114 ], [ -78.02790699464866, 24.94718101864979 ], [ -78.027802252985438, 24.947077123382734 ], [ -78.027750013743997, 24.946973035967073 ] ], [ [ -78.027696399866883, 24.948383152209644 ], [ -78.027549280874481, 24.952252657480734 ], [ -78.029510111365809, 24.952414895084164 ], [ -78.029650472739647, 24.948517778477999 ], [ -78.027696399866883, 24.948383152209644 ] ], [ [ -78.030497163311381, 24.952496552957541 ], [ -78.03233587910033, 24.952648650239777 ], [ -78.032360175899157, 24.948704420723697 ], [ -78.03063798423301, 24.948585803332996 ], [ -78.030497163311381, 24.952496552957541 ] ], [ [ -78.032365747993609, 24.947800164088235 ], [ -78.032367976713019, 24.94743851105418 ], [ -78.030681628585015, 24.947373781004227 ], [ -78.030670479332855, 24.947683399218324 ], [ -78.032365747993609, 24.947800164088235 ] ], [ [ -78.03237353987808, 24.946535855210069 ], [ -78.032391553854055, 24.943613725202255 ], [ -78.030818535865365, 24.943571895178717 ], [ -78.030714095975526, 24.946472156467678 ], [ -78.03237353987808, 24.946535855210069 ] ], [ [ -78.033324850479559, 24.952730447606505 ], [ -78.034637232118072, 24.952838983661167 ], [ -78.034773423722768, 24.948870600964575 ], [ -78.033349199646111, 24.948772531366497 ], [ -78.033324850479559, 24.952730447606505 ] ], [ [ -78.034804397731861, 24.947968096184031 ], [ -78.034819345054757, 24.947532571824119 ], [ -78.033357175812, 24.947476472240311 ], [ -78.033354764444454, 24.947868275384085 ], [ -78.034804397731861, 24.947968096184031 ] ], [ [ -78.034850291184782, 24.946630892052422 ], [ -78.034951508869298, 24.943681764308451 ], [ -78.033722287139071, 24.943649099282414 ], [ -78.03362393312959, 24.943690625224772 ], [ -78.03347026302545, 24.943707450465901 ], [ -78.033380478199135, 24.943691312305315 ], [ -78.033362731716679, 24.94657381704522 ], [ -78.034850291184782, 24.946630892052422 ] ], [ [ -78.035940476636227, 24.94370803747352 ], [ -78.035828297002311, 24.946977328131883 ], [ -78.035829838897499, 24.94698039989855 ], [ -78.035847604476473, 24.947120581782134 ], [ -78.035818937593746, 24.947250097765988 ], [ -78.035781732167521, 24.948334416605157 ], [ -78.035788128994682, 24.948348371223151 ], [ -78.035800761763994, 24.948489014941234 ], [ -78.0357833426513, 24.948556100649832 ], [ -78.037791408421739, 24.948585505513865 ], [ -78.037943874281311, 24.948609814999745 ], [ -78.038080638534737, 24.948675889347296 ], [ -78.038091030103629, 24.94868567255147 ], [ -78.042510463167432, 24.948674802213109 ], [ -78.042821613405906, 24.943890660468078 ], [ -78.035940476636227, 24.94370803747352 ] ], [ [ -78.035743190337897, 24.949457696780428 ], [ -78.035614422123615, 24.953210671063108 ], [ -78.03562447201989, 24.953233558147296 ], [ -78.035634777208003, 24.953374359510157 ], [ -78.035605137262039, 24.953481285864616 ], [ -78.035592459711651, 24.953850784570001 ], [ -78.036957602302806, 24.953871842373584 ], [ -78.037119441441874, 24.94947785194881 ], [ -78.035743190337897, 24.949457696780428 ] ], [ [ -78.043501779925762, 24.948672345864701 ], [ -78.047352043115879, 24.948662742744354 ], [ -78.047435740002058, 24.94366359270084 ], [ -78.047436189935524, 24.943661236051533 ], [ -78.04743584636519, 24.943658864563425 ], [ -78.047511478324623, 24.940981585948077 ], [ -78.044136785161399, 24.938907458779592 ], [ -78.043501779925762, 24.948672345864701 ] ], [ [ -78.04834161545223, 24.948660258499395 ], [ -78.053622434587211, 24.948646890052334 ], [ -78.05382203982596, 24.943265249026268 ], [ -78.048513733796241, 24.940341031922191 ], [ -78.048518350994968, 24.940372901646075 ], [ -78.0485144745263, 24.940510158582498 ], [ -78.05322629340003, 24.943405808317905 ], [ -78.053339523101258, 24.943502010789803 ], [ -78.053414605412797, 24.943625406703053 ], [ -78.053444190684971, 24.943763917274303 ], [ -78.053425382764487, 24.943903984164489 ], [ -78.053360022543842, 24.944031896647928 ], [ -78.053254507822217, 24.944135133714681 ], [ -78.05311916708807, 24.94420358973138 ], [ -78.052967248505297, 24.944230563677724 ], [ -78.052813623063997, 24.944213415115225 ], [ -78.052673328850545, 24.944153822667229 ], [ -78.048484275440373, 24.941579450110659 ], [ -78.048424960771456, 24.943679723108289 ], [ -78.04834161545223, 24.948660258499395 ] ], [ [ -78.047817499519923, 24.939957467731606 ], [ -78.045864822734359, 24.938881681931775 ], [ -78.047711991268798, 24.94001696222881 ], [ -78.047743478873201, 24.939989694439443 ], [ -78.047817499519923, 24.939957467731606 ] ], [ [ -78.025259728373968, 24.938313393067446 ], [ -78.023909304244341, 24.955260746148952 ], [ -78.026667911251081, 24.955294937276872 ], [ -78.02676543865357, 24.953033704100086 ], [ -78.02672125452311, 24.953009283579156 ], [ -78.026622477002277, 24.952907188699829 ], [ -78.026561612332387, 24.952782874892307 ], [ -78.026544205226358, 24.952647667254134 ], [ -78.026715296436933, 24.94814859431321 ], [ -78.026695637256879, 24.948127739864656 ], [ -78.026635962175575, 24.94799753423009 ], [ -78.026623339864059, 24.947856888736442 ], [ -78.026659005728391, 24.947719570770889 ], [ -78.026735998338879, 24.947604220783965 ], [ -78.026902484528222, 24.94322641404726 ], [ -78.026865365208351, 24.943154905843901 ], [ -78.026845625628667, 24.943014942669848 ], [ -78.026874289433692, 24.942876268221557 ], [ -78.026918610912091, 24.942802373691894 ], [ -78.027087175010919, 24.938370095540382 ], [ -78.025259728373968, 24.938313393067446 ] ], [ [ -78.027657631645994, 24.955307191709679 ], [ -78.028004346623064, 24.955311483072908 ], [ -78.028162524111522, 24.955337229902696 ], [ -78.02830330922535, 24.955407830707426 ], [ -78.028411852397568, 24.955515838741263 ], [ -78.028476704756798, 24.955649861655747 ], [ -78.028491025725643, 24.955795763104355 ], [ -78.028311121426796, 24.958012193723185 ], [ -78.028276328689415, 24.958148131418127 ], [ -78.028197609477573, 24.958267860805904 ], [ -78.028082503528424, 24.958359914003346 ], [ -78.027942035836688, 24.95841547397081 ], [ -78.027789660665249, 24.95842921904547 ], [ -78.027639972844426, 24.958399832679319 ], [ -78.027055175014794, 24.95819459952726 ], [ -78.026999152655776, 24.958319104406453 ], [ -78.027003818844051, 24.958367896331378 ], [ -78.026968952279134, 24.958505385249417 ], [ -78.026889187514428, 24.958626322662351 ], [ -78.026845262596211, 24.958661110621001 ], [ -78.026451481632222, 24.959536243712694 ], [ -78.026452625309489, 24.95958913530006 ], [ -78.026407701737654, 24.95972417731841 ], [ -78.026319201142044, 24.959839954539941 ], [ -78.026312847274511, 24.959844339907228 ], [ -78.025645050400641, 24.961328408211198 ], [ -78.030216875411895, 24.960917494944063 ], [ -78.029470462817898, 24.958615276016424 ], [ -78.029450350713091, 24.958475357167998 ], [ -78.029478651222945, 24.958336620637368 ], [ -78.029552593942427, 24.958212646911122 ], [ -78.02966494074299, 24.958115571349659 ], [ -78.029804694329144, 24.958054896313346 ], [ -78.029958174733395, 24.958036561032714 ], [ -78.030110358373449, 24.958062360259984 ], [ -78.030246348608216, 24.958129768598692 ], [ -78.03035283386599, 24.958232187702688 ], [ -78.030419390635728, 24.95835959214844 ], [ -78.031219496510587, 24.960827360896214 ], [ -78.031385536610244, 24.960812433495363 ], [ -78.031578726393391, 24.95587245160069 ], [ -78.031592390381306, 24.955808615951007 ], [ -78.031604315864612, 24.955744491351865 ], [ -78.031607186804877, 24.955739489713544 ], [ -78.031608372756409, 24.955733949158176 ], [ -78.031643005813592, 24.955677087221918 ], [ -78.031676083378727, 24.955619460710295 ], [ -78.031680509164374, 24.955615512661698 ], [ -78.031683515103865, 24.955610577382526 ], [ -78.031735727055477, 24.955566255180962 ], [ -78.031786718796639, 24.955520767615166 ], [ -78.031792266199432, 24.955518259616174 ], [ -78.031796797881455, 24.955514412710162 ], [ -78.031861477849247, 24.955486968777457 ], [ -78.031925392339858, 24.955458072762713 ], [ -78.031931518343853, 24.955457250311067 ], [ -78.031937132176537, 24.955454868337078 ], [ -78.032007948870699, 24.955446989046695 ], [ -78.032078529758678, 24.955437513096129 ], [ -78.034547217406796, 24.95546194415169 ], [ -78.034606235546505, 24.953742192109868 ], [ -78.033145518324702, 24.953621389323253 ], [ -78.033115263860864, 24.953648663850462 ], [ -78.032976955925704, 24.953712022426291 ], [ -78.032823941377302, 24.95373331546481 ], [ -78.032671198492253, 24.953710458619508 ], [ -78.032533678963873, 24.953645689286276 ], [ -78.032444428126254, 24.953563403225306 ], [ -78.031142705217349, 24.953455730715035 ], [ -78.030999841109946, 24.956590545117805 ], [ -78.03096930097368, 24.956728886159219 ], [ -78.030893362734602, 24.956851852670116 ], [ -78.030779459660351, 24.956947407778461 ], [ -78.030638741374247, 24.957006197812216 ], [ -78.030484982453714, 24.957022467929516 ], [ -78.030333234043837, 24.956994625467036 ], [ -78.03019835048886, 24.956925395852778 ], [ -78.030093535227223, 24.956821555816909 ], [ -78.030029048310212, 24.956693270017912 ], [ -78.030011202075443, 24.956553096027346 ], [ -78.030146309616356, 24.953589002933345 ], [ -78.030115312354695, 24.953602252418353 ], [ -78.02996171882927, 24.953619742444058 ], [ -78.029809714375091, 24.953593105568334 ], [ -78.029674178400583, 24.953524949206713 ], [ -78.029647080456101, 24.953498567413547 ], [ -78.029613371663103, 24.954805834064469 ], [ -78.029585571148317, 24.954944654494614 ], [ -78.029512076642447, 24.955068848611329 ], [ -78.029400082199004, 24.95516625937784 ], [ -78.029260550605485, 24.95522735147771 ], [ -78.029107140272785, 24.955246144725585 ], [ -78.028954868221788, 24.955220799474208 ], [ -78.02881864005596, 24.955153796704572 ], [ -78.028711790838088, 24.955051695165945 ], [ -78.02864477972301, 24.954924489340208 ], [ -78.028624166139224, 24.954784631084841 ], [ -78.028663733344075, 24.953250649252428 ], [ -78.027749575805899, 24.953175011722994 ], [ -78.027657631645994, 24.955307191709679 ] ], [ [ -78.034120624968509, 24.937685529838248 ], [ -78.034754120178349, 24.934002436736669 ], [ -78.031398354731948, 24.932649134774714 ], [ -78.031323257435702, 24.93759885376717 ], [ -78.033704723859628, 24.937672646546332 ], [ -78.033719090404546, 24.937671073535729 ], [ -78.033732654811729, 24.937673511794934 ], [ -78.034120624968509, 24.937685529838248 ] ], [ [ -78.030334288142271, 24.937568198015875 ], [ -78.030414980756134, 24.932252542192785 ], [ -78.028341534336633, 24.931416294895232 ], [ -78.028110231569059, 24.937499233256851 ], [ -78.030334288142271, 24.937568198015875 ] ], [ [ -78.031341124964385, 24.96194809151369 ], [ -78.031251490518244, 24.96202554199591 ], [ -78.031111733524881, 24.962086218721751 ], [ -78.030958248461943, 24.962104555643627 ], [ -78.030806059665863, 24.962078757783029 ], [ -78.030670064590325, 24.962011350425982 ], [ -78.030563575480841, 24.961908931925947 ], [ -78.030505613528589, 24.961797984277045 ], [ -78.025219974122834, 24.962273052517389 ], [ -78.024752153306878, 24.963312671962321 ], [ -78.031284678057119, 24.963391518721764 ], [ -78.031341124964385, 24.96194809151369 ] ], [ [ -78.032274386202388, 24.963403439278885 ], [ -78.034273870743988, 24.963427501957238 ], [ -78.034392003543616, 24.959984928364417 ], [ -78.034373487498556, 24.959949752135554 ], [ -78.034352922563315, 24.95980988852952 ], [ -78.034380774200997, 24.959671077033789 ], [ -78.034404126708537, 24.959631647519497 ], [ -78.034516269505957, 24.956363759240201 ], [ -78.032550390640012, 24.956344308587884 ], [ -78.032274386202388, 24.963403439278885 ] ], [ [ -78.024059707256257, 24.964206451201733 ], [ -78.023339310062582, 24.964325789873907 ], [ -78.023164792971869, 24.968028774553925 ], [ -78.033297070436063, 24.968635982761231 ], [ -78.034372977799819, 24.965866282583683 ], [ -78.034287571047898, 24.965783399724256 ], [ -78.034221639145272, 24.965655724412912 ], [ -78.034202214902749, 24.965515725322781 ], [ -78.034242926852059, 24.964329275691885 ], [ -78.032239130814077, 24.96430516223985 ], [ -78.032233700192492, 24.964444061136824 ], [ -78.033352173100923, 24.964470559808611 ], [ -78.033504386858823, 24.964496248000575 ], [ -78.033640442914475, 24.964563556956847 ], [ -78.033747023253412, 24.964665898059398 ], [ -78.033813695057646, 24.964793253520078 ], [ -78.033833931939427, 24.96493315696387 ], [ -78.03380575282273, 24.965071913699866 ], [ -78.03373191592182, 24.965195941240438 ], [ -78.033619648806763, 24.965293098854136 ], [ -78.033479940956809, 24.965353876004823 ], [ -78.03332646803679, 24.96537232333668 ], [ -78.032145937333354, 24.96534435497097 ], [ -78.032101065994055, 24.965418022717841 ], [ -78.031987775269172, 24.965514188346759 ], [ -78.031847430121985, 24.965573733774324 ], [ -78.031693768602977, 24.965590830215039 ], [ -78.031541832322318, 24.965563804118492 ], [ -78.031406494014973, 24.965495301000256 ], [ -78.031301001635256, 24.965392026475442 ], [ -78.031266015491042, 24.965323502308479 ], [ -78.025834961511251, 24.965194679676824 ], [ -78.025682747581072, 24.965168983560201 ], [ -78.0255466943334, 24.965101666975468 ], [ -78.025440119708222, 24.9649993193906 ], [ -78.025373455980514, 24.964871959372285 ], [ -78.025353228573323, 24.964732053871288 ], [ -78.025381417337172, 24.964593297845724 ], [ -78.025455262805437, 24.96446927369054 ], [ -78.025567536368996, 24.964372121702532 ], [ -78.025707247901082, 24.964311351723222 ], [ -78.0258607215506, 24.964292912276775 ], [ -78.031244434341602, 24.964420616571253 ], [ -78.031249415407416, 24.964293242130211 ], [ -78.024059707256257, 24.964206451201733 ] ], [ [ -78.035206814085399, 24.965091462811298 ], [ -78.036543536182293, 24.965114650177384 ], [ -78.036720392499078, 24.960312476869682 ], [ -78.035371771028537, 24.960283186656593 ], [ -78.035206814085399, 24.965091462811298 ] ], [ [ -78.036753597834505, 24.959410875932335 ], [ -78.036924392327776, 24.954773525835385 ], [ -78.035561521807594, 24.954752503880872 ], [ -78.035522105790321, 24.955901339541757 ], [ -78.035525552876635, 24.955922674944212 ], [ -78.035520428195255, 24.955950235734743 ], [ -78.035402704792872, 24.959381535526351 ], [ -78.036753597834505, 24.959410875932335 ] ], [ [ -78.037533017453626, 24.965131806384925 ], [ -78.039953249214847, 24.965173741937054 ], [ -78.039969195122467, 24.965173188754594 ], [ -78.039972636566972, 24.965174077703672 ], [ -78.041996459639407, 24.965209114034653 ], [ -78.042139698241201, 24.960430052909871 ], [ -78.037709676056963, 24.960333954944119 ], [ -78.037533017453626, 24.965131806384925 ] ], [ [ -78.042166726156452, 24.959528321459214 ], [ -78.042306764198543, 24.954856425212267 ], [ -78.03791386056551, 24.95478878029904 ], [ -78.037742874132348, 24.95943235446974 ], [ -78.042166726156452, 24.959528321459214 ] ], [ [ -78.042985868094661, 24.965226232567169 ], [ -78.047410436225633, 24.965302704657709 ], [ -78.047536380260055, 24.96054694098347 ], [ -78.043128938795746, 24.960451493840864 ], [ -78.042985868094661, 24.965226232567169 ] ], [ [ -78.047560263234516, 24.959645145088597 ], [ -78.047683891868274, 24.954977299961104 ], [ -78.047588492009396, 24.954962161522598 ], [ -78.047535844630403, 24.954936776468571 ], [ -78.043296146503863, 24.954871642434853 ], [ -78.043155959453671, 24.959549762895684 ], [ -78.047560263234516, 24.959645145088597 ] ], [ [ -78.037947063283795, 24.953887097299983 ], [ -78.042333795610404, 24.953954649824226 ], [ -78.042465024610919, 24.949576981234625 ], [ -78.038105383537911, 24.949587706981426 ], [ -78.037947063283795, 24.953887097299983 ] ], [ [ -78.043323170662646, 24.953969867551979 ], [ -78.047262194894742, 24.954030388815724 ], [ -78.047336941669101, 24.949564843912494 ], [ -78.043454894124196, 24.94957452811331 ], [ -78.043323170662646, 24.953969867551979 ] ], [ [ -78.048251514655817, 24.954045572808745 ], [ -78.05341926904525, 24.954124779751059 ], [ -78.053588974934428, 24.949549034437506 ], [ -78.048326521240753, 24.949562359082876 ], [ -78.048251514655817, 24.954045572808745 ] ], [ [ -78.039016016531349, 24.917324019506477 ], [ -78.038306083098007, 24.915456837446129 ], [ -78.034107063125973, 24.916792188843786 ], [ -78.035311305362868, 24.917390543106837 ], [ -78.039016016531349, 24.917324019506477 ] ], [ [ -78.037982036412998, 24.914604545452491 ], [ -78.03759283689547, 24.913580872447728 ], [ -78.033482222164409, 24.914363058171727 ], [ -78.033246606715977, 24.916110468404696 ], [ -78.037982036412998, 24.914604545452491 ] ], [ [ -78.027881463336641, 24.924891274981377 ], [ -78.029986735552114, 24.921335965235514 ], [ -78.028083740602966, 24.920267419405612 ], [ -78.027407077858157, 24.923890952483703 ], [ -78.027881463336641, 24.924891274981377 ] ], [ [ -78.030457495685326, 24.920540933291807 ], [ -78.031566997394592, 24.918667136385697 ], [ -78.028721762286054, 24.916850671624957 ], [ -78.028262789694551, 24.919308585264744 ], [ -78.030457495685326, 24.920540933291807 ] ], [ [ -78.032015137367239, 24.917852081994216 ], [ -78.03215062402154, 24.916847344529561 ], [ -78.029414648661827, 24.915487808504373 ], [ -78.02910464060875, 24.916006303900534 ], [ -78.02916840694671, 24.916034660555091 ], [ -78.032015137367239, 24.917852081994216 ] ], [ [ -78.032280451456629, 24.915884565533879 ], [ -78.032480325203366, 24.914402317380926 ], [ -78.030287276665092, 24.914028294580586 ], [ -78.029888176638281, 24.914695813721867 ], [ -78.032280451456629, 24.915884565533879 ] ], [ [ -78.032601290792627, 24.913505235865241 ], [ -78.032768316295275, 24.912266561224094 ], [ -78.029542476830215, 24.911938991273576 ], [ -78.029030631470206, 24.914245738360638 ], [ -78.029590824256616, 24.913308791117565 ], [ -78.02968522672947, 24.913197000350728 ], [ -78.029812885112619, 24.913117280817186 ], [ -78.029961306204001, 24.91307743417012 ], [ -78.030115964948394, 24.913081359936886 ], [ -78.032601290792627, 24.913505235865241 ] ], [ [ -78.032702433866476, 24.911352224419101 ], [ -78.032726533350711, 24.911271382386516 ], [ -78.032811280875094, 24.911153314601869 ], [ -78.032930179001013, 24.911066160426849 ], [ -78.033177699354965, 24.909230481828729 ], [ -78.033121773347517, 24.909212759810551 ], [ -78.032998460557579, 24.909127519564436 ], [ -78.032910065475519, 24.909011698565681 ], [ -78.032865240788325, 24.908876634252501 ], [ -78.032868374126139, 24.908735547712812 ], [ -78.03291915861729, 24.908602249492205 ], [ -78.033012622987641, 24.908489787716913 ], [ -78.033065923673362, 24.90845595235324 ], [ -78.033030995592966, 24.908429726643693 ], [ -78.03294777793289, 24.908310758315423 ], [ -78.032908943442891, 24.908174159712825 ], [ -78.032918293383133, 24.908033302106507 ], [ -78.032974912357304, 24.907901973626668 ], [ -78.033073257978728, 24.907793029582457 ], [ -78.033203703446262, 24.907717134109078 ], [ -78.03335347990047, 24.907681716313473 ], [ -78.033386928049012, 24.907678759744655 ], [ -78.033706219340587, 24.905310726291038 ], [ -78.033505622668855, 24.905312155260869 ], [ -78.033414171619583, 24.905364156284289 ], [ -78.033264003618768, 24.905398156743175 ], [ -78.033109665235358, 24.905388170533016 ], [ -78.032966264344566, 24.905335175168858 ], [ -78.032941484650109, 24.905316172504342 ], [ -78.031410773686915, 24.905327061976877 ], [ -78.030059949835646, 24.91070535666238 ], [ -78.030002231303698, 24.910836287186658 ], [ -78.029902973444607, 24.910944543164849 ], [ -78.029771892265003, 24.911019527680196 ], [ -78.029745133134071, 24.911025656636717 ], [ -78.029739434001044, 24.911051341719801 ], [ -78.032702433866476, 24.911352224419101 ] ], [ [ -78.033956258550049, 24.91084734349419 ], [ -78.03812729710701, 24.910053206640818 ], [ -78.03415094701171, 24.90940339280683 ], [ -78.033956258550049, 24.91084734349419 ] ], [ [ -78.039036934993035, 24.909285409384836 ], [ -78.039690659029091, 24.908027721649429 ], [ -78.034272357505742, 24.908506792281781 ], [ -78.039036934993035, 24.909285409384836 ] ], [ [ -78.03898165709316, 24.907184120376691 ], [ -78.035585164650186, 24.905307070724927 ], [ -78.035439411555174, 24.905302667503907 ], [ -78.035426663764611, 24.905298459442616 ], [ -78.034703707004908, 24.905303616578848 ], [ -78.034395496833056, 24.907589606165502 ], [ -78.03898165709316, 24.907184120376691 ] ], [ [ -78.045493500951437, 24.898982317445419 ], [ -78.045387847331568, 24.899039108183064 ], [ -78.045236804906324, 24.899069680102187 ], [ -78.045082797106375, 24.8990561845076 ], [ -78.044940899446573, 24.898999942440931 ], [ -78.044828531495284, 24.898909306228244 ], [ -78.042326481462851, 24.898634562542167 ], [ -78.041845095264648, 24.90065981667399 ], [ -78.04246686743042, 24.900165546408711 ], [ -78.042578215164411, 24.900098757711099 ], [ -78.042705073724051, 24.900061513646534 ], [ -78.042838229859797, 24.900056519096129 ], [ -78.050408070292747, 24.900707625952585 ], [ -78.05172204498389, 24.899666038556809 ], [ -78.046879481870121, 24.899134483138873 ], [ -78.04687651295788, 24.899135640416123 ], [ -78.046726484084431, 24.899170114740311 ], [ -78.046572118057611, 24.89916061625642 ], [ -78.04642852545858, 24.899108074736894 ], [ -78.046393081419723, 24.899081083168948 ], [ -78.045493500951437, 24.898982317445419 ] ], [ [ -78.041340230963058, 24.898526252868187 ], [ -78.039887396752377, 24.898366690737827 ], [ -78.039325835860424, 24.900853529603648 ], [ -78.040634824423762, 24.901493869223202 ], [ -78.041340230963058, 24.898526252868187 ] ], [ [ -78.038902057128738, 24.898258464277092 ], [ -78.037463240432444, 24.898100417180778 ], [ -78.036104196059938, 24.904539153092056 ], [ -78.036471287730706, 24.904742030579396 ], [ -78.038300652435098, 24.901050641992853 ], [ -78.03829812736376, 24.901042258998594 ], [ -78.038305249307342, 24.900901293562825 ], [ -78.038902057128738, 24.898258464277092 ] ], [ [ -78.036478884844328, 24.897992282104511 ], [ -78.035524683388061, 24.897887453096775 ], [ -78.033866721674727, 24.904407481413031 ], [ -78.035126652253467, 24.904398499442909 ], [ -78.036478884844328, 24.897992282104511 ] ], [ [ -78.044668254260628, 24.897983127890075 ], [ -78.044604613529799, 24.897037273182125 ], [ -78.03593702370793, 24.8970241604489 ], [ -78.044668254260628, 24.897983127890075 ] ], [ [ -78.044543914530081, 24.896135114632905 ], [ -78.044422287033299, 24.894327312924254 ], [ -78.044425344158327, 24.894298292480933 ], [ -78.044422454398969, 24.894269677325433 ], [ -78.044432630044554, 24.894229129550141 ], [ -78.044437084415534, 24.894186845403507 ], [ -78.044450093754136, 24.894159540346489 ], [ -78.04445727088239, 24.894130940984379 ], [ -78.045706833207845, 24.891305746754995 ], [ -78.045431218333135, 24.891289955074299 ], [ -78.043746386267486, 24.892139024698938 ], [ -78.043576571886916, 24.892190817721804 ], [ -78.043397669134436, 24.892184053892802 ], [ -78.03951122892407, 24.891378298626574 ], [ -78.039443700022005, 24.891377492873854 ], [ -78.039321562308842, 24.891339676561739 ], [ -78.037057724459828, 24.893666157069735 ], [ -78.03693852586207, 24.893755561999416 ], [ -78.036794916358417, 24.893807097419366 ], [ -78.036640883320572, 24.893815743827528 ], [ -78.036491429400911, 24.893780659058251 ], [ -78.03636111124672, 24.89370526031637 ], [ -78.036262621657741, 24.893596891340533 ], [ -78.036205553302722, 24.893466107116449 ], [ -78.036195464418356, 24.893325645815739 ], [ -78.03645444029577, 24.890744470205259 ], [ -78.035339605984319, 24.890513290475795 ], [ -78.034571369832534, 24.893406841622234 ], [ -78.036083885653014, 24.89467779847827 ], [ -78.036188602756539, 24.894803269308358 ], [ -78.036239567516702, 24.894953950774561 ], [ -78.036230550325911, 24.89511142510171 ], [ -78.035973555898863, 24.896122142277694 ], [ -78.044543914530081, 24.896135114632905 ] ], [ [ -78.050762184416541, 24.898652119504174 ], [ -78.049394058994494, 24.898154277027611 ], [ -78.048698141278933, 24.898425557971994 ], [ -78.050762184416541, 24.898652119504174 ] ], [ [ -78.034305119571229, 24.894409644125652 ], [ -78.033676867104234, 24.896775836268567 ], [ -78.034761767601879, 24.896895039119961 ], [ -78.035202095817795, 24.895163368080055 ], [ -78.034305119571229, 24.894409644125652 ] ], [ [ -78.033442457383941, 24.897658676670471 ], [ -78.031646244556171, 24.904423285117595 ], [ -78.032849552635284, 24.904414724974757 ], [ -78.034537006131359, 24.897778939710157 ], [ -78.033442457383941, 24.897658676670471 ] ], [ [ -78.034375159494033, 24.89031328859917 ], [ -78.034341842633154, 24.89030637939652 ], [ -78.034163302906009, 24.891111230467224 ], [ -78.034375159494033, 24.89031328859917 ] ], [ [ -78.038202969536499, 24.89113031046735 ], [ -78.038169511984137, 24.891100100895144 ], [ -78.037427295207564, 24.890946200407477 ], [ -78.037317536296143, 24.892040244161109 ], [ -78.038202969536499, 24.89113031046735 ] ], [ [ -78.039387570183436, 24.890427575756341 ], [ -78.041185363671076, 24.888830051643026 ], [ -78.04078790833313, 24.886817452405541 ], [ -78.040670957358216, 24.886852886605368 ], [ -78.038973023105385, 24.887108563379115 ], [ -78.038991057056151, 24.890345361040474 ], [ -78.039387570183436, 24.890427575756341 ] ], [ [ -78.038000945392113, 24.890140061877911 ], [ -78.037984907315121, 24.887257345678236 ], [ -78.036129990265337, 24.887536625371208 ], [ -78.035572411661022, 24.889636475137859 ], [ -78.038000945392113, 24.890140061877911 ] ], [ [ -78.034607971429125, 24.889436474028642 ], [ -78.035245908750412, 24.887034059716566 ], [ -78.035299858518343, 24.886912209266825 ], [ -78.035390023356356, 24.886809715749219 ], [ -78.035508749253268, 24.886735279645215 ], [ -78.035645957762824, 24.88669521967611 ], [ -78.040509880843842, 24.885962861993512 ], [ -78.0406190175418, 24.885962211965921 ], [ -78.040262466920353, 24.884156635926644 ], [ -78.035458997042753, 24.885270104464833 ], [ -78.034538028847265, 24.889421969388533 ], [ -78.034607971429125, 24.889436474028642 ] ], [ [ -78.031596308800687, 24.878333984313418 ], [ -78.032259088083975, 24.880573993265607 ], [ -78.032922855893418, 24.878941210864099 ], [ -78.032812844278055, 24.877510629481243 ], [ -78.031596308800687, 24.878333984313418 ] ], [ [ -78.033640475385354, 24.876950474987492 ], [ -78.033668076740881, 24.876972352876663 ], [ -78.033747778650692, 24.877093296227176 ], [ -78.033782611015994, 24.877230788066164 ], [ -78.033916769223467, 24.878975193372973 ], [ -78.033914372831745, 24.879000246916313 ], [ -78.033917567082597, 24.87902522627034 ], [ -78.033907687526565, 24.879070139717363 ], [ -78.033903322464724, 24.879115775073316 ], [ -78.033892556488254, 24.879138926878742 ], [ -78.033887132663011, 24.879163584097967 ], [ -78.03272449723346, 24.882023548642113 ], [ -78.032648681010954, 24.882146555089413 ], [ -78.032634237007301, 24.882158693567767 ], [ -78.032628843807103, 24.882180055175237 ], [ -78.032544380858084, 24.882304874430144 ], [ -78.031086387176131, 24.883832447665689 ], [ -78.031203723973164, 24.886351371627502 ], [ -78.033317896550798, 24.88819325226013 ], [ -78.033421611613875, 24.888323220744798 ], [ -78.033468769691623, 24.888478112732926 ], [ -78.033453380222568, 24.888638252742343 ], [ -78.033293325092714, 24.889172842284189 ], [ -78.03357230247866, 24.889226922243463 ], [ -78.035439542965236, 24.880809198907563 ], [ -78.035051257064566, 24.877221368940397 ], [ -78.033912631718067, 24.876766273058017 ], [ -78.033640475385354, 24.876950474987492 ] ], [ [ -78.036089843291691, 24.877636469362148 ], [ -78.036430934186598, 24.880787957983461 ], [ -78.036425454840014, 24.880886634468347 ], [ -78.036492140872369, 24.880900555414378 ], [ -78.039352823654184, 24.881949011085705 ], [ -78.036701776336002, 24.87788104086146 ], [ -78.036089843291691, 24.877636469362148 ] ], [ [ -78.0414911497502, 24.882732669835477 ], [ -78.043854912195954, 24.883598897944893 ], [ -78.043468822153045, 24.88053282651752 ], [ -78.041703576383597, 24.88053282720929 ], [ -78.041505225246652, 24.882680458054949 ], [ -78.0414911497502, 24.882732669835477 ] ], [ [ -78.044898473019828, 24.883981306488526 ], [ -78.046261183035895, 24.884480650808563 ], [ -78.048787698905315, 24.881278899129214 ], [ -78.0474537444981, 24.878893154691482 ], [ -78.039213806006885, 24.876518860185236 ], [ -78.038856196943684, 24.879421705562667 ], [ -78.040570816459436, 24.882052653007371 ], [ -78.040756354789607, 24.880043920161665 ], [ -78.040790138659872, 24.879913900672651 ], [ -78.04086419949914, 24.879798616329531 ], [ -78.040972037090782, 24.879708185310225 ], [ -78.041104186790776, 24.879650544462429 ], [ -78.041249050217175, 24.879630752727007 ], [ -78.043909710000136, 24.879630753647852 ], [ -78.044051704564779, 24.879649752273234 ], [ -78.044181736541844, 24.87970514995607 ], [ -78.044288850785136, 24.879792279458933 ], [ -78.044364022911239, 24.879903800147186 ], [ -78.04440091959772, 24.880030316421696 ], [ -78.044898473019828, 24.883981306488526 ] ], [ [ -78.040185213934876, 24.883226222797934 ], [ -78.036233590195167, 24.881777956780137 ], [ -78.035676637746619, 24.884288916117963 ], [ -78.040195165138229, 24.883241491622087 ], [ -78.040185213934876, 24.883226222797934 ] ], [ [ -78.029321808484468, 24.879268393300968 ], [ -78.029578690729906, 24.88205199993412 ], [ -78.029565809574294, 24.882198721708026 ], [ -78.027946534172912, 24.888136250639644 ], [ -78.029698623675444, 24.888475954836235 ], [ -78.030221181430363, 24.886507677162601 ], [ -78.030089999784892, 24.883691056238987 ], [ -78.030117359966312, 24.88352279061446 ], [ -78.030211094741119, 24.883375735591621 ], [ -78.030910616057398, 24.882642844536839 ], [ -78.029321808484468, 24.879268393300968 ] ], [ [ -78.030666347335753, 24.888663572270733 ], [ -78.032324394935117, 24.888985009979468 ], [ -78.03242172714765, 24.888659926389384 ], [ -78.030996871154585, 24.887418582061205 ], [ -78.030666347335753, 24.888663572270733 ] ], [ [ -78.027846611460106, 24.876472183924559 ], [ -78.027596899690195, 24.876267105095771 ], [ -78.024669493469574, 24.88750081934732 ], [ -78.026978628735449, 24.887948578266823 ], [ -78.028586419150969, 24.882053338105184 ], [ -78.028117447496172, 24.876970907650332 ], [ -78.027846611460106, 24.876472183924559 ] ], [ [ -78.026759666276249, 24.875579508411633 ], [ -78.025953193949476, 24.874917162493063 ], [ -78.022704762472131, 24.887119811628381 ], [ -78.023701890808482, 24.887313181959666 ], [ -78.026759666276249, 24.875579508411633 ] ], [ [ -78.024975273862438, 24.874768170185927 ], [ -78.024422984043809, 24.87471466762176 ], [ -78.020493440723442, 24.886690949598336 ], [ -78.021737041250262, 24.886932137024605 ], [ -78.024975273862438, 24.874768170185927 ] ], [ [ -78.023422597748606, 24.874617750736817 ], [ -78.020639199924346, 24.874348060110101 ], [ -78.017538853107496, 24.886117882067396 ], [ -78.019522916510311, 24.886502715331641 ], [ -78.023422597748606, 24.874617750736817 ] ], [ [ -78.003522268632921, 24.901234944013627 ], [ -78.004910921488772, 24.901489781612309 ], [ -78.006394240994283, 24.894873700794552 ], [ -78.004820124881519, 24.894703363911781 ], [ -78.003522268632921, 24.901234944013627 ] ], [ [ -78.004996825265223, 24.893814064170666 ], [ -78.006593074941733, 24.893986796455565 ], [ -78.008513052518509, 24.885422182875192 ], [ -78.00856371364884, 24.885298952803467 ], [ -78.006758253303019, 24.884948618929656 ], [ -78.004996825265223, 24.893814064170666 ] ], [ [ -78.005880566132447, 24.901667716756897 ], [ -78.006469493968723, 24.901775784864729 ], [ -78.008487533944091, 24.895100191556949 ], [ -78.007379815498908, 24.894980342107541 ], [ -78.005880566132447, 24.901667716756897 ] ], [ [ -78.007578642325726, 24.894093437109905 ], [ -78.008753438800966, 24.894220543915932 ], [ -78.01129023489149, 24.885827964313215 ], [ -78.009488042942763, 24.885478301424062 ], [ -78.009481945378809, 24.885602898627237 ], [ -78.007578642325726, 24.894093437109905 ] ], [ [ -78.007441552149317, 24.901954151670754 ], [ -78.009556177766243, 24.902342148516137 ], [ -78.011477234747304, 24.895423619019834 ], [ -78.009480966046183, 24.895207668514978 ], [ -78.007441552149317, 24.901954151670754 ] ], [ [ -78.009746863791946, 24.894328019751939 ], [ -78.011722104498674, 24.894541694954384 ], [ -78.013995640438253, 24.886352823895532 ], [ -78.012259251302552, 24.886015963697062 ], [ -78.009746863791946, 24.894328019751939 ] ], [ [ -78.010527018181151, 24.902520269666386 ], [ -78.012220252783294, 24.90283091255165 ], [ -78.012216820491631, 24.902825801471629 ], [ -78.012180735777491, 24.902688575060129 ], [ -78.012192911534484, 24.902547894877134 ], [ -78.01399823033401, 24.895696293139185 ], [ -78.012467727271712, 24.895530757261636 ], [ -78.010527018181151, 24.902520269666386 ] ], [ [ -78.012712589911771, 24.894648832221485 ], [ -78.014230942096191, 24.894813053636398 ], [ -78.016340057149662, 24.886807605904774 ], [ -78.014963667590408, 24.886540611764197 ], [ -78.012712589911771, 24.894648832221485 ] ], [ [ -78.013013492535691, 24.902976433975603 ], [ -78.014053867936411, 24.903167285861311 ], [ -78.0164199365299, 24.895958186152644 ], [ -78.014987224917434, 24.895803251929681 ], [ -78.013154604197993, 24.902758685676584 ], [ -78.013095360844687, 24.902889049151106 ], [ -78.013013492535691, 24.902976433975603 ] ], [ [ -78.015027680106257, 24.903345919772942 ], [ -78.016051988193666, 24.903533808957938 ], [ -78.017380070420231, 24.903295431224912 ], [ -78.01925229196047, 24.896264436404692 ], [ -78.017416933054605, 24.896065993438874 ], [ -78.015027680106257, 24.903345919772942 ] ], [ [ -78.018448990176765, 24.903103561516271 ], [ -78.020861129307534, 24.902670555861604 ], [ -78.020721520423052, 24.898816912780266 ], [ -78.020734660139908, 24.89869769520368 ], [ -78.021310887586665, 24.896486988187252 ], [ -78.020241580917727, 24.896371390694306 ], [ -78.018448990176765, 24.903103561516271 ] ], [ [ -78.021844340611821, 24.902494046704774 ], [ -78.0230712402157, 24.902273780238037 ], [ -78.024554130840258, 24.896837550399653 ], [ -78.022299612873738, 24.89659386731017 ], [ -78.021712206775859, 24.898847532646624 ], [ -78.021844340611821, 24.902494046704774 ] ], [ [ -78.024142940715478, 24.902081368069915 ], [ -78.026183443245571, 24.901714995488653 ], [ -78.027396980224452, 24.897144773554814 ], [ -78.025544114231138, 24.896944543070564 ], [ -78.024142940715478, 24.902081368069915 ] ], [ [ -78.027252041257199, 24.901523116735994 ], [ -78.028644977105898, 24.901272987315732 ], [ -78.029803310116904, 24.897404778445349 ], [ -78.028386207640494, 24.897251664866015 ], [ -78.027252041257199, 24.901523116735994 ] ], [ [ -78.029560453683985, 24.901639659450048 ], [ -78.029963825729283, 24.901471675525773 ], [ -78.031221682347081, 24.897558015159483 ], [ -78.030796424410141, 24.897512073033973 ], [ -78.029560453683985, 24.901639659450048 ] ], [ [ -78.015219929566726, 24.894920011536936 ], [ -78.01670784574992, 24.895080915144241 ], [ -78.01923839009207, 24.887369782593545 ], [ -78.01730770805203, 24.886995303814416 ], [ -78.015219929566726, 24.894920011536936 ] ], [ [ -78.017704835158639, 24.895188721155055 ], [ -78.019487400975223, 24.895381455442902 ], [ -78.021503559506982, 24.887809103630747 ], [ -78.020208921024334, 24.88755801809576 ], [ -78.017704835158639, 24.895188721155055 ] ], [ [ -78.020476682819108, 24.895488408827052 ], [ -78.021541170654956, 24.895603485250973 ], [ -78.023473099257131, 24.888191057213781 ], [ -78.022471287547702, 24.887996779119526 ], [ -78.020476682819108, 24.895488408827052 ] ], [ [ -78.022529888827648, 24.8957103635022 ], [ -78.024794815497657, 24.895955171315808 ], [ -78.02673973267558, 24.888824492673798 ], [ -78.024440708747477, 24.888378695454115 ], [ -78.022529888827648, 24.8957103635022 ] ], [ [ -78.02578479177491, 24.896062163043716 ], [ -78.027631449595532, 24.896261722355671 ], [ -78.029465762616596, 24.889353038176161 ], [ -78.027707644921549, 24.889012165967561 ], [ -78.02578479177491, 24.896062163043716 ] ], [ [ -78.028620669896853, 24.896368612767485 ], [ -78.030066792264194, 24.896524861519815 ], [ -78.032063420312269, 24.889856642059275 ], [ -78.030433493098613, 24.889540656489952 ], [ -78.028620669896853, 24.896368612767485 ] ], [ [ -78.03105989944298, 24.896632155007683 ], [ -78.031898681218607, 24.89672277008955 ], [ -78.0319088138762, 24.896725377404227 ], [ -78.033376156117683, 24.890111120917517 ], [ -78.0330323572352, 24.890044475435019 ], [ -78.03105989944298, 24.896632155007683 ] ], [ [ -78.019647523251166, 24.874251960997206 ], [ -78.019359506796178, 24.874224049284759 ], [ -78.017918883240455, 24.875501679934455 ], [ -78.017930346117879, 24.875546690771351 ], [ -78.017917076807009, 24.875687288256845 ], [ -78.015205847753947, 24.885665329587777 ], [ -78.016571209027916, 24.885930185027846 ], [ -78.019647523251166, 24.874251960997206 ] ], [ [ -78.020651127797535, 24.873442054942206 ], [ -78.020886159587164, 24.873464830173489 ], [ -78.021168913311769, 24.871621091692376 ], [ -78.01975609451415, 24.871496041136393 ], [ -78.020651127797535, 24.873442054942206 ] ], [ [ -78.016640745023494, 24.876635177335928 ], [ -78.015740183395124, 24.877433808858171 ], [ -78.016050170672841, 24.878808662262134 ], [ -78.016640745023494, 24.876635177335928 ] ], [ [ -78.015493223275101, 24.880858333221212 ], [ -78.007970248270894, 24.884261521124763 ], [ -78.011634775136159, 24.88497254002576 ], [ -78.011651915761263, 24.884955425272704 ], [ -78.011786447704324, 24.884885750429522 ], [ -78.011937998499192, 24.884857407574067 ], [ -78.012091733436989, 24.884873171060889 ], [ -78.012232604028526, 24.884931497851341 ], [ -78.01234682099512, 24.885026678556443 ], [ -78.012406290151034, 24.885122222336065 ], [ -78.014238002923278, 24.8854775767152 ], [ -78.015493223275101, 24.880858333221212 ] ], [ [ -77.998191867355118, 24.906311680851818 ], [ -77.999177485178834, 24.905756227363959 ], [ -77.999324392143762, 24.905168122646899 ], [ -77.998191867355118, 24.906311680851818 ] ], [ [ -78.00173520556379, 24.902141038851202 ], [ -78.003771370173283, 24.902200833389166 ], [ -78.002377025966965, 24.901944942481961 ], [ -78.00173520556379, 24.902141038851202 ] ], [ [ -78.01912236449769, 24.903902077706825 ], [ -78.023038537370425, 24.90364342301956 ], [ -78.022930932664366, 24.90355819666398 ], [ -78.022851177311225, 24.903437272294152 ], [ -78.02281629679463, 24.90329978826238 ], [ -78.022822201004288, 24.903237883835864 ], [ -78.021718734144926, 24.903435988146324 ], [ -78.021676017407231, 24.903477611192798 ], [ -78.02154055170891, 24.903545795277182 ], [ -78.021388614148236, 24.903572462666279 ], [ -78.021235077573039, 24.903555002929988 ], [ -78.021182041855454, 24.903532336855253 ], [ -78.01912236449769, 24.903902077706825 ] ], [ [ -78.023646794386408, 24.90359339981875 ], [ -78.025635438527488, 24.903274150699406 ], [ -78.026518963649636, 24.902906237267441 ], [ -78.026378690758861, 24.902895912231294 ], [ -78.026235862657813, 24.902841649856931 ], [ -78.026118410135268, 24.902749788545474 ], [ -78.026056471107665, 24.902657188722785 ], [ -78.023879232117011, 24.903048107980752 ], [ -78.023789516453249, 24.903376997412355 ], [ -78.023729132406871, 24.903506923659933 ], [ -78.023646794386408, 24.90359339981875 ] ], [ [ -78.026843879449729, 24.902770935540065 ], [ -78.027921016438697, 24.902322386280623 ], [ -78.026995690046249, 24.902488543297014 ], [ -78.026975730687781, 24.902563710344349 ], [ -78.026916236646187, 24.902693977175439 ], [ -78.026843879449729, 24.902770935540065 ] ], [ [ -78.000684411813211, 24.903784645744683 ], [ -78.000136412040078, 24.90597851571453 ], [ -78.000422010050372, 24.906475104443469 ], [ -78.000942082094781, 24.903491792686644 ], [ -78.000684411813211, 24.903784645744683 ] ], [ [ -78.00201045476669, 24.903051687058213 ], [ -78.004909065660712, 24.903360666530943 ], [ -78.004976674077909, 24.903309200987859 ], [ -78.005120285996497, 24.903256680498469 ], [ -78.005274663776945, 24.903247205775966 ], [ -78.005424696001086, 24.90328170424797 ], [ -78.00555569661644, 24.903356798984319 ], [ -78.005629506062903, 24.903437453277622 ], [ -78.00772152193592, 24.903660406193481 ], [ -78.00777767405215, 24.903577058944194 ], [ -78.007895450138449, 24.903485539114151 ], [ -78.00803847017275, 24.903431692249757 ], [ -78.00819273445822, 24.903420789196616 ], [ -78.008343142685575, 24.903453897195906 ], [ -78.008474971997671, 24.903527775425182 ], [ -78.008575318108967, 24.903635192225344 ], [ -78.00863057659474, 24.903757277568207 ], [ -78.010684089030491, 24.903976084276071 ], [ -78.010697572198424, 24.903840825569304 ], [ -78.007956495004635, 24.903226205087872 ], [ -78.00201045476669, 24.903051687058213 ] ], [ [ -78.011666817661279, 24.904080785962975 ], [ -78.011859258025694, 24.904101288117825 ], [ -78.011669025426059, 24.904058636621006 ], [ -78.011666817661279, 24.904080785962975 ] ], [ [ -78.02951105307379, 24.90265189508354 ], [ -78.02958848411653, 24.902639461943075 ], [ -78.029595836297233, 24.902616587557851 ], [ -78.02951105307379, 24.90265189508354 ] ], [ [ -78.000719000078433, 24.906991495885993 ], [ -78.00148416309365, 24.908321897961862 ], [ -78.001522125965721, 24.908252356400578 ], [ -78.001630517033803, 24.908151646807692 ], [ -78.001767726325468, 24.908086413748908 ], [ -78.001920322916533, 24.908063042623745 ], [ -78.00211870050714, 24.908061359753674 ], [ -78.002107705860425, 24.903970291630802 ], [ -78.001864699660089, 24.903944386074308 ], [ -78.001393236484546, 24.906648979929191 ], [ -78.001345335429221, 24.906783166361201 ], [ -78.001254312845049, 24.906897285225881 ], [ -78.001129078592598, 24.906980165710557 ], [ -78.000981891506669, 24.907023694823742 ], [ -78.000827159403315, 24.907023611578815 ], [ -78.000719000078433, 24.906991495885993 ] ], [ [ -78.003107805764785, 24.908052965066396 ], [ -78.004304175056163, 24.908042802520189 ], [ -78.004679563054253, 24.904244437917757 ], [ -78.003097085160434, 24.904075759666036 ], [ -78.003107805764785, 24.908052965066396 ] ], [ [ -78.005298142757951, 24.908034351963423 ], [ -78.00729386044145, 24.908017364656089 ], [ -78.007597202681481, 24.904555386832065 ], [ -78.005662314204642, 24.90434918175843 ], [ -78.005298142757951, 24.908034351963423 ] ], [ [ -78.008286875494505, 24.908008902268918 ], [ -78.010283772896926, 24.907991864840969 ], [ -78.010594504466681, 24.904874763859699 ], [ -78.008580270352184, 24.904660144371501 ], [ -78.008286875494505, 24.908008902268918 ] ], [ [ -78.011277816672703, 24.907983373728641 ], [ -78.013203705728031, 24.907966903924621 ], [ -78.013368662924407, 24.905170307962766 ], [ -78.011577240307844, 24.904979465463931 ], [ -78.011277816672703, 24.907983373728641 ] ], [ [ -78.014194751975367, 24.907958418997872 ], [ -78.01667252293251, 24.90793717649731 ], [ -78.016791943339413, 24.905534931969221 ], [ -78.014353002386244, 24.905275161337308 ], [ -78.014194751975367, 24.907958418997872 ] ], [ [ -78.01766307449391, 24.907928672737459 ], [ -78.018980544102121, 24.907917352219531 ], [ -78.019304768317696, 24.905206300546556 ], [ -78.017786274049143, 24.905450008011865 ], [ -78.01766307449391, 24.907928672737459 ] ], [ [ -78.019976545402201, 24.907908786221729 ], [ -78.021672672562147, 24.907894183540716 ], [ -78.022249048231444, 24.904733718618299 ], [ -78.020319193480347, 24.905043483557456 ], [ -78.019976545402201, 24.907908786221729 ] ], [ [ -78.022676947703374, 24.907885528204147 ], [ -78.024821862167542, 24.907867019601287 ], [ -78.025128112686488, 24.904446975215901 ], [ -78.025138199849295, 24.904409146481779 ], [ -78.023664399711365, 24.904506521053381 ], [ -78.023230260491658, 24.904576212214032 ], [ -78.023247068725965, 24.904624663631846 ], [ -78.023245872680889, 24.904765775995326 ], [ -78.022676947703374, 24.907885528204147 ] ], [ [ -78.025815029477215, 24.907858439034815 ], [ -78.027304658123342, 24.907845556825905 ], [ -78.027410306209205, 24.907776636004133 ], [ -78.027557812824668, 24.907734022855504 ], [ -78.027712538467355, 24.907735066721692 ], [ -78.027859337671728, 24.907779665407876 ], [ -78.027922599362086, 24.90782223916764 ], [ -78.029278060651521, 24.903605256658178 ], [ -78.025942044639834, 24.904140875397484 ], [ -78.025943293894358, 24.904141578225527 ], [ -78.026043433628573, 24.904249153028921 ], [ -78.026102223959498, 24.904379685731055 ], [ -78.026113909978918, 24.904520398942179 ], [ -78.025815029477215, 24.907858439034815 ] ], [ [ -78.028948281065254, 24.907837941046683 ], [ -78.029055466367254, 24.907852473294334 ], [ -78.029193992870731, 24.907915341102903 ], [ -78.02930443813311, 24.908014172475497 ], [ -78.029375991021965, 24.908139293179602 ], [ -78.029376180695195, 24.908140321986536 ], [ -78.02999816492887, 24.90533709731211 ], [ -78.029784111382625, 24.905338616804176 ], [ -78.029752995979962, 24.905334348237968 ], [ -78.028948281065254, 24.907837941046683 ] ], [ [ -78.03019863646567, 24.90443357028893 ], [ -78.03042533841537, 24.903411810468135 ], [ -78.030365122224495, 24.903430705102618 ], [ -78.030364839356594, 24.903430750524329 ], [ -78.030042163780152, 24.904434681175633 ], [ -78.03019863646567, 24.90443357028893 ] ], [ [ -78.001847710739568, 24.908953991775274 ], [ -78.006102408787896, 24.916350950202983 ], [ -78.006375891982273, 24.916495680156753 ], [ -78.004373929244551, 24.908944342543151 ], [ -78.001929522666416, 24.908965098948354 ], [ -78.001847710739568, 24.908953991775274 ] ], [ [ -78.006760263933103, 24.914107013129655 ], [ -78.007214754686601, 24.908920169586004 ], [ -78.005389269100434, 24.908935709105258 ], [ -78.006760263933103, 24.914107013129655 ] ], [ [ -78.007564556694561, 24.916253043762648 ], [ -78.009450442316236, 24.916351071937704 ], [ -78.010193765275631, 24.908894762589327 ], [ -78.008207777040141, 24.908911707047295 ], [ -78.007564556694561, 24.916253043762648 ] ], [ [ -78.01043858811272, 24.916402426010244 ], [ -78.011318740571596, 24.916448162059531 ], [ -78.011338267992556, 24.916442078692896 ], [ -78.011492993208762, 24.916439959126144 ], [ -78.011568260211106, 24.916461127084315 ], [ -78.012699205944628, 24.916519885641748 ], [ -78.013150466798464, 24.908869486940947 ], [ -78.011187816369244, 24.908886271397307 ], [ -78.01043858811272, 24.916402426010244 ] ], [ [ -78.013686794696085, 24.916571188934252 ], [ -78.014925507484975, 24.91663552824367 ], [ -78.014938548168445, 24.916629703221862 ], [ -78.015091748377628, 24.916609829243082 ], [ -78.015244184813355, 24.916634100819145 ], [ -78.015285897416177, 24.916654245100936 ], [ -78.018604072753419, 24.916826533064633 ], [ -78.018688955586853, 24.916803278332711 ], [ -78.018843659302632, 24.916806427934869 ], [ -78.018965507086094, 24.916845295114364 ], [ -78.020030063238821, 24.916900551040225 ], [ -78.021507889381908, 24.908797725265089 ], [ -78.019868551865301, 24.908811838540576 ], [ -78.019561000637793, 24.911383572878044 ], [ -78.019519474267142, 24.911521536565502 ], [ -78.019432659751544, 24.911640699312251 ], [ -78.019309291544957, 24.911729071920544 ], [ -78.017185223776053, 24.912803823161838 ], [ -78.017045137262272, 24.912851170317374 ], [ -78.016895939193702, 24.912858208479207 ], [ -78.016751243643256, 24.912824295413529 ], [ -78.016624253832518, 24.912752525617801 ], [ -78.016526557325335, 24.912649447949097 ], [ -78.016467068665591, 24.912524468039734 ], [ -78.016451215950596, 24.912388990034621 ], [ -78.016627657492151, 24.908839686734883 ], [ -78.014141520308939, 24.908861001689708 ], [ -78.013686794696085, 24.916571188934252 ] ], [ [ -78.018872543216588, 24.908820404500005 ], [ -78.01761821630565, 24.908831182594295 ], [ -78.017479436190698, 24.911623335452475 ], [ -78.018605462193861, 24.911053579368136 ], [ -78.018872543216588, 24.908820404500005 ] ], [ [ -78.021023432305014, 24.916952105035683 ], [ -78.022245607182555, 24.91701552441161 ], [ -78.02233819206316, 24.916990883981377 ], [ -78.02249286353279, 24.916995146200758 ], [ -78.022613533021229, 24.917034614310058 ], [ -78.023994495916938, 24.917106257601468 ], [ -78.024741017548877, 24.908769837946704 ], [ -78.022512171984275, 24.908789070349048 ], [ -78.021023432305014, 24.916952105035683 ] ], [ [ -78.024982381057711, 24.917157500359554 ], [ -78.025491515566415, 24.917183907168944 ], [ -78.027026495075788, 24.90875008223772 ], [ -78.025734192162119, 24.9087612572363 ], [ -78.024982381057711, 24.917157500359554 ] ], [ [ -78.026484853022538, 24.917235422607469 ], [ -78.027039055686458, 24.917264161174035 ], [ -78.027190271767736, 24.917294113281159 ], [ -78.027323937506964, 24.917365212926256 ], [ -78.027328223050588, 24.917369592318966 ], [ -78.028555532888078, 24.911838756930791 ], [ -78.028150494312854, 24.911797619119447 ], [ -78.028001282757032, 24.911760252254631 ], [ -78.027872035655633, 24.911682663471481 ], [ -78.02777540469306, 24.911572447760086 ], [ -78.027720848762414, 24.911440393874866 ], [ -78.027713708070181, 24.91129942822835 ], [ -78.027754681441053, 24.91116334954161 ], [ -78.027839757971606, 24.91104547812116 ], [ -78.027960609700656, 24.910957351983466 ], [ -78.028105406837781, 24.910907597456251 ], [ -78.028259975738379, 24.910901084801129 ], [ -78.028752497208018, 24.910951108019265 ], [ -78.02928043729068, 24.908571819960645 ], [ -78.02920159608793, 24.908645103512153 ], [ -78.029064403531621, 24.908710360556473 ], [ -78.028911814432888, 24.908733759104777 ], [ -78.028030720044114, 24.908741390608217 ], [ -78.026484853022538, 24.917235422607469 ] ], [ [ -78.007631353822646, 24.917160071374731 ], [ -78.008662213978909, 24.917705589311399 ], [ -78.011025501195888, 24.917434957144813 ], [ -78.011006542882015, 24.917335491160244 ], [ -78.007631353822646, 24.917160071374731 ] ], [ [ -78.010074665864224, 24.918453020293597 ], [ -78.014524458693728, 24.920807575066377 ], [ -78.014581323842933, 24.91752119986873 ], [ -78.012020610727774, 24.917388180490217 ], [ -78.012088876471893, 24.917746323897873 ], [ -78.012090519272576, 24.917891634951278 ], [ -78.012041409662459, 24.91802988057562 ], [ -78.011946645172856, 24.91814671055057 ], [ -78.011816062490638, 24.918229997608474 ], [ -78.011663216416679, 24.918271096298362 ], [ -78.010074665864224, 24.918453020293597 ] ], [ [ -78.015504828470412, 24.9213262945789 ], [ -78.017257695706093, 24.922253718807795 ], [ -78.018161884024792, 24.917707121635463 ], [ -78.015569750248375, 24.917572532952864 ], [ -78.015504828470412, 24.9213262945789 ] ], [ [ -78.018167348102409, 24.922734992328685 ], [ -78.020536172541057, 24.923988230090064 ], [ -78.021802249484708, 24.917896059371422 ], [ -78.019156937022231, 24.917758774598845 ], [ -78.018167348102409, 24.922734992328685 ] ], [ [ -78.021443286692488, 24.924468125557425 ], [ -78.023926524923695, 24.925781796652554 ], [ -78.025328598753035, 24.918078993591696 ], [ -78.022798304803786, 24.917947739686941 ], [ -78.021443286692488, 24.924468125557425 ] ], [ [ -78.024841234055927, 24.926265673439218 ], [ -78.025300107152958, 24.926508411403304 ], [ -78.027156657770433, 24.918142716180533 ], [ -78.027136866418843, 24.918150656090219 ], [ -78.026982900859309, 24.918164783628942 ], [ -78.026321943493144, 24.918130509440921 ], [ -78.024841234055927, 24.926265673439218 ] ], [ [ -77.904423577026932, 24.610538350903081 ], [ -77.90548698916794, 24.610585101797316 ], [ -77.9055686884046, 24.60996069091766 ], [ -77.905051331092167, 24.609709734424786 ], [ -77.904423577026932, 24.610538350903081 ] ], [ [ -77.906475179059598, 24.610628538873495 ], [ -77.906686120820709, 24.610637810222265 ], [ -77.90652630380373, 24.610237779305322 ], [ -77.906475179059598, 24.610628538873495 ] ], [ [ -77.869522211557538, 24.587758105993586 ], [ -77.869564954248844, 24.58940826837803 ], [ -77.871632322753044, 24.589525323857174 ], [ -77.871277995288921, 24.588491839676109 ], [ -77.871255519559796, 24.588366613549844 ], [ -77.871272075817771, 24.588240618456148 ], [ -77.871326353762512, 24.588123825070888 ], [ -77.871414057997299, 24.588025475860935 ], [ -77.871585821301508, 24.587880445573678 ], [ -77.869522211557538, 24.587758105993586 ] ], [ [ -77.865700981694914, 24.589189410922685 ], [ -77.866763113527242, 24.587594489968048 ], [ -77.862527430679251, 24.587343211600722 ], [ -77.862376862812098, 24.587312151666062 ], [ -77.862244160989221, 24.587240066748961 ], [ -77.862142315077563, 24.587134013078099 ], [ -77.86208129445987, 24.587004371997004 ], [ -77.862067072163697, 24.586863833738551 ], [ -77.86210104021653, 24.586726155193464 ], [ -77.862179873441562, 24.586604813279703 ], [ -77.862295855005527, 24.586511685734504 ], [ -77.862437631829593, 24.58645588845954 ], [ -77.862591325905981, 24.586442883220254 ], [ -77.867342316957277, 24.586724726689791 ], [ -77.867668676648123, 24.586234641551229 ], [ -77.867659976822225, 24.586234319185223 ], [ -77.858700023294787, 24.5845938468544 ], [ -77.857311094909292, 24.585713343720411 ], [ -77.860830245745547, 24.588913386321988 ], [ -77.865700981694914, 24.589189410922685 ] ], [ [ -77.86958840423361, 24.590313541953851 ], [ -77.869614380821176, 24.591316306141614 ], [ -77.872258850876989, 24.59135269771998 ], [ -77.871948377905682, 24.590447159653468 ], [ -77.86958840423361, 24.590313541953851 ] ], [ [ -77.869637764832106, 24.592218947414047 ], [ -77.86967978553713, 24.593840878173442 ], [ -77.87328748015058, 24.593967027160364 ], [ -77.872589540687457, 24.592259562228172 ], [ -77.869637764832106, 24.592218947414047 ] ], [ [ -77.868508082070761, 24.586708870945618 ], [ -77.868453636430658, 24.586790631594639 ], [ -77.868510285987369, 24.58679399087649 ], [ -77.868508082070761, 24.586708870945618 ] ], [ [ -77.867874440906959, 24.58766039847486 ], [ -77.866814221697467, 24.589252475758126 ], [ -77.8685765296336, 24.58935229307248 ], [ -77.86853373177199, 24.587699494511021 ], [ -77.867874440906959, 24.58766039847486 ] ], [ [ -77.866234122003235, 24.590123563526028 ], [ -77.865477775350513, 24.591259287185665 ], [ -77.868627038516237, 24.591302706985591 ], [ -77.868599972458554, 24.590257567459844 ], [ -77.866234122003235, 24.590123563526028 ] ], [ [ -77.864882326157485, 24.592153392988894 ], [ -77.864681064397459, 24.592455597540052 ], [ -77.866065453831538, 24.593714409655888 ], [ -77.868691880462393, 24.59380631923392 ], [ -77.868650415436448, 24.592205349061182 ], [ -77.864882326157485, 24.592153392988894 ] ], [ [ -77.875007062585084, 24.596388071439627 ], [ -77.876079972690619, 24.596060631243311 ], [ -77.875257441063667, 24.594938744798746 ], [ -77.869703199795467, 24.594744573765873 ], [ -77.86971546482205, 24.595217937968496 ], [ -77.869695876386274, 24.5953514087626 ], [ -77.875007062585084, 24.596388071439627 ] ], [ [ -77.868715287596501, 24.594710015633471 ], [ -77.867098182627728, 24.594653433610212 ], [ -77.867365495162915, 24.594896487803442 ], [ -77.8687270022522, 24.595162276723524 ], [ -77.868715287596501, 24.594710015633471 ] ], [ [ -77.877745225208486, 24.607475194494402 ], [ -77.881196392793001, 24.607147540182314 ], [ -77.878467759243634, 24.604526304524519 ], [ -77.877745225208486, 24.607475194494402 ] ], [ [ -77.851894604445874, 24.618703797747227 ], [ -77.853205965776937, 24.618703835994857 ], [ -77.853181101983296, 24.618643930098344 ], [ -77.852254648581791, 24.618079606373168 ], [ -77.851894604445874, 24.618703797747227 ] ], [ [ -77.874627673223912, 24.614461739120308 ], [ -77.875722096922559, 24.613947860724586 ], [ -77.873115728633806, 24.610919009087876 ], [ -77.874627673223912, 24.614461739120308 ] ], [ [ -77.876616409450506, 24.613527934334879 ], [ -77.877769463904045, 24.612986503583983 ], [ -77.874389441289082, 24.608700776473121 ], [ -77.872608081140712, 24.608869827363808 ], [ -77.876616409450506, 24.613527934334879 ] ], [ [ -77.878657309015892, 24.612569596258602 ], [ -77.880028732626272, 24.611925598814999 ], [ -77.877209960240975, 24.608433065822926 ], [ -77.875521323811924, 24.608593349839325 ], [ -77.878657309015892, 24.612569596258602 ] ], [ [ -77.867537014103732, 24.618805053236901 ], [ -77.86878665147556, 24.620021274933666 ], [ -77.873297979919997, 24.619120540061154 ], [ -77.873473392643319, 24.619114725355256 ], [ -77.873639934742172, 24.619165408240903 ], [ -77.875973469232704, 24.620331219757418 ], [ -77.87784874797012, 24.620055262570645 ], [ -77.87652903755118, 24.614583218607457 ], [ -77.874547137412591, 24.615513806123808 ], [ -77.874547032617031, 24.615513862138208 ], [ -77.874547007394469, 24.615513867171664 ], [ -77.867537014103732, 24.618805053236901 ] ], [ [ -77.878824741947554, 24.619911630294794 ], [ -77.879343675829205, 24.619835258649271 ], [ -77.87939876166115, 24.619712768899802 ], [ -77.879498718218372, 24.619605205396812 ], [ -77.880029689795307, 24.619188409415692 ], [ -77.87772851633305, 24.614019992997719 ], [ -77.877436828720491, 24.61415695872563 ], [ -77.878824741947554, 24.619911630294794 ] ], [ [ -77.880819264578193, 24.618568609942773 ], [ -77.881838886509854, 24.61776821398157 ], [ -77.880167251316777, 24.612874820619485 ], [ -77.878817138741113, 24.613508808790755 ], [ -77.878801175876674, 24.613523297302823 ], [ -77.878663368638229, 24.613586918418704 ], [ -77.878645379711301, 24.613589462413142 ], [ -77.878609777491718, 24.613606180263634 ], [ -77.880819264578193, 24.618568609942773 ] ], [ [ -77.88265416380375, 24.617128215469133 ], [ -77.883617593811493, 24.616371902684502 ], [ -77.881499237545512, 24.61374748622492 ], [ -77.88265416380375, 24.617128215469133 ] ], [ [ -77.889630626702882, 24.613284211895969 ], [ -77.888565673734249, 24.613805918912533 ], [ -77.889512210490736, 24.618338377688708 ], [ -77.890254022989808, 24.618229149672512 ], [ -77.889630626702882, 24.613284211895969 ] ], [ [ -77.887679279771817, 24.614372462914698 ], [ -77.886632152983566, 24.615194538593549 ], [ -77.887003754479423, 24.618707706613925 ], [ -77.888537447079756, 24.618481900738743 ], [ -77.887679279771817, 24.614372462914698 ] ], [ [ -77.888371765143049, 24.612877341821317 ], [ -77.889509101067375, 24.612320173597379 ], [ -77.889446561353893, 24.611824050291439 ], [ -77.888786088666834, 24.611566705642169 ], [ -77.888220448950818, 24.612152716102049 ], [ -77.888371765143049, 24.612877341821317 ] ], [ [ -77.885716673929863, 24.615913246622195 ], [ -77.884757267203483, 24.616666426615026 ], [ -77.885238670328903, 24.618967560231113 ], [ -77.886027438108798, 24.618851441420407 ], [ -77.885716673929863, 24.615913246622195 ] ], [ [ -77.883894212881188, 24.617343953144044 ], [ -77.882974519904835, 24.618065930157258 ], [ -77.883376220697912, 24.619241724576867 ], [ -77.884263884248185, 24.619111057881831 ], [ -77.883894212881188, 24.617343953144044 ] ], [ [ -77.882159238866862, 24.618705930748114 ], [ -77.881038316182313, 24.619585845012168 ], [ -77.882391789758856, 24.619386629360417 ], [ -77.882159238866862, 24.618705930748114 ] ], [ [ -77.881009724036147, 24.61141033106702 ], [ -77.880880201922608, 24.611461015713626 ], [ -77.884368359658282, 24.615782525719972 ], [ -77.88560054260509, 24.614815200797619 ], [ -77.88523237305138, 24.611333886035524 ], [ -77.881343339633816, 24.61151520120098 ], [ -77.881189828997037, 24.61150024887467 ], [ -77.881048885877405, 24.611442660145759 ], [ -77.881009724036147, 24.61141033106702 ] ], [ [ -77.878349081962938, 24.60832493045756 ], [ -77.880278236415592, 24.610715193541854 ], [ -77.881730972217468, 24.610146704332305 ], [ -77.882377507771466, 24.607942447074223 ], [ -77.878349081962938, 24.60832493045756 ] ], [ [ -77.727897222415237, 24.483122281933476 ], [ -77.727500205506374, 24.481402168226335 ], [ -77.725698252978077, 24.48280797710418 ], [ -77.725566667341198, 24.482881617122558 ], [ -77.725416656384624, 24.482914440168958 ], [ -77.725262904357194, 24.48290323325136 ], [ -77.725120461733582, 24.482849093378608 ], [ -77.725098996237762, 24.482832283427953 ], [ -77.725241376322344, 24.485855496368746 ], [ -77.725242298975104, 24.485855647476097 ], [ -77.725388009507455, 24.485901943284603 ], [ -77.725510955871172, 24.485987179272303 ], [ -77.725599103275627, 24.486103012010297 ], [ -77.725643823198922, 24.4862381030532 ], [ -77.725640738022932, 24.486379228798416 ], [ -77.725590149591071, 24.486512574885428 ], [ -77.725497009721025, 24.48662508843757 ], [ -77.725370435536135, 24.486705755780982 ], [ -77.72528256972717, 24.486730115141125 ], [ -77.725432523307077, 24.489913714339501 ], [ -77.725659027947088, 24.492164068132865 ], [ -77.7261306416205, 24.49194865734836 ], [ -77.725684027301384, 24.490975494156856 ], [ -77.725647284195347, 24.490838403448556 ], [ -77.72565863282162, 24.490697632096197 ], [ -77.725716962142414, 24.490566959783685 ], [ -77.725816562356641, 24.490459177588242 ], [ -77.725947683861122, 24.490384835915616 ], [ -77.726097491625069, 24.490351211778233 ], [ -77.726251321551075, 24.490361596496715 ], [ -77.726394115849345, 24.49041497353933 ], [ -77.726511896939812, 24.49050611802841 ], [ -77.726593135628988, 24.490626108172837 ], [ -77.727014768589228, 24.491544824297385 ], [ -77.729232873672544, 24.490531651662678 ], [ -77.727897222415237, 24.483122281933476 ] ], [ [ -77.736865228527535, 24.469154082939149 ], [ -77.737993340042976, 24.468910896828294 ], [ -77.737461830213476, 24.466856376382673 ], [ -77.736444145446683, 24.466985150053048 ], [ -77.736865228527535, 24.469154082939149 ] ], [ [ -78.151732406200225, 25.133857467456966 ], [ -78.151114046730299, 25.133450339149157 ], [ -78.147008907511065, 25.137335315564908 ], [ -78.146759695774151, 25.138738044369173 ], [ -78.150625574088068, 25.136451357997611 ], [ -78.151732406200225, 25.133857467456966 ] ], [ [ -78.147740363668063, 25.131077929640391 ], [ -78.147728541623877, 25.131034020401444 ], [ -78.147591096411574, 25.129780802248803 ], [ -78.146350007358791, 25.130272664005094 ], [ -78.146364039164894, 25.131580512643648 ], [ -78.147740363668063, 25.131077929640391 ] ], [ [ -78.146339498876955, 25.129293092352157 ], [ -78.147487702977202, 25.128838040205824 ], [ -78.14728908500193, 25.127026938624212 ], [ -78.146324043823668, 25.127852231285388 ], [ -78.146339498876955, 25.129293092352157 ] ], [ [ -78.148256320728564, 25.126767404011165 ], [ -78.148487779320504, 25.1288778112703 ], [ -78.148518342621614, 25.128921441314276 ], [ -78.148557218635901, 25.129058029992102 ], [ -78.148555719714693, 25.129080509230288 ], [ -78.149586342481498, 25.127521864764429 ], [ -78.148256320728564, 25.126767404011165 ] ], [ [ -78.162260446310754, 25.108647626031839 ], [ -78.159893012201508, 25.107228279865602 ], [ -78.160170555769611, 25.109182476479095 ], [ -78.162260446310754, 25.108647626031839 ] ], [ [ -78.158801199194784, 25.106573680751538 ], [ -78.157419110161186, 25.105745023132425 ], [ -78.158290805804853, 25.109663518762584 ], [ -78.159206717506962, 25.109429133368241 ], [ -78.158801199194784, 25.106573680751538 ] ], [ [ -78.156265730381477, 25.105053472959003 ], [ -78.155055708064637, 25.10432794164128 ], [ -78.156212107261254, 25.110195442159423 ], [ -78.157334502003096, 25.109908233834766 ], [ -78.156268717614651, 25.105117055204129 ], [ -78.156265730381477, 25.105053472959003 ] ], [ [ -78.179608690682656, 25.134588429202065 ], [ -78.178452745399269, 25.133837322136699 ], [ -78.17691779239928, 25.136285181096309 ], [ -78.178083651468114, 25.13688208743492 ], [ -78.179608690682656, 25.134588429202065 ] ], [ [ -78.177642161550253, 25.133310611560123 ], [ -78.176136747452176, 25.132332380862817 ], [ -78.174307603813475, 25.134948737538629 ], [ -78.176054178688318, 25.135843010701684 ], [ -78.177642161550253, 25.133310611560123 ] ], [ [ -78.17532919200859, 25.131807611034759 ], [ -78.174860556372735, 25.131503075484666 ], [ -78.173051947974102, 25.134305800571102 ], [ -78.173442745364, 25.134505903613125 ], [ -78.17532919200859, 25.131807611034759 ] ], [ [ -78.18429937844418, 25.132371336971232 ], [ -78.182738865816802, 25.13162231664997 ], [ -78.180931953018316, 25.134340096051762 ], [ -78.182781943318417, 25.135542115582059 ], [ -78.18429937844418, 25.132371336971232 ] ], [ [ -78.181860922093492, 25.131200906322988 ], [ -78.180511886193756, 25.130553356590291 ], [ -78.178946447567014, 25.133049971228669 ], [ -78.180123194626262, 25.133814594806896 ], [ -78.181860922093492, 25.131200906322988 ] ], [ [ -78.179634995714551, 25.130132430257124 ], [ -78.178167250764702, 25.129427862039879 ], [ -78.176669460606178, 25.131570379712183 ], [ -78.178135867524333, 25.132523263010345 ], [ -78.179634995714551, 25.130132430257124 ] ], [ [ -78.177287946967667, 25.129005754484041 ], [ -78.17666498231759, 25.128706696717867 ], [ -78.175883232181533, 25.129918217406793 ], [ -78.175974948483244, 25.130288525726357 ], [ -78.175984966887683, 25.130429326779826 ], [ -78.175946699940056, 25.130566054837441 ], [ -78.175863893327019, 25.130685325983642 ], [ -78.175744652652597, 25.130775465069441 ], [ -78.175600650037296, 25.130827648579576 ], [ -78.175532662336963, 25.130831657389532 ], [ -78.175861908631987, 25.13104561248096 ], [ -78.177287946967667, 25.129005754484041 ] ], [ [ -78.16880907189821, 25.140880276879706 ], [ -78.165057988354008, 25.146692083026835 ], [ -78.165440520627783, 25.146661672694169 ], [ -78.168998935413143, 25.1409804900834 ], [ -78.16880907189821, 25.140880276879706 ] ], [ [ -78.166640958768468, 25.146566234478435 ], [ -78.168633728638497, 25.146407781995592 ], [ -78.171581411095161, 25.142343522188714 ], [ -78.169856151054688, 25.141432937784426 ], [ -78.166640958768468, 25.146566234478435 ] ], [ [ -78.169283497015044, 25.147131659370903 ], [ -78.169240327876793, 25.147178476063324 ], [ -78.169231353506163, 25.147183579042686 ], [ -78.169224213977003, 25.147190687919384 ], [ -78.169165809188144, 25.1472208486257 ], [ -78.169108858668011, 25.147253231593151 ], [ -78.169098591075013, 25.14725556055927 ], [ -78.169089387520756, 25.147260313339409 ], [ -78.169023601720468, 25.147272570137133 ], [ -78.168958444561753, 25.147287349477864 ], [ -78.164441985754422, 25.147646441544655 ], [ -78.163448809719071, 25.149185112973647 ], [ -78.166580629499876, 25.150070319017573 ], [ -78.166627877067981, 25.150051664339632 ], [ -78.166782194165307, 25.150038262269547 ], [ -78.166933508556923, 25.150068920170767 ], [ -78.167067008688321, 25.150140637050711 ], [ -78.167156787018072, 25.150233160524529 ], [ -78.169311620804976, 25.150842164571277 ], [ -78.169316050290647, 25.150767757113424 ], [ -78.169371860139876, 25.150636121895939 ], [ -78.172558566197822, 25.145632548368422 ], [ -78.172672311909608, 25.145510546637137 ], [ -78.17282570017791, 25.145432377142377 ], [ -78.175715527990732, 25.144525346027173 ], [ -78.17244006713689, 25.142796703730006 ], [ -78.169328803701205, 25.147086547126211 ], [ -78.169283497015044, 25.147131659370903 ] ], [ [ -78.159921533497254, 25.140224173595122 ], [ -78.161999333076096, 25.137285696659447 ], [ -78.160950686569777, 25.136732110355162 ], [ -78.160214042840025, 25.137861921791881 ], [ -78.160115052525029, 25.137970498136994 ], [ -78.159984048375733, 25.138045914861308 ], [ -78.159833854044251, 25.138080789578773 ], [ -78.159742847325873, 25.138075446759469 ], [ -78.159921533497254, 25.140224173595122 ] ], [ [ -78.162536182816737, 25.136526444978163 ], [ -78.165947002861344, 25.131702375739223 ], [ -78.164659718845485, 25.131043125926563 ], [ -78.161456423401404, 25.135956434584632 ], [ -78.162536182816737, 25.136526444978163 ] ], [ [ -78.166484177635979, 25.130942588410655 ], [ -78.168849654559793, 25.127596702634637 ], [ -78.16734203357899, 25.126616845793741 ], [ -78.165314258045143, 25.128722046578481 ], [ -78.16528317093497, 25.128745585939619 ], [ -78.165256333172351, 25.128773119425581 ], [ -78.164033896796411, 25.129687724649827 ], [ -78.164440071434754, 25.129895743925843 ], [ -78.164502514898587, 25.129881242120156 ], [ -78.16465718656309, 25.12989031917046 ], [ -78.164801206945128, 25.129942462982001 ], [ -78.164920478454363, 25.130032569393205 ], [ -78.165003326010805, 25.130151818228473 ], [ -78.165013923670472, 25.130189634752707 ], [ -78.166484177635979, 25.130942588410655 ] ], [ [ -78.163212753929272, 25.130302076624584 ], [ -78.159337552518991, 25.133201238107798 ], [ -78.159479878285197, 25.134912970566763 ], [ -78.16059925296544, 25.135503920140287 ], [ -78.163795965685722, 25.130600765896478 ], [ -78.163212753929272, 25.130302076624584 ] ], [ [ -78.15957055736645, 25.136003512538053 ], [ -78.159650067974567, 25.136959710627746 ], [ -78.160093511893308, 25.136279593364051 ], [ -78.15957055736645, 25.136003512538053 ] ], [ [ -78.163856146271371, 25.146773507636979 ], [ -78.167951872568224, 25.14042782709808 ], [ -78.167572793123156, 25.140227737342471 ], [ -78.163258733053468, 25.146469326741911 ], [ -78.163856146271371, 25.146773507636979 ] ], [ [ -78.166715058056027, 25.139774992154141 ], [ -78.16541862273553, 25.139090667657634 ], [ -78.16114087412889, 25.145390957419615 ], [ -78.162392776061637, 25.146028405881406 ], [ -78.166715058056027, 25.139774992154141 ] ], [ [ -78.168453792268096, 25.139650134027761 ], [ -78.171686270518762, 25.134641361733678 ], [ -78.171499624905223, 25.134545789556508 ], [ -78.16810077699536, 25.139463801906665 ], [ -78.168453792268096, 25.139650134027761 ] ], [ [ -78.172188225793093, 25.133863535859803 ], [ -78.1740509609848, 25.130976965066395 ], [ -78.173992233355577, 25.130938800920269 ], [ -78.172027856535237, 25.133781418613307 ], [ -78.172188225793093, 25.133863535859803 ] ], [ [ -78.173184458209207, 25.130413863221765 ], [ -78.171883231263251, 25.129568232923116 ], [ -78.169798195006578, 25.132639687147826 ], [ -78.171163249257972, 25.133338690405235 ], [ -78.173184458209207, 25.130413863221765 ] ], [ [ -78.169276884380736, 25.133407600710079 ], [ -78.165939743382822, 25.138323110755916 ], [ -78.167243046019351, 25.139011059412123 ], [ -78.170635013452682, 25.134103058637287 ], [ -78.169276884380736, 25.133407600710079 ] ], [ [ -78.171075068819633, 25.129043018838765 ], [ -78.169656950438835, 25.12812137958549 ], [ -78.167349237160678, 25.131385595199198 ], [ -78.168933915594593, 25.132197104447574 ], [ -78.171075068819633, 25.129043018838765 ] ], [ [ -78.166812066501464, 25.132145385299435 ], [ -78.163394245435725, 25.136979410623724 ], [ -78.165082247827442, 25.137870470457102 ], [ -78.168412600749036, 25.132965015345107 ], [ -78.166812066501464, 25.132145385299435 ] ], [ [ -78.162857399724643, 25.137738665058162 ], [ -78.160044831876746, 25.141716277200054 ], [ -78.160032619319054, 25.141852338154042 ], [ -78.159972873305364, 25.141982533846104 ], [ -78.159871852096998, 25.14208955159987 ], [ -78.159739444312677, 25.142162915703235 ], [ -78.159727122348912, 25.142165573087226 ], [ -78.158424451337879, 25.144007736010973 ], [ -78.160275261496338, 25.14495019069976 ], [ -78.164561123043242, 25.138638024710609 ], [ -78.162857399724643, 25.137738665058162 ] ], [ [ -78.162933245235948, 25.149983831726246 ], [ -78.160730444803448, 25.153396312732976 ], [ -78.16275151763044, 25.156116944889636 ], [ -78.165907234969168, 25.155592301415275 ], [ -78.16622604692796, 25.150914541103759 ], [ -78.162933245235948, 25.149983831726246 ] ], [ [ -78.167200142341059, 25.151189851560044 ], [ -78.167064799593476, 25.153175906882169 ], [ -78.173642935640274, 25.153826382680997 ], [ -78.174301118445229, 25.153196575246795 ], [ -78.167200142341059, 25.151189851560044 ] ], [ [ -78.175232137748836, 25.152515235470638 ], [ -78.178782925599194, 25.151810539911434 ], [ -78.178927114298631, 25.151801558198773 ], [ -78.179068016588275, 25.151830830215044 ], [ -78.179623614281127, 25.152027417964277 ], [ -78.182198749538742, 25.147880071701692 ], [ -78.176851946682618, 25.145122710424697 ], [ -78.17332325665646, 25.146230279039546 ], [ -78.17022917045675, 25.151088477992776 ], [ -78.170219905321673, 25.151098854428817 ], [ -78.175232137748836, 25.152515235470638 ] ], [ [ -78.183060918379169, 25.148324663315876 ], [ -78.180556843655907, 25.152357617191576 ], [ -78.181683574348952, 25.15275627126276 ], [ -78.184256438241491, 25.148941138518573 ], [ -78.183060918379169, 25.148324663315876 ] ], [ [ -78.16017425090952, 25.154257911896689 ], [ -78.15835424410318, 25.157077192151124 ], [ -78.159777188332683, 25.15824767016402 ], [ -78.159825762362146, 25.158141283328412 ], [ -78.159926579829133, 25.158034096386114 ], [ -78.16186351499482, 25.156531897032863 ], [ -78.16017425090952, 25.154257911896689 ] ], [ [ -78.167559141956545, 25.160000419349476 ], [ -78.170701385577331, 25.16109818258796 ], [ -78.170893641657841, 25.159542974098521 ], [ -78.167455624310122, 25.159776365316723 ], [ -78.167559141956545, 25.160000419349476 ] ], [ [ -78.162237222786189, 25.161486860840803 ], [ -78.160837679747971, 25.160335712158627 ], [ -78.155563293241713, 25.162106170244233 ], [ -78.155375153800776, 25.162639247347979 ], [ -78.159024271508372, 25.162919392233711 ], [ -78.162237222786189, 25.161486860840803 ] ], [ [ -78.157455521474915, 25.156688871343814 ], [ -78.158926969158472, 25.154409566302558 ], [ -78.156551815756941, 25.155173076726598 ], [ -78.156749276096662, 25.156626721507504 ], [ -78.157455521474915, 25.156688871343814 ] ], [ [ -78.175945937042357, 25.128040284996633 ], [ -78.1742706506122, 25.122253022289286 ], [ -78.174005971862627, 25.122338071257261 ], [ -78.175564520807626, 25.128631384873831 ], [ -78.175945937042357, 25.128040284996633 ] ], [ [ -78.173065243975756, 25.12264034981078 ], [ -78.172213948845936, 25.122913885229629 ], [ -78.17313411687843, 25.128736818454328 ], [ -78.173131917418303, 25.128877900710648 ], [ -78.173081935724937, 25.129011459164524 ], [ -78.172989064217475, 25.129124420152454 ], [ -78.172947050907155, 25.129151387282686 ], [ -78.173712928315211, 25.129649105929083 ], [ -78.17384211185248, 25.12946216085032 ], [ -78.173944147616353, 25.129355953904184 ], [ -78.174077240929719, 25.129283649124957 ], [ -78.174228363752661, 25.129252324137546 ], [ -78.174382723267158, 25.129265045204793 ], [ -78.174525209849051, 25.129320567097501 ], [ -78.174641876041846, 25.129413454987166 ], [ -78.174721301784089, 25.12953461642908 ], [ -78.174755712269842, 25.129672191367781 ], [ -78.174741739024157, 25.129812713054942 ], [ -78.174680749685123, 25.129942426251226 ], [ -78.174520699956943, 25.130174041056932 ], [ -78.174554786277653, 25.130196192043996 ], [ -78.174830578939662, 25.129768794457274 ], [ -78.173065243975756, 25.12264034981078 ] ], [ [ -78.174017348312361, 25.121377931728588 ], [ -78.173649476037028, 25.120107005030292 ], [ -78.171852146380132, 25.120624144114167 ], [ -78.172070115397531, 25.122003620072046 ], [ -78.172975689233596, 25.121712643330643 ], [ -78.173026658212152, 25.121639229112283 ], [ -78.173145893046012, 25.121549092797995 ], [ -78.173289886550137, 25.121496912586835 ], [ -78.173444543741539, 25.121487796180723 ], [ -78.173578633995191, 25.121518902897332 ], [ -78.174017348312361, 25.121377931728588 ] ], [ [ -78.167998507579838, 25.12593528617225 ], [ -78.169380236928902, 25.126833319729595 ], [ -78.16886020876278, 25.125040642321551 ], [ -78.167998507579838, 25.12593528617225 ] ], [ [ -78.170555660975353, 25.127597246581715 ], [ -78.171597063242501, 25.128274053815765 ], [ -78.171612790032597, 25.128250886066716 ], [ -78.171713889217742, 25.128143939859083 ], [ -78.171846342367786, 25.128070668813884 ], [ -78.171997184104086, 25.128038245140566 ], [ -78.172023062789592, 25.128040188169685 ], [ -78.17126138930746, 25.123219951582286 ], [ -78.170323603673282, 25.123521263696755 ], [ -78.169640113091774, 25.124230907948476 ], [ -78.16966482378507, 25.124281929853861 ], [ -78.170560653918841, 25.127370009854882 ], [ -78.17057630042035, 25.127510385802161 ], [ -78.170555660975353, 25.127597246581715 ] ], [ [ -78.074985856716054, 25.091971845222115 ], [ -78.07375395909034, 25.094912341478476 ], [ -78.074280936735803, 25.095104593216981 ], [ -78.074382780670604, 25.09512596724884 ], [ -78.074469549019824, 25.095173402036888 ], [ -78.077120230704665, 25.096140378823979 ], [ -78.077183358225639, 25.09613967947794 ], [ -78.077196713780324, 25.091956186259413 ], [ -78.074985856716054, 25.091971845222115 ] ], [ [ -78.078172716935441, 25.096524310958365 ], [ -78.081110485239535, 25.097595913079896 ], [ -78.081450006039304, 25.096746289672527 ], [ -78.081363498354833, 25.096798182591726 ], [ -78.081214083331488, 25.09683559561504 ], [ -78.081059284826679, 25.096829133442668 ], [ -78.080914255757207, 25.096779428628512 ], [ -78.080793192710061, 25.096691346661967 ], [ -78.080707946231286, 25.096573509686252 ], [ -78.080666860792419, 25.096437452477431 ], [ -78.08019734568613, 25.092610551931571 ], [ -78.080225741101401, 25.092402303745466 ], [ -78.080418614255763, 25.091933307232889 ], [ -78.078187285147223, 25.091949159577943 ], [ -78.078172716935441, 25.096524310958365 ] ], [ [ -78.082030516017142, 25.097931493870362 ], [ -78.083657525439747, 25.098524925580961 ], [ -78.086064857308003, 25.09259753388228 ], [ -78.084387705992228, 25.092032480870028 ], [ -78.082030516017142, 25.097931493870362 ] ], [ [ -78.084577426315533, 25.098860437272478 ], [ -78.086241435399998, 25.099467324586115 ], [ -78.088759636177855, 25.093505385675105 ], [ -78.086993861684249, 25.092910516147924 ], [ -78.084577426315533, 25.098860437272478 ] ], [ [ -78.083381689283939, 25.091912204284053 ], [ -78.081479440361619, 25.091925758867195 ], [ -78.08119492289876, 25.092617616058675 ], [ -78.081642417024497, 25.096264791948929 ], [ -78.083381689283939, 25.091912204284053 ] ], [ [ -78.087161107256719, 25.099802730722043 ], [ -78.088569882846002, 25.100316498748338 ], [ -78.091042908803445, 25.094274553274097 ], [ -78.089688729175222, 25.093818375472924 ], [ -78.087161107256719, 25.099802730722043 ] ], [ [ -77.889934843019148, 24.838001541979811 ], [ -77.889902062755297, 24.838026389452917 ], [ -77.889922450164335, 24.838082842883104 ], [ -77.889934843019148, 24.838001541979811 ] ], [ [ -77.889569541098808, 24.837105616758183 ], [ -77.890063438520713, 24.836731239901038 ], [ -77.889607108161485, 24.834374616156857 ], [ -77.888698313270979, 24.834558104425529 ], [ -77.888650537350998, 24.834560752250752 ], [ -77.889279109083731, 24.836301379119824 ], [ -77.889372546884189, 24.836325901715643 ], [ -77.889500694987802, 24.836404913780495 ], [ -77.889595815326686, 24.83651619548727 ], [ -77.889648596836153, 24.836648853879364 ], [ -77.88965387278347, 24.836789903485485 ], [ -77.889611126565981, 24.836925537406508 ], [ -77.889539462762215, 24.837022327187331 ], [ -77.889569541098808, 24.837105616758183 ] ], [ [ -77.888184387487058, 24.833269861711042 ], [ -77.888260818626023, 24.833223403140316 ], [ -77.888336794998665, 24.833191561545146 ], [ -77.888240162114073, 24.833211498741068 ], [ -77.88816493277524, 24.833215985823976 ], [ -77.888184387487058, 24.833269861711042 ] ], [ [ -77.887505260773793, 24.831389123751382 ], [ -77.88796226592099, 24.830953247139242 ], [ -77.887216469126386, 24.82960499135973 ], [ -77.886915284905797, 24.829755218696576 ], [ -77.887505260773793, 24.831389123751382 ] ], [ [ -77.886600705692231, 24.82888398764231 ], [ -77.886770737597288, 24.828799177737608 ], [ -77.885749670414015, 24.826953196737584 ], [ -77.885219842142064, 24.826807651831629 ], [ -77.886133474460664, 24.827717347450747 ], [ -77.886238548791781, 24.827880971006699 ], [ -77.886600705692231, 24.82888398764231 ] ], [ [ -77.929134944256731, 24.887202952791231 ], [ -77.929144361914396, 24.887241126091197 ], [ -77.929669577011524, 24.894684044459975 ], [ -77.932351379432774, 24.89749381958627 ], [ -77.93247117039148, 24.897465564484889 ], [ -77.92884874348492, 24.871720664404791 ], [ -77.920787972035853, 24.854058579673282 ], [ -77.920754273832387, 24.85394441835156 ], [ -77.917173002686752, 24.829261566231558 ], [ -77.917168729637638, 24.829203460190232 ], [ -77.917131265180615, 24.815002870371512 ], [ -77.913109503585346, 24.803097216542017 ], [ -77.898427859957749, 24.798582479085802 ], [ -77.885923179301969, 24.797834024879879 ], [ -77.885839619325921, 24.797877761684557 ], [ -77.889549079518517, 24.801532270922355 ], [ -77.889636486523997, 24.801652227919821 ], [ -77.889678003533646, 24.80179122166809 ], [ -77.889669395640794, 24.801935074734569 ], [ -77.88760688862881, 24.810558296734502 ], [ -77.899458538314292, 24.819164159952003 ], [ -77.899719619166319, 24.819033525446201 ], [ -77.891789508533137, 24.81344827242695 ], [ -77.891683380205421, 24.813345630728815 ], [ -77.89161719745789, 24.813218079572678 ], [ -77.891597438631379, 24.813078104618221 ], [ -77.891626037709216, 24.812939407621009 ], [ -77.8917001950621, 24.812815565197063 ], [ -77.891812651553465, 24.812718699853839 ], [ -77.89195239915189, 24.81265829337455 ], [ -77.89210575847639, 24.812640258702441 ], [ -77.892257717795999, 24.812666361165117 ], [ -77.892393402426109, 24.812734045684071 ], [ -77.900921589957235, 24.818740477377791 ], [ -77.901032227841526, 24.818849225006616 ], [ -77.901098213782802, 24.818984854844867 ], [ -77.901112406057578, 24.819132687836714 ], [ -77.901073268469133, 24.81927672414573 ], [ -77.900985036683281, 24.819401374793809 ], [ -77.900857259876389, 24.819493148855845 ], [ -77.90005845935643, 24.819892841523249 ], [ -77.901143574575926, 24.821927514489779 ], [ -77.906488204426864, 24.822356315646971 ], [ -77.906638233630417, 24.822390512437625 ], [ -77.906769341248065, 24.822465347385251 ], [ -77.906868693635744, 24.822573495181178 ], [ -77.906926565477576, 24.822704369637844 ], [ -77.906937291772024, 24.822845159911093 ], [ -77.906899822400874, 24.822982084492043 ], [ -77.906817824980862, 24.82310174022809 ], [ -77.906699325907681, 24.823192414324684 ], [ -77.906555924708243, 24.823245230897278 ], [ -77.906401658593509, 24.823255019832242 ], [ -77.901407292719, 24.822854329792804 ], [ -77.902135716451411, 24.827114725133455 ], [ -77.915408119872083, 24.849545452549226 ], [ -77.915444724435602, 24.849624467632601 ], [ -77.916867213624741, 24.853751536144667 ], [ -77.916884714225432, 24.853772385068318 ], [ -77.916936213525446, 24.853905461516078 ], [ -77.916937606978067, 24.853955759634715 ], [ -77.917406821846313, 24.855317013288015 ], [ -77.917439944077074, 24.855394784206464 ], [ -77.91744132788422, 24.855417118361732 ], [ -77.917803493544696, 24.856467781037161 ], [ -77.927931614146146, 24.882795169537889 ], [ -77.927971666828611, 24.882877997053384 ], [ -77.92797500044378, 24.882907919830824 ], [ -77.928053374390714, 24.883111593760617 ], [ -77.92805783864074, 24.883133909341371 ], [ -77.928067399024442, 24.883154850049348 ], [ -77.929131496298197, 24.887163951436726 ], [ -77.929134944256731, 24.887202952791231 ] ], [ [ -77.933322486040737, 24.895187700406687 ], [ -77.933267313233713, 24.895218535498262 ], [ -77.933155552618715, 24.895243003463683 ], [ -77.933187550309327, 24.895470344776633 ], [ -77.93325396295009, 24.895461752554677 ], [ -77.933322486040737, 24.895187700406687 ] ], [ [ -77.86628053613579, 24.781913628154367 ], [ -77.867955734288969, 24.783272480348781 ], [ -77.868859216664205, 24.778616485907634 ], [ -77.868173127921736, 24.776965212465374 ], [ -77.863483321622056, 24.775536143574591 ], [ -77.863331649447048, 24.77546090045783 ], [ -77.863217583215771, 24.775342614024165 ], [ -77.863155045366085, 24.775195721916759 ], [ -77.862755302540421, 24.773349258276582 ], [ -77.862751025316399, 24.773197138744731 ], [ -77.86280238921637, 24.773052375671313 ], [ -77.862903549318716, 24.772931441760942 ], [ -77.863042994439311, 24.772848098129955 ], [ -77.866231928927846, 24.771582107928257 ], [ -77.866281192698125, 24.771532550752063 ], [ -77.866415367844709, 24.771462469300797 ], [ -77.866543812547334, 24.771438028385184 ], [ -77.862786911693576, 24.767800706766209 ], [ -77.85866190842475, 24.767582643535608 ], [ -77.858510201564172, 24.767552296551315 ], [ -77.858376308169099, 24.767480447410421 ], [ -77.858273458875132, 24.767374195870861 ], [ -77.857546617454432, 24.766329571928846 ], [ -77.854582736370418, 24.768493508365498 ], [ -77.854462735601061, 24.768558151351961 ], [ -77.854327740149472, 24.768589633653932 ], [ -77.854188486106565, 24.768585451494914 ], [ -77.854056048263075, 24.76854593746905 ], [ -77.853940959311075, 24.76847423409253 ], [ -77.852037021999038, 24.766886056590209 ], [ -77.849925062235471, 24.766548725563496 ], [ -77.849779600161625, 24.766503321693637 ], [ -77.849656464038233, 24.766419292420501 ], [ -77.849567575529235, 24.766304773224981 ], [ -77.849521540470093, 24.766170851522311 ], [ -77.849522815694883, 24.766030493190993 ], [ -77.849571277586122, 24.765897287242872 ], [ -77.850017380247223, 24.765108984803881 ], [ -77.850002106179133, 24.765071850211761 ], [ -77.849995136414449, 24.76493085677339 ], [ -77.850036224682611, 24.764794797475776 ], [ -77.850121348834932, 24.764676990726848 ], [ -77.850242176250362, 24.764588968212625 ], [ -77.850328385639116, 24.764559405042167 ], [ -77.850960890031189, 24.763441686936467 ], [ -77.851057276716105, 24.763323682460456 ], [ -77.851190139672482, 24.763240296693812 ], [ -77.851345330059402, 24.763200409502428 ], [ -77.851506321430364, 24.763208268511757 ], [ -77.85165596961447, 24.763263036790111 ], [ -77.852472473592343, 24.763715124034814 ], [ -77.852497583206613, 24.763612561531176 ], [ -77.852576268257195, 24.763491080431574 ], [ -77.852692214850109, 24.763397746782051 ], [ -77.852834073329376, 24.763341696658685 ], [ -77.855004321532476, 24.762832913789111 ], [ -77.855007822751787, 24.758222420947799 ], [ -77.853519567495013, 24.755651831948978 ], [ -77.853469595766498, 24.755518275423924 ], [ -77.85346726646678, 24.755377154659239 ], [ -77.853512807447586, 24.755242283554871 ], [ -77.853601760702048, 24.755126864206101 ], [ -77.853725418798362, 24.755042194601288 ], [ -77.8538716772496, 24.754996562719555 ], [ -77.854026219374163, 24.754994435273062 ], [ -77.854173917668504, 24.755036020494877 ], [ -77.85430031453285, 24.755117247761834 ], [ -77.854393037428949, 24.755230166044782 ], [ -77.855366587430652, 24.756911726627852 ], [ -77.855502851310717, 24.756892107578786 ], [ -77.855655493495107, 24.75691428267087 ], [ -77.855793160641682, 24.756978444197589 ], [ -77.855902377035562, 24.757078311630554 ], [ -77.855972451830368, 24.757204109320234 ], [ -77.855996525537066, 24.757343523377646 ], [ -77.855996031439062, 24.757998900855256 ], [ -77.85834186501377, 24.762050407667648 ], [ -77.858665210862384, 24.761974593009533 ], [ -77.861665796925294, 24.759112289011732 ], [ -77.861812076346894, 24.759016157671638 ], [ -77.861986383758492, 24.758974334002595 ], [ -77.863515213067359, 24.758871493592309 ], [ -77.865244529514527, 24.755630594700506 ], [ -77.848493503556398, 24.744805236764783 ], [ -77.845613692119286, 24.748953320459357 ], [ -77.846650292564334, 24.750041301907544 ], [ -77.84673225282998, 24.750160959729918 ], [ -77.846769710441023, 24.750297889525566 ], [ -77.846758998654309, 24.750438687697645 ], [ -77.846701165856672, 24.750569571944254 ], [ -77.846601873001674, 24.750677730364572 ], [ -77.846470839523207, 24.750752575591775 ], [ -77.846320891945894, 24.750786781183944 ], [ -77.846166708314541, 24.750776998813777 ], [ -77.846023381354712, 24.750724186043644 ], [ -77.845904941031506, 24.750633512594316 ], [ -77.845061661298189, 24.749748431635066 ], [ -77.843602324206714, 24.751850317155856 ], [ -77.848614695857052, 24.754503644714866 ], [ -77.848734642414428, 24.754592655419604 ], [ -77.84881859686493, 24.754711156201761 ], [ -77.848858341111765, 24.754847547449309 ], [ -77.848849984582642, 24.754988478283948 ], [ -77.848848281591302, 24.754992508549535 ], [ -77.848858361151741, 24.755012638528822 ], [ -77.848876049988888, 24.755152848446876 ], [ -77.84884542509127, 24.755291187436093 ], [ -77.84876948408666, 24.755414113897892 ], [ -77.848655660515348, 24.755509594880586 ], [ -77.848515096219472, 24.755568283968799 ], [ -77.848361550702677, 24.755584436203058 ], [ -77.848210054219237, 24.755556470460363 ], [ -77.845001302752863, 24.75446507806398 ], [ -77.844969316043944, 24.754533966758302 ], [ -77.844887464175343, 24.754653688268949 ], [ -77.844769103865445, 24.754744453089604 ], [ -77.844625821058003, 24.754797376455251 ], [ -77.844471641374582, 24.75480727779895 ], [ -77.84432165714999, 24.754773187884375 ], [ -77.844190550030987, 24.754698443690565 ], [ -77.844091153778564, 24.754590361757224 ], [ -77.84403319797849, 24.754459521969 ], [ -77.844022355646189, 24.754318731895165 ], [ -77.844059687951528, 24.754181773072883 ], [ -77.844074518292317, 24.754149834003154 ], [ -77.842936144199314, 24.753762607725644 ], [ -77.842584217084749, 24.754231879418381 ], [ -77.842478012622635, 24.754334419605506 ], [ -77.84234230596536, 24.754401972071516 ], [ -77.842190381098135, 24.754427924243441 ], [ -77.842037109626176, 24.754409735703245 ], [ -77.841897494984721, 24.754349186876436 ], [ -77.841878613691378, 24.754332879763695 ], [ -77.835461169302349, 24.76357460539802 ], [ -77.835443975519638, 24.763700981771521 ], [ -77.835378451196419, 24.76382881174634 ], [ -77.835272872137779, 24.763931896894885 ], [ -77.835180787131563, 24.763978347819673 ], [ -77.835149327998877, 24.764023647904324 ], [ -77.841169419564082, 24.768507793338198 ], [ -77.848041466139748, 24.772158056201288 ], [ -77.848075239124682, 24.772147100484304 ], [ -77.848229763439221, 24.772143258521368 ], [ -77.848378025176046, 24.772183202028319 ], [ -77.84850551158361, 24.772263021082928 ], [ -77.848599743475049, 24.772374902500825 ], [ -77.848638825355152, 24.77247533254484 ], [ -77.865460095790795, 24.781407916879921 ], [ -77.86625268360163, 24.780187173554683 ], [ -77.866351341979524, 24.780078517327652 ], [ -77.86648194898217, 24.780003012754872 ], [ -77.866631719939292, 24.779968050680022 ], [ -77.866785994356491, 24.779977053388254 ], [ -77.866929670936699, 24.780029139626706 ], [ -77.867048685740158, 24.780119210869618 ], [ -77.867131388813078, 24.780238450382992 ], [ -77.867169684549282, 24.780375186242416 ], [ -77.867159824164929, 24.780516033835632 ], [ -77.867102772705323, 24.780647206023929 ], [ -77.86628053613579, 24.781913628154367 ] ], [ [ -77.855992572011615, 24.762601221409813 ], [ -77.857357794838677, 24.762281137103539 ], [ -77.855994580151986, 24.759926723738928 ], [ -77.855992572011615, 24.762601221409813 ] ], [ [ -77.851207217450337, 24.76497180203982 ], [ -77.852490910945107, 24.766042641084002 ], [ -77.852836464380147, 24.766097830768725 ], [ -77.852982685258411, 24.766143597867419 ], [ -77.853106260448712, 24.766228381712963 ], [ -77.853195093608946, 24.766343883135761 ], [ -77.853240489091689, 24.766478796123021 ], [ -77.853238003149571, 24.766619914502879 ], [ -77.853224873007591, 24.766654887806506 ], [ -77.854295562444094, 24.767548002900195 ], [ -77.855674297673431, 24.766541399038157 ], [ -77.855665665656659, 24.766538177724193 ], [ -77.85159591626396, 24.764284913660884 ], [ -77.851207217450337, 24.76497180203982 ] ], [ [ -77.856388642366738, 24.766019850738608 ], [ -77.857248728244201, 24.765391885952678 ], [ -77.858153974177469, 24.763025937877547 ], [ -77.853288116693889, 24.764166726509817 ], [ -77.856177977105261, 24.76576670924063 ], [ -77.856295986566977, 24.765857863645085 ], [ -77.856377370461885, 24.765977853545504 ], [ -77.856388642366738, 24.766019850738608 ] ], [ [ -77.862113155586613, 24.766861383526035 ], [ -77.858762183528455, 24.764171848047091 ], [ -77.858213586205792, 24.765605681453074 ], [ -77.858971744277341, 24.766695309523673 ], [ -77.862113155586613, 24.766861383526035 ] ], [ [ -77.868822867242301, 24.783975842848559 ], [ -77.878415805481495, 24.791756094883919 ], [ -77.878440272185358, 24.791740899465548 ], [ -77.878588714227931, 24.791701456105127 ], [ -77.87874324284158, 24.791705817937409 ], [ -77.878888731846786, 24.791753557986009 ], [ -77.879010939897213, 24.791840003156402 ], [ -77.879097904471735, 24.791956691657933 ], [ -77.879141112828677, 24.792092201278066 ], [ -77.879136335308701, 24.79223326744096 ], [ -77.879104359822904, 24.792314474564456 ], [ -77.885136482288658, 24.797205821088244 ], [ -77.885560923567269, 24.796983661782694 ], [ -77.885695252749059, 24.796935523729136 ], [ -77.885839088893277, 24.796924863255544 ], [ -77.898556837872491, 24.797686082541169 ], [ -77.898682316055826, 24.797708730724196 ], [ -77.912750709517482, 24.802034938986793 ], [ -77.907108593696989, 24.785327449456041 ], [ -77.88111642128959, 24.773728909139972 ], [ -77.880988977777818, 24.773647050813487 ], [ -77.880895794999446, 24.77353302547138 ], [ -77.880846141396376, 24.773398174775636 ], [ -77.880844955670952, 24.77325591177447 ], [ -77.881011763690069, 24.772253244497897 ], [ -77.880937664046442, 24.772216501907209 ], [ -77.87683060929642, 24.772906472061955 ], [ -77.876700840709191, 24.772912410200906 ], [ -77.876573863959479, 24.772887255003539 ], [ -77.871314896413764, 24.771158648336232 ], [ -77.871188558381121, 24.771096960502465 ], [ -77.871086917402209, 24.771004770133949 ], [ -77.871018520356657, 24.770889829463229 ], [ -77.870989118610851, 24.770761803765254 ], [ -77.871001184411583, 24.770631458598476 ], [ -77.873053613606658, 24.76262117022981 ], [ -77.867829005201258, 24.7606948008698 ], [ -77.867813015329531, 24.760686318779598 ], [ -77.867797434969503, 24.760681969665043 ], [ -77.867761466598878, 24.760658973887956 ], [ -77.867707679086678, 24.760630441363674 ], [ -77.867689510870775, 24.760612970140542 ], [ -77.867670820412968, 24.760601020682522 ], [ -77.86650702699491, 24.759574844637758 ], [ -77.864148593815557, 24.759733531546029 ], [ -77.864078831604061, 24.759824582978045 ], [ -77.863955427636597, 24.759909565116335 ], [ -77.863809303717971, 24.75995556705864 ], [ -77.86365476358948, 24.759958085759664 ], [ -77.863506934871907, 24.759916874654738 ], [ -77.863380288208987, 24.759835967801646 ], [ -77.863340579635263, 24.7597878901008 ], [ -77.862248290600391, 24.75986136606878 ], [ -77.859355648089007, 24.762620714233329 ], [ -77.859113797624815, 24.763252841195602 ], [ -77.868648696698713, 24.770905174271512 ], [ -77.868752587620421, 24.771021941626397 ], [ -77.868808647767523, 24.771163406802906 ], [ -77.868810641982137, 24.771313836073642 ], [ -77.868758348278661, 24.771456498673814 ], [ -77.868657582614716, 24.771575527593175 ], [ -77.868519552108751, 24.771657684325358 ], [ -77.867236515885509, 24.772167076951931 ], [ -77.868930751020827, 24.776244942895886 ], [ -77.870668041368717, 24.776774273930457 ], [ -77.870822867442143, 24.776851821075521 ], [ -77.870937935485657, 24.776974123912066 ], [ -77.872575009378451, 24.779524900989653 ], [ -77.872631335620596, 24.779656333407043 ], [ -77.872640418655394, 24.779797224013343 ], [ -77.872601369217918, 24.77993378147675 ], [ -77.872518009594529, 24.780052638579146 ], [ -77.872398499526099, 24.780142160700962 ], [ -77.872254537506223, 24.78019358472109 ], [ -77.87210021564529, 24.780201876839762 ], [ -77.871950640196488, 24.780166225344225 ], [ -77.871820452791553, 24.780090120073446 ], [ -77.871722397160596, 24.77998101079983 ], [ -77.870179164969628, 24.777576431598028 ], [ -77.869383211086557, 24.777333916590763 ], [ -77.86983146606859, 24.778412746493654 ], [ -77.869861425385722, 24.778530572577317 ], [ -77.869856014374733, 24.778651430862414 ], [ -77.868822867242301, 24.783975842848559 ] ], [ [ -77.866329306359532, 24.772527249558745 ], [ -77.863801844265652, 24.773530642431794 ], [ -77.864068737422031, 24.774763411677004 ], [ -77.867720679726801, 24.775876233983976 ], [ -77.866329306359532, 24.772527249558745 ] ], [ [ -77.864655219765694, 24.758794798066106 ], [ -77.865511852500447, 24.758737161174373 ], [ -77.866128633770799, 24.756201837283104 ], [ -77.866061814952772, 24.756158664305854 ], [ -77.864655219765694, 24.758794798066106 ] ], [ [ -77.866540817248037, 24.758667922741502 ], [ -77.866654869741055, 24.758660247778764 ], [ -77.866792679651752, 24.758668651783232 ], [ -77.866922555862686, 24.75871156338258 ], [ -77.867034346783328, 24.758785628445917 ], [ -77.867737053477597, 24.75940524408303 ], [ -77.868227660897205, 24.757558028637735 ], [ -77.867003262718853, 24.756766946752425 ], [ -77.866540817248037, 24.758667922741502 ] ], [ [ -77.889595563336655, 24.776509140508747 ], [ -77.881935068965959, 24.772711063810828 ], [ -77.881876374323966, 24.773063888662353 ], [ -77.889595563336655, 24.776509140508747 ] ], [ [ -77.85225063795319, 24.736557068370612 ], [ -77.854865833178124, 24.734454854164298 ], [ -77.85377935267438, 24.734627966179985 ], [ -77.852201685788685, 24.736349882918311 ], [ -77.85225063795319, 24.736557068370612 ] ], [ [ -77.851037007639547, 24.740392526045074 ], [ -77.851010555446194, 24.740384192987577 ], [ -77.851018081374434, 24.740413963961227 ], [ -77.851037007639547, 24.740392526045074 ] ], [ [ -77.850229881098272, 24.74130675600728 ], [ -77.849951007710118, 24.740203562687316 ], [ -77.847841371516068, 24.742350494380787 ], [ -77.847721429220542, 24.742439497010956 ], [ -77.847577241207745, 24.742490294638181 ], [ -77.847422921710859, 24.742497914778962 ], [ -77.847273576751604, 24.742461611499216 ], [ -77.847143825398888, 24.742384938439777 ], [ -77.847046368697434, 24.74227540095249 ], [ -77.846990746371205, 24.742143721401753 ], [ -77.846982403015218, 24.742002789557265 ], [ -77.847022155181065, 24.741866400831487 ], [ -77.847106111506079, 24.741747905880324 ], [ -77.849052336192401, 24.739767291680451 ], [ -77.846722361196612, 24.739033232831012 ], [ -77.84661611868799, 24.738981569365116 ], [ -77.844887803248383, 24.74136917153141 ], [ -77.848253814603098, 24.743544971311245 ], [ -77.850229881098272, 24.74130675600728 ] ], [ [ -77.850806501670846, 24.738051644595636 ], [ -77.850881434782792, 24.739389135696786 ], [ -77.851405998790568, 24.739554386735382 ], [ -77.850806501670846, 24.738051644595636 ] ], [ [ -77.84430657823934, 24.753265991955729 ], [ -77.843592185017812, 24.752887809666152 ], [ -77.843511416075742, 24.7529955118179 ], [ -77.84430657823934, 24.753265991955729 ] ], [ [ -77.840193928922972, 24.74123463745034 ], [ -77.837062836198868, 24.742828097923038 ], [ -77.844676753722169, 24.747985972182903 ], [ -77.844714174732658, 24.748020827395141 ], [ -77.844755136312244, 24.748052187417301 ], [ -77.844936996956648, 24.748243068452833 ], [ -77.847686070084308, 24.744283332346399 ], [ -77.842093574680945, 24.740668232971117 ], [ -77.842071071016989, 24.740648182230313 ], [ -77.841053807798488, 24.741446162003424 ], [ -77.840924971550109, 24.741519202411368 ], [ -77.840777944476429, 24.741553108033134 ], [ -77.840626583235448, 24.741544683397446 ], [ -77.84048515298322, 24.74149472247716 ], [ -77.840366982902452, 24.741407933863357 ], [ -77.840193928922972, 24.74123463745034 ] ], [ [ -77.84334668678612, 24.739647518063965 ], [ -77.84335840715211, 24.739664314672389 ], [ -77.843397121749604, 24.739800952353281 ], [ -77.84338770822778, 24.739941828350354 ], [ -77.843331087890263, 24.740073152744859 ], [ -77.843232803004994, 24.740182070552283 ], [ -77.843137360477954, 24.740237616829493 ], [ -77.844081043464399, 24.740847655816967 ], [ -77.847056436447417, 24.736737238864006 ], [ -77.845240268843654, 24.738162039739564 ], [ -77.845234106592443, 24.738223740526834 ], [ -77.845173197943609, 24.738353454064292 ], [ -77.845071380298904, 24.738459629387936 ], [ -77.844938620242871, 24.738531873249244 ], [ -77.844787913315841, 24.738563113847007 ], [ -77.84473466915064, 24.738558678360686 ], [ -77.84334668678612, 24.739647518063965 ] ], [ [ -77.844384964209738, 24.749038177301767 ], [ -77.844045035588067, 24.748681387169363 ], [ -77.838179111694885, 24.744707715955713 ], [ -77.838085264105445, 24.744740642190798 ], [ -77.83272471637035, 24.74578251464078 ], [ -77.832610627387282, 24.746072727616404 ], [ -77.832601697607075, 24.746142425665806 ], [ -77.832537180899877, 24.746270679003224 ], [ -77.832527698609724, 24.74628367628025 ], [ -77.831517883101441, 24.748852324712626 ], [ -77.83351256694435, 24.749935567661034 ], [ -77.833565264468774, 24.749975575332716 ], [ -77.833619498559955, 24.75001383230693 ], [ -77.833624539290994, 24.750020576396704 ], [ -77.833631414983387, 24.750025796374317 ], [ -77.833667995090366, 24.750078716695047 ], [ -77.833706628976472, 24.750130405607376 ], [ -77.833709140854779, 24.750138242066839 ], [ -77.83371391363444, 24.7501451468185 ], [ -77.833730795590199, 24.750205799611244 ], [ -77.833750047492401, 24.750265860820662 ], [ -77.833749784631493, 24.750274022566103 ], [ -77.833751987301127, 24.750281936210285 ], [ -77.833747518527701, 24.750344384380689 ], [ -77.833745503877068, 24.750406938696578 ], [ -77.833742491998578, 24.750414626800893 ], [ -77.833741908937185, 24.75042277469694 ], [ -77.833716526799066, 24.750480905388837 ], [ -77.833693442733704, 24.750539829559543 ], [ -77.833118685053179, 24.751499111286989 ], [ -77.833021042210135, 24.75161350264387 ], [ -77.832888694870661, 24.751693686827267 ], [ -77.832735323732479, 24.751731375180913 ], [ -77.832576782795712, 24.75172267183601 ], [ -77.832429460490829, 24.751668476444991 ], [ -77.830771181801765, 24.75075163209139 ], [ -77.830581321035893, 24.751234552945867 ], [ -77.830580872502722, 24.751241924382139 ], [ -77.830547522635811, 24.751320520595971 ], [ -77.829437624562459, 24.75414353249537 ], [ -77.829363283461234, 24.754267273660965 ], [ -77.829250706178399, 24.754363980738347 ], [ -77.829110912557056, 24.754424187293662 ], [ -77.828957586658831, 24.754441999826447 ], [ -77.828805737238994, 24.754415674690648 ], [ -77.828670228528324, 24.754347788786838 ], [ -77.828564325160812, 24.754244987312301 ], [ -77.828498393701651, 24.754117333262933 ], [ -77.828478887893439, 24.753977322369849 ], [ -77.828507716952515, 24.753838659906009 ], [ -77.829488237691479, 24.751344772768523 ], [ -77.828271143187422, 24.750698396099818 ], [ -77.824500673014455, 24.754253245724229 ], [ -77.826190647229822, 24.756332959440936 ], [ -77.826245816269932, 24.756282047644405 ], [ -77.826383161811719, 24.756217308819867 ], [ -77.826535693340375, 24.756194494170181 ], [ -77.826688480150978, 24.75621583691645 ], [ -77.826826566560271, 24.756279247889733 ], [ -77.826936435814247, 24.756378520030481 ], [ -77.827043238684666, 24.756511272935821 ], [ -77.827761047424048, 24.756552622660472 ], [ -77.827913826923648, 24.756584141329217 ], [ -77.828048122658643, 24.756657747856988 ], [ -77.828150435219143, 24.756766043322333 ], [ -77.82821048006717, 24.756898141864454 ], [ -77.828645439614419, 24.758562679197219 ], [ -77.828649792813707, 24.758614097978402 ], [ -77.828658923375315, 24.758664991791964 ], [ -77.828655720391197, 24.758684112765387 ], [ -77.828657353165127, 24.758703398583911 ], [ -77.828644092346636, 24.75875352910143 ], [ -77.828635552718211, 24.758804508379825 ], [ -77.828626035634869, 24.758821789714442 ], [ -77.828621061847429, 24.758840592339666 ], [ -77.828591485016759, 24.758884527465415 ], [ -77.828566111061392, 24.75893060199531 ], [ -77.82855121146055, 24.758944352068518 ], [ -77.828540117961722, 24.758960830964007 ], [ -77.828497120269347, 24.758994270003612 ], [ -77.828472188242429, 24.759017278450166 ], [ -77.834758746155984, 24.762901307077769 ], [ -77.841463493332526, 24.753245871292613 ], [ -77.84141907452414, 24.753222986496549 ], [ -77.841314520040399, 24.753119042587723 ], [ -77.841250257726855, 24.75299068238056 ], [ -77.841232577935529, 24.752850470729026 ], [ -77.841263211138283, 24.75271213255623 ], [ -77.841339158593271, 24.752589209351893 ], [ -77.841452985940151, 24.752493733642556 ], [ -77.841593550963111, 24.75243505118436 ], [ -77.841747094269337, 24.7524189061626 ], [ -77.841898586119484, 24.752446878934776 ], [ -77.841995397259112, 24.752479811619388 ], [ -77.842240779077585, 24.752126403866029 ], [ -77.842180030872242, 24.752040647229801 ], [ -77.842140294963897, 24.751904253427565 ], [ -77.842148659284575, 24.75176332225583 ], [ -77.842204304918667, 24.751631649045958 ], [ -77.842301784757282, 24.751522122852151 ], [ -77.842431556747485, 24.75144546479514 ], [ -77.842580917953001, 24.75140917862953 ], [ -77.842733522156195, 24.751416730842223 ], [ -77.844384964209738, 24.749038177301767 ] ], [ [ -77.831239919319714, 24.746071062460178 ], [ -77.831422804223891, 24.74617092244555 ], [ -77.831537907318435, 24.746013154270006 ], [ -77.831239919319714, 24.746071062460178 ] ], [ [ -77.830523103858511, 24.7474040978673 ], [ -77.830874356524745, 24.746922656223965 ], [ -77.830242316893901, 24.746577543619143 ], [ -77.830157000717605, 24.746692192482392 ], [ -77.830523103858511, 24.7474040978673 ] ], [ [ -77.829908882696913, 24.750274863021225 ], [ -77.829893047419191, 24.750266107540064 ], [ -77.829783427962838, 24.750457833611076 ], [ -77.829827702250881, 24.750481346639244 ], [ -77.829908882696913, 24.750274863021225 ] ], [ [ -77.826229367567038, 24.751326629150494 ], [ -77.825526305932669, 24.750634791627846 ], [ -77.823249439354456, 24.75271339241883 ], [ -77.823904013462695, 24.753518962436019 ], [ -77.826229367567038, 24.751326629150494 ] ], [ [ -77.718494463057624, 24.497423846752838 ], [ -77.719061873883305, 24.497444999606227 ], [ -77.719105376719838, 24.497340255840086 ], [ -77.719182059913706, 24.497217778119403 ], [ -77.719296350717087, 24.497122978447486 ], [ -77.719437061550309, 24.497065136405993 ], [ -77.71959041874841, 24.49704991391588 ], [ -77.719741410788302, 24.497078801032416 ], [ -77.719875257664754, 24.497148970098962 ], [ -77.719978857603891, 24.497253552531738 ], [ -77.720042069521369, 24.497382311144278 ], [ -77.720053884762706, 24.497481976214278 ], [ -77.725223472766075, 24.497674563058929 ], [ -77.724800888542958, 24.493476265369672 ], [ -77.724783496609589, 24.493476133357667 ], [ -77.724640215298919, 24.493432325814705 ], [ -77.723967635114633, 24.493526836090009 ], [ -77.724054611304794, 24.49363896346102 ], [ -77.724100657044801, 24.493773681799489 ], [ -77.724098955894362, 24.493914827225716 ], [ -77.724049674218932, 24.494048583453914 ], [ -77.723957635920229, 24.494161857461069 ], [ -77.723831850289528, 24.494243561135228 ], [ -77.723684630137868, 24.494285696681214 ], [ -77.720166152788181, 24.494759257492582 ], [ -77.720011908257774, 24.494757696785026 ], [ -77.719865740101199, 24.494712595873256 ], [ -77.719741956408043, 24.494628369580255 ], [ -77.719652674047296, 24.494513262625336 ], [ -77.719606632561337, 24.494378542549498 ], [ -77.719608338692879, 24.49423739674323 ], [ -77.719646449480877, 24.494133970740606 ], [ -77.718261244838914, 24.494328567506383 ], [ -77.718494463057624, 24.497423846752838 ] ], [ [ -77.719517949279847, 24.499030618151174 ], [ -77.719550137131321, 24.499033584506147 ], [ -77.719691331291557, 24.499090436286618 ], [ -77.719806415865534, 24.499184430172743 ], [ -77.719884125605446, 24.499306365455851 ], [ -77.719916853677148, 24.499444306328176 ], [ -77.719966668522133, 24.500247255661865 ], [ -77.720057146341404, 24.498770231949475 ], [ -77.719517949279847, 24.499030618151174 ] ], [ [ -77.792923483383362, 24.723668977927037 ], [ -77.79179560477823, 24.724024613582156 ], [ -77.792270291168904, 24.724701689463732 ], [ -77.793109994570514, 24.724280440213491 ], [ -77.792923483383362, 24.723668977927037 ] ], [ [ -77.79121926189427, 24.726258323046707 ], [ -77.793051450430696, 24.727706682096663 ], [ -77.79427405717, 24.725931391270365 ], [ -77.793620559716416, 24.725053692042611 ], [ -77.792804202986019, 24.725463230830151 ], [ -77.793524765558502, 24.726490980768997 ], [ -77.79358671706909, 24.726620285236969 ], [ -77.793601889200929, 24.726760746604125 ], [ -77.79356879664941, 24.726898615560501 ], [ -77.793490678595376, 24.727020396515123 ], [ -77.793375181688475, 24.727114168644903 ], [ -77.793233611574038, 24.72717075280881 ], [ -77.793079826216385, 24.727184610093481 ], [ -77.792928879348523, 24.727154384024011 ], [ -77.792795546850215, 24.72708303335563 ], [ -77.792692880325134, 24.726977542443628 ], [ -77.791936409548157, 24.725898566175971 ], [ -77.79121926189427, 24.726258323046707 ] ], [ [ -77.786194924484903, 24.722116234845632 ], [ -77.786698405693642, 24.721575718597208 ], [ -77.786705597905339, 24.72150430213 ], [ -77.786766609941409, 24.721374625707082 ], [ -77.786824815757839, 24.721314014225189 ], [ -77.786458903490512, 24.720714849650225 ], [ -77.785717934096269, 24.721322619649357 ], [ -77.786194924484903, 24.722116234845632 ] ], [ [ -77.788189450522381, 24.728811799895553 ], [ -77.788222067908578, 24.728504748792918 ], [ -77.787545522526429, 24.727752022754544 ], [ -77.787440867061946, 24.727784571373974 ], [ -77.786829374429686, 24.728134128986763 ], [ -77.787024071073603, 24.728353670740898 ], [ -77.787025889240923, 24.728355524946924 ], [ -77.787026098034744, 24.728355956355379 ], [ -77.787701572776285, 24.72911761935984 ], [ -77.788189450522381, 24.728811799895553 ] ], [ [ -77.790372393899233, 24.71784820999391 ], [ -77.790363424456828, 24.717847030857712 ], [ -77.790224767413946, 24.717784737494664 ], [ -77.790082232092146, 24.717692928587848 ], [ -77.789778942143599, 24.717870372989339 ], [ -77.789742563290517, 24.717884918300115 ], [ -77.789709050062484, 24.717904377857479 ], [ -77.788194438725426, 24.71850430455854 ], [ -77.788618421324969, 24.719414598465125 ], [ -77.790620345922619, 24.718679862735801 ], [ -77.790372393899233, 24.71784820999391 ] ], [ [ -77.790881660675325, 24.719556320440091 ], [ -77.788537571012938, 24.720416632653805 ], [ -77.788416437877146, 24.720442188407706 ], [ -77.788315263300333, 24.720717672675821 ], [ -77.790942530474709, 24.719760477435351 ], [ -77.790881660675325, 24.719556320440091 ] ], [ [ -77.787288174842018, 24.718863259451627 ], [ -77.78662067355603, 24.71912764009274 ], [ -77.787392921071586, 24.720392167853515 ], [ -77.787660693692814, 24.719663072931944 ], [ -77.787288174842018, 24.718863259451627 ] ], [ [ -77.765250859193713, 24.69955854200666 ], [ -77.771078706574556, 24.696640328280676 ], [ -77.763415430111863, 24.696493032118617 ], [ -77.765250859193713, 24.69955854200666 ] ], [ [ -77.764895960814556, 24.599576420475874 ], [ -77.76491749408126, 24.600265495465059 ], [ -77.764917278123534, 24.600267020392156 ], [ -77.764917577878535, 24.600268535946821 ], [ -77.764981196553421, 24.60293338072238 ], [ -77.765126363396647, 24.60293596107325 ], [ -77.76505329435534, 24.599570350061413 ], [ -77.764895960814556, 24.599576420475874 ] ], [ [ -77.729315467502715, 24.471010525737281 ], [ -77.731863783332003, 24.468835183990588 ], [ -77.731378933752538, 24.468332068182232 ], [ -77.728684277487091, 24.469791223161387 ], [ -77.729278165485823, 24.470556136342616 ], [ -77.72934673493161, 24.470682571239362 ], [ -77.729369260319217, 24.470822211416561 ], [ -77.72934353656315, 24.470961387953817 ], [ -77.729315467502715, 24.471010525737281 ] ], [ [ -77.777553818749269, 24.710061548544097 ], [ -77.777476748188363, 24.710142130034694 ], [ -77.777344106388696, 24.710214522333803 ], [ -77.777193467340169, 24.710245928864211 ], [ -77.777183328880966, 24.710245095239681 ], [ -77.775985480755082, 24.710838519081229 ], [ -77.781524378575398, 24.718037454945662 ], [ -77.785104989949531, 24.718744525765821 ], [ -77.789279632267878, 24.717091035287758 ], [ -77.795012854092391, 24.71373655592248 ], [ -77.796293263242859, 24.711401270563996 ], [ -77.786077445121663, 24.696927481918657 ], [ -77.772941707751841, 24.696676077699649 ], [ -77.772899974231791, 24.696732031541302 ], [ -77.772856674667196, 24.696762637678372 ], [ -77.77981084973699, 24.708429258012718 ], [ -77.779862639761404, 24.708562400104547 ], [ -77.77986680292328, 24.708703646699664 ], [ -77.779822930664423, 24.708839141658864 ], [ -77.779735326671812, 24.708955593028502 ], [ -77.779612584743475, 24.709041576978844 ], [ -77.777553818749269, 24.710061548544097 ] ], [ [ -77.770300612131081, 24.699600654584881 ], [ -77.770302656524123, 24.699591247363532 ], [ -77.770378099958847, 24.699468073108928 ], [ -77.770491514921034, 24.699372225601575 ], [ -77.770631799561173, 24.699313086992028 ], [ -77.770785221931362, 24.699296446116978 ], [ -77.770936764129644, 24.699323931871412 ], [ -77.771071592300046, 24.699392853772409 ], [ -77.771176508616477, 24.699496465316916 ], [ -77.771241243141702, 24.699624624356318 ], [ -77.771259459119264, 24.699764785853361 ], [ -77.771191213486162, 24.701366638739195 ], [ -77.771161127384403, 24.701505082740425 ], [ -77.771085683743962, 24.70162825740001 ], [ -77.771031777996541, 24.701673813143831 ], [ -77.771818964633965, 24.702738129235758 ], [ -77.773320572553331, 24.701997742196827 ], [ -77.7733737291247, 24.701884141783442 ], [ -77.773475387514523, 24.701777853011876 ], [ -77.773608023475333, 24.701705464656165 ], [ -77.773758653736067, 24.701674062524443 ], [ -77.773912533691757, 24.701686720433241 ], [ -77.774054600656783, 24.701742199337328 ], [ -77.774170948245754, 24.701835068616454 ], [ -77.774250187581885, 24.701956237646446 ], [ -77.774266463495337, 24.701993309083377 ], [ -77.774296460708001, 24.702029206938434 ], [ -77.774347672656788, 24.702162373367919 ], [ -77.774348111149394, 24.70217927647883 ], [ -77.774618939540375, 24.702796132581586 ], [ -77.774642635498196, 24.702802606393156 ], [ -77.774769736982591, 24.702882855899588 ], [ -77.774863472418403, 24.702995058334515 ], [ -77.774914666301257, 24.703128230613391 ], [ -77.774918307304517, 24.70326933696041 ], [ -77.774879178927137, 24.703388863453455 ], [ -77.777393262335991, 24.70911467788412 ], [ -77.778706839570262, 24.708463897081497 ], [ -77.771998092851618, 24.697208852534128 ], [ -77.769895337833645, 24.6982618311335 ], [ -77.770300612131081, 24.699600654584881 ] ], [ [ -77.776519199464573, 24.70954770194383 ], [ -77.774044446539847, 24.703911388503585 ], [ -77.772958115043636, 24.704446852441198 ], [ -77.775441319242276, 24.710081689509568 ], [ -77.776519199464573, 24.70954770194383 ] ], [ [ -77.774147024926748, 24.71072287412704 ], [ -77.773035916910985, 24.710829745578192 ], [ -77.77288161328417, 24.710822384457089 ], [ -77.772737352050058, 24.71077182642647 ], [ -77.772617254629793, 24.710683020495555 ], [ -77.772533077042894, 24.710564659673647 ], [ -77.772493059128195, 24.710428330012586 ], [ -77.772501117989989, 24.710287376456584 ], [ -77.772556464613487, 24.710155596528097 ], [ -77.772653681159184, 24.710045889727752 ], [ -77.772783251346937, 24.709968994855505 ], [ -77.772932491993942, 24.709932438847282 ], [ -77.774254744253781, 24.709805258471544 ], [ -77.772083405519098, 24.704877997035858 ], [ -77.769776200108637, 24.706015182049335 ], [ -77.769762091605131, 24.706024066975836 ], [ -77.769753347571367, 24.70602644543294 ], [ -77.767748750801005, 24.70701443512149 ], [ -77.771356267631575, 24.712105338288364 ], [ -77.774147024926748, 24.71072287412704 ] ], [ [ -77.773674406154143, 24.70306855841087 ], [ -77.773595012423868, 24.702887723832102 ], [ -77.772374656034529, 24.703489437463304 ], [ -77.77249378299615, 24.703650498425478 ], [ -77.773674406154143, 24.70306855841087 ] ], [ [ -77.832499668344596, 24.750652591735069 ], [ -77.832597939227966, 24.750488577705898 ], [ -77.831177806014168, 24.749717350445543 ], [ -77.831111797860416, 24.749885248606127 ], [ -77.832499668344596, 24.750652591735069 ] ], [ [ -77.916141382746844, 24.854652859407768 ], [ -77.916122343312935, 24.854662270998492 ], [ -77.916148208562376, 24.85467266250761 ], [ -77.916141382746844, 24.854652859407768 ] ], [ [ -77.888434822874615, 24.831807519295417 ], [ -77.888253474211197, 24.831980484470563 ], [ -77.888377021758458, 24.832033532750511 ], [ -77.88848976298425, 24.832130139283411 ], [ -77.888564273617561, 24.832253810830931 ], [ -77.888593259967251, 24.8323924416278 ], [ -77.888582703442893, 24.832468730103464 ], [ -77.888588022126214, 24.832472988244881 ], [ -77.888667070701231, 24.832594290944254 ], [ -77.888701174922403, 24.832731948477711 ], [ -77.888686996295448, 24.832872486010107 ], [ -77.888625922565396, 24.833002146749667 ], [ -77.888523931934699, 24.833108238558236 ], [ -77.888484336933985, 24.833129726767911 ], [ -77.889037903159348, 24.832897725560699 ], [ -77.888434822874615, 24.831807519295417 ] ], [ [ -78.022959896950596, 24.972376408526934 ], [ -78.023461908659186, 24.974354562753248 ], [ -78.027195409643738, 24.987539073509161 ], [ -78.033256080461896, 24.985259946245382 ], [ -78.033406677857641, 24.985227190249862 ], [ -78.033561010207208, 24.985238452904539 ], [ -78.033703970544337, 24.985292631738904 ], [ -78.033821565038849, 24.985384423391181 ], [ -78.033902282762924, 24.985504842723117 ], [ -78.033938222445471, 24.985642102321812 ], [ -78.033925865925625, 24.985782766306986 ], [ -78.033866422586186, 24.985913065511124 ], [ -78.033765711031734, 24.986020245300235 ], [ -78.033633589570258, 24.986093814101569 ], [ -78.027445178263676, 24.988420982049256 ], [ -78.028225315504343, 24.99117546844364 ], [ -78.028353982240333, 24.991248834511847 ], [ -78.028453442326835, 24.991356984717179 ], [ -78.028511365106041, 24.991487853073874 ], [ -78.028522080589724, 24.991628629335644 ], [ -78.028484539716516, 24.991765533365786 ], [ -78.028419342254807, 24.991860508627546 ], [ -78.028946154257355, 24.993720448317866 ], [ -78.02899444605994, 24.993798221932593 ], [ -78.029025329945284, 24.99393650088652 ], [ -78.029019827623316, 24.993980550713808 ], [ -78.031490614689886, 25.002702820033306 ], [ -78.031821431352824, 25.002711362179053 ], [ -78.028769048006382, 24.988715917818681 ], [ -78.028762993892286, 24.98857491111713 ], [ -78.028805044888969, 24.98843910068592 ], [ -78.028891084607835, 24.988321780571738 ], [ -78.029012690805885, 24.988234434824534 ], [ -78.029157959842323, 24.988185613381741 ], [ -78.029312671881939, 24.988180095168637 ], [ -78.029461682789446, 24.988218420325897 ], [ -78.029590406483024, 24.988296837344674 ], [ -78.029686242666557, 24.988407670281021 ], [ -78.029739810205484, 24.988540070107817 ], [ -78.032836376338707, 25.002737564845649 ], [ -78.034792257293773, 25.00278803983467 ], [ -78.034898953380747, 25.002748692651114 ], [ -78.035053418235009, 25.002738770944255 ], [ -78.035203687463067, 25.00277283330054 ], [ -78.03525124476468, 25.002799881071915 ], [ -78.037433202645829, 25.002856153042405 ], [ -78.037541498253574, 25.002816976646496 ], [ -78.037696031772839, 25.002807989908938 ], [ -78.037846049267571, 25.002842960786044 ], [ -78.037889276704448, 25.002867910969218 ], [ -78.040187269415824, 25.002927133502421 ], [ -78.040284809646408, 25.002890326727655 ], [ -78.040439181320281, 25.002879271385432 ], [ -78.040589746337972, 25.002912229299405 ], [ -78.040637177926158, 25.002938724098929 ], [ -78.043846693078791, 25.003021368258825 ], [ -78.043020896036509, 25.000350602086986 ], [ -78.042397315354705, 25.000904892312541 ], [ -78.04228473826538, 25.00097993845613 ], [ -78.042153655313257, 25.001023379211734 ], [ -78.04201447794118, 25.001031764222763 ], [ -78.037251266473191, 25.000703898466959 ], [ -78.037100587098621, 25.00067138629348 ], [ -78.036968307094369, 25.000598031924692 ], [ -78.036867375036621, 25.000491015853836 ], [ -78.03680767085072, 25.000360813632408 ], [ -78.036795038698415, 25.000220170422345 ], [ -78.03683071494855, 25.000082853387376 ], [ -78.036911207211745, 24.999962304056965 ], [ -78.037028636256778, 24.999870322582979 ], [ -78.037171507318206, 24.999815912680109 ], [ -78.037325835281095, 24.999804400307394 ], [ -78.041866161818888, 25.000116930879134 ], [ -78.042715283028798, 24.999362161809284 ], [ -78.039088309675193, 24.987629980629585 ], [ -78.039080290407455, 24.987568080529321 ], [ -78.039069769052503, 24.987506492487732 ], [ -78.039071236115845, 24.987498191051742 ], [ -78.039070154306614, 24.987489840630147 ], [ -78.039083514807174, 24.987428711561513 ], [ -78.039094389858974, 24.987367174579248 ], [ -78.039098599720262, 24.987359692633571 ], [ -78.039100402070602, 24.987351446225642 ], [ -78.039133834451235, 24.987297071925671 ], [ -78.039165041316323, 24.98724160966384 ], [ -78.039171581877611, 24.987235679591208 ], [ -78.0391760919522, 24.987228344411157 ], [ -78.039226323570858, 24.987186047394719 ], [ -78.039274807461581, 24.987142088861074 ], [ -78.039283038484811, 24.987138291134396 ], [ -78.039289814801492, 24.987132585196935 ], [ -78.039351928629429, 24.987106505760156 ], [ -78.039412943604063, 24.987078353889082 ], [ -78.055665431417751, 24.982307125566141 ], [ -78.054399386179554, 24.979150478321962 ], [ -78.054369632879741, 24.979011996820319 ], [ -78.05438828479447, 24.978871912671913 ], [ -78.054453515986225, 24.978743938286765 ], [ -78.054558941056428, 24.978640600644557 ], [ -78.054694240236643, 24.978572015083621 ], [ -78.054846169570183, 24.978544895167992 ], [ -78.05499985729611, 24.978561895543098 ], [ -78.055140259547173, 24.978621352096191 ], [ -78.055253632887855, 24.978717444850417 ], [ -78.055328879573622, 24.978840767647515 ], [ -78.056608141883487, 24.982030310920916 ], [ -78.057053257477676, 24.981899606088422 ], [ -78.053455053555112, 24.971636298845759 ], [ -78.050460142124095, 24.971330767121962 ], [ -78.05045839878801, 24.971346261068852 ], [ -78.050418707729008, 24.971482656689194 ], [ -78.050334720255563, 24.971601196389226 ], [ -78.050214657566428, 24.971690276618364 ], [ -78.050070272250167, 24.97174117751025 ], [ -78.049915697853862, 24.971748916471814 ], [ -78.049766065352387, 24.971712735936805 ], [ -78.049636021963551, 24.971636177530367 ], [ -78.049538297320709, 24.971526735381545 ], [ -78.049482457376683, 24.97139512252328 ], [ -78.049473968027954, 24.971254222198265 ], [ -78.049476646351849, 24.971230420226341 ], [ -78.048002002571067, 24.971079948435342 ], [ -78.047971322031827, 24.971181030456375 ], [ -78.047885956520389, 24.97129874959278 ], [ -78.047764861514182, 24.971386661191325 ], [ -78.04761989065554, 24.971436159779358 ], [ -78.047465234811042, 24.971442400032029 ], [ -78.047316032928961, 24.971404771088622 ], [ -78.047186890073675, 24.97132695635608 ], [ -78.047090447725026, 24.971216572942314 ], [ -78.047036146312621, 24.971084426017804 ], [ -78.047031118119378, 24.970980871664217 ], [ -78.04512169482814, 24.970785999727475 ], [ -78.045110353863251, 24.970815174457297 ], [ -78.045016089167163, 24.970927110083863 ], [ -78.044888491289413, 24.971007014410318 ], [ -78.044740050440893, 24.971047065772503 ], [ -78.044585297170286, 24.971043343612614 ], [ -78.044439379965311, 24.970996212270339 ], [ -78.044316582352366, 24.970910285323107 ], [ -78.0442289246743, 24.970793973964195 ], [ -78.044195643240897, 24.970691479581689 ], [ -78.04236421586576, 24.9705045319973 ], [ -78.042343063181988, 24.970532113190693 ], [ -78.042219499058461, 24.970617122125255 ], [ -78.042073164136085, 24.970663164388387 ], [ -78.041918382811431, 24.970665732986781 ], [ -78.041770306317005, 24.970624576470545 ], [ -78.041643429552693, 24.970543723553561 ], [ -78.041550172170176, 24.970431088744519 ], [ -78.041546367328806, 24.9704210404748 ], [ -78.039802305136277, 24.970242979187287 ], [ -78.03931734804199, 24.973938943355428 ], [ -78.039275142721408, 24.974074711784006 ], [ -78.039188975680432, 24.97419194702055 ], [ -78.039067281473777, 24.974279173203037 ], [ -78.038921972399734, 24.974327851952129 ], [ -78.038767272433233, 24.974333218195088 ], [ -78.038618324841906, 24.974294746626288 ], [ -78.03848970979756, 24.974216203135601 ], [ -78.038394017112424, 24.974105276167382 ], [ -78.038340613831821, 24.973972824099018 ], [ -78.038334727330579, 24.973831812319407 ], [ -78.038818833292027, 24.970142561556557 ], [ -78.037284297099987, 24.969985863879575 ], [ -78.036600870447501, 24.973713767859277 ], [ -78.036551781173884, 24.973847599727041 ], [ -78.036459723698741, 24.97396105411536 ], [ -78.036333709186934, 24.974043025254428 ], [ -78.036186072852971, 24.974085489165684 ], [ -78.036031266490411, 24.974084289132442 ], [ -78.035884443783644, 24.974039542608551 ], [ -78.035759976898888, 24.973955629726461 ], [ -78.035670049584226, 24.973840764527555 ], [ -78.035623464515723, 24.973706190890123 ], [ -78.035624781643861, 24.973565081872639 ], [ -78.036376366519292, 24.969465564826123 ], [ -78.0363750470691, 24.969439154431463 ], [ -78.036390725439801, 24.969387242282064 ], [ -78.03700713044411, 24.966024917549007 ], [ -78.035372142477655, 24.965996561141253 ], [ -78.034584534409191, 24.968024151740206 ], [ -78.034691956085837, 24.968120131145575 ], [ -78.034763614159715, 24.968245216844139 ], [ -78.034789361493594, 24.968384365654675 ], [ -78.034859104029024, 24.97472802597138 ], [ -78.034836419878573, 24.974867617087394 ], [ -78.034767522357242, 24.974993986597649 ], [ -78.034659155525475, 24.975094764526201 ], [ -78.034521927064205, 24.975160085956237 ], [ -78.03436926992859, 24.975183556703961 ], [ -78.034216127407277, 24.975162879251524 ], [ -78.034077490313976, 24.975100077658393 ], [ -78.033966929522279, 24.975001299429874 ], [ -78.033895267512406, 24.974876213738224 ], [ -78.03386951898392, 24.974737064909554 ], [ -78.033812257808734, 24.969525185363008 ], [ -78.033764883484494, 24.969544492158764 ], [ -78.033606001449414, 24.969558497576873 ], [ -78.023122307802566, 24.968930251136435 ], [ -78.022959896950596, 24.972376408526934 ] ], [ [ -78.037447642372641, 24.969094837022034 ], [ -78.038936365697623, 24.96924685728359 ], [ -78.039353797484424, 24.966065585428733 ], [ -78.038007236970401, 24.966042253999387 ], [ -78.037447642372641, 24.969094837022034 ] ], [ [ -78.039919830329453, 24.969347274811796 ], [ -78.041594729328608, 24.969518276317551 ], [ -78.042116829710494, 24.966113421297667 ], [ -78.04034815227952, 24.966082806445471 ], [ -78.039919830329453, 24.969347274811796 ] ], [ [ -78.042578536579185, 24.969618710570202 ], [ -78.044335536797647, 24.96979806121713 ], [ -78.045075129715855, 24.966164580684094 ], [ -78.043113365475534, 24.96613066149482 ], [ -78.042578536579185, 24.969618710570202 ] ], [ [ -78.045321529766241, 24.969898699730354 ], [ -78.047136166124588, 24.970083898631071 ], [ -78.047617969022511, 24.96620850809061 ], [ -78.046078049149003, 24.966181911273011 ], [ -78.045321529766241, 24.969898699730354 ] ], [ [ -78.048119611276164, 24.970184257873786 ], [ -78.049577624653807, 24.97033303373415 ], [ -78.050037029353874, 24.966250256715359 ], [ -78.048611726312672, 24.966225663331684 ], [ -78.048119611276164, 24.970184257873786 ] ], [ [ -78.050561113197887, 24.970433380641683 ], [ -78.053125065023124, 24.970694952993533 ], [ -78.052861499528191, 24.96994307687002 ], [ -78.05283830534799, 24.969790558710169 ], [ -78.052967716507794, 24.966300782187556 ], [ -78.051029848782989, 24.966267379559298 ], [ -78.050561113197887, 24.970433380641683 ] ], [ [ -78.044883344735979, 25.00304804686483 ], [ -78.045326633310466, 25.003059452836531 ], [ -78.044295360899739, 24.999217729862021 ], [ -78.043827565854585, 24.999633556484131 ], [ -78.044883344735979, 25.00304804686483 ] ], [ [ -78.043521948998617, 24.998645118228669 ], [ -78.044022275226652, 24.998200373371066 ], [ -78.041390165586193, 24.988393595908306 ], [ -78.041377359434065, 24.988252966163834 ], [ -78.041412860940909, 24.988115612579559 ], [ -78.041493194822351, 24.987994980262876 ], [ -78.041610497350433, 24.987902877489038 ], [ -78.041753286143646, 24.987848319846481 ], [ -78.041907584139679, 24.987836647755948 ], [ -78.042058287729603, 24.987869003736431 ], [ -78.042190645145538, 24.987942220577555 ], [ -78.042291700409379, 24.988049131361159 ], [ -78.042351561520562, 24.988179270987661 ], [ -78.044844970637456, 24.997469061436906 ], [ -78.046286801684275, 24.996187356395794 ], [ -78.046297373263286, 24.996147184461869 ], [ -78.046378245033324, 24.996026848851407 ], [ -78.046495961220216, 24.995935178248981 ], [ -78.046625543725426, 24.995886228640249 ], [ -78.049165300990666, 24.993628421834277 ], [ -78.0491491468145, 24.993621697589017 ], [ -78.049035077855777, 24.993526276724868 ], [ -78.04895894611208, 24.993403400809648 ], [ -78.048928203821021, 24.993265097862974 ], [ -78.048945860112241, 24.993124905982519 ], [ -78.049010186506436, 24.992996548124776 ], [ -78.049114886171409, 24.992892588807088 ], [ -78.049249710344441, 24.992823204221953 ], [ -78.049401461564074, 24.992795186147092 ], [ -78.054215896243647, 24.992607193295562 ], [ -78.054216529576721, 24.992607077157608 ], [ -78.054217160361659, 24.992607143914103 ], [ -78.05989250896782, 24.992385333891033 ], [ -78.059893065910359, 24.992385392111693 ], [ -78.059893615582652, 24.992385291750605 ], [ -78.059969964155542, 24.992393430740961 ], [ -78.060046332517516, 24.992401413937447 ], [ -78.060046842461091, 24.992401626161154 ], [ -78.060047399259432, 24.992401685517102 ], [ -78.060117251469606, 24.992430928321468 ], [ -78.06018717533739, 24.992460028531649 ], [ -78.060187588365665, 24.992460373984624 ], [ -78.06018809778729, 24.992460587247457 ], [ -78.060244616076076, 24.992508071396653 ], [ -78.060301250867511, 24.992555440112845 ], [ -78.06030152655056, 24.992555884979989 ], [ -78.060301938730134, 24.992556231274218 ], [ -78.060339590714818, 24.992617308723354 ], [ -78.060377392630272, 24.9926783092005 ], [ -78.060377503982181, 24.992678809935409 ], [ -78.060377778572686, 24.992679255363601 ], [ -78.061753793455836, 24.996064123844452 ], [ -78.061817894425559, 24.996042017406161 ], [ -78.061972555488126, 24.99603530282932 ], [ -78.062013901137547, 24.996045591684002 ], [ -78.060144650509756, 24.990715627595833 ], [ -78.054828954023137, 24.990814039953893 ], [ -78.054675569575281, 24.990794797530043 ], [ -78.05453621673378, 24.990733298137265 ], [ -78.054424536437224, 24.990635561811288 ], [ -78.05435146075412, 24.990511155735376 ], [ -78.054324142767115, 24.990372257710778 ], [ -78.054345256407871, 24.990232464082819 ], [ -78.054412734768647, 24.990105458821038 ], [ -78.054519972485863, 24.990003674038693 ], [ -78.054656472361629, 24.989937073068742 ], [ -78.05480887291138, 24.989912175210424 ], [ -78.058687144563507, 24.989840396111298 ], [ -78.056005495167909, 24.983154976986548 ], [ -78.040170288782633, 24.987803749446087 ], [ -78.043521948998617, 24.998645118228669 ] ], [ [ -78.059733183330991, 24.989821018686616 ], [ -78.059830294377875, 24.989819219372233 ], [ -78.057354531368276, 24.982758846299877 ], [ -78.056948210885892, 24.982878159666711 ], [ -78.059733183330991, 24.989821018686616 ] ], [ [ -78.059574866890244, 24.993300630688015 ], [ -78.056958649808166, 24.99340290287757 ], [ -78.057954112677763, 24.996112660118666 ], [ -78.060744315359173, 24.996177412744547 ], [ -78.059574866890244, 24.993300630688015 ] ], [ [ -78.046352764550775, 25.003085850452781 ], [ -78.048041493994091, 25.003129278142765 ], [ -78.046494395318504, 24.997262937495741 ], [ -78.045118060621505, 24.998486416011559 ], [ -78.046352764550775, 25.003085850452781 ] ], [ [ -78.055929657474479, 24.993443115240282 ], [ -78.054937832548475, 24.99348186837846 ], [ -78.058984583499935, 25.003410224878941 ], [ -78.05959714354664, 25.003425927443825 ], [ -78.057217083451846, 24.996947686601114 ], [ -78.057140687880278, 24.996909948008526 ], [ -78.057034025256243, 24.996807657889061 ], [ -78.056967267425705, 24.996680335590494 ], [ -78.056946949023256, 24.996540444371533 ], [ -78.056975058806543, 24.996401677792505 ], [ -78.057000675445707, 24.996358607970095 ], [ -78.055929657474479, 24.993443115240282 ] ], [ [ -78.053898539822796, 24.993522469100153 ], [ -78.052018519610442, 24.993595894976341 ], [ -78.055591576430416, 25.003323201424553 ], [ -78.056584621599313, 25.003348678999011 ], [ -78.056607988438927, 25.003340810786483 ], [ -78.056762712169956, 25.003335198613932 ], [ -78.056840893558118, 25.003355252830726 ], [ -78.057917494653239, 25.003382864707561 ], [ -78.053898539822796, 24.993522469100153 ] ], [ [ -78.050989525522027, 24.993636073188725 ], [ -78.05055507660218, 24.993653034587432 ], [ -78.049404038878606, 24.99467632567832 ], [ -78.052432732287642, 25.003242113705756 ], [ -78.052944337781241, 25.003255251233359 ], [ -78.053012038664193, 25.003235948515623 ], [ -78.053166875946729, 25.003237491891571 ], [ -78.053250267830023, 25.003263106370628 ], [ -78.054537799992858, 25.003296158428032 ], [ -78.050989525522027, 24.993636073188725 ] ], [ [ -78.048612823166138, 24.995379715126909 ], [ -78.047319057994102, 24.996529845501204 ], [ -78.049066485324374, 25.003155627602023 ], [ -78.051383226752719, 25.003215157887112 ], [ -78.048612823166138, 24.995379715126909 ] ], [ [ -78.060650925101612, 25.003452934482176 ], [ -78.06124238667708, 25.003468089572603 ], [ -78.058815807844127, 24.997035002722839 ], [ -78.058288462060446, 24.997022762149424 ], [ -78.060650925101612, 25.003452934482176 ] ], [ [ -78.062299301404565, 25.003495165127976 ], [ -78.064647942415021, 25.003555304461518 ], [ -78.062898981497199, 24.998569102692844 ], [ -78.063367759878872, 25.000626948024848 ], [ -78.063375130134986, 25.000767898761556 ], [ -78.063334345002957, 25.000904026439439 ], [ -78.063249396670315, 25.001022005909643 ], [ -78.06312860039327, 25.001110288460115 ], [ -78.062983780571386, 25.001160232306724 ], [ -78.062829113286014, 25.001166948539176 ], [ -78.062679738605368, 25.001129779704016 ], [ -78.06255027850932, 25.001052364169087 ], [ -78.062453405532523, 25.000942279965834 ], [ -78.062398602258583, 25.00081030297606 ], [ -78.061553096669186, 24.997098509529724 ], [ -78.06149764312498, 24.997097223475905 ], [ -78.061483942183443, 24.997099725149546 ], [ -78.061450133236676, 24.997096121631269 ], [ -78.05987168987977, 24.997059505848608 ], [ -78.062299301404565, 25.003495165127976 ] ], [ [ -78.053001152573856, 24.96539914293567 ], [ -78.053119736663604, 24.96220145296428 ], [ -78.053099827260496, 24.962181912418167 ], [ -78.0530346863479, 24.962053903150718 ], [ -78.053016126303831, 24.961913808724372 ], [ -78.053045963764546, 24.96177534258927 ], [ -78.053121277878361, 24.961652058762454 ], [ -78.053140721431831, 24.96163559552156 ], [ -78.053176571736529, 24.960668893057445 ], [ -78.048525612466918, 24.96056834567478 ], [ -78.048399821066909, 24.965319786629671 ], [ -78.053001152573856, 24.96539914293567 ] ], [ [ -78.053210007443639, 24.959767307442053 ], [ -78.053385828561375, 24.955026450102146 ], [ -78.048674256564695, 24.954954245123531 ], [ -78.048549488185287, 24.95966655030762 ], [ -78.053210007443639, 24.959767307442053 ] ], [ [ -78.031714217433461, 25.003611020926385 ], [ -78.032895161347653, 25.008752991053335 ], [ -78.034309671376533, 25.008747809881829 ], [ -78.034414019701643, 25.008742841656669 ], [ -78.034432509950733, 25.008747359303538 ], [ -78.039285704169799, 25.008729476187035 ], [ -78.039290783287527, 25.008726901790158 ], [ -78.039442749924319, 25.008699773949786 ], [ -78.039596478096144, 25.008716766678717 ], [ -78.039623547608358, 25.008728225389437 ], [ -78.042731760437306, 25.008716681774708 ], [ -78.042771434379887, 25.008698111208552 ], [ -78.042924302208448, 25.008675579360798 ], [ -78.043077328928675, 25.008697196918199 ], [ -78.043116524144025, 25.008715248270793 ], [ -78.044231371217577, 25.008711089083135 ], [ -78.04425349330225, 25.008699863732282 ], [ -78.044405445136974, 25.008672670063415 ], [ -78.044559181552046, 25.008689596027079 ], [ -78.044606702575948, 25.008709686941092 ], [ -78.04584999442838, 25.008705035541652 ], [ -78.04587759282002, 25.008691993664588 ], [ -78.046030363145064, 25.008668921304736 ], [ -78.046183480425015, 25.008689997350391 ], [ -78.046213464803543, 25.008703673760241 ], [ -78.046568667776711, 25.00870234209366 ], [ -78.046596450567279, 25.008689443678328 ], [ -78.04674939925799, 25.008667374922926 ], [ -78.046902345844231, 25.008689455680631 ], [ -78.046927200376899, 25.008700997082226 ], [ -78.047262111156655, 25.008699739904191 ], [ -78.047281470094589, 25.008690373511218 ], [ -78.047433987585336, 25.008665952494756 ], [ -78.047587321744501, 25.008685674695869 ], [ -78.047615934616587, 25.008698410911435 ], [ -78.052042122714781, 25.008681714482819 ], [ -78.052048312183587, 25.008678787983968 ], [ -78.052201076081573, 25.008655684484562 ], [ -78.052354197807787, 25.008676729109588 ], [ -78.052362471871092, 25.008680500942532 ], [ -78.053390572730365, 25.008676601641479 ], [ -78.052659470129825, 25.004150344918887 ], [ -78.049306122590579, 25.004064198487548 ], [ -78.05019026739815, 25.007416236040715 ], [ -78.05020245915847, 25.007556910007015 ], [ -78.050166350744107, 25.007694132068984 ], [ -78.050085476549, 25.007814469956116 ], [ -78.049967753015864, 25.007906144100787 ], [ -78.049824703752847, 25.007960180726069 ], [ -78.049670331519209, 25.007971290289426 ], [ -78.049519747499247, 25.00793838528331 ], [ -78.04938769205522, 25.007864686697982 ], [ -78.049287091781096, 25.007757408721254 ], [ -78.049227794124107, 25.007627052541849 ], [ -78.048281123818711, 25.004037851405659 ], [ -78.046596712935624, 25.003994539017931 ], [ -78.047536877596002, 25.007496420371286 ], [ -78.047549695211458, 25.007637048419301 ], [ -78.047514197561782, 25.007774403047328 ], [ -78.047433859254582, 25.007895039008929 ], [ -78.047316544275048, 25.007987147559248 ], [ -78.04717373623798, 25.00804171239874 ], [ -78.047019414288741, 25.008053392279258 ], [ -78.046868684689116, 25.008021043866112 ], [ -78.046736302052196, 25.007947833665792 ], [ -78.046635225000912, 25.00784092805922 ], [ -78.046575347654041, 25.00771079178492 ], [ -78.04557057424681, 25.003968143811036 ], [ -78.041046933164409, 25.003851697919426 ], [ -78.041998630544001, 25.007465784429932 ], [ -78.042010764818642, 25.007606463412067 ], [ -78.041974600011599, 25.007743674055131 ], [ -78.041893676037006, 25.007863985206299 ], [ -78.041775914210476, 25.007955619915002 ], [ -78.041632841888742, 25.008009608264576 ], [ -78.041478464088328, 25.008020665438096 ], [ -78.04132789253849, 25.007987709056405 ], [ -78.041195866380775, 25.007913965138847 ], [ -78.041095309342253, 25.00780665231072 ], [ -78.04103606463778, 25.007676275172237 ], [ -78.040022017961405, 25.003825295684759 ], [ -78.038286093193847, 25.003780561332047 ], [ -78.039205456241447, 25.007512766042915 ], [ -78.039215320455497, 25.007653592638274 ], [ -78.039176946612372, 25.007790304425271 ], [ -78.039094090863841, 25.007909519080535 ], [ -78.038974863624972, 25.007999566984811 ], [ -78.038830935701995, 25.008051633548842 ], [ -78.038676395867256, 25.008060622074677 ], [ -78.038526371712209, 25.008025652678839 ], [ -78.038395548793801, 25.007950148430574 ], [ -78.03829673305367, 25.007841500269965 ], [ -78.038239597251561, 25.007710343508943 ], [ -78.037265113501718, 25.003754241410729 ], [ -78.035651795125119, 25.003712637156404 ], [ -78.036611132778788, 25.007489583063318 ], [ -78.036622023057546, 25.007630347139209 ], [ -78.036584646272146, 25.007767288404469 ], [ -78.036502660974506, 25.007887002073687 ], [ -78.036384092372145, 25.007977769681236 ], [ -78.036240546797245, 25.008030706188318 ], [ -78.036086075593673, 25.008040629740368 ], [ -78.035935799634231, 25.008006568926099 ], [ -78.035804429125108, 25.007931857875572 ], [ -78.035704823611681, 25.007823809884552 ], [ -78.035646733164342, 25.007693001516159 ], [ -78.034629059182677, 25.00368625371717 ], [ -78.033042312178509, 25.003645306514613 ], [ -78.033483059331118, 25.005553162023219 ], [ -78.033490863118558, 25.005694096552112 ], [ -78.033450493858581, 25.005830330814543 ], [ -78.033365903029917, 25.005948529228665 ], [ -78.033245370893127, 25.006037121650852 ], [ -78.033100695991195, 25.00608743596456 ], [ -78.032946040219159, 25.006094546995485 ], [ -78.032796542518128, 25.006057758644278 ], [ -78.032666836910337, 25.005980672034106 ], [ -78.032569619963567, 25.005870832998831 ], [ -78.032514407932254, 25.005738993421463 ], [ -78.032024679153864, 25.00361903675724 ], [ -78.031714217433461, 25.003611020926385 ] ], [ [ -78.054390518629887, 25.008672802293265 ], [ -78.055387631068328, 25.008669007003277 ], [ -78.055476332265926, 25.008649859448202 ], [ -78.055630670584009, 25.008661355562598 ], [ -78.055648162013355, 25.008668014245629 ], [ -78.05971274781281, 25.008652466853743 ], [ -78.059716248983108, 25.008651167236636 ], [ -78.059870692919645, 25.008640922927135 ], [ -78.059918604221494, 25.008651676473942 ], [ -78.064140036387585, 25.008635405449944 ], [ -78.06416672708427, 25.008630421229153 ], [ -78.064212605603686, 25.008635124690592 ], [ -78.066426909809991, 25.008626540823844 ], [ -78.064967354297721, 25.004465878130208 ], [ -78.062643044306043, 25.004406369094689 ], [ -78.063773286927741, 25.007402332662608 ], [ -78.063800103353003, 25.007541311129341 ], [ -78.063778478815223, 25.007681038946071 ], [ -78.063710529917387, 25.007807838575314 ], [ -78.063602907860187, 25.007909297938866 ], [ -78.063466147418453, 25.007975485416406 ], [ -78.063313635732399, 25.007999922048846 ], [ -78.063160301852335, 25.007980215769773 ], [ -78.063021155324222, 25.00791829557231 ], [ -78.062909816890567, 25.007820222683868 ], [ -78.062837185154962, 25.00769559723296 ], [ -78.061586121945226, 25.004379296739778 ], [ -78.057315990496932, 25.004269843204394 ], [ -78.058002430735357, 25.007406102700941 ], [ -78.058008591412928, 25.007547102133071 ], [ -78.057966636721119, 25.007682935392662 ], [ -78.057880673333187, 25.007800306149456 ], [ -78.05775911586818, 25.007887725275825 ], [ -78.057613863238572, 25.007936635505608 ], [ -78.057459133893872, 25.007942249106822 ], [ -78.057310073977604, 25.007904016560371 ], [ -78.057181274657268, 25.007825680358664 ], [ -78.057085343784053, 25.007714908655124 ], [ -78.057031671719315, 25.007582544628868 ], [ -78.056300941901455, 25.004243806958165 ], [ -78.053664158818563, 25.004176140232069 ], [ -78.054390518629887, 25.008672802293265 ] ], [ [ -78.033102176870941, 25.009654304376152 ], [ -78.034682327597224, 25.016533475455763 ], [ -78.034704374837673, 25.016536057669356 ], [ -78.034844357859356, 25.016596417870925 ], [ -78.034957019735828, 25.016693239648262 ], [ -78.035031332363374, 25.01681704548167 ], [ -78.035060021432216, 25.016955716461819 ], [ -78.035040278514217, 25.017095678546948 ], [ -78.034974036025616, 25.017223231269405 ], [ -78.03486777812914, 25.017325888834229 ], [ -78.0348647112355, 25.01732741726012 ], [ -78.036035499371948, 25.022423710250813 ], [ -78.037594676727664, 25.022448772408598 ], [ -78.037747191569181, 25.022473301428672 ], [ -78.037883922947643, 25.022539572275544 ], [ -78.037991486745625, 25.022641097947915 ], [ -78.038059353879973, 25.022767940477554 ], [ -78.03806049385274, 25.022775340632222 ], [ -78.038113641302829, 25.022741759669014 ], [ -78.038261951133904, 25.02270111584215 ], [ -78.04840631319918, 25.021444529459213 ], [ -78.048561145968975, 25.021447622706003 ], [ -78.048707351694077, 25.021494159916958 ], [ -78.04883061887422, 25.02157958573838 ], [ -78.048918881317391, 25.021695538160532 ], [ -78.048963499240358, 25.021830667024663 ], [ -78.048960105006316, 25.021971745028033 ], [ -78.04890903070681, 25.022104962484619 ], [ -78.048815275715313, 25.022217279108837 ], [ -78.048688017365222, 25.02229770050209 ], [ -78.048539712630827, 25.022338354385841 ], [ -78.03839528036012, 25.023594956575931 ], [ -78.038240443934498, 25.023591852947845 ], [ -78.038094238413066, 25.023545305292092 ], [ -78.037970975545704, 25.023459870050353 ], [ -78.03788272121902, 25.023343910284243 ], [ -78.037859572701791, 25.023273783593361 ], [ -78.037730590569282, 25.02333107702492 ], [ -78.037577220279388, 25.023350691132592 ], [ -78.036230301560764, 25.023329042709047 ], [ -78.036432741672783, 25.024394620179365 ], [ -78.044462555419841, 25.02370970346087 ], [ -78.044617114548913, 25.023718687191842 ], [ -78.044761062252547, 25.023770748727777 ], [ -78.044880308053735, 25.0238607919609 ], [ -78.044963179388333, 25.023980002899641 ], [ -78.045001564179614, 25.024116712417772 ], [ -78.044991704925039, 25.02425753848264 ], [ -78.04493456655716, 25.024388696063646 ], [ -78.044835742050395, 25.024497346504827 ], [ -78.04470490499024, 25.024572854276528 ], [ -78.044554862672868, 25.024607828080917 ], [ -78.038410211314883, 25.025131990244351 ], [ -78.044833848170938, 25.028029579180568 ], [ -78.044985586859354, 25.028135556482479 ], [ -78.045081930097481, 25.028286020228656 ], [ -78.046987076427044, 25.033291514709202 ], [ -78.051359719127788, 25.032963979083288 ], [ -78.059493414813645, 25.024400457441892 ], [ -78.054458805963009, 25.020076379917072 ], [ -78.05436411986156, 25.01996471553775 ], [ -78.05431193817526, 25.019831855740829 ], [ -78.054307368698616, 25.019690805825906 ], [ -78.054350858565925, 25.019555372760649 ], [ -78.054438150543035, 25.019438813651281 ], [ -78.054560699809599, 25.019352538054456 ], [ -78.054706510413723, 25.019304991153774 ], [ -78.054861309510073, 25.01930082711413 ], [ -78.055009944442446, 25.019340453521504 ], [ -78.055137865931002, 25.019419991492889 ], [ -78.059440972859534, 25.023115821966723 ], [ -78.05964098971279, 25.022824057037973 ], [ -78.059550335840783, 25.022765559579565 ], [ -78.058342972433948, 25.021691769974154 ], [ -78.058255166936902, 25.021586639600219 ], [ -78.058204560438298, 25.021462837313848 ], [ -78.058195494803442, 25.021330985198915 ], [ -78.058454101220093, 25.018546370033249 ], [ -78.053379091957368, 25.01900289509253 ], [ -78.053043444111609, 25.020260012753862 ], [ -78.052983745725811, 25.020390218660477 ], [ -78.052882810712404, 25.020497242654791 ], [ -78.052750519253507, 25.020570608414157 ], [ -78.052599821017267, 25.020603134316477 ], [ -78.052445467531854, 25.020591636454295 ], [ -78.052389411211948, 25.020570298054658 ], [ -78.052297838656045, 25.020584146822351 ], [ -78.052144701898115, 25.020563103567611 ], [ -78.052006196965209, 25.020499971807986 ], [ -78.051895881793854, 25.020400931368151 ], [ -78.051824554820499, 25.02027567708766 ], [ -78.051799197948128, 25.020136469795276 ], [ -78.051791159655423, 25.019145702361328 ], [ -78.048129098070589, 25.019474976567732 ], [ -78.048138518908829, 25.019983702954121 ], [ -78.048116876303112, 25.020123430245135 ], [ -78.048048905545514, 25.020250224910757 ], [ -78.047941259976497, 25.020351675358523 ], [ -78.047804476672539, 25.02041785084085 ], [ -78.047651945011921, 25.020442273572822 ], [ -78.047498596000324, 25.020422552848764 ], [ -78.047359440664962, 25.020360619075895 ], [ -78.04724810061046, 25.020262534810559 ], [ -78.047175474598944, 25.020137901294973 ], [ -78.047148671694941, 25.01999891859364 ], [ -78.047140618174524, 25.01956384008156 ], [ -78.046509446715945, 25.019620578388505 ], [ -78.04650641200071, 25.020317269095347 ], [ -78.046481578297758, 25.020456555253809 ], [ -78.046410722097207, 25.020582031882689 ], [ -78.046300779191682, 25.020681416405868 ], [ -78.046162511543585, 25.02074498030218 ], [ -78.046009453834984, 25.020766501428149 ], [ -78.045856588567602, 25.020743873110163 ], [ -78.045718879415062, 25.020679310374017 ], [ -78.045609806414632, 25.020579133119593 ], [ -78.045540046406771, 25.02045314746611 ], [ -78.045516427905767, 25.02031368583356 ], [ -78.045519064068912, 25.019709602036986 ], [ -78.045347929606123, 25.019724984318312 ], [ -78.045410514193591, 25.021271352482653 ], [ -78.045391940733566, 25.021411446289765 ], [ -78.045326764107941, 25.02153945376439 ], [ -78.045221364143558, 25.02164284459818 ], [ -78.045086058095151, 25.021711498105748 ], [ -78.044934090731246, 25.021738693934783 ], [ -78.044780337817386, 25.021721769927101 ], [ -78.044639849918525, 25.021662382724934 ], [ -78.044526379084417, 25.021566345606292 ], [ -78.044451032659026, 25.021443059423671 ], [ -78.044421186005664, 25.021304592356252 ], [ -78.044360858601252, 25.019813702499391 ], [ -78.043459743594042, 25.01989468914585 ], [ -78.043465654148292, 25.021529610576383 ], [ -78.043441931126267, 25.021669057719983 ], [ -78.043372076178841, 25.021795000253935 ], [ -78.043262927087369, 25.021895109996869 ], [ -78.043125168107863, 25.021959587438261 ], [ -78.04297228412841, 25.021982121010058 ], [ -78.042819240643936, 25.021960504932469 ], [ -78.04268101877372, 25.021896855145133 ], [ -78.042571148745125, 25.021797402181342 ], [ -78.042500385419572, 25.021671881261515 ], [ -78.042475655525081, 25.021532579314684 ], [ -78.042470068154657, 25.019983628690092 ], [ -78.040396138783564, 25.020169985683818 ], [ -78.040469284318164, 25.022000932849448 ], [ -78.040450637585678, 25.022141019113537 ], [ -78.040385393546302, 25.022268998814823 ], [ -78.040279938625972, 25.022372344363518 ], [ -78.040144595459054, 25.022440939507067 ], [ -78.039992612447662, 25.022468069606226 ], [ -78.03983886688907, 25.022451078937031 ], [ -78.039698408628283, 25.022391630667073 ], [ -78.039584986813708, 25.022295544052195 ], [ -78.039509703990788, 25.022172224789919 ], [ -78.039479929296817, 25.022033744297499 ], [ -78.03940903014707, 25.020258673987513 ], [ -78.036937687839711, 25.020480686484351 ], [ -78.036793848861791, 25.020474428782343 ], [ -78.036658073278247, 25.020430713393704 ], [ -78.036541852077022, 25.020353240040421 ], [ -78.036455021274179, 25.020248565453262 ], [ -78.036404929460915, 25.020125548449315 ], [ -78.033963364646127, 25.009651149788546 ], [ -78.033102176870941, 25.009654304376152 ] ], [ [ -78.036602124841124, 25.025286178046589 ], [ -78.038247492502919, 25.033945770498317 ], [ -78.045968180344914, 25.033367817160023 ], [ -78.044212925998451, 25.028756051736956 ], [ -78.037460812840507, 25.025710269007771 ], [ -78.037458964805651, 25.02570907499776 ], [ -78.03745680846049, 25.025708441950414 ], [ -78.037395840480059, 25.025668290523054 ], [ -78.037334476359391, 25.025628643257846 ], [ -78.037333123733504, 25.025626987361477 ], [ -78.037331287632313, 25.025625778165487 ], [ -78.037286921366501, 25.025570425985091 ], [ -78.037242007354152, 25.025515441755374 ], [ -78.037241282541558, 25.025513486064447 ], [ -78.037239946415369, 25.025511819085295 ], [ -78.037216524733722, 25.025446684445317 ], [ -78.037192457305281, 25.025381745524907 ], [ -78.037192431254269, 25.025379681477062 ], [ -78.037191725891574, 25.02537771989126 ], [ -78.037191541418395, 25.025309178653306 ], [ -78.037190676400201, 25.025240641740261 ], [ -78.037191351658521, 25.025238671379348 ], [ -78.037191346103171, 25.025236607201204 ], [ -78.037191591723001, 25.025235912646693 ], [ -78.036602124841124, 25.025286178046589 ] ], [ [ -78.038417071592988, 25.034838175504639 ], [ -78.038897933602684, 25.037368604226522 ], [ -78.038898019274669, 25.037368824946725 ], [ -78.038898026911724, 25.037369095231035 ], [ -78.03961192875002, 25.041125588738314 ], [ -78.057691537467278, 25.039915223864487 ], [ -78.057848877664227, 25.039927693014302 ], [ -78.057957165268832, 25.03997023700687 ], [ -78.068752930316137, 25.035404487274388 ], [ -78.062557214799781, 25.027031616344772 ], [ -78.060214495362928, 25.025019730704638 ], [ -78.052769416606239, 25.032858357156556 ], [ -78.056391176818678, 25.032586934130919 ], [ -78.056545624539964, 25.032597506676385 ], [ -78.056688927180673, 25.032651044716722 ], [ -78.056807057404882, 25.032742307614988 ], [ -78.056888451845538, 25.032862361990933 ], [ -78.056925142991204, 25.032999456156471 ], [ -78.056913539123116, 25.033140170425778 ], [ -78.056854775948793, 25.033270730709994 ], [ -78.056754605492131, 25.033378356819345 ], [ -78.056622833093016, 25.033452513492282 ], [ -78.05647235760847, 25.033485941686266 ], [ -78.038417071592988, 25.034838175504639 ] ], [ [ -78.058069700198189, 25.040917130695235 ], [ -78.057183528738392, 25.043745088328972 ], [ -78.057233632385532, 25.043805994561453 ], [ -78.06028960676376, 25.049075164446769 ], [ -78.06537136761483, 25.047978349831485 ], [ -78.065525826759881, 25.047967695038746 ], [ -78.065676340487059, 25.0480010423774 ], [ -78.065808175613256, 25.048075127597038 ], [ -78.065908427284114, 25.048182698777353 ], [ -78.065967282158127, 25.048313226174795 ], [ -78.06597897900842, 25.048453932919319 ], [ -78.065942372710737, 25.048591045680137 ], [ -78.065861046395341, 25.048711142885455 ], [ -78.06574296076225, 25.048802468526873 ], [ -78.065599674865481, 25.048856082941224 ], [ -78.06076746467815, 25.049899044330839 ], [ -78.062225151494786, 25.052412170808509 ], [ -78.062275203653897, 25.052545711820816 ], [ -78.062277504744941, 25.052686806205564 ], [ -78.062231829362261, 25.052821642678538 ], [ -78.062142648389482, 25.052937022478424 ], [ -78.06201869141222, 25.053021651364219 ], [ -78.061872092231937, 25.053067245197976 ], [ -78.061717201113794, 25.053069340881862 ], [ -78.061569180038504, 25.053027733258528 ], [ -78.061442518481272, 25.052946495199915 ], [ -78.061349615027183, 25.052833578915504 ], [ -78.059772116545517, 25.05011385428994 ], [ -78.059060742509971, 25.050267374239628 ], [ -78.057746972753733, 25.051584613954855 ], [ -78.057360038771336, 25.055673316990795 ], [ -78.05963801762023, 25.056441030670804 ], [ -78.059773108458586, 25.056510093690132 ], [ -78.059878158492324, 25.056613802315614 ], [ -78.0599428846959, 25.056742004896986 ], [ -78.059960951126328, 25.056882152136524 ], [ -78.059930589164225, 25.057020525477199 ], [ -78.059854770696418, 25.057143579958748 ], [ -78.0597409172656, 25.057239270097881 ], [ -78.059600173635133, 25.057298229004477 ], [ -78.059446316863387, 25.057314685305812 ], [ -78.059294407674471, 25.057287028113176 ], [ -78.053045460904059, 25.055180929931034 ], [ -78.053044052477958, 25.055180209803034 ], [ -78.053042470763401, 25.055179912079151 ], [ -78.041485553612418, 25.051206585977695 ], [ -78.041884676180814, 25.053354145397062 ], [ -78.041884904065071, 25.053373675056303 ], [ -78.041889973855604, 25.05339265196201 ], [ -78.041891140821221, 25.053405644012578 ], [ -78.04263792971696, 25.053962014262719 ], [ -78.042639769280143, 25.053962913440202 ], [ -78.042642062952183, 25.053965093566209 ], [ -78.042648463554968, 25.053969862081704 ], [ -78.042652342033676, 25.053971907442914 ], [ -78.04265547912307, 25.053975088751926 ], [ -78.042739317433686, 25.054037549089824 ], [ -78.042847591781083, 25.054150376955199 ], [ -78.0429093068621, 25.054289292177799 ], [ -78.042917649278706, 25.054438958746044 ], [ -78.042871697850671, 25.054582853666258 ], [ -78.042776525393023, 25.054705091071121 ], [ -78.041903688969498, 25.055502712932142 ], [ -78.041778261690013, 25.055585952522435 ], [ -78.041630708152809, 25.055629737286971 ], [ -78.041475522733606, 25.055629766172398 ], [ -78.041389161723416, 25.055604175141198 ], [ -78.041463882527864, 25.056421630768483 ], [ -78.042076650667568, 25.056953252745434 ], [ -78.042170733275569, 25.057065360729304 ], [ -78.04222217925269, 25.057198464339667 ], [ -78.042225952594237, 25.057339534524289 ], [ -78.042181683780811, 25.057474762369068 ], [ -78.042093706009851, 25.057590910803714 ], [ -78.041970631086528, 25.057676610348569 ], [ -78.041824506467862, 25.057723472062065 ], [ -78.041669635963558, 25.057726908736619 ], [ -78.041580995965035, 25.057702831732801 ], [ -78.041659867765247, 25.058565651133012 ], [ -78.041850886047015, 25.058555143830478 ], [ -78.042005078842337, 25.05856877700484 ], [ -78.042147099957376, 25.058625144811355 ], [ -78.042263047496547, 25.058718729618626 ], [ -78.042289825746153, 25.058760211579369 ], [ -78.049697955607044, 25.058872157179518 ], [ -78.049880264648053, 25.058906814532488 ], [ -78.055230743738633, 25.060938193541478 ], [ -78.055362655933777, 25.06101218741863 ], [ -78.055463009208168, 25.061119689459716 ], [ -78.05552198027479, 25.06125017668904 ], [ -78.055533796533126, 25.061390876168545 ], [ -78.055497301170377, 25.061528015278647 ], [ -78.055416066457511, 25.061648169868342 ], [ -78.055298044127696, 25.061739578312064 ], [ -78.055154787038191, 25.061793292841358 ], [ -78.055000318292713, 25.061804055442721 ], [ -78.054849758523417, 25.061770812571979 ], [ -78.049586758788607, 25.05977265020412 ], [ -78.042111784324575, 25.059659693197457 ], [ -78.050068020753812, 25.06173074321093 ], [ -78.049985460998244, 25.061144614245226 ], [ -78.049990026868812, 25.061003564395872 ], [ -78.050042221219215, 25.060870703184012 ], [ -78.050136934769014, 25.060759035956952 ], [ -78.050264896239796, 25.060679493415421 ], [ -78.050413579914036, 25.060639861665418 ], [ -78.050568431723178, 25.060644020087494 ], [ -78.050714293853403, 25.060691561615549 ], [ -78.050836888436905, 25.060777832587359 ], [ -78.050924215117902, 25.060894388264622 ], [ -78.050967725709668, 25.061029819437707 ], [ -78.051104459547901, 25.06200049602225 ], [ -78.052638736250444, 25.062399804644183 ], [ -78.052779204294239, 25.062459319673465 ], [ -78.052892606446704, 25.062555459263777 ], [ -78.052967842142948, 25.062678812672495 ], [ -78.052997546718601, 25.062817305277296 ], [ -78.052978812341223, 25.062957380497981 ], [ -78.052913472703423, 25.063085326793399 ], [ -78.052807923588787, 25.063188619843615 ], [ -78.052672496852153, 25.063257148534859 ], [ -78.052520449076312, 25.063284204732582 ], [ -78.052366663898525, 25.063267139946756 ], [ -78.051241643542525, 25.062974346315851 ], [ -78.05336592624208, 25.078051529311953 ], [ -78.059157301984754, 25.076808068355167 ], [ -78.060098162174157, 25.07022942916565 ], [ -78.060138156867879, 25.070101539250896 ], [ -78.060217360205542, 25.069989830589822 ], [ -78.060328887126232, 25.069904013750584 ], [ -78.060463042819094, 25.06985154856353 ], [ -78.06060816547155, 25.069836995673473 ], [ -78.06481619287068, 25.069983788483277 ], [ -78.065021940576941, 25.068847367123755 ], [ -78.059197270507113, 25.066716465405442 ], [ -78.059064313124821, 25.066644031682035 ], [ -78.058962438035067, 25.066537720809919 ], [ -78.05890161747628, 25.066407939310981 ], [ -78.058887804890091, 25.066267391164718 ], [ -78.058922352194614, 25.066129834230516 ], [ -78.059001877508095, 25.066008733521951 ], [ -78.059118596248737, 25.065915943164146 ], [ -78.059261083178129, 25.065860546050839 ], [ -78.059415390781268, 25.065847964775305 ], [ -78.059566414508893, 25.065879430852874 ], [ -78.065759718099358, 25.068145185516578 ], [ -78.065780161398578, 25.068156321391051 ], [ -78.065802768780244, 25.068163156569614 ], [ -78.065846293505047, 25.068192344838867 ], [ -78.065892680467982, 25.068217612690212 ], [ -78.065908345093376, 25.068233957424557 ], [ -78.06592752700432, 25.068246821046806 ], [ -78.065959018660337, 25.06828683103458 ], [ -78.065994562568321, 25.068323918075958 ], [ -78.066003915159726, 25.068343871745352 ], [ -78.066017793947523, 25.068361504640343 ], [ -78.066034169905265, 25.068408419916864 ], [ -78.066055391465397, 25.068453695835007 ], [ -78.06605751651351, 25.068475305246132 ], [ -78.066064733617011, 25.068495981393749 ], [ -78.066064390845341, 25.06854520958635 ], [ -78.066069212704591, 25.06859424247828 ], [ -78.066063902172132, 25.068615392357568 ], [ -78.066063751110221, 25.068637087839143 ], [ -78.065734774912627, 25.070454227683225 ], [ -78.065736478313553, 25.070467223235273 ], [ -78.065712135334081, 25.070579278758039 ], [ -78.065315576002178, 25.072769669329222 ], [ -78.067191705912776, 25.072398679112084 ], [ -78.067346388644737, 25.072390679301705 ], [ -78.067496214947425, 25.072426605846381 ], [ -78.067626518925536, 25.072502942027704 ], [ -78.067724545599134, 25.072612215587338 ], [ -78.067780699418805, 25.072743730141099 ], [ -78.067789483551024, 25.072884612187735 ], [ -78.067750037987025, 25.073021071234059 ], [ -78.067666223786361, 25.073139749695734 ], [ -78.067546245185667, 25.073229030439119 ], [ -78.06740184654187, 25.073280173969767 ], [ -78.06514225486923, 25.073726989371981 ], [ -78.064840174317609, 25.075395472916917 ], [ -78.067418482229527, 25.074350519357129 ], [ -78.067547826702679, 25.074317870320076 ], [ -78.067558740499237, 25.074315004182985 ], [ -78.070437655845666, 25.073989096514126 ], [ -78.070456340037325, 25.073902852557442 ], [ -78.070509741226445, 25.073770390535469 ], [ -78.070605471903733, 25.073659441052495 ], [ -78.070734161229652, 25.073580864550895 ], [ -78.070883212241569, 25.073542352574115 ], [ -78.071038034915063, 25.073547674892222 ], [ -78.071183474288517, 25.073596310509977 ], [ -78.07130529387517, 25.073683498669073 ], [ -78.071391569179013, 25.073800704851042 ], [ -78.071415757522843, 25.073878357527917 ], [ -78.074307635925408, 25.073550905573576 ], [ -78.075534382384689, 25.06930029941973 ], [ -78.075428431247445, 25.069212202237072 ], [ -78.075351891137771, 25.069089517215943 ], [ -78.075320721693728, 25.06895129425093 ], [ -78.075337973857557, 25.068811063611054 ], [ -78.075401958707999, 25.068682552047338 ], [ -78.075506412844433, 25.068578339123132 ], [ -78.075641111537109, 25.068508625855564 ], [ -78.075769803384716, 25.068484551246755 ], [ -78.076909381228219, 25.064535717278009 ], [ -78.067748309983529, 25.06886283515303 ], [ -78.067601310396455, 25.068907396197989 ], [ -78.067446386852225, 25.068908402337488 ], [ -78.067298704506044, 25.068865755067456 ], [ -78.067172719674915, 25.068783629028736 ], [ -78.067080764699071, 25.068670063353142 ], [ -78.067031840740952, 25.06853617471317 ], [ -78.067030736700659, 25.068395069116775 ], [ -78.067077560490048, 25.068260558979031 ], [ -78.067167728530393, 25.068145811060472 ], [ -78.067292414478501, 25.068062057623937 ], [ -78.070319833931507, 25.06663219084507 ], [ -78.069550273679312, 25.06335731067492 ], [ -78.066958299247744, 25.064685956651434 ], [ -78.066813064344998, 25.064735072181193 ], [ -78.066658274441522, 25.064740905166335 ], [ -78.066509081609141, 25.06470288461265 ], [ -78.066380090026783, 25.064624732261091 ], [ -78.066283926366225, 25.064514098268557 ], [ -78.066230003776099, 25.064381812334247 ], [ -78.066223600465236, 25.064240823585301 ], [ -78.066265343076651, 25.06410493300378 ], [ -78.066351145407779, 25.06398744248234 ], [ -78.066472608451633, 25.063899852751636 ], [ -78.069333201319211, 25.062433514050671 ], [ -78.069026088355429, 25.061126500420638 ], [ -78.069017763184249, 25.060985595241021 ], [ -78.069057648365941, 25.060849243138307 ], [ -78.069141839514415, 25.06073079118384 ], [ -78.069262095333016, 25.060641834221077 ], [ -78.069406644360825, 25.06059107990415 ], [ -78.069561337238937, 25.060583496359921 ], [ -78.069711031707413, 25.060619825895838 ], [ -78.06984107477534, 25.06069651234629 ], [ -78.069938737001564, 25.060806049166345 ], [ -78.069994458510507, 25.060937714202058 ], [ -78.070237066281408, 25.061970175326639 ], [ -78.074837814718578, 25.059611608969707 ], [ -78.07477753839845, 25.054490107857038 ], [ -78.066961313468198, 25.05604450455899 ], [ -78.070716922123509, 25.056349786990225 ], [ -78.070867167158511, 25.056384159931937 ], [ -78.070998398034348, 25.05645914199696 ], [ -78.071097769042936, 25.056567393476193 ], [ -78.071155553045713, 25.056698318033771 ], [ -78.071166093638311, 25.056839099922279 ], [ -78.07112835887834, 25.056975958454299 ], [ -78.07104604235866, 25.057095496942683 ], [ -78.070927201709338, 25.05718601406944 ], [ -78.07078346989303, 25.057238649314396 ], [ -78.070628916484949, 25.057248250312544 ], [ -78.063653017838988, 25.056681127102969 ], [ -78.063502256263178, 25.056646545350524 ], [ -78.063370699307754, 25.056571082912672 ], [ -78.063271317313706, 25.056462179721954 ], [ -78.06321390838113, 25.056330572664187 ], [ -78.063204132375461, 25.056189236995984 ], [ -78.063242952959499, 25.056052107085243 ], [ -78.063326542646209, 25.055932702606608 ], [ -78.063446660209635, 25.05584279563929 ], [ -78.063591463222892, 25.055791250075558 ], [ -78.071081119744704, 25.05430198309352 ], [ -78.071072302688108, 25.054258531369403 ], [ -78.070559450307144, 25.036074743385992 ], [ -78.069589336935522, 25.036045219324993 ], [ -78.058069700198189, 25.040917130695235 ] ], [ [ -78.040904748408806, 25.053485566596642 ], [ -78.039616936860284, 25.046555583741664 ], [ -78.039036297888529, 25.046519195935534 ], [ -78.03890033638325, 25.046553221135525 ], [ -78.038745597959121, 25.046546723547742 ], [ -78.038600637133214, 25.04649698388091 ], [ -78.038592987018873, 25.046491412726482 ], [ -78.036376486183045, 25.04635247981528 ], [ -78.032056012889697, 25.049285370353882 ], [ -78.033059185855663, 25.050521769676745 ], [ -78.033130640056598, 25.050646973904566 ], [ -78.033156124514818, 25.050786164366372 ], [ -78.033133144488573, 25.050925716167328 ], [ -78.03306394926571, 25.051051968998141 ], [ -78.032955312047847, 25.051152564303855 ], [ -78.032817866983748, 25.051217655043736 ], [ -78.032665068232092, 25.05124086961548 ], [ -78.032511872944738, 25.05121993557767 ], [ -78.032373277101016, 25.051156902106502 ], [ -78.032262847536657, 25.051057939405538 ], [ -78.030966536828487, 25.049460233468203 ], [ -78.03089520807842, 25.04933536171767 ], [ -78.030869610995722, 25.049196540696567 ], [ -78.030892238726111, 25.049057292336943 ], [ -78.03096088705388, 25.04893118015227 ], [ -78.031068869163477, 25.048830488082544 ], [ -78.031667901631266, 25.048423863630568 ], [ -78.030342125890925, 25.048056524796248 ], [ -78.028743266414807, 25.049146335412342 ], [ -78.031989963937235, 25.053282085607407 ], [ -78.032511096647028, 25.053330694235878 ], [ -78.034037614985436, 25.051748416616562 ], [ -78.034159575272454, 25.051656817252336 ], [ -78.03430701078797, 25.051604898788604 ], [ -78.034464895073612, 25.05159795267269 ], [ -78.034617136789464, 25.051636686827003 ], [ -78.034748219671229, 25.051717153506981 ], [ -78.03484478388097, 25.05183115164354 ], [ -78.034896987605038, 25.051967062667305 ], [ -78.034899510138388, 25.052111034638049 ], [ -78.034672710834471, 25.053532298507005 ], [ -78.040443710630427, 25.054070374964564 ], [ -78.040906161870325, 25.053501304318463 ], [ -78.040904748408806, 25.053485566596642 ] ], [ [ -78.032654281378427, 25.047754296514402 ], [ -78.035053079716448, 25.046125906933614 ], [ -78.035775616266591, 25.044527607782189 ], [ -78.035856281585566, 25.044407138858993 ], [ -78.035973862907511, 25.044315274277189 ], [ -78.036116850561456, 25.04426100630911 ], [ -78.036271248020114, 25.044249647020226 ], [ -78.036305940745208, 25.044257166311702 ], [ -78.036312845896688, 25.044245139781133 ], [ -78.036423540527238, 25.044146429455921 ], [ -78.036462325107053, 25.044121331098911 ], [ -78.036336777901042, 25.043970156724146 ], [ -78.031325594731229, 25.047386158012788 ], [ -78.032654281378427, 25.047754296514402 ] ], [ [ -78.036598117438587, 25.045077039315373 ], [ -78.036777263825968, 25.044955421532094 ], [ -78.036704969046014, 25.044965132921714 ], [ -78.03665237321502, 25.044957018636026 ], [ -78.036598117438587, 25.045077039315373 ] ], [ [ -78.03759579742011, 25.045524722540261 ], [ -78.038027023232956, 25.045551751822156 ], [ -78.037908182001701, 25.045312649907441 ], [ -78.03759579742011, 25.045524722540261 ] ], [ [ -78.027950216337231, 25.049686879384204 ], [ -78.023796921518354, 25.052517631422507 ], [ -78.030676334537048, 25.053159548497614 ], [ -78.027950216337231, 25.049686879384204 ] ], [ [ -78.037269938293505, 25.043598702398508 ], [ -78.037440854262101, 25.043488096900095 ], [ -78.037570062496627, 25.043428200610418 ], [ -78.037712776178878, 25.043404968429684 ], [ -78.037856758408793, 25.043420392374749 ], [ -78.037989663526773, 25.043473149917439 ], [ -78.038100095651288, 25.043558717384524 ], [ -78.038178585788017, 25.043669757829427 ], [ -78.038388986278861, 25.044093076096857 ], [ -78.038389034133431, 25.044093082461057 ], [ -78.038527892959749, 25.044155617699236 ], [ -78.038638743225064, 25.044254182637587 ], [ -78.038710734153341, 25.044379129124373 ], [ -78.038736818693977, 25.044518226594302 ], [ -78.038714443365535, 25.044657859255771 ], [ -78.038691090877393, 25.044700893398193 ], [ -78.039148951363913, 25.045622068425963 ], [ -78.039446944909614, 25.045640743656058 ], [ -78.038821764714456, 25.042276075702869 ], [ -78.037129578351909, 25.043429692841102 ], [ -78.037269938293505, 25.043598702398508 ] ], [ [ -78.058538989594894, 25.017632300538175 ], [ -78.059288989478645, 25.009556146334557 ], [ -78.055897713812755, 25.009569118524666 ], [ -78.053627058433165, 25.018074161226622 ], [ -78.058538989594894, 25.017632300538175 ] ], [ [ -78.051783811861839, 25.01823993108431 ], [ -78.051713645258957, 25.009585016508634 ], [ -78.047946277193574, 25.009599230268602 ], [ -78.048112341009812, 25.018570050909055 ], [ -78.051783811861839, 25.01823993108431 ] ], [ [ -78.045542780319593, 25.009608248369197 ], [ -78.044938670273154, 25.009610508914975 ], [ -78.04531137921154, 25.01882183734924 ], [ -78.045523021787176, 25.018802814059196 ], [ -78.045538807090722, 25.015187697862544 ], [ -78.045563641492905, 25.015048411776913 ], [ -78.045634496059918, 25.014922935691622 ], [ -78.045744434947196, 25.014823552030748 ], [ -78.045882696555196, 25.014759989087874 ], [ -78.046035746955724, 25.01473846878033 ], [ -78.046188604655924, 25.01476109762989 ], [ -78.046326307035216, 25.014825660575475 ], [ -78.046435374931193, 25.014925837795531 ], [ -78.046505132033502, 25.015051823317368 ], [ -78.046528749949672, 25.015191284866706 ], [ -78.046513397210546, 25.018713791063604 ], [ -78.047123868277993, 25.018658913635697 ], [ -78.047005227995854, 25.012247724323522 ], [ -78.046902185929326, 25.012295561820324 ], [ -78.046749232853529, 25.012317631146903 ], [ -78.046596281698584, 25.012295550663488 ], [ -78.046458304545567, 25.01223148176943 ], [ -78.04644684829826, 25.012221041573728 ], [ -78.046349931082617, 25.012310630866093 ], [ -78.046212458269167, 25.012375593953728 ], [ -78.046059683482142, 25.012398666922085 ], [ -78.045906561527374, 25.012377591190994 ], [ -78.045768081205537, 25.012314429806612 ], [ -78.045657798043905, 25.012215365493507 ], [ -78.04558650734549, 25.012090095428089 ], [ -78.045561187462368, 25.011950881984237 ], [ -78.045542780319593, 25.009608248369197 ] ], [ [ -78.043948240623337, 25.009614209727047 ], [ -78.043422644872493, 25.009616170969494 ], [ -78.04345646886155, 25.018988551146872 ], [ -78.044324315317525, 25.018910554615836 ], [ -78.043948240623337, 25.009614209727047 ] ], [ [ -78.042432744555015, 25.009619859694944 ], [ -78.039975133387983, 25.009628989099539 ], [ -78.0403600586625, 25.019266795081162 ], [ -78.042466800624936, 25.019077489992149 ], [ -78.042432744555015, 25.009619859694944 ] ], [ [ -78.038984713838587, 25.009632656754341 ], [ -78.034974496269186, 25.009647439569541 ], [ -78.037281296305451, 25.01954338849665 ], [ -78.039372957138482, 25.019355482474516 ], [ -78.038984713838587, 25.009632656754341 ] ], [ [ -78.052767616109278, 25.017477150841511 ], [ -78.054877906715291, 25.00957300430197 ], [ -78.052703542807393, 25.009581265898415 ], [ -78.052767616109278, 25.017477150841511 ] ], [ [ -78.060168395784146, 25.022054721689454 ], [ -78.06116818523887, 25.0205962847688 ], [ -78.06112977781747, 25.020391426209454 ], [ -78.061127901554769, 25.020250325962014 ], [ -78.061173970105301, 25.02011560335529 ], [ -78.061263473817959, 25.020000445948526 ], [ -78.061387651377302, 25.019916126088628 ], [ -78.06153434744823, 25.019870897518175 ], [ -78.061666443967326, 25.019869438799809 ], [ -78.061913352129082, 25.019509252589838 ], [ -78.062032072312491, 25.019390208072537 ], [ -78.062189090008957, 25.0193166955764 ], [ -78.064172747255014, 25.018766737680988 ], [ -78.063716229037524, 25.00953909480911 ], [ -78.060282776430924, 25.009552330255431 ], [ -78.059201656579603, 25.021194939640012 ], [ -78.060168395784146, 25.022054721689454 ] ], [ [ -78.060175677519638, 25.023746804230601 ], [ -78.062062735928734, 25.025367406355961 ], [ -78.061418862126473, 25.021933329683264 ], [ -78.060175677519638, 25.023746804230601 ] ], [ [ -78.062207496721783, 25.020782892205368 ], [ -78.062896425709141, 25.02445718660746 ], [ -78.064458958258655, 25.024550418593904 ], [ -78.064218770917734, 25.019696851836489 ], [ -78.062654726910026, 25.020130475286653 ], [ -78.062207496721783, 25.020782892205368 ] ], [ [ -78.065452911178966, 25.024609716310145 ], [ -78.067086434145736, 25.02470715510594 ], [ -78.066535699462449, 25.019054459965499 ], [ -78.065196335903508, 25.019425817141485 ], [ -78.065452911178966, 25.024609716310145 ] ], [ [ -78.067503415924534, 25.018786138447769 ], [ -78.068086148927478, 25.024766778560153 ], [ -78.071510145720978, 25.024970935462076 ], [ -78.071573719287898, 25.024984035348712 ], [ -78.071637933426032, 25.024994216305057 ], [ -78.071648996296702, 25.024999546791637 ], [ -78.071661202585545, 25.02500206199316 ], [ -78.071717221795623, 25.025032420246244 ], [ -78.071774840199524, 25.025060182787961 ], [ -78.07178355376584, 25.025068367200557 ], [ -78.0717943096044, 25.025074196053573 ], [ -78.07183729095027, 25.02511884101834 ], [ -78.071882673567885, 25.025161467576741 ], [ -78.071888184888081, 25.025171704773985 ], [ -78.071896437425721, 25.025180276714508 ], [ -78.071922173598168, 25.025234838262154 ], [ -78.071950878061472, 25.025288156282503 ], [ -78.075343744734738, 25.035317719992207 ], [ -78.075666202905552, 25.035327521980118 ], [ -78.073151587034147, 25.027791659375787 ], [ -78.068803603592897, 25.015400887193067 ], [ -78.068313218885677, 25.01551894214499 ], [ -78.068812177123348, 25.018005699859675 ], [ -78.068817234335995, 25.018136511615484 ], [ -78.068780855658616, 25.018263137723455 ], [ -78.06870610497873, 25.018374913042315 ], [ -78.06859927812539, 25.018462423215265 ], [ -78.068469372624193, 25.018518297612122 ], [ -78.067503415924534, 25.018786138447769 ] ], [ [ -78.068501752915637, 25.014540566224678 ], [ -78.067462809503581, 25.011579303573438 ], [ -78.067189608240042, 25.014266080954858 ], [ -78.06784447645893, 25.014698797419236 ], [ -78.068501752915637, 25.014540566224678 ] ], [ [ -78.06667729928887, 25.00952761654279 ], [ -78.064706936077215, 25.009535261016886 ], [ -78.065150305227661, 25.018495703951867 ], [ -78.067759000074261, 25.017772391554104 ], [ -78.067292735355693, 25.015448469693244 ], [ -78.066380164881878, 25.014845469253274 ], [ -78.066261699304178, 25.014734312280385 ], [ -78.066191510580936, 25.014593181001008 ], [ -78.066177882617211, 25.014438732522333 ], [ -78.06667729928887, 25.00952761654279 ] ], [ [ -78.063259875403617, 25.026395470400846 ], [ -78.063276377622898, 25.026409641763657 ], [ -78.063347308932535, 25.026485738729871 ], [ -78.069757073700828, 25.035147786047432 ], [ -78.070195144992823, 25.035161118839284 ], [ -78.067829891802333, 25.030960022548243 ], [ -78.067787501707556, 25.030927700211773 ], [ -78.067705258797517, 25.030808128888012 ], [ -78.067667860170616, 25.03067221321427 ], [ -78.064739919205522, 25.025471152535015 ], [ -78.06306784690851, 25.025371389118256 ], [ -78.063259875403617, 25.026395470400846 ] ], [ [ -78.065891227229358, 25.025539833664151 ], [ -78.067434735419965, 25.028281661078921 ], [ -78.067175029031361, 25.025616407988867 ], [ -78.065891227229358, 25.025539833664151 ] ], [ [ -78.068174751221392, 25.025676030133916 ], [ -78.068636747091062, 25.030416760292539 ], [ -78.071327298442455, 25.035195570137649 ], [ -78.074296923010309, 25.035285894153741 ], [ -78.071105213666783, 25.0258507597107 ], [ -78.068174751221392, 25.025676030133916 ] ], [ [ -78.071557656204334, 25.036350625952856 ], [ -78.072058615005545, 25.054107584901121 ], [ -78.074591842403109, 25.053603760178927 ], [ -78.074704343788852, 25.053597820743068 ], [ -78.074694584821401, 25.053549259987935 ], [ -78.074715142346037, 25.053409399494011 ], [ -78.074763737302035, 25.053317116585649 ], [ -78.074666176660529, 25.045021428386566 ], [ -78.074590535566315, 25.044953185290073 ], [ -78.074519545842691, 25.044827768518747 ], [ -78.074494573427216, 25.044688505690893 ], [ -78.074518062648139, 25.044549028859546 ], [ -78.074587714059817, 25.044422990981769 ], [ -78.074658377696892, 25.044357989784018 ], [ -78.074562476916796, 25.036196502447801 ], [ -78.071712788163381, 25.036109835324098 ], [ -78.07167420721413, 25.036219028203142 ], [ -78.071583510295227, 25.036333414145918 ], [ -78.071557656204334, 25.036350625952856 ] ], [ [ -78.07555298505676, 25.036226613709609 ], [ -78.075647120195967, 25.044232391311432 ], [ -78.07863371132234, 25.044219150805112 ], [ -78.075970478013616, 25.036239303423336 ], [ -78.07555298505676, 25.036226613709609 ] ], [ [ -78.075657730721318, 25.045134385301477 ], [ -78.07575117926504, 25.053075028828175 ], [ -78.081547493578327, 25.052948246315459 ], [ -78.081494207302512, 25.052788625341382 ], [ -78.078585063463152, 25.052773728552701 ], [ -78.078430441966916, 25.052750334897496 ], [ -78.078291595990365, 25.052684086425291 ], [ -78.078182440558052, 25.052581622501453 ], [ -78.078113915060996, 25.052453211967208 ], [ -78.078092886923983, 25.052311723984023 ], [ -78.078285416098822, 25.045122737182371 ], [ -78.075657730721318, 25.045134385301477 ] ], [ [ -78.081192567799178, 25.051885043558723 ], [ -78.079250586562736, 25.046067311156797 ], [ -78.079095116295363, 25.051874303115522 ], [ -78.081192567799178, 25.051885043558723 ] ], [ [ -78.0757617995027, 25.053977085585139 ], [ -78.075822212410486, 25.05910693010069 ], [ -78.077495362004356, 25.058249119983113 ], [ -78.077621858873329, 25.058203771152414 ], [ -78.077757127361537, 25.058191467133888 ], [ -78.077890971109468, 25.058213135377827 ], [ -78.078013301155394, 25.058267142551077 ], [ -78.078791697858023, 25.058740875349582 ], [ -78.078119474772407, 25.057893626904391 ], [ -78.078049493127011, 25.057767738052526 ], [ -78.078025644141249, 25.057628312137407 ], [ -78.078050262173178, 25.057488997175295 ], [ -78.078120937281668, 25.057363430277285 ], [ -78.078230751188059, 25.057263902756944 ], [ -78.07836895452624, 25.057200156989733 ], [ -78.078522019071485, 25.057178432788813 ], [ -78.078674961946476, 25.057200856634072 ], [ -78.078812812193647, 25.057265233531371 ], [ -78.078922076176937, 25.057365261870736 ], [ -78.080117410097287, 25.058871800438894 ], [ -78.080136351694563, 25.058853065751386 ], [ -78.080271371652884, 25.058783888224688 ], [ -78.08042325161766, 25.058756101556185 ], [ -78.080577124660422, 25.058772425656933 ], [ -78.080717928774689, 25.058831262611882 ], [ -78.080831881189354, 25.05892685309432 ], [ -78.080907827477873, 25.059049840111921 ], [ -78.08093833341978, 25.05918818490758 ], [ -78.080944646056963, 25.059327879290404 ], [ -78.083242215220778, 25.058024578187666 ], [ -78.081846521288838, 25.05384398513733 ], [ -78.0757617995027, 25.053977085585139 ] ], [ [ -78.081233293258009, 25.060226779013934 ], [ -78.082389797309276, 25.060930574992689 ], [ -78.083964117394046, 25.060186790018761 ], [ -78.083540503394289, 25.058918010158362 ], [ -78.081233293258009, 25.060226779013934 ] ], [ [ -78.07045414406727, 25.062893970108799 ], [ -78.071231426723259, 25.066201622724087 ], [ -78.080075346935331, 25.062023988576897 ], [ -78.080009507107533, 25.060566847480231 ], [ -78.077716044645427, 25.05917107409034 ], [ -78.07045414406727, 25.062893970108799 ] ], [ [ -78.08102866403236, 25.061187071212593 ], [ -78.081045767968149, 25.061565539977703 ], [ -78.081386253758993, 25.061404684656114 ], [ -78.08102866403236, 25.061187071212593 ] ], [ [ -78.075167987093479, 25.074100952145226 ], [ -78.075160067908911, 25.074130727019327 ], [ -78.075135256020317, 25.074186288291507 ], [ -78.076769810494412, 25.074457054949782 ], [ -78.078582771533704, 25.070092504891118 ], [ -78.076481798858111, 25.069565687663413 ], [ -78.075180288029543, 25.074075463264712 ], [ -78.075167987093479, 25.074100952145226 ] ], [ [ -78.076733577664783, 25.068693234545506 ], [ -78.078934725935994, 25.069245171390918 ], [ -78.079968929757598, 25.066755253786784 ], [ -78.077794111113178, 25.066889696014552 ], [ -78.077639805015934, 25.066877108711939 ], [ -78.077497321812359, 25.066821706373304 ], [ -78.077380608873511, 25.066728912206784 ], [ -78.077324919934739, 25.0666441002742 ], [ -78.076733577664783, 25.068693234545506 ] ], [ [ -78.07749136441187, 25.066067322417176 ], [ -78.077576036187949, 25.066021198849395 ], [ -78.077727059502365, 25.065989739300683 ], [ -78.080247513079328, 25.065833929531696 ], [ -78.080120302452912, 25.063018881109432 ], [ -78.078069380860455, 25.063987746370906 ], [ -78.078055754173775, 25.064111516573448 ], [ -78.07749136441187, 25.066067322417176 ] ], [ [ -78.060195240203299, 25.076534420815165 ], [ -78.063817096212503, 25.075501963822504 ], [ -78.064104642396032, 25.073913834322905 ], [ -78.064068126873508, 25.073915582944657 ], [ -78.063914874303052, 25.073876958144108 ], [ -78.063782963659719, 25.07379608689229 ], [ -78.06368599602564, 25.073681307702035 ], [ -78.063633969482098, 25.073544455268593 ], [ -78.063320955627646, 25.071904062212809 ], [ -78.063318633087789, 25.071762968540721 ], [ -78.063364295302975, 25.071628126808054 ], [ -78.063453472396233, 25.071512736235238 ], [ -78.063577435022879, 25.071428091993159 ], [ -78.063724048886158, 25.071382479576972 ], [ -78.063878962515687, 25.071380363792009 ], [ -78.064027012045102, 25.071421951728794 ], [ -78.064153705496139, 25.071503172498186 ], [ -78.064246641300514, 25.071616075707734 ], [ -78.064296722225407, 25.071749609677639 ], [ -78.064399228563261, 25.072286793016502 ], [ -78.064653784280537, 25.070880821385064 ], [ -78.061021875529704, 25.070754132470615 ], [ -78.060195240203299, 25.076534420815165 ] ], [ [ -78.074754029738642, 25.075039962516193 ], [ -78.073265464047736, 25.078373178212583 ], [ -78.074958683254152, 25.07881690508118 ], [ -78.076413480946329, 25.07531485455241 ], [ -78.074754029738642, 25.075039962516193 ] ], [ [ -78.081090730713854, 25.062560431536291 ], [ -78.081251380952551, 25.066114842565089 ], [ -78.08121976804081, 25.066292975394809 ], [ -78.079893713492297, 25.069485624939684 ], [ -78.082408435450958, 25.070116123576121 ], [ -78.082549535830182, 25.070174394282148 ], [ -78.082663960258358, 25.07026952590369 ], [ -78.082740508106369, 25.070392206364758 ], [ -78.082771686270164, 25.070530426916406 ], [ -78.08275444267376, 25.070670657610197 ], [ -78.082690465081214, 25.070799171687753 ], [ -78.082586015947342, 25.07090338925186 ], [ -78.082451319449959, 25.070973108691273 ], [ -78.082299560688057, 25.071001505312154 ], [ -78.082145595006693, 25.07098579941319 ], [ -78.079541765466431, 25.070332960131754 ], [ -78.077760554304774, 25.07462116376508 ], [ -78.080219192217655, 25.075028386434415 ], [ -78.080354151713593, 25.075069684207801 ], [ -78.080470632238658, 25.075144246927604 ], [ -78.080559005678595, 25.075245911359403 ], [ -78.080611967153516, 25.075366274075801 ], [ -78.080625138837306, 25.075495386057074 ], [ -78.080597431851004, 25.075622575052392 ], [ -78.078949924860041, 25.079862762323057 ], [ -78.078993447378778, 25.079874166168661 ], [ -78.083459817598879, 25.069210319031146 ], [ -78.084163902552589, 25.061108542375656 ], [ -78.082868656704818, 25.061720479712829 ], [ -78.082851669148539, 25.061754049331896 ], [ -78.082746518510078, 25.061857673631657 ], [ -78.082611358752189, 25.061926629194005 ], [ -78.082459420322792, 25.06195416609906 ], [ -78.08238988014233, 25.061946672899072 ], [ -78.081090730713854, 25.062560431536291 ] ], [ [ -78.077404231603808, 25.075478965123271 ], [ -78.076252246698147, 25.078252146033126 ], [ -78.078146802787131, 25.07717536701923 ], [ -78.078289457615725, 25.077120306831347 ], [ -78.078443812328985, 25.077108089516063 ], [ -78.07859475776651, 25.077139910962039 ], [ -78.078727518487881, 25.077212656282267 ], [ -78.078829099038188, 25.077319204714165 ], [ -78.078860989001754, 25.077387736237693 ], [ -78.079469713948029, 25.075821073953332 ], [ -78.077404231603808, 25.075478965123271 ] ], [ [ -78.076444352619376, 25.079206222087013 ], [ -78.077996376726759, 25.079612908142156 ], [ -78.078639085175723, 25.077958836352369 ], [ -78.076444352619376, 25.079206222087013 ] ], [ [ -78.072885307338964, 25.079212182506449 ], [ -78.071343368204737, 25.082538303825167 ], [ -78.073543387980294, 25.082223687173151 ], [ -78.074607034789338, 25.079663380529521 ], [ -78.072885307338964, 25.079212182506449 ] ], [ [ -78.074368976916844, 25.082785505442828 ], [ -78.073323367737231, 25.085401149991533 ], [ -78.07499188580482, 25.085441021873912 ], [ -78.075574355429197, 25.084003480854644 ], [ -78.075650074076293, 25.083880369282085 ], [ -78.075763860853229, 25.083784591908479 ], [ -78.075904577513413, 25.083725524017805 ], [ -78.076058449820806, 25.083708947522396 ], [ -78.076210415833273, 25.083736485013659 ], [ -78.076345600212605, 25.083805440943518 ], [ -78.076450770267456, 25.08390906547832 ], [ -78.076515631224169, 25.08403721519926 ], [ -78.076533833949327, 25.084177345983136 ], [ -78.076503596481928, 25.084315740883945 ], [ -78.07603753923911, 25.085465999794106 ], [ -78.076119034810873, 25.085467946198211 ], [ -78.076276608680814, 25.085495380883103 ], [ -78.076594345522494, 25.085601524765181 ], [ -78.078639173071153, 25.080719953714556 ], [ -78.078424106471275, 25.080663601431617 ], [ -78.078421819955139, 25.080664595230669 ], [ -78.078268208872629, 25.080683043922967 ], [ -78.078115856225978, 25.080657359102432 ], [ -78.077979675508772, 25.080590054989763 ], [ -78.077918140787688, 25.080531025573165 ], [ -78.075562036222735, 25.07991363903303 ], [ -78.074368976916844, 25.082785505442828 ] ], [ [ -78.073165099210698, 25.086299705343876 ], [ -78.071389063389518, 25.090807450923251 ], [ -78.072638854614212, 25.091248013557195 ], [ -78.074629771847995, 25.086334707318922 ], [ -78.073165099210698, 25.086299705343876 ] ], [ [ -78.072295889242412, 25.092094367960041 ], [ -78.071054431752643, 25.091656743775012 ], [ -78.070263725901185, 25.093663507534863 ], [ -78.071483648482314, 25.094098736305245 ], [ -78.072295889242412, 25.092094367960041 ] ], [ [ -78.07240614227986, 25.094427843087285 ], [ -78.072832941512402, 25.094580104369076 ], [ -78.076241270780656, 25.086444375914535 ], [ -78.076011807716839, 25.086367721141063 ], [ -78.07567543313364, 25.086359687078939 ], [ -78.07240614227986, 25.094427843087285 ] ], [ [ -78.072118713848639, 25.08628461870553 ], [ -78.069850923896922, 25.086275738189354 ], [ -78.069850507595433, 25.086276823336899 ], [ -78.069846576821817, 25.086283483243115 ], [ -78.069844827942703, 25.086290874574036 ], [ -78.068376474945936, 25.089745427957556 ], [ -78.070465036674932, 25.090481714058118 ], [ -78.072118713848639, 25.08628461870553 ] ], [ [ -78.070130399036472, 25.091331005374276 ], [ -78.06801890853319, 25.090586637237589 ], [ -78.067178868565037, 25.092562869751522 ], [ -78.069341039099356, 25.093334313782897 ], [ -78.070130399036472, 25.091331005374276 ] ], [ [ -78.056795867169157, 25.044982162315328 ], [ -78.053955936787219, 25.054044070555062 ], [ -78.058430949827951, 25.049557411335766 ], [ -78.058545849557092, 25.049472229923246 ], [ -78.058683269431228, 25.049421826575813 ], [ -78.059294263934461, 25.049289970664713 ], [ -78.056795867169157, 25.044982162315328 ] ], [ [ -78.054597512521099, 25.05474224143801 ], [ -78.056396822215319, 25.055348684393611 ], [ -78.056648865957115, 25.052685592613422 ], [ -78.054597512521099, 25.05474224143801 ] ], [ [ -78.04175764613926, 25.059635271832434 ], [ -78.041762568367176, 25.059689116440239 ], [ -78.041802697798204, 25.059668813562382 ], [ -78.041880699471761, 25.059654939214933 ], [ -78.04175764613926, 25.059635271832434 ] ], [ [ -78.041839154675216, 25.060526889680887 ], [ -78.041966172525036, 25.061916289518447 ], [ -78.042107635036587, 25.061901813253058 ], [ -78.042262398476382, 25.061908189365106 ], [ -78.042407424182727, 25.061957814714816 ], [ -78.042528516159905, 25.06204583166307 ], [ -78.042613821132974, 25.062163624564231 ], [ -78.042654988809133, 25.062299663100145 ], [ -78.042647989280908, 25.062440630920655 ], [ -78.042593507550521, 25.062572729121779 ], [ -78.042496876538436, 25.062683026975364 ], [ -78.042367555109948, 25.062760727692485 ], [ -78.04221820219513, 25.062798225313859 ], [ -78.042048389549308, 25.06281560283119 ], [ -78.042092483827645, 25.063297909789281 ], [ -78.045049892342774, 25.061572896023897 ], [ -78.045191818222008, 25.061516323299582 ], [ -78.045283023773266, 25.061508126453393 ], [ -78.045289294297731, 25.061500413907378 ], [ -78.045354568970822, 25.061442031396499 ], [ -78.041839154675216, 25.060526889680887 ] ], [ [ -78.045063546773576, 25.063293785264158 ], [ -78.045854606029962, 25.064493613220456 ], [ -78.045909582305612, 25.064613179689097 ], [ -78.045924951212726, 25.064742050338296 ], [ -78.045899443095564, 25.064869579929564 ], [ -78.045835164911622, 25.064985233969249 ], [ -78.045792105765202, 25.065026745144603 ], [ -78.045943552574002, 25.065003898845831 ], [ -78.046101738624031, 25.06502728868368 ], [ -78.046243439270526, 25.065095468934853 ], [ -78.046353812839413, 25.065201298425677 ], [ -78.047661791322469, 25.066953160948824 ], [ -78.047727799732272, 25.067080823616859 ], [ -78.04774726508343, 25.067220816702218 ], [ -78.047718281821375, 25.067359436738737 ], [ -78.047643686875276, 25.067483114619051 ], [ -78.047530782018683, 25.067579743838124 ], [ -78.047390619159088, 25.067639865582308 ], [ -78.047236918502662, 25.067657594651607 ], [ -78.047109887916676, 25.06763556020254 ], [ -78.047356403119153, 25.067986445740573 ], [ -78.047418466019437, 25.068115740042153 ], [ -78.047433625016154, 25.068256174255893 ], [ -78.047400396087767, 25.068394001731196 ], [ -78.047322031761539, 25.068515730938095 ], [ -78.047206202791401, 25.068609446118504 ], [ -78.047064247326404, 25.068665973704704 ], [ -78.046910061052799, 25.068679780319925 ], [ -78.046758736950579, 25.068649514447788 ], [ -78.046625087829028, 25.068578138739113 ], [ -78.046522196287626, 25.068472640000738 ], [ -78.045124321377813, 25.066482876175449 ], [ -78.045118312706677, 25.066488811804085 ], [ -78.044983235756419, 25.066557918430103 ], [ -78.044831323935924, 25.066585623766226 ], [ -78.04467744757352, 25.066569215779676 ], [ -78.044536669318717, 25.066510300600445 ], [ -78.044378525636347, 25.066414319027444 ], [ -78.044225257665062, 25.066461614255946 ], [ -78.044290339187754, 25.068229956639673 ], [ -78.044271243282367, 25.068369992308263 ], [ -78.044257132705056, 25.068397453470272 ], [ -78.044767043885244, 25.068600663799721 ], [ -78.045571113394942, 25.06851095254261 ], [ -78.045722010894465, 25.068515233844554 ], [ -78.045864479303731, 25.068560727948455 ], [ -78.045985276551846, 25.068643206285444 ], [ -78.046073174796518, 25.068755002694452 ], [ -78.048279619808767, 25.072726608151804 ], [ -78.048331353879249, 25.072680736641384 ], [ -78.048470332066287, 25.072618364833097 ], [ -78.048623670123092, 25.07259816047258 ], [ -78.048776358400687, 25.072622101268703 ], [ -78.048913450862557, 25.072687843739324 ], [ -78.049021528047248, 25.072788952603933 ], [ -78.049939189677147, 25.073972329825772 ], [ -78.050007673944506, 25.074098907323428 ], [ -78.050029859662246, 25.074238564085412 ], [ -78.050003574989319, 25.07437762956954 ], [ -78.04993139269672, 25.074502491067499 ], [ -78.049820378386244, 25.07460092621535 ], [ -78.04968139889985, 25.074663299422955 ], [ -78.049528058602149, 25.074683505100175 ], [ -78.049375367658257, 25.074659565339839 ], [ -78.049238272677556, 25.074593823542276 ], [ -78.049130193575905, 25.074492715023244 ], [ -78.048681947169328, 25.073914675167622 ], [ -78.048607642967454, 25.074007275561037 ], [ -78.048482043051152, 25.074089899393758 ], [ -78.048334556654254, 25.074133129978378 ], [ -78.048308722374856, 25.074133064221925 ], [ -78.048326171313462, 25.074164400294272 ], [ -78.048350119253826, 25.074303815595869 ], [ -78.048325592458497, 25.074443147398643 ], [ -78.048254991624333, 25.074568756926862 ], [ -78.04817740561343, 25.074639152660996 ], [ -78.048178951574712, 25.074649215738209 ], [ -78.048151953838527, 25.074788168075145 ], [ -78.048079131611473, 25.074912721302763 ], [ -78.047967613137715, 25.075010683232282 ], [ -78.047828314611763, 25.075072464595351 ], [ -78.047828059251913, 25.075072497135825 ], [ -78.047813446642365, 25.075126356127189 ], [ -78.047731617956558, 25.075246181778219 ], [ -78.047613137756684, 25.075337112780062 ], [ -78.047469603721026, 25.07539024809952 ], [ -78.047315066063902, 25.075400386420565 ], [ -78.047164652163517, 25.075366535308561 ], [ -78.047033085729367, 25.075292008366279 ], [ -78.046933245486059, 25.075184100867737 ], [ -78.046581636937177, 25.074653659958642 ], [ -78.046404774844973, 25.074755858246732 ], [ -78.047578558097541, 25.07652051671332 ], [ -78.047637120141687, 25.076651160105861 ], [ -78.047648488781789, 25.076791890881641 ], [ -78.047611551020609, 25.076928933357173 ], [ -78.047529922434492, 25.077048872840237 ], [ -78.047411593312347, 25.07713996876107 ], [ -78.047268146543431, 25.077193303943073 ], [ -78.047113623799433, 25.077203657506139 ], [ -78.046963150998636, 25.077170015946038 ], [ -78.046831457616349, 25.077095672352932 ], [ -78.046731434804144, 25.076987904053205 ], [ -78.045568283252834, 25.075239213032443 ], [ -78.043553964471755, 25.076403125203978 ], [ -78.043411759375203, 25.076459149803846 ], [ -78.043296854639934, 25.07646902767479 ], [ -78.043385268531665, 25.077435748876049 ], [ -78.043404983540356, 25.077434057785332 ], [ -78.043559615577067, 25.077442966256797 ], [ -78.043703656805519, 25.077494957457958 ], [ -78.043823007594298, 25.07758494216597 ], [ -78.043905985102612, 25.077704112118241 ], [ -78.043944466860623, 25.077840802200761 ], [ -78.043934685873737, 25.07798163228351 ], [ -78.043877599412639, 25.078112816942625 ], [ -78.043778795370343, 25.07822151487149 ], [ -78.043647945328857, 25.078297085891869 ], [ -78.043497857855158, 25.078332132514557 ], [ -78.043467489804769, 25.07833473740914 ], [ -78.043565712270592, 25.07940865112047 ], [ -78.044639848860683, 25.079353128719038 ], [ -78.046758648509282, 25.078185598587083 ], [ -78.046902128663206, 25.078132335212903 ], [ -78.047056658802106, 25.07812205870685 ], [ -78.04720711259489, 25.078155774979642 ], [ -78.047338762725104, 25.078230183667557 ], [ -78.047438722446387, 25.078338001187323 ], [ -78.047497206994265, 25.078468673682071 ], [ -78.047508491391085, 25.078609410078393 ], [ -78.047471470885924, 25.078746434142545 ], [ -78.047389769154663, 25.078866332984461 ], [ -78.047271383646361, 25.078957370012549 ], [ -78.045340120250643, 25.08002156727116 ], [ -78.045671877370722, 25.081654121484998 ], [ -78.047764710152833, 25.081715319811018 ], [ -78.04769251432748, 25.079962593154487 ], [ -78.047672684042226, 25.079973341503944 ], [ -78.047528779664887, 25.080025651687873 ], [ -78.047374169079816, 25.080034902579207 ], [ -78.047223986804426, 25.080000188611969 ], [ -78.047092933874396, 25.079924907852121 ], [ -78.046993838747312, 25.079816429363156 ], [ -78.046936401531795, 25.079685371848601 ], [ -78.046926244478286, 25.079544564191359 ], [ -78.046964361673801, 25.079407789650233 ], [ -78.047047021793475, 25.079288436649314 ], [ -78.047166133405213, 25.079198188233686 ], [ -78.048159704748173, 25.078659652417421 ], [ -78.048072517292695, 25.078578079334541 ], [ -78.048004041104207, 25.078451496923069 ], [ -78.047981866509531, 25.078311838442144 ], [ -78.04800816396407, 25.078172774671646 ], [ -78.048080359133806, 25.07804791813253 ], [ -78.048191384948552, 25.07794949060218 ], [ -78.048330373415808, 25.077887126781011 ], [ -78.050949681207044, 25.077147370494604 ], [ -78.051194499705119, 25.077014664715836 ], [ -78.051338398734487, 25.076962351430453 ], [ -78.051493004709556, 25.076953096788984 ], [ -78.051643183876337, 25.076987806675913 ], [ -78.051774235799854, 25.077063083466641 ], [ -78.051873332288409, 25.077171558602569 ], [ -78.05193077307446, 25.077302613854823 ], [ -78.051940935349265, 25.077443420682442 ], [ -78.0519028242025, 25.077580195956386 ], [ -78.051820170070499, 25.077699551138902 ], [ -78.051701063631953, 25.077789802854952 ], [ -78.049809872294944, 25.078814924472663 ], [ -78.0523966726944, 25.078259612816677 ], [ -78.050205196101444, 25.062704595297213 ], [ -78.046162632300778, 25.061652374419417 ], [ -78.046182363085151, 25.061772940584692 ], [ -78.046156735821697, 25.061912108038026 ], [ -78.046085149024307, 25.062037250795676 ], [ -78.045063546773576, 25.063293785264158 ] ], [ [ -78.047143299749237, 25.072679208785459 ], [ -78.046360240056273, 25.071269706733688 ], [ -78.045127056531413, 25.072078868633572 ], [ -78.044988727653035, 25.072142426222793 ], [ -78.044835604712787, 25.072163940612629 ], [ -78.044682676598114, 25.072141305788797 ], [ -78.044666419598215, 25.072133686304152 ], [ -78.04469708486954, 25.072899431290569 ], [ -78.044755487734534, 25.072877717082832 ], [ -78.044910005556019, 25.072867366468277 ], [ -78.045060472626986, 25.072901010679896 ], [ -78.045192160331226, 25.072975356407721 ], [ -78.045292178244523, 25.073083126231388 ], [ -78.045629988895726, 25.073591013541861 ], [ -78.047143299749237, 25.072679208785459 ] ], [ [ -78.044676183763229, 25.07389797967512 ], [ -78.044644892028401, 25.073959345617716 ], [ -78.044539401393635, 25.074062697216405 ], [ -78.04445066505771, 25.074107659476617 ], [ -78.044608366103333, 25.074206549288565 ], [ -78.044803302482336, 25.074089099561249 ], [ -78.044676183763229, 25.07389797967512 ] ], [ [ -78.044130208637043, 25.075001890997338 ], [ -78.043451849427399, 25.074576509070539 ], [ -78.04340367659114, 25.074615049463894 ], [ -78.043141123806052, 25.074766199724785 ], [ -78.043211239391113, 25.075532883251999 ], [ -78.044130208637043, 25.075001890997338 ] ], [ [ -78.044383288171971, 25.08026989132615 ], [ -78.043777191466447, 25.080301220717779 ], [ -78.043848904315666, 25.080307834051577 ], [ -78.043990692095747, 25.080364738393822 ], [ -78.044106232237226, 25.080458760637629 ], [ -78.044184214900326, 25.080580697300217 ], [ -78.044217006534211, 25.080718612441224 ], [ -78.044201397126699, 25.080859006009028 ], [ -78.044138914475681, 25.080988135303386 ], [ -78.044035674698449, 25.081093360206481 ], [ -78.043901783589433, 25.081164380502116 ], [ -78.043750347407737, 25.081194244159192 ], [ -78.043729132038564, 25.081195330452516 ], [ -78.044787821792198, 25.092767999170832 ], [ -78.050002540844162, 25.092457330243516 ], [ -78.048026213323354, 25.087489371666265 ], [ -78.047996949001799, 25.08735266463388 ], [ -78.047931463737754, 25.085763206300093 ], [ -78.04584680325928, 25.085963243137069 ], [ -78.045692061988063, 25.085955893554083 ], [ -78.045547388277456, 25.085905356955944 ], [ -78.045426943927993, 25.08581658025378 ], [ -78.045342518921203, 25.085698253596718 ], [ -78.045302377315153, 25.085561959694001 ], [ -78.045310448319881, 25.08542103999131 ], [ -78.045365941728662, 25.085289288698441 ], [ -78.045463425330269, 25.085179602513151 ], [ -78.045593356701119, 25.08510271821649 ], [ -78.045743017303224, 25.085066161707484 ], [ -78.047894242906565, 25.084859738510929 ], [ -78.047801931820544, 25.082618918336181 ], [ -78.045241563860742, 25.082544047323694 ], [ -78.045077898031636, 25.082513589457648 ], [ -78.044934661970103, 25.082435308847177 ], [ -78.044828152179363, 25.082318111779482 ], [ -78.04477048657732, 25.082175332203736 ], [ -78.044383288171971, 25.08026989132615 ] ], [ [ -78.043245460916012, 25.0667639541774 ], [ -78.042666398779915, 25.066942634135003 ], [ -78.04262559455222, 25.066948997069431 ], [ -78.04258625641765, 25.066960742780115 ], [ -78.042429474997277, 25.066983743462824 ], [ -78.042483745519718, 25.067577292350947 ], [ -78.042617086345416, 25.06755546356063 ], [ -78.042770577765552, 25.067574640539021 ], [ -78.042910050630979, 25.067636080187444 ], [ -78.043021852477892, 25.067733768411877 ], [ -78.043095039385577, 25.067858142879231 ], [ -78.043111356564083, 25.067940828363 ], [ -78.04329140509202, 25.068012583781432 ], [ -78.043245460916012, 25.0667639541774 ] ], [ [ -78.042587942510082, 25.068716853557845 ], [ -78.042600367484056, 25.068852738270852 ], [ -78.042669730663022, 25.068834643324735 ], [ -78.042836749210167, 25.068816011583067 ], [ -78.042587942510082, 25.068716853557845 ] ], [ [ -78.043484016627659, 25.063557415605999 ], [ -78.042545932416132, 25.064104576752193 ], [ -78.042404002177946, 25.064161147320434 ], [ -78.042249826027088, 25.064175000429071 ], [ -78.042171237283753, 25.064159306381153 ], [ -78.042220111199342, 25.064693873938779 ], [ -78.042363973992536, 25.064685386241106 ], [ -78.042518238329009, 25.06469840573903 ], [ -78.042660535448221, 25.064754207845326 ], [ -78.042776936438301, 25.064847330302786 ], [ -78.042856047196224, 25.064968657705521 ], [ -78.042890123747966, 25.065106313752082 ], [ -78.042875830306158, 25.065246823753814 ], [ -78.042814565852652, 25.065376433614333 ], [ -78.042712327257391, 25.065482456175747 ], [ -78.042579122309519, 25.065554513141922 ], [ -78.042427990099284, 25.065585551004911 ], [ -78.042302314051412, 25.065592965804882 ], [ -78.042347041276187, 25.066082159798192 ], [ -78.042387866414458, 25.066076170553671 ], [ -78.043338219419653, 25.065782921348781 ], [ -78.043232672172408, 25.065718860274721 ], [ -78.043109329067789, 25.065611960887086 ], [ -78.043033029872788, 25.065473327638387 ], [ -78.043012794597956, 25.065319349889094 ], [ -78.043051015266172, 25.065168230986298 ], [ -78.043685204316276, 25.063798875493063 ], [ -78.043653048686778, 25.063769556498457 ], [ -78.043484016627659, 25.063557415605999 ] ], [ [ -78.045907604907924, 25.070454947950729 ], [ -78.0453464394039, 25.069444811853302 ], [ -78.04501478237961, 25.069481815314433 ], [ -78.044871488669685, 25.069532880230796 ], [ -78.044815102635468, 25.069535903153763 ], [ -78.045752500446937, 25.07055672172396 ], [ -78.045907604907924, 25.070454947950729 ] ], [ [ -78.04361746897942, 25.069637707324699 ], [ -78.042790133008168, 25.069730003179725 ], [ -78.042680261280822, 25.069726478518749 ], [ -78.042820755946266, 25.071262917056302 ], [ -78.042949576965881, 25.071272854929283 ], [ -78.043092360958255, 25.071327631895912 ], [ -78.04320957177822, 25.071419914243538 ], [ -78.043289736053453, 25.071540668801727 ], [ -78.043325006686572, 25.071678075343396 ], [ -78.043311931006528, 25.071818683604082 ], [ -78.043251788791892, 25.071948729870286 ], [ -78.043150467058425, 25.072055484266617 ], [ -78.04301788384393, 25.072128496860223 ], [ -78.042902161897089, 25.072153137351563 ], [ -78.043013689102054, 25.073372716433557 ], [ -78.043091136288453, 25.073359704816454 ], [ -78.043244729675763, 25.073378241642335 ], [ -78.043384516402483, 25.073439099097584 ], [ -78.043736454325597, 25.073659794038736 ], [ -78.043660784099643, 25.071769860234067 ], [ -78.043679428562697, 25.071629774040392 ], [ -78.043744689663981, 25.071501791599932 ], [ -78.043850179076685, 25.071398440680614 ], [ -78.043985570734023, 25.071329837920143 ], [ -78.04413761162742, 25.071302698565919 ], [ -78.044291419076444, 25.071319679166088 ], [ -78.044431937495247, 25.071379117543731 ], [ -78.044473554200707, 25.071414354081551 ], [ -78.044548135804035, 25.071346970287017 ], [ -78.044946818368047, 25.071085375261344 ], [ -78.04361746897942, 25.069637707324699 ] ], [ [ -78.073152120459952, 25.083192725510376 ], [ -78.070910689170077, 25.083513257029004 ], [ -78.070196455831038, 25.08537505532966 ], [ -78.072276450670856, 25.085383198424317 ], [ -78.073152120459952, 25.083192725510376 ] ], [ [ -78.070080913712971, 25.082948144124309 ], [ -78.070084711136971, 25.082934159206985 ], [ -78.071926672859874, 25.078960951164817 ], [ -78.070453680228667, 25.078574906402395 ], [ -78.068981418923457, 25.08537028498144 ], [ -78.069148825679278, 25.085370942828604 ], [ -78.070073424470422, 25.082960833455637 ], [ -78.070080913712971, 25.082948144124309 ] ], [ [ -78.069498386577948, 25.078324531797836 ], [ -78.067817513141918, 25.077883970758791 ], [ -78.067100126762625, 25.085362879169487 ], [ -78.067972681964577, 25.085366317006102 ], [ -78.069498386577948, 25.078324531797836 ] ], [ [ -78.072308265872834, 25.078122323543141 ], [ -78.073924512053253, 25.074503264421409 ], [ -78.071270670248865, 25.074803757935332 ], [ -78.070646106477298, 25.077686700771629 ], [ -78.072308265872834, 25.078122323543141 ] ], [ [ -78.070235780001923, 25.074920925049547 ], [ -78.068078295517083, 25.07516516518276 ], [ -78.067905338674336, 25.076968344822522 ], [ -78.06969081969163, 25.077436326765241 ], [ -78.070235780001923, 25.074920925049547 ] ], [ [ -78.06701363218184, 25.086264578595788 ], [ -78.066735235143199, 25.089166809543215 ], [ -78.067452747596178, 25.089419771280248 ], [ -78.068790911632846, 25.086271575331033 ], [ -78.068582674905031, 25.086270756655615 ], [ -78.068577552581388, 25.086273883939562 ], [ -78.068428485584334, 25.086312395071587 ], [ -78.068273646555724, 25.08630707154683 ], [ -78.068160071687927, 25.086269094304981 ], [ -78.06701363218184, 25.086264578595788 ] ], [ [ -78.059980398987562, 25.078041512259986 ], [ -78.058944191218728, 25.085330496251718 ], [ -78.062014474920787, 25.085342739490724 ], [ -78.063594258688582, 25.076887712120467 ], [ -78.060523218642345, 25.078132242635057 ], [ -78.06037354877823, 25.078168732788583 ], [ -78.060218822998905, 25.078161314710247 ], [ -78.060074187102202, 25.078110714525767 ], [ -78.059980398987562, 25.078041512259986 ] ], [ [ -78.063018470156038, 25.085346729257356 ], [ -78.066106230508765, 25.085358956985029 ], [ -78.066847686681768, 25.077629766461307 ], [ -78.064571750061035, 25.077033183562531 ], [ -78.063018470156038, 25.085346729257356 ] ], [ [ -78.066935519544373, 25.076714140405915 ], [ -78.067053346902213, 25.075485823689689 ], [ -78.065166648064093, 25.076250472539098 ], [ -78.066935519544373, 25.076714140405915 ] ], [ [ -78.05881602323349, 25.086232030204272 ], [ -78.057998742454387, 25.091980595904271 ], [ -78.060805401981241, 25.091813159973743 ], [ -78.061846048119392, 25.086244113749093 ], [ -78.05881602323349, 25.086232030204272 ] ], [ [ -78.061821526835587, 25.091752528214098 ], [ -78.064355334755177, 25.091601306478733 ], [ -78.064568423340731, 25.091631428051475 ], [ -78.065473505470592, 25.091954380507527 ], [ -78.066019728561685, 25.086260656521539 ], [ -78.06285005085364, 25.086248103961449 ], [ -78.061821526835587, 25.091752528214098 ] ], [ [ -78.06649478526289, 25.091673403832054 ], [ -78.067095175292408, 25.090260978869814 ], [ -78.066645483552691, 25.090102439077626 ], [ -78.06649478526289, 25.091673403832054 ] ], [ [ -77.979897018311377, 25.042532886292523 ], [ -77.980125108053528, 25.040498256606803 ], [ -77.979351518508835, 25.039610776626652 ], [ -77.978879347281946, 25.043000805147237 ], [ -77.978900453873109, 25.04298705114676 ], [ -77.979897018311377, 25.042532886292523 ] ], [ [ -78.048684532592915, 25.079983249060948 ], [ -78.048756340998168, 25.081726227090176 ], [ -78.051615745832649, 25.081700098219084 ], [ -78.05203847861371, 25.079263274544545 ], [ -78.048684532592915, 25.079983249060948 ] ], [ [ -78.051459002584991, 25.082603620650055 ], [ -78.048793493873603, 25.082627978310178 ], [ -78.048881545682988, 25.084764990213348 ], [ -78.051121335477006, 25.084550020044379 ], [ -78.051459002584991, 25.082603620650055 ] ], [ [ -78.052181699817297, 25.084218134993726 ], [ -78.053593523886519, 25.084827435816898 ], [ -78.054561179349648, 25.078721684846961 ], [ -78.05349269099176, 25.078951080531919 ], [ -78.053512647279049, 25.07909269313112 ], [ -78.053508087152849, 25.079233742476532 ], [ -78.05345589114475, 25.079366605010193 ], [ -78.053361168429774, 25.079478275187771 ], [ -78.05323319107093, 25.079557821888688 ], [ -78.053084486426584, 25.079597458455392 ], [ -78.052983723589307, 25.079594756170945 ], [ -78.052181699817297, 25.084218134993726 ] ], [ [ -78.054530228332425, 25.085231678058268 ], [ -78.054719937007604, 25.0853135472519 ], [ -78.057945985632117, 25.085326502027026 ], [ -78.058435531573863, 25.081883160602388 ], [ -78.05497660800134, 25.082415007208287 ], [ -78.054530228332425, 25.085231678058268 ] ], [ [ -78.058568495258186, 25.080947907632357 ], [ -78.059021126559969, 25.077764080337289 ], [ -78.055580856207015, 25.078502760781323 ], [ -78.055582224527967, 25.078593411836415 ], [ -78.055125201925449, 25.081477355834945 ], [ -78.058568495258186, 25.080947907632357 ] ], [ [ -78.048918773643109, 25.085668457083383 ], [ -78.048983879565853, 25.087248404114572 ], [ -78.05103171133841, 25.09239599526153 ], [ -78.052406943968819, 25.092314024989509 ], [ -78.053445448428477, 25.085761733340298 ], [ -78.052445049707018, 25.08532999641529 ], [ -78.051834622553585, 25.085388592797713 ], [ -78.05176383698587, 25.08543546647838 ], [ -78.051616489178826, 25.085479124234734 ], [ -78.051461538899005, 25.085479178961425 ], [ -78.051321629192373, 25.085437834305694 ], [ -78.048918773643109, 25.085668457083383 ] ], [ [ -78.053417321126773, 25.0922537936463 ], [ -78.05699137110264, 25.092040679310987 ], [ -78.057817810219632, 25.08622803580716 ], [ -78.054605301146935, 25.08621513508902 ], [ -78.054395407716171, 25.086171692914949 ], [ -78.054382159970856, 25.08616597584907 ], [ -78.053417321126773, 25.0922537936463 ] ], [ [ -78.034415594124951, 25.068159194343938 ], [ -78.035910284183259, 25.069813932932757 ], [ -78.037005591896985, 25.069352482765527 ], [ -78.036626271580189, 25.068055556224639 ], [ -78.036610301544457, 25.067915195426977 ], [ -78.03662925758114, 25.067834546006551 ], [ -78.034415594124951, 25.068159194343938 ] ], [ [ -78.037524774977868, 25.067703202747854 ], [ -78.037583278752521, 25.067823354216724 ], [ -78.037932401042298, 25.06901700171921 ], [ -78.038492083259271, 25.068839607803326 ], [ -78.038521570022468, 25.068777334002114 ], [ -78.038623883513054, 25.068671368637364 ], [ -78.038757140920055, 25.068599386183394 ], [ -78.03890829814209, 25.068568432714283 ], [ -78.039062558994289, 25.06858153812707 ], [ -78.039171401259253, 25.068624291342299 ], [ -78.041517671445504, 25.067880589294408 ], [ -78.041448828895554, 25.067127605654623 ], [ -78.038603788547377, 25.067544939127288 ], [ -78.038628038876709, 25.067744365285861 ], [ -78.038620794975742, 25.067885323223148 ], [ -78.038566082036738, 25.068017343332627 ], [ -78.038469255612711, 25.068127502530089 ], [ -78.03833979369773, 25.068205017599116 ], [ -78.038190368974213, 25.068242300752974 ], [ -78.038035608304114, 25.068235702407414 ], [ -78.037890660900487, 25.068185868446239 ], [ -78.037769715355736, 25.068097677000896 ], [ -78.037684610713427, 25.06797976093112 ], [ -78.037643677560723, 25.067843662755113 ], [ -78.037624814533459, 25.067688529852674 ], [ -78.037524774977868, 25.067703202747854 ] ], [ [ -78.041366402091242, 25.066226020792122 ], [ -78.041313857851932, 25.065651280313844 ], [ -78.038394462195015, 25.065823473067105 ], [ -78.038494633448479, 25.066647274183225 ], [ -78.041366402091242, 25.066226020792122 ] ], [ [ -78.044907603454604, 25.094077122877131 ], [ -78.045781354722536, 25.10362518852132 ], [ -78.045834696135387, 25.103633842100063 ], [ -78.046482822241074, 25.103838223546713 ], [ -78.046217592652894, 25.096638581739867 ], [ -78.045588077110423, 25.096581046902891 ], [ -78.045438206216872, 25.096545163432243 ], [ -78.045307847918224, 25.096468863806138 ], [ -78.045209762674389, 25.096359616822607 ], [ -78.045153551736817, 25.09622811641086 ], [ -78.0451447173171, 25.096087234806944 ], [ -78.045184124032957, 25.095950762506916 ], [ -78.045267914333181, 25.095832058348147 ], [ -78.045387886158082, 25.095742741861748 ], [ -78.045532295845135, 25.095691555894433 ], [ -78.045687007674601, 25.095683510825776 ], [ -78.047831132189714, 25.095879464170153 ], [ -78.047857861120647, 25.09588586345788 ], [ -78.047885458129599, 25.09588722231311 ], [ -78.047932371865571, 25.095903702364353 ], [ -78.047981002673325, 25.095915345231042 ], [ -78.048004251797479, 25.095928952605373 ], [ -78.048030036998327, 25.095938010512022 ], [ -78.050494341282089, 25.097238521596374 ], [ -78.050234119980473, 25.093347502093419 ], [ -78.045267264097063, 25.093643417670602 ], [ -78.045264063943719, 25.093732673915934 ], [ -78.045211394523449, 25.093865384172769 ], [ -78.045116267841209, 25.093976778068384 ], [ -78.04498799550413, 25.094055951526347 ], [ -78.044907603454604, 25.094077122877131 ] ], [ [ -78.05151984501282, 25.097779699340592 ], [ -78.051539004793867, 25.097789810201206 ], [ -78.05226229674571, 25.093226619267178 ], [ -78.051222591754026, 25.093288590952415 ], [ -78.051521769757002, 25.097761545251252 ], [ -78.05151984501282, 25.097779699340592 ] ], [ [ -78.052462627292883, 25.098277212396187 ], [ -78.053154085621273, 25.098642093271458 ], [ -78.053302518752247, 25.098304909679051 ], [ -78.053393032669462, 25.098172094522312 ], [ -78.053527895505042, 25.098075388184522 ], [ -78.053690908661224, 25.098026406145653 ], [ -78.053862492483447, 25.098031031656017 ], [ -78.056080283531884, 25.098448297392967 ], [ -78.056303354967795, 25.09687948854307 ], [ -78.054083333518932, 25.096488324297489 ], [ -78.053937670543291, 25.096440173454852 ], [ -78.053815477217796, 25.096353390911482 ], [ -78.053728714731449, 25.09623647161326 ], [ -78.053685875956674, 25.096100860507885 ], [ -78.053691154124607, 25.095959832206074 ], [ -78.053744032410876, 25.095827191550725 ], [ -78.053839334587153, 25.095715922298904 ], [ -78.053967731757524, 25.095636916194323 ], [ -78.054116655556612, 25.095597906832825 ], [ -78.054271528411931, 25.095602712671621 ], [ -78.056430801645121, 25.095983175123326 ], [ -78.056861741390904, 25.092952381284224 ], [ -78.053272681548336, 25.093166388203553 ], [ -78.052462627292883, 25.098277212396187 ] ], [ [ -78.047485698346449, 25.10415446543249 ], [ -78.04764700203458, 25.104205329309565 ], [ -78.049274892238671, 25.099332192805377 ], [ -78.049342626981314, 25.099205275332672 ], [ -78.049450117491318, 25.09910362909681 ], [ -78.049586841826098, 25.099037203868459 ], [ -78.049739416530414, 25.099012501743825 ], [ -78.049892906673534, 25.099031940700144 ], [ -78.050032287729067, 25.099093617922051 ], [ -78.050143916219881, 25.099191496060445 ], [ -78.050216865194102, 25.099315994192295 ], [ -78.050243993822562, 25.09945492564098 ], [ -78.050222646421759, 25.099594690867161 ], [ -78.048583804808288, 25.104500726786611 ], [ -78.050332197533578, 25.105052018656785 ], [ -78.052781647457991, 25.099488123409547 ], [ -78.047625824329387, 25.096767277671532 ], [ -78.047212104530857, 25.096729469945647 ], [ -78.047485698346449, 25.10415446543249 ] ], [ [ -78.057053141976837, 25.098631323976484 ], [ -78.0594470884392, 25.099081673647575 ], [ -78.059745313598924, 25.097485884000928 ], [ -78.057277813200187, 25.097051175004125 ], [ -78.057053141976837, 25.098631323976484 ] ], [ [ -78.05991153909595, 25.096596405954664 ], [ -78.060634572857282, 25.09272732251004 ], [ -78.057869120338395, 25.092892298054359 ], [ -78.057405252700519, 25.09615486141718 ], [ -78.05991153909595, 25.096596405954664 ] ], [ [ -78.059280797662154, 25.099971475476988 ], [ -78.056925588713426, 25.099528415634342 ], [ -78.056360131565143, 25.103505221906737 ], [ -78.058624564882095, 25.103532292636121 ], [ -78.058625234004978, 25.103479228227506 ], [ -78.059280797662154, 25.099971475476988 ] ], [ [ -78.056232075604726, 25.104405805471828 ], [ -78.055890979857068, 25.106804601981764 ], [ -78.059276449528326, 25.107871848069891 ], [ -78.05937622002628, 25.107860996773333 ], [ -78.05952825236011, 25.107888376402794 ], [ -78.059663551525844, 25.107957192322448 ], [ -78.059718493271987, 25.108011191999516 ], [ -78.059924427024924, 25.108076107210543 ], [ -78.060914975051219, 25.104461750413435 ], [ -78.056232075604726, 25.104405805471828 ] ], [ [ -78.0611613940289, 25.103562578560638 ], [ -78.062684751167069, 25.098003677114939 ], [ -78.060718131737261, 25.097657256703695 ], [ -78.059617993103828, 25.103544157864899 ], [ -78.0611613940289, 25.103562578560638 ] ], [ [ -78.060864299872819, 25.108372372795149 ], [ -78.06275900111568, 25.108969594972187 ], [ -78.06357732721527, 25.107029389359738 ], [ -78.062322787991548, 25.106590282250895 ], [ -78.062196815900549, 25.106987621828882 ], [ -78.062131070341465, 25.107115403797771 ], [ -78.062025175152357, 25.107218433038518 ], [ -78.061889496065064, 25.107286624260592 ], [ -78.061737314365175, 25.107313302363298 ], [ -78.061583526800078, 25.107295855867417 ], [ -78.061443187327214, 25.107235992560483 ], [ -78.061330033467073, 25.107139572325579 ], [ -78.061255141534986, 25.107016033517688 ], [ -78.061246810277041, 25.106976632514836 ], [ -78.060864299872819, 25.108372372795149 ] ], [ [ -78.061741692793746, 25.105170819662362 ], [ -78.063764680055471, 25.098789694757592 ], [ -78.063667155710817, 25.09873571751104 ], [ -78.063565825670963, 25.09862819090942 ], [ -78.063546316799531, 25.098585427465768 ], [ -78.061741692793746, 25.105170819662362 ] ], [ [ -78.063780969771386, 25.097671264958727 ], [ -78.065886834902983, 25.093070667976349 ], [ -78.064309891006872, 25.092507988005224 ], [ -78.061650705446198, 25.09266669120688 ], [ -78.060884350149294, 25.096767778225949 ], [ -78.063385883643804, 25.097208421003085 ], [ -78.063398432647759, 25.097212568309953 ], [ -78.063411731577929, 25.097213630030037 ], [ -78.063471010665069, 25.09723655451381 ], [ -78.063531550214648, 25.097256562106271 ], [ -78.063542077619786, 25.097264037572376 ], [ -78.063554365361213, 25.097268789490773 ], [ -78.063602963595201, 25.097307272412838 ], [ -78.063653750470266, 25.09734333588522 ], [ -78.06366122578747, 25.097353407765485 ], [ -78.063671299539692, 25.097361384735279 ], [ -78.063704459808804, 25.097411659147678 ], [ -78.063740522653234, 25.097460248383779 ], [ -78.063744214144478, 25.097471930779072 ], [ -78.063751087819824, 25.097482351964814 ], [ -78.063765564146564, 25.097539496688764 ], [ -78.063783372853507, 25.097595855464171 ], [ -78.063782919160218, 25.097608004825624 ], [ -78.063785919908412, 25.097619850134517 ], [ -78.063780969771386, 25.097671264958727 ] ], [ [ -78.062598564680556, 25.105720423225858 ], [ -78.063932483682123, 25.106187315468354 ], [ -78.066603549788823, 25.099853890492032 ], [ -78.064684995541015, 25.099139029848306 ], [ -78.062598564680556, 25.105720423225858 ] ], [ [ -78.066958753533271, 25.099011613294035 ], [ -78.068996212843786, 25.094180079300418 ], [ -78.066809339975762, 25.093399822660214 ], [ -78.064640612626405, 25.09813782927343 ], [ -78.064645499431521, 25.098139913865651 ], [ -78.06466586618717, 25.098157269426231 ], [ -78.066958753533271, 25.099011613294035 ] ], [ [ -78.063695709756729, 25.109264840151649 ], [ -78.065151089263637, 25.10972355232752 ], [ -78.06591191822929, 25.107846492377874 ], [ -78.064502038802488, 25.107353042814552 ], [ -78.063695709756729, 25.109264840151649 ] ], [ [ -78.066254948946977, 25.107000175611269 ], [ -78.068817078134188, 25.100678616751924 ], [ -78.067520600967867, 25.100195575080292 ], [ -78.064857189352196, 25.106510967245896 ], [ -78.066254948946977, 25.107000175611269 ] ], [ [ -78.066087478488811, 25.110018677426268 ], [ -78.066162581284829, 25.110042347510664 ], [ -78.070013127499266, 25.10112422704724 ], [ -78.069734480418816, 25.101020413125603 ], [ -78.067082448487113, 25.107563903330018 ], [ -78.067089604784599, 25.1076261647999 ], [ -78.067057315889002, 25.107764176703977 ], [ -78.066979767784474, 25.107886348847217 ], [ -78.066937835716899, 25.107920695234867 ], [ -78.066087478488811, 25.110018677426268 ] ], [ [ -78.070375598017563, 25.100284659057841 ], [ -78.072475203793445, 25.09542126178243 ], [ -78.072063143985147, 25.095274259022364 ], [ -78.070077647517238, 25.100173653202805 ], [ -78.070375598017563, 25.100284659057841 ] ], [ [ -78.071140644241481, 25.094945150650119 ], [ -78.069918541287677, 25.094509144684672 ], [ -78.067875798887641, 25.099353296216098 ], [ -78.069160251120067, 25.099831858414557 ], [ -78.071140644241481, 25.094945150650119 ] ], [ [ -78.055952723098684, 25.099345388883648 ], [ -78.054067838871731, 25.098990762455127 ], [ -78.05126940657847, 25.105347522442294 ], [ -78.054934891645132, 25.106503183754292 ], [ -78.055952723098684, 25.099345388883648 ] ], [ [ -78.042576488096699, 25.079459777480348 ], [ -78.042481334275323, 25.078419323924916 ], [ -78.041712538738324, 25.078485262009725 ], [ -78.041767891403566, 25.079501563505957 ], [ -78.042576488096699, 25.079459777480348 ] ], [ [ -78.04952788633247, 25.147815042851839 ], [ -78.049215936177646, 25.147739222078798 ], [ -78.043612265419299, 25.147703878491019 ], [ -78.043604132361722, 25.147902241816148 ], [ -78.043616436605689, 25.147974135933598 ], [ -78.0435965822832, 25.148086386634997 ], [ -78.043592850655543, 25.148177400321007 ], [ -78.044201208071883, 25.148154625811198 ], [ -78.044355197111315, 25.148170953855978 ], [ -78.044496106112362, 25.148229795190154 ], [ -78.044610142037229, 25.148325390058694 ], [ -78.044686142284647, 25.148448381040232 ], [ -78.044716667351722, 25.148586728989788 ], [ -78.044698729090754, 25.148726891487737 ], [ -78.044634083263972, 25.148855148450263 ], [ -78.044529057738316, 25.148958945147552 ], [ -78.044393933114378, 25.149028121165252 ], [ -78.044241936400965, 25.149055905003546 ], [ -78.043555778232857, 25.149081592358261 ], [ -78.04354201740334, 25.149417218636593 ], [ -78.04351207150988, 25.149555671568386 ], [ -78.043436585802155, 25.14967892530747 ], [ -78.043322949248861, 25.149774914865837 ], [ -78.043182285383125, 25.149834244043895 ], [ -78.043028363455221, 25.149851105223782 ], [ -78.042934977399071, 25.149834371254741 ], [ -78.042818144196218, 25.150617994000559 ], [ -78.043520980481944, 25.150942607081262 ], [ -78.043857024498863, 25.150568655227485 ], [ -78.043857047266542, 25.150568619602762 ], [ -78.043857081720105, 25.150568591551096 ], [ -78.044345079637665, 25.150025539428444 ], [ -78.044460797494267, 25.149931632358747 ], [ -78.044602733531164, 25.149874868861204 ], [ -78.044756994156401, 25.149860805279353 ], [ -78.044908479418964, 25.149890818225614 ], [ -78.045042361038526, 25.149961969839925 ], [ -78.045145533842444, 25.150067295361794 ], [ -78.045207898555915, 25.150196484868413 ], [ -78.045223350390003, 25.150336892453883 ], [ -78.045190376657715, 25.150474774074421 ], [ -78.045112204905095, 25.150596632900079 ], [ -78.044938929798207, 25.150789458496654 ], [ -78.04523980814956, 25.151012699931002 ], [ -78.045987463076514, 25.150145323522128 ], [ -78.046101817762576, 25.150048834469519 ], [ -78.046243454129367, 25.149989468841 ], [ -78.046398346517606, 25.149973105341001 ], [ -78.047600846660785, 25.150019588061852 ], [ -78.04952788633247, 25.147815042851839 ] ], [ [ -78.042085014306778, 25.149136641875288 ], [ -78.041762773537144, 25.149148701136166 ], [ -78.04178516080475, 25.149232339128275 ], [ -78.041773516152332, 25.149373051109734 ], [ -78.041596611423685, 25.15005380233784 ], [ -78.041882451367485, 25.150185825209491 ], [ -78.042013464963247, 25.14930713653327 ], [ -78.042058088864053, 25.14917199783169 ], [ -78.042085014306778, 25.149136641875288 ] ], [ [ -78.040804113930648, 25.149184573035786 ], [ -78.040263524462162, 25.149204798509231 ], [ -78.040169232134886, 25.149878762577583 ], [ -78.040187235093498, 25.149859095674653 ], [ -78.040318423909952, 25.149783902513139 ], [ -78.040468720230407, 25.149749288486053 ], [ -78.040623412136995, 25.149758641808155 ], [ -78.040652203856908, 25.149769123809087 ], [ -78.040804113930648, 25.149184573035786 ] ], [ [ -78.040507330722136, 25.154151062015792 ], [ -78.040649130608273, 25.154261819832151 ], [ -78.040678024942977, 25.154141018039134 ], [ -78.040756203239894, 25.154019160984955 ], [ -78.041170790566198, 25.153557833926268 ], [ -78.040736581527398, 25.153363216592975 ], [ -78.040565194557146, 25.154022700251854 ], [ -78.040507330722136, 25.154151062015792 ] ], [ [ -78.040970623885343, 25.152462630651925 ], [ -78.041814935673301, 25.152841060676522 ], [ -78.042048374019544, 25.15258129931031 ], [ -78.041056753662076, 25.152131203914248 ], [ -78.040970623885343, 25.152462630651925 ] ], [ [ -78.041291064663383, 25.151229569612013 ], [ -78.042691768181371, 25.15186534755334 ], [ -78.042878597913926, 25.151657446500202 ], [ -78.041361913727826, 25.150956938620663 ], [ -78.041291064663383, 25.151229569612013 ] ], [ [ -78.044311483570311, 25.151487692687883 ], [ -78.041523340998097, 25.154590272050033 ], [ -78.041407616627637, 25.154684177391161 ], [ -78.041265673437763, 25.154740938447937 ], [ -78.041262864739082, 25.154741194445101 ], [ -78.041757884962436, 25.155127839265393 ], [ -78.041769434182527, 25.15507434896525 ], [ -78.041844877316606, 25.154951071818342 ], [ -78.044627962071331, 25.151722509455038 ], [ -78.044311483570311, 25.151487692687883 ] ], [ [ -78.042417783685821, 25.155643258727775 ], [ -78.042576392158395, 25.155767140054468 ], [ -78.046837415603434, 25.150892931133075 ], [ -78.046610267896284, 25.150884150519325 ], [ -78.042624607849902, 25.15550788178313 ], [ -78.042511002349627, 25.155603907154429 ], [ -78.042417783685821, 25.155643258727775 ] ], [ [ -78.041958875311778, 25.156473481850863 ], [ -78.039052569428407, 25.154203432026673 ], [ -78.035199116533448, 25.156779696373373 ], [ -78.034615514992595, 25.160377270303638 ], [ -78.034577807946889, 25.160495204462769 ], [ -78.034506539236759, 25.160599506848968 ], [ -78.034406994233962, 25.160682442151849 ], [ -78.032447110399318, 25.161915033475559 ], [ -78.032991857859955, 25.1636107574653 ], [ -78.033030795847395, 25.163610189805912 ], [ -78.033179006937445, 25.163651640390302 ], [ -78.034980980014993, 25.164454402268305 ], [ -78.038820344021914, 25.160063312687043 ], [ -78.036310187631315, 25.158466184867198 ], [ -78.036198578859597, 25.158368235611896 ], [ -78.036125689419947, 25.158243690671174 ], [ -78.036098654162743, 25.158104741439612 ], [ -78.036120119342371, 25.157964989274866 ], [ -78.036187983638811, 25.157838114087191 ], [ -78.036295603910091, 25.157736535256547 ], [ -78.036432445511934, 25.157670195955291 ], [ -78.036585113510753, 25.157645589868423 ], [ -78.036738663844062, 25.157665125572414 ], [ -78.036878066094047, 25.157726890781785 ], [ -78.039438660280751, 25.159356107033854 ], [ -78.041958875311778, 25.156473481850863 ] ], [ [ -78.059244430575632, 25.145558378275602 ], [ -78.059244904456094, 25.145558032266113 ], [ -78.059316841778283, 25.14553324304088 ], [ -78.059388712895796, 25.145508295235668 ], [ -78.059389319637987, 25.145508267505186 ], [ -78.05938988779242, 25.145508071721622 ], [ -78.059466719984485, 25.145504729987206 ], [ -78.059543543061054, 25.14550121881279 ], [ -78.059544129521541, 25.145501363101399 ], [ -78.059544736335525, 25.1455013367082 ], [ -78.060831472623903, 25.145629895806628 ], [ -78.060339436350915, 25.144374468432126 ], [ -78.056082907475812, 25.145218083347249 ], [ -78.05608393264788, 25.145226622773826 ], [ -78.056052326580442, 25.14536476811514 ], [ -78.055975368007012, 25.145487262055635 ], [ -78.055860590073465, 25.145582113980613 ], [ -78.055719228042605, 25.145640039049788 ], [ -78.055565119508785, 25.145655367089997 ], [ -78.055413349841885, 25.145626597655653 ], [ -78.055278775467883, 25.145556546914335 ], [ -78.055085998422854, 25.145415644911182 ], [ -78.054983672074442, 25.145435922936247 ], [ -78.055444906191582, 25.147544840184779 ], [ -78.059243862943319, 25.145558575310851 ], [ -78.059244430575632, 25.145558378275602 ] ], [ [ -78.054538132091267, 25.148018919436801 ], [ -78.054015204194897, 25.145627840574242 ], [ -78.051902004716979, 25.14604658175119 ], [ -78.051747232018897, 25.146054658089177 ], [ -78.05168015809484, 25.146038619676805 ], [ -78.05114613319806, 25.147274712646777 ], [ -78.054433476951388, 25.148073634624904 ], [ -78.054538132091267, 25.148018919436801 ] ], [ [ -78.050182440845674, 25.147040490578703 ], [ -78.051776822323163, 25.143350022521084 ], [ -78.049351818439462, 25.142616819718235 ], [ -78.049747440755169, 25.146934762907687 ], [ -78.050182440845674, 25.147040490578703 ] ], [ [ -78.034169249096593, 25.165097106549172 ], [ -78.033352462072855, 25.164733236771593 ], [ -78.033479123789377, 25.165127499970048 ], [ -78.033498526093084, 25.165274564669861 ], [ -78.033464532899757, 25.165419418901383 ], [ -78.033365538403885, 25.165648055105542 ], [ -78.034169249096593, 25.165097106549172 ] ], [ [ -78.028256709841116, 25.170279266092798 ], [ -78.027956760988033, 25.171154005171807 ], [ -78.028968623961106, 25.171562241254453 ], [ -78.030423495399845, 25.169982181644251 ], [ -78.031155120344735, 25.168292563957412 ], [ -78.028256709841116, 25.170279266092798 ] ], [ [ -78.022022196063944, 25.144196788979034 ], [ -78.022887093481671, 25.145019991970745 ], [ -78.022940111859597, 25.144926137994013 ], [ -78.023050138479519, 25.144826726032388 ], [ -78.023188529335926, 25.14476312763399 ], [ -78.023331904681427, 25.144742951911311 ], [ -78.022281339466716, 25.143671839852956 ], [ -78.022022196063944, 25.144196788979034 ] ], [ [ -78.024966039225532, 25.146998646286846 ], [ -78.025038657413816, 25.146955845646371 ], [ -78.025086375029929, 25.146915551944151 ], [ -78.024393662015385, 25.146453891397012 ], [ -78.024966039225532, 25.146998646286846 ] ], [ [ -78.026694133078053, 25.147987019377972 ], [ -78.026285728752484, 25.147714847773784 ], [ -78.026640212465409, 25.148074139670911 ], [ -78.026699979401428, 25.148158149841677 ], [ -78.026694133078053, 25.147987019377972 ] ], [ [ -78.055363381969102, 25.144437510600717 ], [ -78.055317599732902, 25.144428070321386 ], [ -78.05533752586993, 25.144442634586255 ], [ -78.055363381969102, 25.144437510600717 ] ], [ [ -78.054092369640841, 25.144689385423572 ], [ -78.05270206918243, 25.143673164831995 ], [ -78.05209178842334, 25.145085814206961 ], [ -78.054092369640841, 25.144689385423572 ] ], [ [ -78.052140009232559, 25.142509335404775 ], [ -78.05219712762036, 25.142377119602287 ], [ -78.049247602016763, 25.14147928701593 ], [ -78.049262255875988, 25.14163923744281 ], [ -78.052140009232559, 25.142509335404775 ] ], [ [ -78.052560270459651, 25.141536522036301 ], [ -78.054635636425871, 25.136732289633326 ], [ -78.050852650917747, 25.136022602711506 ], [ -78.050707591888042, 25.1359728491407 ], [ -78.050586522368064, 25.135884725604335 ], [ -78.050501293537252, 25.135766858314934 ], [ -78.050460248139274, 25.135630785015948 ], [ -78.050467403854398, 25.135489825559585 ], [ -78.050522060070392, 25.13535777804789 ], [ -78.050618866524829, 25.13524756817521 ], [ -78.050748347076109, 25.135169983984984 ], [ -78.050897827313875, 25.135132619886367 ], [ -78.051052675200239, 25.135139133288043 ], [ -78.052783820815762, 25.135463910138771 ], [ -78.052608497687388, 25.13403011393542 ], [ -78.051985669003898, 25.133816952902308 ], [ -78.051850893638985, 25.133747243014771 ], [ -78.051746378545062, 25.133643032005018 ], [ -78.051682354389612, 25.133514520845662 ], [ -78.051665088210001, 25.13337428916833 ], [ -78.051696269987687, 25.133236063857218 ], [ -78.051772847279381, 25.133113375354363 ], [ -78.051887324070037, 25.133018233211214 ], [ -78.052028494571886, 25.132959950530733 ], [ -78.052182540125671, 25.132944232363808 ], [ -78.052334381831784, 25.132972617283556 ], [ -78.052485516688662, 25.133024343069408 ], [ -78.052197871967479, 25.130671813492164 ], [ -78.049258284271502, 25.130698159966009 ], [ -78.049111197673668, 25.130679201209837 ], [ -78.048976897022385, 25.130621399716848 ], [ -78.04886745675158, 25.130529952185039 ], [ -78.048792716142145, 25.130413080289209 ], [ -78.048759394709691, 25.130281291487471 ], [ -78.048446389586374, 25.126526301225844 ], [ -78.048448881561342, 25.126498472953571 ], [ -78.048445530251016, 25.126470719554739 ], [ -78.048455141550832, 25.126428566656166 ], [ -78.048458983986123, 25.126385657555716 ], [ -78.048470799998952, 25.126359892340801 ], [ -78.048477033304295, 25.126332554495349 ], [ -78.048500482515578, 25.126295168565694 ], [ -78.048518701891552, 25.126255440541239 ], [ -78.048538685281414, 25.126234260456609 ], [ -78.048553893013903, 25.126210014177953 ], [ -78.048588884730975, 25.126181054798426 ], [ -78.048619697573685, 25.126148396690567 ], [ -78.048645892215262, 25.126133874978184 ], [ -78.048668585720435, 25.126115093648366 ], [ -78.048711694704409, 25.126097395543653 ], [ -78.048752084831037, 25.126075004132879 ], [ -78.048781926618162, 25.126068562265306 ], [ -78.048809884501424, 25.126057084316464 ], [ -78.048856890968779, 25.126052379880523 ], [ -78.048902904735272, 25.126042446972377 ], [ -78.048933472570553, 25.126044715514659 ], [ -78.0489639581413, 25.126041664476052 ], [ -78.04901026081636, 25.12605041420121 ], [ -78.049057394118918, 25.126053912085101 ], [ -78.049085695841683, 25.126064668974685 ], [ -78.049115724991339, 25.126070343498277 ], [ -78.053023955133668, 25.12741658883084 ], [ -78.054909658267718, 25.121545256019505 ], [ -78.052916689038895, 25.120871624082582 ], [ -78.051505205680996, 25.124253574127955 ], [ -78.051428162760772, 25.124376018075029 ], [ -78.051313328845637, 25.124470794940844 ], [ -78.051171944678515, 25.12452862723249 ], [ -78.051017850020713, 25.124543853858629 ], [ -78.05086612888374, 25.124514984300916 ], [ -78.050731632942842, 25.124444844527797 ], [ -78.050627527693024, 25.124340300363304 ], [ -78.050564003682226, 25.12421158539161 ], [ -78.050547278989313, 25.124071299194618 ], [ -78.050578990590992, 25.123933173992825 ], [ -78.051987818695522, 25.120557649897162 ], [ -78.050411141456209, 25.120024688169529 ], [ -78.049179371721976, 25.122949164359522 ], [ -78.049101919601313, 25.123071394032117 ], [ -78.048986769693059, 25.123165851756315 ], [ -78.048845193672705, 25.12322329127899 ], [ -78.048691050082297, 25.12323808995599 ], [ -78.048539427723497, 25.123208799160039 ], [ -78.048409103187566, 25.123140352546208 ], [ -78.048350023811821, 25.123118743859173 ], [ -78.048231093874406, 25.123028251285536 ], [ -78.048148700845601, 25.122908729214288 ], [ -78.048110909874396, 25.122771877369733 ], [ -78.047472187841208, 25.116271019017663 ], [ -78.047494421307732, 25.116091582952645 ], [ -78.048267150842932, 25.113924253226909 ], [ -78.046698410809711, 25.113643864319496 ], [ -78.047324638688991, 25.120483757319498 ], [ -78.04733232943525, 25.120487222969157 ], [ -78.047443194437591, 25.120585836197822 ], [ -78.047515161907143, 25.120710813090756 ], [ -78.047541187089095, 25.120849920106497 ], [ -78.047518722311793, 25.120989540519084 ], [ -78.047449966426143, 25.12111600730351 ], [ -78.047387831803377, 25.121173906704907 ], [ -78.048086698362241, 25.128805574424579 ], [ -78.048162504295973, 25.128892098215857 ], [ -78.048216979702005, 25.129024207009515 ], [ -78.04822394508848, 25.129165174698674 ], [ -78.048182718476909, 25.129301202405138 ], [ -78.048137768574648, 25.129363203575078 ], [ -78.048383369877399, 25.132044777192863 ], [ -78.048391211136916, 25.132053551000535 ], [ -78.048447092237481, 25.132185172752905 ], [ -78.04845555867756, 25.132326072269695 ], [ -78.048420229340522, 25.132447207068523 ], [ -78.048672669741634, 25.135203223420127 ], [ -78.04870352945413, 25.135229020261441 ], [ -78.048779717325687, 25.135351910527071 ], [ -78.048810459552087, 25.135490217787243 ], [ -78.048792746728907, 25.135630403605461 ], [ -78.048728312550978, 25.135758745615426 ], [ -78.048723951647901, 25.135763068539394 ], [ -78.048742210667271, 25.135962400432369 ], [ -78.050206743681684, 25.135850008258117 ], [ -78.050361345293283, 25.135860295633965 ], [ -78.05050488803785, 25.135913568678522 ], [ -78.050623321077452, 25.136004612694489 ], [ -78.050705051404094, 25.136124515727584 ], [ -78.050742078627621, 25.136261540904556 ], [ -78.050730778131239, 25.136402275293033 ], [ -78.050672255925406, 25.136532942834926 ], [ -78.050572240445362, 25.136640752841323 ], [ -78.050440521860025, 25.13671515204933 ], [ -78.050289993758582, 25.136748857675027 ], [ -78.04882455392891, 25.136861320446378 ], [ -78.049157964471675, 25.140500856626357 ], [ -78.052560270459651, 25.141536522036301 ] ], [ [ -78.055003653569244, 25.13588033577054 ], [ -78.055391470230518, 25.134982534374799 ], [ -78.053649070307927, 25.134386238653445 ], [ -78.053803908764735, 25.135652417119619 ], [ -78.053803764874218, 25.135655249340562 ], [ -78.055003653569244, 25.13588033577054 ] ], [ [ -78.055754125217632, 25.134142971526188 ], [ -78.057567061083418, 25.129945781304993 ], [ -78.05538766236053, 25.129195170566959 ], [ -78.053689654303625, 25.133436450885721 ], [ -78.055754125217632, 25.134142971526188 ] ], [ [ -78.053322843199297, 25.131718416882595 ], [ -78.054460842947975, 25.128875950004623 ], [ -78.053674559158225, 25.128605127471648 ], [ -78.053144107350107, 25.130256676866129 ], [ -78.053322843199297, 25.131718416882595 ] ], [ [ -78.052745044754857, 25.128284964318055 ], [ -78.049493316902797, 25.127164873649534 ], [ -78.04971232937325, 25.129792011288423 ], [ -78.052268352853261, 25.129769099629335 ], [ -78.052745044754857, 25.128284964318055 ] ], [ [ -78.053953463222783, 25.127736750813831 ], [ -78.054800162424655, 25.128028383127319 ], [ -78.057099262140696, 25.122285310378665 ], [ -78.055840862769259, 25.121859994872953 ], [ -78.053953463222783, 25.127736750813831 ] ], [ [ -78.055726975818772, 25.128347602113696 ], [ -78.057024133067515, 25.128794364291235 ], [ -78.059428527606386, 25.123072521311283 ], [ -78.05802814523804, 25.122599246456481 ], [ -78.055726975818772, 25.128347602113696 ] ], [ [ -78.058826403230057, 25.127030077103417 ], [ -78.060394640436456, 25.123399019714078 ], [ -78.060357450285267, 25.123386451434801 ], [ -78.058826403230057, 25.127030077103417 ] ], [ [ -78.049482256701097, 25.119710688320499 ], [ -78.048781603036844, 25.119473834522609 ], [ -78.048933011638582, 25.121014701148152 ], [ -78.049482256701097, 25.119710688320499 ] ], [ [ -78.073396134617781, 25.095753524452149 ], [ -78.07129253079178, 25.100626270671828 ], [ -78.077887257277283, 25.103082963643857 ], [ -78.077383833446746, 25.100400520564683 ], [ -78.077367940205676, 25.100392431026275 ], [ -78.077262658693215, 25.100288888812084 ], [ -78.077197668905796, 25.100160789944717 ], [ -78.077179332405635, 25.100020673698292 ], [ -78.077209443945733, 25.099882255658859 ], [ -78.077268514153573, 25.099786031296343 ], [ -78.076740744506949, 25.096973658177337 ], [ -78.075436588803498, 25.096497906695703 ], [ -78.076503625908899, 25.098051503871876 ], [ -78.07656423119262, 25.098181372381276 ], [ -78.076577798153295, 25.098321938208343 ], [ -78.07654299860782, 25.098459441817969 ], [ -78.076463238827174, 25.098580423381051 ], [ -78.076346326164597, 25.098673040323078 ], [ -78.076203704851665, 25.098728226579315 ], [ -78.076049335755172, 25.098740580072338 ], [ -78.075898329752263, 25.098708891528734 ], [ -78.075765468513652, 25.098636262861707 ], [ -78.075663757512885, 25.098529803527406 ], [ -78.073877647631107, 25.095929189673061 ], [ -78.073396134617781, 25.095753524452149 ] ], [ [ -78.070930066062218, 25.101465840375727 ], [ -78.067099582527419, 25.110337657288177 ], [ -78.075020514788918, 25.112833752133799 ], [ -78.078443919021723, 25.104268407220971 ], [ -78.07833164962689, 25.104223075300304 ], [ -78.070930066062218, 25.101465840375727 ] ], [ [ -78.075956869882162, 25.113128786415238 ], [ -78.078207365241468, 25.113837859495526 ], [ -78.08045775428134, 25.112162452104521 ], [ -78.080589084266535, 25.112092215432241 ], [ -78.080737643584143, 25.112061628100609 ], [ -78.080889387080418, 25.112073581893682 ], [ -78.080913763918403, 25.112079028774193 ], [ -78.081987041662174, 25.109538550616652 ], [ -78.082005339742679, 25.109467918335223 ], [ -78.082036816671916, 25.109420729425963 ], [ -78.083372734577054, 25.106258433034764 ], [ -78.079351639422228, 25.104634920280194 ], [ -78.075956869882162, 25.113128786415238 ] ], [ [ -78.081883676253355, 25.112295747011032 ], [ -78.084864714863983, 25.1129617877071 ], [ -78.088375830079059, 25.110319530297904 ], [ -78.088810763933878, 25.108453779109897 ], [ -78.086596415781656, 25.107559876227889 ], [ -78.085670389306273, 25.109227401804912 ], [ -78.085588807892975, 25.109333232541665 ], [ -78.085477600739821, 25.109413639183057 ], [ -78.085345907730471, 25.109462013229496 ], [ -78.082845889364961, 25.110018120313701 ], [ -78.081883676253355, 25.112295747011032 ] ], [ [ -78.085689607516755, 25.107193795915435 ], [ -78.084279500130648, 25.106624516714469 ], [ -78.083278838991831, 25.108993272293624 ], [ -78.084889223412205, 25.108635055070007 ], [ -78.085689607516755, 25.107193795915435 ] ], [ [ -78.089604051976607, 25.109395199336369 ], [ -78.090141296765339, 25.108990874372022 ], [ -78.089736401389729, 25.108827432375975 ], [ -78.089604051976607, 25.109395199336369 ] ], [ [ -78.077819539752355, 25.097367187031104 ], [ -78.078267915474683, 25.099756369894948 ], [ -78.080013378755453, 25.100341260265637 ], [ -78.080771577234842, 25.098443992328587 ], [ -78.077819539752355, 25.097367187031104 ] ], [ [ -78.078460408763917, 25.100782037768713 ], [ -78.07890037964259, 25.10312626204594 ], [ -78.07967462880886, 25.101188909438179 ], [ -78.078460408763917, 25.100782037768713 ] ], [ [ -78.079691189908772, 25.103785290713482 ], [ -78.081263117822871, 25.104419975144697 ], [ -78.082228006189851, 25.102044475088064 ], [ -78.080604304698639, 25.101500424652034 ], [ -78.079691189908772, 25.103785290713482 ] ], [ [ -78.082571634412787, 25.101198461697344 ], [ -78.083313787965679, 25.099371241695263 ], [ -78.081691613951762, 25.098779574677163 ], [ -78.080943048591976, 25.10065277390995 ], [ -78.082571634412787, 25.101198461697344 ] ], [ [ -78.082170531183579, 25.104786342954593 ], [ -78.08372882833288, 25.105415486008503 ], [ -78.08588578618847, 25.100309294827994 ], [ -78.084233694757103, 25.099706754976928 ], [ -78.083498553359902, 25.101516745477284 ], [ -78.083589466682568, 25.101563014148013 ], [ -78.08369475423531, 25.101666551234445 ], [ -78.083759751457151, 25.101794646505866 ], [ -78.083778095876283, 25.101934761169129 ], [ -78.08374799166171, 25.102073179856376 ], [ -78.083672385469526, 25.102196353168793 ], [ -78.083558678062673, 25.102292223991203 ], [ -78.083417999909983, 25.102351407746841 ], [ -78.083264121660136, 25.102368111052858 ], [ -78.083160357795492, 25.102349399844051 ], [ -78.082170531183579, 25.104786342954593 ] ], [ [ -78.084635588179083, 25.105781568032604 ], [ -78.086092077820425, 25.10636957308089 ], [ -78.088223809663816, 25.101161960035167 ], [ -78.086805463902081, 25.100644702633719 ], [ -78.084635588179083, 25.105781568032604 ] ], [ [ -78.086999372774869, 25.106735850105341 ], [ -78.089020989291285, 25.10755195222012 ], [ -78.089752140501815, 25.104415372531331 ], [ -78.089807633741188, 25.104283623646104 ], [ -78.08990512338228, 25.10417393725206 ], [ -78.090035066410096, 25.104097050150685 ], [ -78.090184743145372, 25.104060488515398 ], [ -78.090339502316411, 25.104067831204716 ], [ -78.090484195178021, 25.104118359457352 ], [ -78.090604658314845, 25.104207127252554 ], [ -78.090689100005392, 25.104325445447046 ], [ -78.090729254459035, 25.104461732303324 ], [ -78.090721190948031, 25.104602647163439 ], [ -78.089946620114759, 25.107925604796659 ], [ -78.090837353538021, 25.108285162283536 ], [ -78.093016143175603, 25.102909541180484 ], [ -78.089143680120571, 25.101497418197262 ], [ -78.086999372774869, 25.106735850105341 ] ], [ [ -78.065799784042071, 25.110882547695848 ], [ -78.059485838068056, 25.108892417148745 ], [ -78.058304650420723, 25.11025967454156 ], [ -78.065033522433367, 25.112657093573453 ], [ -78.065799784042071, 25.110882547695848 ] ], [ [ -78.058495170532638, 25.10858013135563 ], [ -78.055658748389931, 25.107685965670008 ], [ -78.054201152848293, 25.112057876316399 ], [ -78.054397794011734, 25.112074804478773 ], [ -78.054568727945224, 25.112118629763824 ], [ -78.055196648037054, 25.112398120116612 ], [ -78.058495170532638, 25.10858013135563 ] ], [ [ -78.056107064010362, 25.112803343480962 ], [ -78.063541568776131, 25.11611209502496 ], [ -78.064671021035224, 25.11349657525113 ], [ -78.05766478010419, 25.111000326739497 ], [ -78.056107064010362, 25.112803343480962 ] ], [ [ -78.054721890178413, 25.107390611223259 ], [ -78.051949628991252, 25.106516582067329 ], [ -78.050100064145937, 25.111704766442493 ], [ -78.053194673947317, 25.111971227797735 ], [ -78.054721890178413, 25.107390611223259 ] ], [ [ -78.04978666299408, 25.112583844490523 ], [ -78.049554488938568, 25.113235076506285 ], [ -78.05288054449403, 25.113829474073523 ], [ -78.053005355471058, 25.113868047074046 ], [ -78.062632352359628, 25.118217529886774 ], [ -78.063177885549834, 25.116954269324076 ], [ -78.054214684334852, 25.112965102405997 ], [ -78.04978666299408, 25.112583844490523 ] ], [ [ -78.058900031545562, 25.129324688940159 ], [ -78.062320292841036, 25.130520079517641 ], [ -78.064561435694955, 25.12481874385 ], [ -78.062855966836977, 25.124236774980449 ], [ -78.06193192152935, 25.126573738570997 ], [ -78.061857255224652, 25.12669739616134 ], [ -78.061744268849111, 25.126793996280792 ], [ -78.061604022289885, 25.126854082963984 ], [ -78.061450243946609, 25.126871774442751 ], [ -78.061297986865853, 25.126845338919413 ], [ -78.061162155186452, 25.126777364099585 ], [ -78.061056045159361, 25.126674503884807 ], [ -78.060990043579778, 25.126546827022189 ], [ -78.06097061105298, 25.126406831477603 ], [ -78.060999649619163, 25.126268221022812 ], [ -78.061928107635183, 25.123920144237452 ], [ -78.061323354323221, 25.123713768798684 ], [ -78.058900031545562, 25.129324688940159 ] ], [ [ -78.063245579297799, 25.130843451383573 ], [ -78.064812870228309, 25.131391175148607 ], [ -78.067084468244389, 25.125679647722244 ], [ -78.065489331126784, 25.125135365024803 ], [ -78.063245579297799, 25.130843451383573 ] ], [ [ -78.065738095401727, 25.131714504656927 ], [ -78.067448313413067, 25.132312137570079 ], [ -78.069854365585527, 25.126624720483171 ], [ -78.068012329636815, 25.125996236269405 ], [ -78.065738095401727, 25.131714504656927 ] ], [ [ -78.068373381904323, 25.132635390187396 ], [ -78.070146760998426, 25.133255051693897 ], [ -78.071034642350085, 25.131297931412188 ], [ -78.069182916829575, 25.130721833523321 ], [ -78.068373381904323, 25.132635390187396 ] ], [ [ -78.069539279542965, 25.129879455466366 ], [ -78.071369117485801, 25.130448744365371 ], [ -78.072382154663927, 25.127487127219911 ], [ -78.070782219178767, 25.126941283300148 ], [ -78.069539279542965, 25.129879455466366 ] ], [ [ -78.062263721576215, 25.123071354110181 ], [ -78.063610092690837, 25.119666183953807 ], [ -78.063159295834026, 25.119462542265335 ], [ -78.06168594761867, 25.122874185277027 ], [ -78.062263721576215, 25.123071354110181 ] ], [ [ -78.062268477767603, 25.119060120345694 ], [ -78.062190130762346, 25.119024727137852 ], [ -78.060711470549336, 25.122543916254948 ], [ -78.060757260072961, 25.122559390676681 ], [ -78.062268477767603, 25.119060120345694 ] ], [ [ -78.061298569008613, 25.118621960144502 ], [ -78.059877230617829, 25.117979846859029 ], [ -78.05836740747452, 25.121751722678443 ], [ -78.059782553847128, 25.122229987808478 ], [ -78.061298569008613, 25.118621960144502 ] ], [ [ -78.058984213157473, 25.117576400451991 ], [ -78.057440470873871, 25.116878950490996 ], [ -78.056119612282714, 25.120992017442589 ], [ -78.057438530419489, 25.121437788177936 ], [ -78.058984213157473, 25.117576400451991 ] ], [ [ -78.056563879206507, 25.116482902457204 ], [ -78.05503627980724, 25.115792706853057 ], [ -78.053268613322601, 25.120028377691888 ], [ -78.055188414111441, 25.120677279759697 ], [ -78.056493005869697, 25.116614965824564 ], [ -78.056559236064373, 25.11648738876632 ], [ -78.056563879206507, 25.116482902457204 ] ], [ [ -78.054152932030831, 25.115393583949388 ], [ -78.052648000341776, 25.114713591919678 ], [ -78.050765898202044, 25.119182398284931 ], [ -78.052339748963007, 25.119714405170249 ], [ -78.054123385438672, 25.115440547008923 ], [ -78.054152932030831, 25.115393583949388 ] ], [ [ -78.051663699152783, 25.114531273001475 ], [ -78.049246388225598, 25.114099268053284 ], [ -78.048468029411012, 25.116282438361385 ], [ -78.048683808415817, 25.118478557970558 ], [ -78.049837019417353, 25.118868400119254 ], [ -78.051663699152783, 25.114531273001475 ] ], [ [ -78.048575258388169, 25.113060063095094 ], [ -78.048873577027209, 25.112223318946413 ], [ -78.048859507767745, 25.112190959152073 ], [ -78.048849785940163, 25.112050126605563 ], [ -78.048868847589091, 25.111982549766193 ], [ -78.048316174293461, 25.111554826713764 ], [ -78.048338041586589, 25.113017665346241 ], [ -78.048575258388169, 25.113060063095094 ] ], [ [ -78.048298534962356, 25.110374700622103 ], [ -78.048378049766754, 25.11041883155832 ], [ -78.049270631032726, 25.111109619552135 ], [ -78.051013306421282, 25.106221366406739 ], [ -78.050688163470696, 25.106118849435276 ], [ -78.050556310333292, 25.106129681874911 ], [ -78.050405211730705, 25.106098312651337 ], [ -78.050272154709475, 25.106025964216293 ], [ -78.050219453455469, 25.105971064422171 ], [ -78.04822332445454, 25.105341660465641 ], [ -78.048298534962356, 25.110374700622103 ] ], [ [ -78.047227870052396, 25.105027768586297 ], [ -78.046954781434792, 25.104941655357315 ], [ -78.046865568976003, 25.104931568746256 ], [ -78.046725203254951, 25.104871757968034 ], [ -78.046720546990386, 25.104867793527909 ], [ -78.045870550844754, 25.104599757777084 ], [ -78.046470523992511, 25.111154490711083 ], [ -78.046587731694288, 25.11120885630794 ], [ -78.046697329058446, 25.111308629779035 ], [ -78.046767699716966, 25.111434355865295 ], [ -78.046791955218822, 25.111573727688313 ], [ -78.046767721119522, 25.111713102599445 ], [ -78.04669736946434, 25.111838837603429 ], [ -78.04658778665609, 25.111938624832778 ], [ -78.046544158141359, 25.111958868177474 ], [ -78.04661285639331, 25.112709310498118 ], [ -78.047344559140384, 25.11284009573053 ], [ -78.047227870052396, 25.105027768586297 ] ], [ [ -77.966670501115388, 25.071216790201088 ], [ -77.977807201353386, 25.065278952329948 ], [ -77.977802815351652, 25.065211121518644 ], [ -77.977841946300188, 25.065074577852297 ], [ -77.977925486735344, 25.064955731029389 ], [ -77.978045259055861, 25.064866214546115 ], [ -77.97818953912784, 25.064814790826443 ], [ -77.978344203918795, 25.064806493522958 ], [ -77.978494113917904, 25.064842134810558 ], [ -77.97853887522146, 25.064868237738999 ], [ -77.97854097589402, 25.064806593057678 ], [ -77.978593401016923, 25.064673798657477 ], [ -77.978688312791505, 25.06456225946479 ], [ -77.981259613851904, 25.062361164572483 ], [ -77.978147988097959, 25.063803340449734 ], [ -77.978000267597039, 25.063846923742652 ], [ -77.977844990911521, 25.063846695507799 ], [ -77.977697425579947, 25.063802678171516 ], [ -77.977572080910448, 25.063719199711802 ], [ -77.977481281318603, 25.063604468103726 ], [ -77.977433954520677, 25.063469764256311 ], [ -77.977154347032354, 25.061810296830707 ], [ -77.977155724023973, 25.061665729124105 ], [ -77.977207245225998, 25.061528984511533 ], [ -77.97730361732566, 25.061414111778063 ], [ -77.97743493921854, 25.061332912608112 ], [ -77.977587719249343, 25.061293729136182 ], [ -77.977746261294115, 25.061300586926503 ], [ -77.979049721588396, 25.061551666153161 ], [ -77.979499170030991, 25.060733211122859 ], [ -77.975147710425929, 25.059681857413164 ], [ -77.970058948960428, 25.063197391527023 ], [ -77.970044973134193, 25.063237824771146 ], [ -77.969605078093863, 25.064042302037336 ], [ -77.969515160691657, 25.064157223934231 ], [ -77.969390655055321, 25.064241212370689 ], [ -77.969243748695135, 25.064286045900587 ], [ -77.969150336072275, 25.064286823691628 ], [ -77.969008412955432, 25.065774477874406 ], [ -77.969721277749798, 25.067019353060214 ], [ -77.969770556865512, 25.067153144435363 ], [ -77.969771108563464, 25.067205908453882 ], [ -77.969778253155525, 25.067235653076633 ], [ -77.969772018716867, 25.067292954284987 ], [ -77.969772032344949, 25.067294257651607 ], [ -77.969771805373227, 25.067294915142366 ], [ -77.969762974011715, 25.067376084822737 ], [ -77.969700797809963, 25.067505342893284 ], [ -77.969597810670109, 25.067610774565008 ], [ -77.969464093656455, 25.067682059381863 ], [ -77.965702885424506, 25.069020438732771 ], [ -77.966685843453519, 25.070789682778621 ], [ -77.966733313273977, 25.070924016466403 ], [ -77.966732882596745, 25.071065135794626 ], [ -77.966684593419799, 25.071199227034423 ], [ -77.966670501115388, 25.071216790201088 ] ], [ [ -77.979954259970725, 25.059904471638319 ], [ -77.980749141692542, 25.058456928900874 ], [ -77.980754719178506, 25.058449825657465 ], [ -77.980757962298, 25.058441607366714 ], [ -77.980799662618026, 25.058392587614222 ], [ -77.980839268462233, 25.058342147253111 ], [ -77.980846982722241, 25.058336961610166 ], [ -77.980852855146679, 25.058330058419404 ], [ -77.980883227483503, 25.058311236466352 ], [ -77.980446545086266, 25.058210066062347 ], [ -77.979954259970725, 25.059904471638319 ] ], [ [ -77.979486714686544, 25.057987687701054 ], [ -77.978350937862899, 25.057724535884578 ], [ -77.978208617971845, 25.057668781782848 ], [ -77.978140377852313, 25.057614228391987 ], [ -77.976148554841174, 25.058990389356758 ], [ -77.978995533180196, 25.059678248028586 ], [ -77.979486714686544, 25.057987687701054 ] ], [ [ -77.979929943698536, 25.061965286534249 ], [ -77.98000457172536, 25.061930697535665 ], [ -77.980038719695443, 25.061767201448941 ], [ -77.979929943698536, 25.061965286534249 ] ], [ [ -77.981659729563461, 25.058528057451245 ], [ -77.981669841409399, 25.058493475108587 ], [ -77.981646883524476, 25.058488156413155 ], [ -77.981658974009576, 25.058525991813735 ], [ -77.981659729563461, 25.058528057451245 ] ], [ [ -77.981759044948603, 25.063171594074561 ], [ -77.981874367549466, 25.063110094648696 ], [ -77.981861227992198, 25.063084120379944 ], [ -77.981759044948603, 25.063171594074561 ] ], [ [ -77.982733150917809, 25.06265211669665 ], [ -77.982979708101468, 25.062520629489782 ], [ -77.983023583416966, 25.062457565240091 ], [ -77.983142893927649, 25.062367542060926 ], [ -77.983286906066965, 25.062315507154928 ], [ -77.983373770842562, 25.062310477237215 ], [ -77.985022777468316, 25.061431049577322 ], [ -77.986056398741596, 25.060525020611319 ], [ -77.985959633976606, 25.060413943989456 ], [ -77.985816994139697, 25.060505506970053 ], [ -77.985810363551749, 25.060564480745452 ], [ -77.985770664336954, 25.06070088710258 ], [ -77.985686631482025, 25.060819442928242 ], [ -77.985566490627932, 25.060908543092992 ], [ -77.985422002015028, 25.060959465778815 ], [ -77.985267309302571, 25.060967226259319 ], [ -77.985144067322949, 25.060937466836137 ], [ -77.984877340700137, 25.061108680281222 ], [ -77.984881225720159, 25.061118506363027 ], [ -77.98488610783302, 25.061259554396962 ], [ -77.98484289949279, 25.061395073230049 ], [ -77.984755830089526, 25.061511797308768 ], [ -77.984633422509276, 25.061598300805876 ], [ -77.984487658882884, 25.06164611608337 ], [ -77.984332807682264, 25.061650562591733 ], [ -77.984184026979975, 25.061611205056558 ], [ -77.98413843111895, 25.06158298609737 ], [ -77.983126010081975, 25.062232847496574 ], [ -77.982982424386549, 25.062296347516522 ], [ -77.982824120254008, 25.062314943173526 ], [ -77.982667545319075, 25.062286702382103 ], [ -77.982528967560171, 25.062214559316811 ], [ -77.982493418959621, 25.062178218229946 ], [ -77.982733150917809, 25.06265211669665 ] ], [ [ -77.982533708498664, 25.059044120317605 ], [ -77.981938221492584, 25.061080694884655 ], [ -77.982353840461002, 25.061902299491798 ], [ -77.982347222063609, 25.06182741341037 ], [ -77.982568994702831, 25.059355643207038 ], [ -77.982605613734179, 25.059218523519341 ], [ -77.982619404304799, 25.059198162471358 ], [ -77.98255148603819, 25.059085651700471 ], [ -77.982533708498664, 25.059044120317605 ] ], [ [ -77.983452907531742, 25.060578890210113 ], [ -77.983420488955133, 25.060940244320751 ], [ -77.983601073662911, 25.060824328525932 ], [ -77.983452907531742, 25.060578890210113 ] ], [ [ -77.984415640086212, 25.06030146005638 ], [ -77.984877749419809, 25.060004829279798 ], [ -77.985284844593465, 25.056384236227444 ], [ -77.985194108572642, 25.056368228314671 ], [ -77.984195014351769, 25.05993599467897 ], [ -77.984415640086212, 25.06030146005638 ] ], [ [ -77.985720412618875, 25.054838330153757 ], [ -77.982938889866844, 25.054195774766914 ], [ -77.98294083111486, 25.054269129850923 ], [ -77.982896523086254, 25.054404353400312 ], [ -77.981281261095845, 25.057472637119368 ], [ -77.981924741607472, 25.057621715334754 ], [ -77.9827383166663, 25.054839215741591 ], [ -77.982795288919334, 25.054718612083775 ], [ -77.982887976915819, 25.054618063827899 ], [ -77.983008526803317, 25.054546090766692 ], [ -77.983146723956978, 25.054508791401762 ], [ -77.983290858491529, 25.054509326212898 ], [ -77.98570865181857, 25.054842475225126 ], [ -77.985720412618875, 25.054838330153757 ] ], [ [ -77.986583810431839, 25.054107127396428 ], [ -77.986772751521684, 25.053419586716181 ], [ -77.983430389670318, 25.052675573174813 ], [ -77.986281598873049, 25.054037318159811 ], [ -77.986583810431839, 25.054107127396428 ] ], [ [ -77.981025180501263, 25.055199677571959 ], [ -77.982201909680171, 25.052402090414276 ], [ -77.980369153172589, 25.051994062629031 ], [ -77.980577802673324, 25.052358690756762 ], [ -77.980622646474785, 25.052471672469938 ], [ -77.980633157894999, 25.052591430037069 ], [ -77.980608591091993, 25.052709467130743 ], [ -77.979857280008304, 25.054768160242364 ], [ -77.979826579939868, 25.05483420536369 ], [ -77.978664740635722, 25.056866421958322 ], [ -77.979740097010193, 25.057115575093945 ], [ -77.980231231081888, 25.05542511899711 ], [ -77.980293806204728, 25.055296024233211 ], [ -77.980397112640944, 25.055190861823654 ], [ -77.980531038003107, 25.055119925728295 ], [ -77.98068247280851, 25.055090159596894 ], [ -77.980836593701866, 25.055104477102894 ], [ -77.980978314415765, 25.055161476749092 ], [ -77.981025180501263, 25.055199677571959 ] ], [ [ -77.98677325610754, 25.059896642234676 ], [ -77.987450803433362, 25.059302713472274 ], [ -77.987456011624133, 25.059265681195537 ], [ -77.987522220222289, 25.059138099123427 ], [ -77.987628470501633, 25.059035397549103 ], [ -77.987764361918934, 25.058967629547634 ], [ -77.987849842700058, 25.05895291720158 ], [ -77.988707640533022, 25.05820096521332 ], [ -77.988483713542706, 25.058045931822978 ], [ -77.986253784541546, 25.059300338377597 ], [ -77.98677325610754, 25.059896642234676 ] ], [ [ -77.987638817503694, 25.057460970373779 ], [ -77.986835806514577, 25.056904997719442 ], [ -77.986508242026062, 25.058096955857252 ], [ -77.987638817503694, 25.057460970373779 ] ], [ [ -77.989429828048898, 25.057567879932758 ], [ -77.98994584958912, 25.057115518456921 ], [ -77.989945534013756, 25.057105355099846 ], [ -77.989989222670943, 25.056969964996142 ], [ -77.990076703300048, 25.056853498925175 ], [ -77.990199412614714, 25.056767357336074 ], [ -77.990345338997244, 25.056719972294783 ], [ -77.990398621868522, 25.056718599403098 ], [ -77.991252692926665, 25.055969875028193 ], [ -77.990765249033686, 25.055436230717433 ], [ -77.990720499794122, 25.055553030009744 ], [ -77.990626751897778, 25.055665376602583 ], [ -77.9904994796252, 25.055745835771479 ], [ -77.990351141313838, 25.055786531540157 ], [ -77.990196257475091, 25.055783480271408 ], [ -77.990049989378292, 25.05573698063305 ], [ -77.989459594541358, 25.055448143685815 ], [ -77.990236333241143, 25.056042367519641 ], [ -77.9903380028085, 25.056149032775224 ], [ -77.990398465566187, 25.056279113422129 ], [ -77.990411790973141, 25.056419850665627 ], [ -77.990376671862663, 25.056557440432222 ], [ -77.990296552714042, 25.05667838732094 ], [ -77.990179291861182, 25.056770828295953 ], [ -77.990036390748259, 25.05682569628474 ], [ -77.989881865817111, 25.05683760954263 ], [ -77.989730873677345, 25.056805399540576 ], [ -77.989406416669013, 25.05668485049009 ], [ -77.989329813426068, 25.056769405425616 ], [ -77.988978796510153, 25.057051981882761 ], [ -77.988998051659422, 25.057062646574526 ], [ -77.989099073391174, 25.057169634800111 ], [ -77.98915885569707, 25.057299822440768 ], [ -77.989166599119642, 25.057385637071853 ], [ -77.989429828048898, 25.057567879932758 ] ], [ [ -77.990148830580907, 25.054761377848926 ], [ -77.989472006708667, 25.054020380901406 ], [ -77.988451285527603, 25.053793197690393 ], [ -77.988509652999639, 25.053885315681761 ], [ -77.988529162104641, 25.053968976900862 ], [ -77.990148830580907, 25.054761377848926 ] ], [ [ -77.987943586707857, 25.056141337118476 ], [ -77.987846387697459, 25.056471591071887 ], [ -77.988038799266931, 25.05660480854873 ], [ -77.988402649916679, 25.05631190385926 ], [ -77.987943586707857, 25.056141337118476 ] ], [ [ -77.965253630022147, 25.068211794383078 ], [ -77.966412194538094, 25.067799548502609 ], [ -77.966084112057516, 25.067161359050399 ], [ -77.964890350787826, 25.067557894387921 ], [ -77.965253630022147, 25.068211794383078 ] ], [ [ -77.964440005073584, 25.066747263186652 ], [ -77.965662483638681, 25.066341190922667 ], [ -77.965173281772039, 25.065389559157484 ], [ -77.964573061399079, 25.065654821165545 ], [ -77.964510684055242, 25.065779685527055 ], [ -77.964406078185192, 25.065883786287667 ], [ -77.964271273716037, 25.065953349306294 ], [ -77.964119466316717, 25.065981565201056 ], [ -77.964008250477519, 25.065970083714937 ], [ -77.964440005073584, 25.066747263186652 ] ], [ [ -77.966064427811702, 25.064995718819553 ], [ -77.966596587163437, 25.066030900225805 ], [ -77.96780781408691, 25.065628543867742 ], [ -77.967186897973889, 25.064544187419109 ], [ -77.96717278634074, 25.064505871249978 ], [ -77.966064427811702, 25.064995718819553 ] ], [ [ -77.968604316751566, 25.067019505967089 ], [ -77.968269785561048, 25.066435306615535 ], [ -77.967018220228866, 25.066851065250852 ], [ -77.967336705238438, 25.067470576548903 ], [ -77.968604316751566, 25.067019505967089 ] ], [ [ -78.041595259386042, 25.050280129780568 ], [ -78.052888848370415, 25.054162964976317 ], [ -78.05705720556297, 25.04086220762121 ], [ -78.041331544712151, 25.041915045008796 ], [ -78.042537564851429, 25.047507482150664 ], [ -78.042545864288783, 25.047622904513542 ], [ -78.042521664931272, 25.047736454102527 ], [ -78.041595259386042, 25.050280129780568 ] ], [ [ -78.041029792543384, 25.048754149211852 ], [ -78.041056122290243, 25.048895832351445 ], [ -78.041112465784451, 25.048741130920266 ], [ -78.041029792543384, 25.048754149211852 ] ], [ [ -77.998653431254496, 25.119918035932002 ], [ -77.996910067607473, 25.123745311576513 ], [ -77.999517932580957, 25.137392040604439 ], [ -78.000442493121426, 25.138785981511628 ], [ -78.001137410961817, 25.13795985990868 ], [ -78.001249751555775, 25.137862618458456 ], [ -78.001389604361705, 25.137801737028962 ], [ -78.0015432797004, 25.137783175053485 ], [ -78.00169573490939, 25.137808749474498 ], [ -78.001832046766026, 25.137875956901283 ], [ -78.001938872217153, 25.137978218654741 ], [ -78.00200575445146, 25.138105524714451 ], [ -78.002026146481995, 25.138245413541529 ], [ -78.001998052044385, 25.138384191875911 ], [ -78.001996334110984, 25.138387079104991 ], [ -78.003105956441559, 25.137056803327305 ], [ -78.002695260380818, 25.136727014049026 ], [ -78.002602594770124, 25.136627422889557 ], [ -78.002545133732596, 25.136507849121454 ], [ -78.002527688524125, 25.136378304956672 ], [ -78.002551719747885, 25.136249637424598 ], [ -78.002615215094579, 25.136132620119259 ], [ -78.005038974445114, 25.132934908578779 ], [ -78.005145885548345, 25.132832725249919 ], [ -78.005282250779274, 25.132765617788145 ], [ -78.005434721833055, 25.132740155071172 ], [ -78.00558837392451, 25.132758829527788 ], [ -78.005728166675169, 25.132819813176646 ], [ -78.005840416309582, 25.13291713656 ], [ -78.005914135075471, 25.133041273058033 ], [ -78.005942106792347, 25.133180071393618 ], [ -78.005921593249738, 25.133319945057945 ], [ -78.005854602297376, 25.133447202237654 ], [ -78.003680640462605, 25.136315387587707 ], [ -78.005708116033034, 25.137943404566329 ], [ -78.006366795868431, 25.136921377722597 ], [ -78.005440361062483, 25.135891896855721 ], [ -78.005360749918125, 25.135766917238549 ], [ -78.00532863200992, 25.135625435620124 ], [ -78.005347302438665, 25.135481967856421 ], [ -78.005414845474348, 25.135351233531452 ], [ -78.005524331175778, 25.135246645750112 ], [ -78.008384061014056, 25.133273162217723 ], [ -78.008520720711161, 25.133206552904053 ], [ -78.008582308667329, 25.133196499808509 ], [ -78.007853529553216, 25.132369441603249 ], [ -78.007776644563535, 25.132246907515402 ], [ -78.007745117620217, 25.132108742322366 ], [ -78.007762034659763, 25.131968470638089 ], [ -78.007825739564638, 25.13183982323125 ], [ -78.007929996336685, 25.131735392962348 ], [ -78.008064599565202, 25.131665402123613 ], [ -78.008216373415635, 25.131636701836598 ], [ -78.008370461346402, 25.131652101443166 ], [ -78.008511780317079, 25.131710093523633 ], [ -78.008626497160392, 25.131805001453124 ], [ -78.008824681694733, 25.132029912254009 ], [ -78.008830677122816, 25.132014277213749 ], [ -78.008924490911511, 25.131901939282368 ], [ -78.009051846611698, 25.13182149008388 ], [ -78.009200277800872, 25.131780804473856 ], [ -78.009355255124589, 25.131783864991252 ], [ -78.009501608483205, 25.131830372039612 ], [ -78.009597420820612, 25.131896678853085 ], [ -78.01005480258469, 25.131088825953785 ], [ -78.005356481646871, 25.122450429136073 ], [ -78.00107515458825, 25.120833004997813 ], [ -78.000980238129785, 25.120907303760461 ], [ -77.999155043681185, 25.12193312625039 ], [ -77.999012035739199, 25.12198755710077 ], [ -77.998857551741239, 25.121999091106741 ], [ -77.998706713812652, 25.121966599213167 ], [ -77.998574287171124, 25.121893261971938 ], [ -77.998473234747024, 25.121786258200149 ], [ -77.998413448247732, 25.121656062245751 ], [ -77.998400779891483, 25.121515418657356 ], [ -77.998436469590033, 25.121378094635606 ], [ -77.998517023636737, 25.12125753239356 ], [ -77.998634556752208, 25.121165533346524 ], [ -77.999969477791481, 25.120415268000894 ], [ -77.998653431254496, 25.119918035932002 ] ], [ [ -78.011234725237813, 25.132407466192696 ], [ -78.01037283442318, 25.132496108373129 ], [ -78.010315119065751, 25.132598048713454 ], [ -78.010248825928869, 25.132680303831826 ], [ -78.010190509610581, 25.132770798291343 ], [ -78.010153074968798, 25.132868424064018 ], [ -78.010059261752673, 25.132980762726525 ], [ -78.010052418535352, 25.132985085553507 ], [ -78.007557906382374, 25.136855887767556 ], [ -78.007558844226921, 25.136857347296221 ], [ -78.007591933022667, 25.136995209700711 ], [ -78.007591339888592, 25.137000642571529 ], [ -78.010611283216647, 25.140257135860143 ], [ -78.015543850859117, 25.136801908326802 ], [ -78.011234725237813, 25.132407466192696 ] ], [ [ -78.016205524412726, 25.137476640270528 ], [ -78.014026166455238, 25.13900331531503 ], [ -78.014360407414514, 25.139341739694913 ], [ -78.015529278652807, 25.138326591361434 ], [ -78.015523342193845, 25.138299511201957 ], [ -78.015541468437121, 25.138159365583348 ], [ -78.01560628300544, 25.138031177969051 ], [ -78.015711441280715, 25.137927496210985 ], [ -78.015846649609244, 25.137858469331569 ], [ -78.015998672927381, 25.13783085409365 ], [ -78.01608893656406, 25.137840527623961 ], [ -78.01634461193423, 25.137618471313608 ], [ -78.016205524412726, 25.137476640270528 ] ], [ [ -78.017004902314369, 25.138291779260076 ], [ -78.016807350948184, 25.138463355385621 ], [ -78.017653024963508, 25.139438588371146 ], [ -78.017661721030052, 25.139372402805268 ], [ -78.01772679506972, 25.139244324162085 ], [ -78.01783216356074, 25.139140818845323 ], [ -78.017835323892569, 25.139138556677612 ], [ -78.017004902314369, 25.138291779260076 ] ], [ [ -77.997908494160228, 25.116908304684905 ], [ -77.995501200928516, 25.117887277816809 ], [ -77.995490119901689, 25.117902339713034 ], [ -77.995558840873414, 25.117867245845257 ], [ -77.995710840084016, 25.117839622643402 ], [ -77.995864775656457, 25.117856114896799 ], [ -77.996005579463713, 25.117915108231095 ], [ -77.997328169251858, 25.118718502475268 ], [ -77.997442060287938, 25.11881422106531 ], [ -77.997517888671752, 25.118937296787376 ], [ -77.997548231723243, 25.119075682201238 ], [ -77.997530119111573, 25.119215831219595 ], [ -77.99746532366602, 25.119344025077769 ], [ -77.997360187899829, 25.119447715222815 ], [ -77.997225003205372, 25.119516751670499 ], [ -77.997073002472021, 25.119544376583352 ], [ -77.996919064732097, 25.119527885801229 ], [ -77.996778258643531, 25.119468893559073 ], [ -77.995455663269126, 25.118665494882425 ], [ -77.99534177376465, 25.118569774605383 ], [ -77.99526594770947, 25.11844669753992 ], [ -77.995235607416618, 25.118308311395669 ], [ -77.995245019976352, 25.118235490957229 ], [ -77.994640447708548, 25.119057245082519 ], [ -77.994755150379348, 25.11901668750912 ], [ -77.994909904233211, 25.119008748714656 ], [ -77.995059778513507, 25.119044736529407 ], [ -77.997527717143683, 25.12003452606405 ], [ -77.997794720649551, 25.11944835684378 ], [ -77.997763986698274, 25.119380674371477 ], [ -77.997751930818396, 25.119239986078828 ], [ -77.997788217290051, 25.119102791786375 ], [ -77.997869293990746, 25.118982521007855 ], [ -77.997987224481193, 25.118890946627698 ], [ -77.998061326412255, 25.118863055501535 ], [ -77.998754489902012, 25.117341272403952 ], [ -77.997908494160228, 25.116908304684905 ] ], [ [ -77.994368101985259, 25.119427422135914 ], [ -77.992890569769145, 25.121435665962036 ], [ -77.995581472486109, 25.122405322910502 ], [ -77.995579597375482, 25.122360514856194 ], [ -77.995621849055865, 25.122224742720594 ], [ -77.9957081174812, 25.122107502422779 ], [ -77.995829958021091, 25.122020270199172 ], [ -77.995975444096516, 25.121971584874352 ], [ -77.996130334628219, 25.121966212049376 ], [ -77.99627946801003, 25.122004677633598 ], [ -77.99657383088956, 25.122128607745669 ], [ -77.997148065723565, 25.120867989012392 ], [ -77.994660330073629, 25.119870260578473 ], [ -77.994530005388398, 25.11979386845287 ], [ -77.994431988503607, 25.119684550028076 ], [ -77.994375873978711, 25.119553006226457 ], [ -77.994368101985259, 25.119427422135914 ] ], [ [ -77.999136734230333, 25.116502071255862 ], [ -77.999225849032626, 25.116306421933398 ], [ -77.998945843455658, 25.11640437680412 ], [ -77.999136734230333, 25.116502071255862 ] ], [ [ -78.006441968822514, 25.138587434213004 ], [ -78.006482078692457, 25.138679721580427 ], [ -78.00649177236275, 25.138820559976939 ], [ -78.006453180575619, 25.138957232008437 ], [ -78.006370080815941, 25.139076359242544 ], [ -78.006250607384288, 25.139166280616845 ], [ -78.00610645518671, 25.139218193927345 ], [ -78.006032742629543, 25.139222397705691 ], [ -78.005206482832008, 25.1405044175008 ], [ -78.005207071154786, 25.140505031001346 ], [ -78.00526793840848, 25.140634813797153 ], [ -78.00528176813431, 25.140775365806462 ], [ -78.005247206427626, 25.140912928846653 ], [ -78.005167636277747, 25.141034037270995 ], [ -78.005050846475228, 25.141126836086794 ], [ -78.004957652650276, 25.14116305111002 ], [ -78.005805600119643, 25.141877717910948 ], [ -78.005895171662459, 25.141978640844098 ], [ -78.005949475907187, 25.142098597890019 ], [ -78.005964019332282, 25.142227663169596 ], [ -78.005937598412004, 25.142355157111677 ], [ -78.005872399241881, 25.142470530134005 ], [ -78.005773816688105, 25.142564235578707 ], [ -78.005679646337299, 25.142631135327761 ], [ -78.005908078693665, 25.142829743043944 ], [ -78.00665283292534, 25.1424935932613 ], [ -78.006813066006586, 25.142449949753644 ], [ -78.006980122825112, 25.142457317423233 ], [ -78.007134970113142, 25.142514856831554 ], [ -78.007259965640969, 25.142616012327363 ], [ -78.007283731784668, 25.142643068583652 ], [ -78.009829351929227, 25.140812404191131 ], [ -78.006984848455275, 25.137745080590051 ], [ -78.006441968822514, 25.138587434213004 ] ], [ [ -78.005197250501524, 25.138736065944258 ], [ -78.004948993628958, 25.138536725416621 ], [ -78.004480183772017, 25.139160574670154 ], [ -78.004588747052381, 25.139171778898813 ], [ -78.004729848126416, 25.139230227269252 ], [ -78.004826735134898, 25.139310952519942 ], [ -78.005197250501524, 25.138736065944258 ] ], [ [ -78.00767152447564, 25.134896869253375 ], [ -78.00653298446413, 25.135682565825256 ], [ -78.006901362541342, 25.136091915157774 ], [ -78.00767152447564, 25.134896869253375 ] ], [ [ -78.007902617624808, 25.143347625072742 ], [ -78.008701000820906, 25.144256509103744 ], [ -78.010544258925606, 25.142655840937802 ], [ -78.009908800388502, 25.14190489401361 ], [ -78.007902617624808, 25.143347625072742 ] ], [ [ -78.004584090705919, 25.143427320567596 ], [ -78.00457452059284, 25.143416220526973 ], [ -78.004514998893811, 25.143458504458106 ], [ -78.004584090705919, 25.143427320567596 ] ], [ [ -78.004799844310497, 25.144336815538363 ], [ -78.004854510170077, 25.144389938867814 ], [ -78.005145065354142, 25.144181003069868 ], [ -78.004799844310497, 25.144336815538363 ] ], [ [ -78.005534398947475, 25.145050636970268 ], [ -78.006597166667618, 25.146083384696432 ], [ -78.007981198136306, 25.14488156252315 ], [ -78.007124984399113, 25.143906838511526 ], [ -78.005534398947475, 25.145050636970268 ] ], [ [ -78.004165753409524, 25.142562334123447 ], [ -78.003982701301467, 25.142403177244184 ], [ -78.003723828223627, 25.142804824068595 ], [ -78.003625427875178, 25.142913868905485 ], [ -78.00349482426239, 25.142989898279232 ], [ -78.003429724744962, 25.143005333931633 ], [ -78.003482510534639, 25.143056631969234 ], [ -78.00351624230187, 25.143023740694947 ], [ -78.004165753409524, 25.142562334123447 ] ], [ [ -78.002937760050884, 25.138750147421732 ], [ -78.003351469134387, 25.13906483541486 ], [ -78.004200185833071, 25.137935455252826 ], [ -78.003851114283492, 25.137655157751411 ], [ -78.002937760050884, 25.138750147421732 ] ], [ [ -78.010591463319329, 25.14386158371175 ], [ -78.010617234528198, 25.143883741114632 ], [ -78.010853394522414, 25.144162540265775 ], [ -78.011593695542203, 25.143643078351491 ], [ -78.011488637693333, 25.14363066940556 ], [ -78.01134858751945, 25.143570154992592 ], [ -78.011235935951987, 25.143473208765034 ], [ -78.011152385085225, 25.143374475941489 ], [ -78.010591463319329, 25.14386158371175 ] ], [ [ -78.014967177374075, 25.140061538298475 ], [ -78.014976947744216, 25.140094830518031 ], [ -78.014968959108899, 25.140231609705161 ], [ -78.016299356734706, 25.139333456235228 ], [ -78.0160872079163, 25.139088803765894 ], [ -78.014967177374075, 25.140061538298475 ] ], [ [ -78.012110207898004, 25.143280642182571 ], [ -78.01228737302408, 25.143156324741273 ], [ -78.012188919639016, 25.143143079159184 ], [ -78.012107535296337, 25.143106293275668 ], [ -78.012123795172883, 25.143185328023975 ], [ -78.012110207898004, 25.143280642182571 ] ], [ [ -78.01076861276141, 25.141442726754519 ], [ -78.010759582807552, 25.14139714093832 ], [ -78.01077603101163, 25.141281213786872 ], [ -78.010686453178309, 25.14134563535654 ], [ -78.01076861276141, 25.141442726754519 ] ], [ [ -78.193560036128417, 25.135563803347548 ], [ -78.193055012446379, 25.134930987166634 ], [ -78.192789105616569, 25.135426203356971 ], [ -78.193470400881793, 25.135753145004273 ], [ -78.193560036128417, 25.135563803347548 ] ], [ [ -78.188945302793059, 25.130515367912089 ], [ -78.189897064353559, 25.133997524836435 ], [ -78.189901149666198, 25.134040267030976 ], [ -78.191912226628233, 25.13500539696636 ], [ -78.19217514585668, 25.134515751652078 ], [ -78.192264156626777, 25.134400243727359 ], [ -78.192388021265046, 25.134315428045742 ], [ -78.192528680933293, 25.134271461732435 ], [ -78.189395714093138, 25.130345460066955 ], [ -78.188945302793059, 25.130515367912089 ] ], [ [ -78.185952105970102, 25.123214406855571 ], [ -78.184826831792179, 25.122630968169936 ], [ -78.18768267668375, 25.132975554476602 ], [ -78.188734734971149, 25.133480475973659 ], [ -78.185964483724277, 25.123343977553169 ], [ -78.185952105970102, 25.123214406855571 ] ], [ [ -78.183348549570582, 25.12186447725054 ], [ -78.180826693208516, 25.120556832851058 ], [ -78.175249777103389, 25.122096142411884 ], [ -78.175842219991665, 25.124142753401287 ], [ -78.175865290231698, 25.124033015542786 ], [ -78.175940037026407, 25.123909413423668 ], [ -78.176053079850803, 25.123812889055394 ], [ -78.176193353278748, 25.123752890842951 ], [ -78.176554135173149, 25.123657681982614 ], [ -78.176659983292879, 25.123620451175547 ], [ -78.176703389349441, 25.123618294126103 ], [ -78.183348549570582, 25.12186447725054 ] ], [ [ -78.179640538596445, 25.119941756784993 ], [ -78.17770745001647, 25.118939325521215 ], [ -78.174595226255192, 25.119834877571851 ], [ -78.174996191038588, 25.121220095745095 ], [ -78.175001178973204, 25.121222267486932 ], [ -78.179640538596445, 25.119941756784993 ] ], [ [ -78.175930671095841, 25.124448302896155 ], [ -78.176901067767403, 25.127800359010905 ], [ -78.177170170078526, 25.127929544318643 ], [ -78.176391098411713, 25.124628117277322 ], [ -78.176315406762527, 25.124636780091777 ], [ -78.176163184978307, 25.124610257265079 ], [ -78.176027416335401, 25.124542208552032 ], [ -78.175930671095841, 25.124448302896155 ] ], [ [ -78.177347620607577, 25.124387361657924 ], [ -78.178313008418399, 25.12847816660495 ], [ -78.180353462107959, 25.129457655430453 ], [ -78.178824113372457, 25.123997703694585 ], [ -78.177347620607577, 25.124387361657924 ] ], [ [ -78.179776162554717, 25.123746441607192 ], [ -78.181534786042292, 25.13002471104199 ], [ -78.182728348982579, 25.130597625933859 ], [ -78.182818748887172, 25.130631181817691 ], [ -78.182852800827305, 25.130657362401671 ], [ -78.183386436020996, 25.13091350356471 ], [ -78.181398080895235, 25.123318373543711 ], [ -78.179776162554717, 25.123746441607192 ] ], [ [ -78.182350722736601, 25.12306693620998 ], [ -78.184551364266909, 25.131472650054636 ], [ -78.185096484440294, 25.131734293667861 ], [ -78.185139712812429, 25.131744500007269 ], [ -78.18524422919279, 25.131805206770419 ], [ -78.186505020027766, 25.132410339199666 ], [ -78.183818704934026, 25.122679467896081 ], [ -78.182350722736601, 25.12306693620998 ] ], [ [ -78.035884571929444, 25.026797949859574 ], [ -78.033443609292064, 25.027484592903328 ], [ -78.032032517178578, 25.02998266191533 ], [ -78.036242559754697, 25.028682204374284 ], [ -78.035884571929444, 25.026797949859574 ] ], [ [ -78.036413496748096, 25.029581897317986 ], [ -78.035325273162869, 25.029918056622581 ], [ -78.035757955610293, 25.031066179411003 ], [ -78.036655857673253, 25.030857485991771 ], [ -78.036413496748096, 25.029581897317986 ] ], [ [ -78.036825260328442, 25.031749061444547 ], [ -78.036080544373604, 25.03192215143207 ], [ -78.036216616031297, 25.032283205888778 ], [ -78.03694060049321, 25.032356093225502 ], [ -78.036825260328442, 25.031749061444547 ] ], [ [ -78.023382860296749, 24.96340172750924 ], [ -78.023663415763991, 24.963355251797807 ], [ -78.024105337139417, 24.962373210798884 ], [ -78.023428467228058, 24.962434028390092 ], [ -78.023382860296749, 24.96340172750924 ] ], [ [ -78.025817835384842, 24.958567544999315 ], [ -78.025409436099721, 24.958416986014154 ], [ -78.025750917159598, 24.958716260785376 ], [ -78.025817835384842, 24.958567544999315 ] ], [ [ -78.025347101692759, 24.959613673321442 ], [ -78.024643772746799, 24.958997273423378 ], [ -78.023546919055605, 24.96151693964153 ], [ -78.024530422563458, 24.961428568857812 ], [ -78.025347101692759, 24.959613673321442 ] ], [ [ -78.02383748499922, 24.956162014221967 ], [ -78.023772140752754, 24.956982023402386 ], [ -78.02432700069879, 24.957468321356327 ], [ -78.024356841125211, 24.957444376258255 ], [ -78.024448035109316, 24.957408478105325 ], [ -78.024550064145359, 24.957327674628697 ], [ -78.024692570583881, 24.957272578068029 ], [ -78.024846778071307, 24.957260323999407 ], [ -78.024997591857741, 24.957292111909414 ], [ -78.026193378156307, 24.957732950863818 ], [ -78.026492165790998, 24.957068927259133 ], [ -78.026572591760484, 24.956948354822014 ], [ -78.026689951138565, 24.956856340712854 ], [ -78.026832755979186, 24.95680189184106 ], [ -78.02698702764927, 24.956790337980348 ], [ -78.027137665116712, 24.956822810076723 ], [ -78.027269923085768, 24.95689612955373 ], [ -78.027370855312455, 24.957003119446512 ], [ -78.027396318130712, 24.95705862145547 ], [ -78.027465452265972, 24.956206968799282 ], [ -78.02383748499922, 24.956162014221967 ] ], [ [ -78.023678934483797, 24.958151669332359 ], [ -78.023618801950732, 24.958906269308123 ], [ -78.023873181675597, 24.958321913102449 ], [ -78.023678934483797, 24.958151669332359 ] ], [ [ -78.166247851938621, 25.16217236514138 ], [ -78.168668649974578, 25.162935075314419 ], [ -78.171958386245436, 25.162503407982619 ], [ -78.167348617286549, 25.160892994134368 ], [ -78.166247851938621, 25.16217236514138 ] ], [ [ -78.046746880738183, 24.891365332848078 ], [ -78.045746212494777, 24.893627849550686 ], [ -78.049599177797731, 24.892678270842378 ], [ -78.047289581206641, 24.891396422155058 ], [ -78.046746880738183, 24.891365332848078 ] ], [ [ -78.002998730480172, 24.918098072580499 ], [ -78.002858261698094, 24.918032742313493 ], [ -78.002816319334144, 24.918010816706751 ], [ -78.00087111970079, 24.916875279205318 ], [ -78.000835847540898, 24.916852652434997 ], [ -78.000389810797088, 24.916539149185994 ], [ -78.00047257803358, 24.918465575745905 ], [ -78.002883065455279, 24.91840526963454 ], [ -78.002998730480172, 24.918098072580499 ] ], [ [ -78.065353469273177, 24.941829422492649 ], [ -78.065333342360262, 24.941849259265719 ], [ -78.065341729588212, 24.941850452193616 ], [ -78.065353469273177, 24.941829422492649 ] ], [ [ -78.044179649752763, 25.065052125436953 ], [ -78.044781535831163, 25.064618188943935 ], [ -78.044546037438508, 25.064260997292759 ], [ -78.044179649752763, 25.065052125436953 ] ], [ [ -77.997370344911218, 24.973763776881739 ], [ -77.997301094181793, 24.973797353668022 ], [ -77.999227372779416, 24.977221162320799 ], [ -77.999764601552144, 24.977155405329071 ], [ -77.999289843234493, 24.976425283089299 ], [ -77.999247890615038, 24.976408415173765 ], [ -77.999117758734684, 24.9763319648223 ], [ -77.999019914300249, 24.976222601928225 ], [ -77.998963934990698, 24.976091031766416 ], [ -77.99895530034452, 24.975950133400044 ], [ -77.998963189548618, 24.975922921767843 ], [ -77.998662248256977, 24.975460098882671 ], [ -77.998536894140202, 24.975379976404046 ], [ -77.998443806529977, 24.975267216735094 ], [ -77.998393502493698, 24.97513375570221 ], [ -77.998391855480619, 24.975044253247361 ], [ -77.997979437619776, 24.974409975712906 ], [ -77.997879929030944, 24.974315762719854 ], [ -77.997812273789663, 24.974188832520824 ], [ -77.997805113095211, 24.974141870980791 ], [ -77.997559495162392, 24.973764117030218 ], [ -77.997370344911218, 24.973763776881739 ] ], [ [ -77.999204411407121, 24.974524629253938 ], [ -77.999287603763506, 24.974652572729198 ], [ -78.000838052189806, 24.974852157503793 ], [ -78.000986074471228, 24.974893505815672 ], [ -78.001112834457814, 24.974974524157126 ], [ -78.001114441697936, 24.974976470981016 ], [ -78.001207296319393, 24.974559244356492 ], [ -77.999204411407121, 24.974524629253938 ] ], [ [ -77.999934110488454, 24.975646838830453 ], [ -77.999979479611994, 24.975716611463088 ], [ -78.000870032908921, 24.976074670449208 ], [ -78.000950541199671, 24.975712925036063 ], [ -78.00085446354953, 24.975743014815819 ], [ -78.000699667171631, 24.975745384087709 ], [ -77.999934110488454, 24.975646838830453 ] ], [ [ -77.996849453817461, 24.972994563689056 ], [ -77.997008875228218, 24.972917267068791 ], [ -77.995502989422477, 24.97060114714926 ], [ -77.996849453817461, 24.972994563689056 ] ], [ [ -77.998124019469003, 24.972863037858541 ], [ -77.998346277418975, 24.972863436546131 ], [ -77.998007450794276, 24.972382037569417 ], [ -77.998104398784093, 24.972832861641244 ], [ -77.998124019469003, 24.972863037858541 ] ], [ [ -77.997477459340161, 24.971629024945397 ], [ -77.997378695151767, 24.971488699297677 ], [ -77.997316511476399, 24.971359465327907 ], [ -77.997301182424195, 24.971219040543104 ], [ -77.997334208357145, 24.971081170728123 ], [ -77.997412356315806, 24.97095935152479 ], [ -77.997527976541491, 24.970865507390592 ], [ -77.997669751323187, 24.970808824370682 ], [ -77.99782380285302, 24.970794850931522 ], [ -77.997975051646321, 24.970824954862131 ], [ -77.998108692568451, 24.970896189396317 ], [ -77.998211644006787, 24.971001581656445 ], [ -77.999374292035824, 24.972653448410998 ], [ -77.99943647857306, 24.97278268123841 ], [ -77.999445510371515, 24.972865403465907 ], [ -77.999700971089723, 24.972865859411108 ], [ -78.000147875382154, 24.970434671193878 ], [ -77.998899210092191, 24.970691929944692 ], [ -77.998744726933552, 24.970701124303915 ], [ -77.998594687838363, 24.970666353259126 ], [ -77.998463779825883, 24.970591020463495 ], [ -77.998364817167356, 24.970482500073977 ], [ -77.998307487004269, 24.970351414895198 ], [ -77.998297401108374, 24.970210596517582 ], [ -77.99833554660222, 24.970073829248999 ], [ -77.998418189391856, 24.969954500801567 ], [ -77.998537239742319, 24.969864291817114 ], [ -77.998681044188899, 24.969812032506738 ], [ -78.000648591749368, 24.969406660951755 ], [ -78.000809158282806, 24.969398010393675 ], [ -78.000964285217236, 24.969436762747033 ], [ -78.0010975805192, 24.969518823093999 ], [ -78.00119495901555, 24.969635520221356 ], [ -78.001246130733378, 24.96977452287593 ], [ -78.001245688249114, 24.96992114276933 ], [ -78.000704084361104, 24.972867645512913 ], [ -78.001583412909852, 24.972869205635877 ], [ -78.002416736878743, 24.969124629475672 ], [ -77.997243966781767, 24.96931496583974 ], [ -77.996499058412198, 24.97036381560153 ], [ -77.997327740459824, 24.971638361418144 ], [ -77.997342252407861, 24.97163352315345 ], [ -77.997477459340161, 24.971629024945397 ] ], [ [ -78.00340604455927, 24.968361643533605 ], [ -78.003552962320882, 24.967697314820644 ], [ -77.996561604027619, 24.968191061070108 ], [ -77.995749098534162, 24.969372650349005 ], [ -77.995873291668161, 24.969375428161534 ], [ -77.996006306492504, 24.969397693849849 ], [ -77.996552542333703, 24.968628583318953 ], [ -77.996657693140264, 24.968522307064728 ], [ -77.996794074887049, 24.968451408700229 ], [ -77.99694795706867, 24.968423026024709 ], [ -78.003007106806535, 24.96820007107474 ], [ -78.003155004095802, 24.968215039501338 ], [ -78.003291331155609, 24.96826941470756 ], [ -78.003403758216038, 24.968358278855099 ], [ -78.00340604455927, 24.968361643533605 ] ], [ [ -77.995314048083458, 24.970265283853379 ], [ -77.995484437749596, 24.970568169682799 ], [ -77.995438564497647, 24.970468238338739 ], [ -77.99542233324847, 24.970344405073682 ], [ -77.995435727537895, 24.97026800569839 ], [ -77.995314048083458, 24.970265283853379 ] ], [ [ -78.030744818945649, 25.039365244518891 ], [ -78.030741099631541, 25.039295975903727 ], [ -78.030662031079217, 25.039362539061539 ], [ -78.030744818945649, 25.039365244518891 ] ], [ [ -78.035298212351378, 25.036843676131781 ], [ -78.035367633910553, 25.036739357035486 ], [ -78.035484933978211, 25.036647202097146 ], [ -78.035627750658804, 25.036592580894908 ], [ -78.035906176347567, 25.03653040448101 ], [ -78.034593299223559, 25.036506342070286 ], [ -78.035298212351378, 25.036843676131781 ] ], [ [ -78.03595591644806, 25.035629074747181 ], [ -78.035862027718395, 25.035458937672125 ], [ -78.035628341779784, 25.035623071890395 ], [ -78.03595591644806, 25.035629074747181 ] ], [ [ -77.978896605633736, 25.06244421798046 ], [ -77.978241884934633, 25.062318104585284 ], [ -77.978309022441167, 25.062716546310703 ], [ -77.978896605633736, 25.06244421798046 ] ], [ [ -78.004673703103279, 24.993076960752372 ], [ -78.003656562933202, 24.993339113238314 ], [ -78.003500279675123, 24.993620301441315 ], [ -78.003524555706136, 24.99364981238028 ], [ -78.003574606667684, 24.993783353919039 ], [ -78.00445068707775, 24.998377299834871 ], [ -78.005629294082837, 24.998110221949386 ], [ -78.004673703103279, 24.993076960752372 ] ], [ [ -78.002784455700606, 24.994908210819368 ], [ -78.001805496749455, 24.996669508303491 ], [ -78.002158936229165, 24.998896591942092 ], [ -78.003487618286158, 24.998595528122859 ], [ -78.002784455700606, 24.994908210819368 ] ], [ [ -77.997026506902742, 25.000988962202161 ], [ -77.995125041947404, 25.002755076985071 ], [ -77.99896051278867, 25.004986282185079 ], [ -77.99944586054329, 25.005005640935298 ], [ -77.998843724776094, 25.000577269357727 ], [ -77.997026506902742, 25.000988962202161 ] ], [ [ -78.000448774879374, 25.005045638456338 ], [ -78.002145418783542, 25.005113287249706 ], [ -78.001335896450058, 25.000012625228198 ], [ -77.999811354490888, 25.000358041745603 ], [ -78.000448774879374, 25.005045638456338 ] ], [ [ -78.088613293864427, 25.000556595749423 ], [ -78.08909304465314, 25.00718219286092 ], [ -78.089153041122714, 25.00719385645192 ], [ -78.089287085241679, 25.007264501039163 ], [ -78.089390612973403, 25.00736943450681 ], [ -78.089397724727618, 25.007384019532811 ], [ -78.090623490997416, 25.007161907321599 ], [ -78.090179733551778, 25.000192126715664 ], [ -78.088613293864427, 25.000556595749423 ] ], [ [ -78.091570054604489, 25.006456015846769 ], [ -78.094626554802588, 25.002785592761608 ], [ -78.092741931813933, 24.999662687906508 ], [ -78.092717769274145, 24.999601554311724 ], [ -78.091156720303658, 24.99996479853862 ], [ -78.091570054604489, 25.006456015846769 ] ], [ [ -78.095281506953881, 25.00199905442317 ], [ -78.096177771844964, 25.000922702004882 ], [ -78.094702318287801, 24.999139738703622 ], [ -78.093697109900361, 24.999373659950997 ], [ -78.095281506953881, 25.00199905442317 ] ], [ [ -78.010128152886466, 24.95478119898419 ], [ -78.008942566994719, 24.954699823346647 ], [ -78.008658474373902, 24.962779984111965 ], [ -78.009433233308258, 24.962759144083165 ], [ -78.010128152886466, 24.95478119898419 ] ], [ [ -78.007633012164177, 24.963786512702853 ], [ -78.007635703931641, 24.963709967246679 ], [ -78.006495616281214, 24.9637406195308 ], [ -78.006494260403031, 24.96380750456013 ], [ -78.007633012164177, 24.963786512702853 ] ], [ [ -78.007667470309244, 24.962806634978424 ], [ -78.007954949233252, 24.954632028384903 ], [ -78.006682059811553, 24.954544641101101 ], [ -78.006513921353644, 24.96283764881678 ], [ -78.007667470309244, 24.962806634978424 ] ], [ [ -78.005693773031325, 24.954476784891998 ], [ -78.005473508903577, 24.954461660546436 ], [ -78.005468652684982, 24.9545697891384 ], [ -78.005414837031267, 24.954702103666268 ], [ -78.005318805946857, 24.954812781284087 ], [ -78.005189959571084, 24.954890988029543 ], [ -78.004231199502613, 24.955292182866149 ], [ -78.003807946004329, 24.962910365447314 ], [ -78.005523651819971, 24.962864265657554 ], [ -78.005693773031325, 24.954476784891998 ] ], [ [ -78.003775216187947, 24.954490413082215 ], [ -77.999065157453373, 24.955321156548617 ], [ -77.997101259019274, 24.957616727587478 ], [ -78.00083205278807, 24.962990278649954 ], [ -78.002815633090819, 24.962937019155358 ], [ -78.003258137549864, 24.954973489595638 ], [ -78.003299282530563, 24.954814903404607 ], [ -78.003399556746558, 24.954679997331997 ], [ -78.00354587060238, 24.954586381503734 ], [ -78.003775216187947, 24.954490413082215 ] ], [ [ -78.001447210390495, 24.963876245472761 ], [ -78.001463796014562, 24.963900132310215 ], [ -78.002763445254246, 24.963876217697841 ], [ -78.002765410596183, 24.963840848415064 ], [ -78.001447210390495, 24.963876245472761 ] ], [ [ -78.003755299303904, 24.963857959130564 ], [ -78.005504152893579, 24.963825749211004 ], [ -78.005505339509853, 24.963767236924109 ], [ -78.003757730800018, 24.963814194365785 ], [ -78.003755299303904, 24.963857959130564 ] ], [ [ -77.991660454978629, 24.939524698060605 ], [ -77.990102081693365, 24.937953146416142 ], [ -77.989380384654282, 24.938545623713253 ], [ -77.9896637196413, 24.93957820036724 ], [ -77.990545602509187, 24.939731073586866 ], [ -77.991660454978629, 24.939524698060605 ] ], [ [ -77.989438556708677, 24.937283991924442 ], [ -77.988879507676018, 24.936720191245506 ], [ -77.989108543827768, 24.93755491564259 ], [ -77.989438556708677, 24.937283991924442 ] ], [ [ -77.98055100750156, 24.941764606319516 ], [ -77.979968122243775, 24.942688536465933 ], [ -77.98019999893495, 24.943025728021905 ], [ -77.98055100750156, 24.941764606319516 ] ], [ [ -77.973461779428675, 24.945338377750268 ], [ -77.974753793560865, 24.938546904053645 ], [ -77.973443079289055, 24.93783380553063 ], [ -77.972643694248475, 24.945452113175342 ], [ -77.973461779428675, 24.945338377750268 ] ], [ [ -77.972502854896064, 24.937322260471618 ], [ -77.972202277857178, 24.937158724169155 ], [ -77.970331836948304, 24.939366952100752 ], [ -77.970013731769953, 24.945817715907179 ], [ -77.971635013905953, 24.945592339967593 ], [ -77.972502854896064, 24.937322260471618 ] ], [ [ -77.969280205059576, 24.940608458902624 ], [ -77.967942449359086, 24.942187706657101 ], [ -77.967618003183048, 24.946150714999114 ], [ -77.969016443484492, 24.945956340825258 ], [ -77.969280205059576, 24.940608458902624 ] ], [ [ -77.96684411431022, 24.943484277252136 ], [ -77.965726048559873, 24.94480410614144 ], [ -77.965647346122921, 24.946124358790115 ], [ -77.966623299313511, 24.946181187800011 ], [ -77.96684411431022, 24.943484277252136 ] ], [ [ -77.914308368881677, 24.750713402602944 ], [ -77.914208922162487, 24.752973763135945 ], [ -77.91473832793038, 24.753320705448054 ], [ -77.914926932536119, 24.750590383268651 ], [ -77.914308368881677, 24.750713402602944 ] ], [ [ -78.027364893219769, 24.79393872248076 ], [ -78.02670598523045, 24.794459855171088 ], [ -78.026298433582554, 24.798909776211527 ], [ -78.027364893219769, 24.79393872248076 ] ], [ [ -78.018458908103497, 24.796054769750896 ], [ -78.020781489834107, 24.797951716954788 ], [ -78.021789449453564, 24.797154603305863 ], [ -78.021802037433034, 24.797115049449332 ], [ -78.021888929426069, 24.796998331886659 ], [ -78.0220110799428, 24.796911837603968 ], [ -78.022156532062823, 24.796864033192048 ], [ -78.022156886623918, 24.796864023015043 ], [ -78.0237514454505, 24.795602973597905 ], [ -78.023768050970958, 24.795545492100796 ], [ -78.018458908103497, 24.796054769750896 ] ], [ [ -77.983853835710036, 24.791497494534244 ], [ -77.981734409286886, 24.793197027997458 ], [ -77.982045200327576, 24.795976496815978 ], [ -77.983799283279936, 24.795875377509507 ], [ -77.983853835710036, 24.791497494534244 ] ], [ [ -77.978593677808746, 24.797079328001065 ], [ -77.977532231313674, 24.797140483906666 ], [ -77.977869412559301, 24.798914950463754 ], [ -77.978584331929355, 24.799088672828102 ], [ -77.978593677808746, 24.797079328001065 ] ], [ [ -77.976540075567613, 24.797197640749168 ], [ -77.970326607207042, 24.797555440680839 ], [ -77.968521059220137, 24.79899988318709 ], [ -77.96841402087756, 24.800154428999647 ], [ -77.977888758041146, 24.802716846980434 ], [ -77.978508900560172, 24.800003882137212 ], [ -77.977309491032116, 24.799712430855706 ], [ -77.977180481852159, 24.799662289563482 ], [ -77.977072095830039, 24.799581088796614 ], [ -77.976993060128365, 24.799475366804856 ], [ -77.976949738586256, 24.799353636264538 ], [ -77.976540075567613, 24.797197640749168 ] ], [ [ -77.968328922932017, 24.801072313329207 ], [ -77.968141220197097, 24.803096895191658 ], [ -77.975304903542479, 24.809441309781903 ], [ -77.979363784676849, 24.805666525678049 ], [ -77.977947597811536, 24.803673632564241 ], [ -77.968328922932017, 24.801072313329207 ] ], [ [ -78.029780889545734, 24.782740078448057 ], [ -78.02354345941292, 24.784212301880888 ], [ -78.030864139479988, 24.785447965250693 ], [ -78.029780889545734, 24.782740078448057 ] ], [ [ -78.069027436149753, 24.856988603751464 ], [ -78.068423901898996, 24.857758281465252 ], [ -78.069600837761683, 24.857935747481349 ], [ -78.070547548513133, 24.856998608351425 ], [ -78.069027436149753, 24.856988603751464 ] ], [ [ -78.056913567395995, 24.868246937511472 ], [ -78.057727665109311, 24.867629069015734 ], [ -78.055773195663605, 24.864928121040784 ], [ -78.054195883467983, 24.865096330868614 ], [ -78.056913567395995, 24.868246937511472 ] ], [ [ -78.058492434117895, 24.867048629984975 ], [ -78.063082863253612, 24.863564432885251 ], [ -78.062876751974926, 24.863218695941828 ], [ -78.062828035503117, 24.863260431026745 ], [ -78.062688083437081, 24.863320509602815 ], [ -78.062534632089239, 24.863338190773096 ], [ -78.062389396599144, 24.863312909023545 ], [ -78.059738113301904, 24.864480236300587 ], [ -78.059580665661613, 24.864522009915586 ], [ -78.056873080543738, 24.864810815622103 ], [ -78.058492434117895, 24.867048629984975 ] ], [ [ -78.0669510032739, 24.855384367969442 ], [ -78.06418573227424, 24.857843347782701 ], [ -78.064182901282962, 24.857864917765664 ], [ -78.064140715365014, 24.858000679983672 ], [ -78.06405461265291, 24.858117903468081 ], [ -78.063933021404708, 24.858205113507616 ], [ -78.063787843840089, 24.858253773303474 ], [ -78.06372159137878, 24.85825606514755 ], [ -78.063580236945242, 24.858381757729788 ], [ -78.063480577572534, 24.858450303279092 ], [ -78.063365278639793, 24.858493891685978 ], [ -78.062342793995626, 24.858748307354347 ], [ -78.063628568145504, 24.859949302775199 ], [ -78.066189842112777, 24.859056987000528 ], [ -78.068139576641073, 24.856570588605873 ], [ -78.0669510032739, 24.855384367969442 ] ], [ [ -78.06388998246328, 24.860823813082554 ], [ -78.063495089495731, 24.861824452241699 ], [ -78.064296240743118, 24.86147169170442 ], [ -78.065148007304487, 24.86038553947639 ], [ -78.06388998246328, 24.860823813082554 ] ], [ [ -78.061308406903706, 24.859005676613897 ], [ -78.056948230191693, 24.860090458232889 ], [ -78.056940544956319, 24.860195613058231 ], [ -78.056883069272132, 24.860326621478606 ], [ -78.056784034330931, 24.860435013282203 ], [ -78.056653134318111, 24.860510178256963 ], [ -78.056503182692268, 24.860544758660978 ], [ -78.056348857894307, 24.860535369476342 ], [ -78.056205266469306, 24.860482929776346 ], [ -78.056086464272013, 24.860392572762237 ], [ -78.056034811026194, 24.860317692478002 ], [ -78.051995388972642, 24.861322517470807 ], [ -78.05174084736133, 24.864449905608154 ], [ -78.052638915792642, 24.864354149622606 ], [ -78.05267343786366, 24.864285986288127 ], [ -78.052778528724687, 24.864182446625087 ], [ -78.052913545618253, 24.86411360258796 ], [ -78.053065272218731, 24.864086193042429 ], [ -78.053218856608908, 24.864102900984804 ], [ -78.053359265035922, 24.864162090927302 ], [ -78.053472753459488, 24.864257968990231 ], [ -78.05347849462639, 24.864264625084402 ], [ -78.055220542482829, 24.864078854689378 ], [ -78.055209987535122, 24.863993424256215 ], [ -78.055241006039282, 24.86385517723976 ], [ -78.055317331520698, 24.863732441525595 ], [ -78.055431492614332, 24.863637231287356 ], [ -78.055572314434542, 24.863578866294525 ], [ -78.055726012451814, 24.863563059655867 ], [ -78.055877541783516, 24.863591358604811 ], [ -78.05601206983448, 24.863660993057064 ], [ -78.056116428156955, 24.863765146760439 ], [ -78.056262981179444, 24.863967680089953 ], [ -78.059383268631791, 24.863634861641998 ], [ -78.062223231853977, 24.862384460376088 ], [ -78.062931683707973, 24.8605893263843 ], [ -78.061415825432917, 24.859173408179075 ], [ -78.061326392882648, 24.859058277950236 ], [ -78.061308406903706, 24.859005676613897 ] ], [ [ -78.047315248361784, 24.846955541535991 ], [ -78.048495384202326, 24.846870299261333 ], [ -78.048553755283294, 24.846823394870981 ], [ -78.048695721125256, 24.846767422887382 ], [ -78.048849694045288, 24.846754220169366 ], [ -78.049000602253017, 24.846785079062986 ], [ -78.049080147014806, 24.84682805784054 ], [ -78.050666254273054, 24.846713470858319 ], [ -78.050679606623063, 24.846689239318408 ], [ -78.050788374304858, 24.846588923489936 ], [ -78.050925791241426, 24.846524186508606 ], [ -78.051078406183407, 24.846501365214674 ], [ -78.051231280261121, 24.84652269347848 ], [ -78.051369449250103, 24.84658608354777 ], [ -78.051447993075172, 24.846656988562621 ], [ -78.052977964426532, 24.846546432956544 ], [ -78.053045290735341, 24.846424993561918 ], [ -78.053154327287473, 24.846324921622163 ], [ -78.053291917266904, 24.846260492471941 ], [ -78.053444592486329, 24.84623801281899 ], [ -78.05359740817596, 24.846259683091748 ], [ -78.053735405826615, 24.846323382060074 ], [ -78.053845077373509, 24.846422874473337 ], [ -78.053877987621632, 24.846481389986803 ], [ -78.054617625735929, 24.846427933657917 ], [ -78.054781735472673, 24.844475121955544 ], [ -78.053890619195343, 24.843961420658108 ], [ -78.053080593211234, 24.845552023217973 ], [ -78.052996181194345, 24.845667245545002 ], [ -78.052877412814766, 24.845753640455669 ], [ -78.052735502757486, 24.845803050068874 ], [ -78.047324812895368, 24.846856625703143 ], [ -78.047315248361784, 24.846955541535991 ] ], [ [ -78.040607903246666, 24.850698262390811 ], [ -78.037620941171852, 24.851254001943357 ], [ -78.037729416230704, 24.857725398412395 ], [ -78.040242621383328, 24.857094307507662 ], [ -78.040607903246666, 24.850698262390811 ] ], [ [ -78.036635251650424, 24.851437380570466 ], [ -78.036229058117996, 24.851512947192891 ], [ -78.036193255247639, 24.851543089633306 ], [ -78.036052743736377, 24.851602051932169 ], [ -78.035899140329462, 24.851618509939076 ], [ -78.03577919613538, 24.851596636348049 ], [ -78.035126693073721, 24.851718020861131 ], [ -78.0358985860601, 24.858185108217118 ], [ -78.036744746880188, 24.857972645755517 ], [ -78.036635251650424, 24.851437380570466 ] ], [ [ -78.03600701818506, 24.859093495315182 ], [ -78.036741681597576, 24.8652475930521 ], [ -78.03686663691434, 24.86524412627055 ], [ -78.036760361101642, 24.858904339008898 ], [ -78.03600701818506, 24.859093495315182 ] ], [ [ -78.037855049574432, 24.865216699893804 ], [ -78.039789830319108, 24.865162994835323 ], [ -78.039784465490925, 24.865116562007675 ], [ -78.040188410216217, 24.858043538791659 ], [ -78.037745037591961, 24.858657090889039 ], [ -78.037855049574432, 24.865216699893804 ] ], [ [ -78.04077346853073, 24.865135681683199 ], [ -78.044783310723304, 24.865024271377461 ], [ -78.044408411877953, 24.856979693412733 ], [ -78.043628916420047, 24.857179515059315 ], [ -78.043627599539036, 24.857179656797083 ], [ -78.043626396565955, 24.857180154452642 ], [ -78.041192851823396, 24.857791301743479 ], [ -78.04077346853073, 24.865135681683199 ] ], [ [ -78.045771672740472, 24.864996793962401 ], [ -78.046879244591537, 24.864965994619713 ], [ -78.04715461587746, 24.864002206665706 ], [ -78.047701845875281, 24.856135379385087 ], [ -78.045386307563248, 24.85672900588084 ], [ -78.045771672740472, 24.864996793962401 ] ], [ [ -78.048157921571217, 24.863821378423189 ], [ -78.05067904927671, 24.86513016652237 ], [ -78.050645431737536, 24.865020798516841 ], [ -78.050651732799267, 24.864879801396413 ], [ -78.050705482522517, 24.864747481601686 ], [ -78.050727201911528, 24.864722422204824 ], [ -78.050956422165697, 24.86190642515021 ], [ -78.050878160683922, 24.861870525242878 ], [ -78.05076820720096, 24.861771279350549 ], [ -78.050697250103255, 24.86164589118578 ], [ -78.050672235087987, 24.861506634682364 ], [ -78.05063623991137, 24.855383040739536 ], [ -78.048710497246674, 24.855876782263767 ], [ -78.048157921571217, 24.863821378423189 ] ], [ [ -78.051654874774911, 24.86047222728897 ], [ -78.052994566570689, 24.860138988228481 ], [ -78.052977485179383, 24.85478273064367 ], [ -78.051623433040589, 24.855129923232081 ], [ -78.051654874774911, 24.86047222728897 ] ], [ [ -78.053982488558134, 24.859893240838989 ], [ -78.055894695487183, 24.859417555069133 ], [ -78.05537270866968, 24.854168537286281 ], [ -78.053965341627872, 24.854529425564678 ], [ -78.053982488558134, 24.859893240838989 ] ], [ [ -78.0568634831277, 24.859176546355041 ], [ -78.059433481034844, 24.858537164776433 ], [ -78.059432608382153, 24.858534432543387 ], [ -78.05943734099921, 24.858393385209382 ], [ -78.060595540899413, 24.852829126049308 ], [ -78.058875695477781, 24.853270208429919 ], [ -78.05886303525746, 24.853277838636266 ], [ -78.058713963228172, 24.853315422202751 ], [ -78.058701390385082, 24.85331491056245 ], [ -78.056340738222318, 24.853920298734039 ], [ -78.0568634831277, 24.859176546355041 ] ], [ [ -78.060467309906826, 24.858279947802167 ], [ -78.062981772319034, 24.857654315203792 ], [ -78.063245592769562, 24.857419726314387 ], [ -78.063961423396179, 24.85196582590946 ], [ -78.061658599005455, 24.852556476289877 ], [ -78.060467309906826, 24.858279947802167 ] ], [ [ -78.064372892899399, 24.85641731785336 ], [ -78.0686126236223, 24.852647092571285 ], [ -78.06890690603899, 24.850697225767259 ], [ -78.067422004811775, 24.851078147537404 ], [ -78.067413152139693, 24.851088387893352 ], [ -78.067284537410032, 24.851166752820205 ], [ -78.067135677422371, 24.851205018099552 ], [ -78.066981143755342, 24.851199438009271 ], [ -78.066967326540279, 24.851194782837592 ], [ -78.064991803268313, 24.8517015312576 ], [ -78.064372892899399, 24.85641731785336 ] ], [ [ -78.07376958725591, 24.849449685251891 ], [ -78.072342141422453, 24.849815920789808 ], [ -78.072330006433091, 24.849832058651096 ], [ -78.072207386601363, 24.849918050361673 ], [ -78.072061645407786, 24.849965259113123 ], [ -78.071907049127731, 24.849969063727425 ], [ -78.071828130874522, 24.849947795176174 ], [ -78.069945044105154, 24.850430902264286 ], [ -78.069694785366579, 24.852089172369816 ], [ -78.073662267266897, 24.850337483517944 ], [ -78.07376958725591, 24.849449685251891 ] ], [ [ -78.079144434296936, 24.838597118847833 ], [ -78.078598854720184, 24.842037678789875 ], [ -78.08029351479864, 24.841916908687491 ], [ -78.080987681303355, 24.838583763934061 ], [ -78.079144434296936, 24.838597118847833 ] ], [ [ -78.069341315506762, 24.842697076779864 ], [ -78.07758860158323, 24.842109665369712 ], [ -78.078094156594702, 24.838921681936629 ], [ -78.06969506164927, 24.841076590816812 ], [ -78.069341315506762, 24.842697076779864 ] ], [ [ -78.078760836051117, 24.849275828859799 ], [ -78.080102236635852, 24.842835336346386 ], [ -78.078453735577028, 24.842952815352753 ], [ -78.077588661307345, 24.848407884077517 ], [ -78.078760836051117, 24.849275828859799 ] ], [ [ -78.076683525443414, 24.847816728609807 ], [ -78.077443474856338, 24.843024801667955 ], [ -78.075917300099789, 24.843133536499806 ], [ -78.074965286638559, 24.848205859792426 ], [ -78.076464454623789, 24.847821190801149 ], [ -78.076620248234065, 24.847804796113788 ], [ -78.076683525443414, 24.847816728609807 ] ], [ [ -78.073911551498554, 24.848476225748296 ], [ -78.074900763497808, 24.843205952619847 ], [ -78.073359669051527, 24.843315723964547 ], [ -78.072570299532686, 24.848820350242068 ], [ -78.073911551498554, 24.848476225748296 ] ], [ [ -78.072352398722202, 24.843387462656157 ], [ -78.070993357284024, 24.843484243971975 ], [ -78.070092150091824, 24.84945613229003 ], [ -78.071535185758734, 24.849085919678789 ], [ -78.072352398722202, 24.843387462656157 ] ], [ [ -78.069984630935423, 24.843556070283729 ], [ -78.069140680254762, 24.843616158487297 ], [ -78.067733673805719, 24.850061168440408 ], [ -78.069054020372178, 24.84972245603316 ], [ -78.069984630935423, 24.843556070283729 ] ], [ [ -78.068116783028103, 24.843689052214209 ], [ -78.066275588694538, 24.84382011354263 ], [ -78.065996423949315, 24.844046391526831 ], [ -78.065119061272469, 24.850731863819238 ], [ -78.066665829840019, 24.850335095966358 ], [ -78.068116783028103, 24.843689052214209 ] ], [ [ -78.06488227749054, 24.844949454320332 ], [ -78.062908939013141, 24.846548879066795 ], [ -78.061864621663062, 24.851566614185177 ], [ -78.064088689585887, 24.850996158581591 ], [ -78.06488227749054, 24.844949454320332 ] ], [ [ -78.061848326535127, 24.846810040212489 ], [ -78.060498177705753, 24.84690768358028 ], [ -78.05930747057262, 24.85222245672049 ], [ -78.060801572408195, 24.851839264588747 ], [ -78.061848326535127, 24.846810040212489 ] ], [ [ -78.059472522697277, 24.846981851202035 ], [ -78.055678078555061, 24.847256175132284 ], [ -78.056249874703823, 24.853006585365492 ], [ -78.05823686937633, 24.852497023307329 ], [ -78.059472522697277, 24.846981851202035 ] ], [ [ -78.054692500966226, 24.847327412788257 ], [ -78.053942535368321, 24.847381615999559 ], [ -78.053962351542552, 24.853593180566044 ], [ -78.055281851819672, 24.853254822689074 ], [ -78.054692500966226, 24.847327412788257 ] ], [ [ -78.052954155841832, 24.847453044614763 ], [ -78.05157888616732, 24.847552422215919 ], [ -78.051617929645616, 24.854194325383919 ], [ -78.052974502319898, 24.85384648494049 ], [ -78.052954155841832, 24.847453044614763 ] ], [ [ -78.050590685282984, 24.847623822186382 ], [ -78.049277910839109, 24.84771866322879 ], [ -78.048776851800952, 24.854922764496806 ], [ -78.050630743725677, 24.854447442172184 ], [ -78.050590685282984, 24.847623822186382 ] ], [ [ -78.048282310459825, 24.847790582373641 ], [ -78.047227135371955, 24.847866797725498 ], [ -78.046488106756513, 24.855509543653383 ], [ -78.047768208146863, 24.855181361342265 ], [ -78.048282310459825, 24.847790582373641 ] ], [ [ -78.046203939625286, 24.84818471666491 ], [ -78.044248203434336, 24.849601915771249 ], [ -78.04401154906607, 24.856144428821057 ], [ -78.045470360755573, 24.85577045651193 ], [ -78.046203939625286, 24.84818471666491 ] ], [ [ -78.036440817929872, 24.850552915658792 ], [ -78.040938692259857, 24.849716073776769 ], [ -78.041603437692928, 24.849303128435547 ], [ -78.037342073648603, 24.845650514585856 ], [ -78.036646926520021, 24.84587541555652 ], [ -78.036440817929872, 24.850552915658792 ] ], [ [ -78.032866155929241, 24.858974824127472 ], [ -78.032871686977501, 24.855299313861419 ], [ -78.032315535099272, 24.856163122552005 ], [ -78.03212847562537, 24.857081432268149 ], [ -78.0320345090676, 24.859195843974053 ], [ -78.032866155929241, 24.858974824127472 ] ], [ [ -78.030990893146267, 24.860412757478684 ], [ -78.028805701094726, 24.860993452392066 ], [ -78.030855243284023, 24.863464619358119 ], [ -78.030990893146267, 24.860412757478684 ] ], [ [ -78.026461182401775, 24.833135798081276 ], [ -78.027984244403072, 24.833867193461067 ], [ -78.028394481704495, 24.833891088173441 ], [ -78.028453853732586, 24.831218782956721 ], [ -78.027333292440886, 24.831503367459923 ], [ -78.026461182401775, 24.833135798081276 ] ], [ [ -78.029370419963016, 24.834390097270095 ], [ -78.029371430420312, 24.834399946654571 ], [ -78.029356820054701, 24.834459343561335 ], [ -78.029345051780638, 24.834519263724058 ], [ -78.029344417061125, 24.834520345732329 ], [ -78.029736838108718, 24.834708781805077 ], [ -78.031847456143765, 24.826751215147333 ], [ -78.030395464350391, 24.827394430613033 ], [ -78.029720654611637, 24.830636360532477 ], [ -78.02967671941532, 24.830754698211955 ], [ -78.029598894868712, 24.830857495571216 ], [ -78.029493152982454, 24.83093686415604 ], [ -78.029448416186483, 24.830954627498276 ], [ -78.02937233235879, 24.834380359970918 ], [ -78.029370419963016, 24.834390097270095 ] ], [ [ -78.011725743949668, 24.819321757617239 ], [ -78.011888591125683, 24.8193957766278 ], [ -78.017065261006366, 24.816246254528906 ], [ -78.015995545626012, 24.814220258345358 ], [ -78.015951374591822, 24.814087322925054 ], [ -78.015953620436775, 24.813948423805019 ], [ -78.016002069986271, 24.813816735916429 ], [ -78.016092127553577, 24.813704750145945 ], [ -78.01833780533633, 24.811664794719871 ], [ -78.017880714314316, 24.810788700591932 ], [ -78.015419753312955, 24.813471613949517 ], [ -78.015417387092612, 24.81347433345055 ], [ -78.015417098556938, 24.813474508057848 ], [ -78.011772211295664, 24.817447858502145 ], [ -78.011725743949668, 24.819321757617239 ] ], [ [ -77.960728829747225, 24.767349573617413 ], [ -77.961191671336138, 24.767303288942042 ], [ -77.961798086519877, 24.767173343062993 ], [ -77.965382536183952, 24.765950420952535 ], [ -77.964075432670185, 24.761906517928807 ], [ -77.957915259035403, 24.760842889747018 ], [ -77.954833048271738, 24.762178529563222 ], [ -77.956510225222971, 24.766090971656123 ], [ -77.959489780589692, 24.765467324084355 ], [ -77.959630415641726, 24.765456765207972 ], [ -77.959768582771716, 24.765482940215389 ], [ -77.959893008944547, 24.765543713481147 ], [ -77.959993542220843, 24.765634126511831 ], [ -77.960061980036073, 24.765746802500537 ], [ -77.960728829747225, 24.767349573617413 ] ], [ [ -77.953938264587805, 24.762566256960294 ], [ -77.953777646665415, 24.762635855079484 ], [ -77.953652047020114, 24.762672494395396 ], [ -77.953520306915891, 24.762677491915746 ], [ -77.953391811690025, 24.76265049160153 ], [ -77.951195993853915, 24.761895687982186 ], [ -77.953812143450662, 24.764948486270956 ], [ -77.953887178492792, 24.765071866142513 ], [ -77.95391678523093, 24.765210379016487 ], [ -77.953898065411806, 24.765350466327781 ], [ -77.953832851305521, 24.765478415351506 ], [ -77.953727526409864, 24.765581701501112 ], [ -77.953592400632317, 24.765650214339214 ], [ -77.953440701094877, 24.765677247284184 ], [ -77.953396722487639, 24.765672347580928 ], [ -77.954776653138666, 24.766453794234867 ], [ -77.955536561265831, 24.766294754302734 ], [ -77.953938264587805, 24.762566256960294 ] ], [ [ -77.950436815254776, 24.762473717432105 ], [ -77.949860251279873, 24.763669556307047 ], [ -77.952971612420711, 24.765431605456609 ], [ -77.950436815254776, 24.762473717432105 ] ], [ [ -77.959909775749509, 24.769808582336253 ], [ -77.959917219324481, 24.768380534176202 ], [ -77.95983354679116, 24.768396222707267 ], [ -77.958810327522613, 24.769539829873022 ], [ -77.959909775749509, 24.769808582336253 ] ], [ [ -77.902155982826756, 24.770731330848221 ], [ -77.903112690527095, 24.770858894012697 ], [ -77.902458541806539, 24.76987766660401 ], [ -77.902155982826756, 24.770731330848221 ] ] ], [ [ [ -77.805745296391052, 24.698737381440836 ], [ -77.801612031966243, 24.70879549391065 ], [ -77.801517167749353, 24.708938316944582 ], [ -77.799103793465775, 24.711393809562136 ], [ -77.798983853610082, 24.711482789608223 ], [ -77.798839683133338, 24.711533557929037 ], [ -77.798685394552137, 24.711541144910047 ], [ -77.798536090861802, 24.711504807863388 ], [ -77.798406387091134, 24.71142810373539 ], [ -77.798308979626782, 24.711318540919144 ], [ -77.798253403372769, 24.711186844258261 ], [ -77.798245098414199, 24.711045905197043 ], [ -77.798284877544276, 24.710909519854091 ], [ -77.798368846761292, 24.710791038553989 ], [ -77.800720064964722, 24.708398804752608 ], [ -77.804655717065657, 24.698821775111227 ], [ -77.803010248933262, 24.698738719628931 ], [ -77.802859221230989, 24.698708982258069 ], [ -77.802725644188214, 24.698638063705925 ], [ -77.802622593347209, 24.698532906028809 ], [ -77.80256015604013, 24.698403802864348 ], [ -77.802544443971513, 24.698263391791166 ], [ -77.802576994997992, 24.698125417251241 ], [ -77.802654622649527, 24.698003385137483 ], [ -77.802769728100088, 24.69790924074913 ], [ -77.802911044028363, 24.697852199523371 ], [ -77.803064737540765, 24.697837844991422 ], [ -77.805007003082309, 24.697935880715661 ], [ -77.805019140862015, 24.697924677818119 ], [ -77.805156435556455, 24.697859957504253 ], [ -77.805308902078281, 24.697837164488774 ], [ -77.810066523244515, 24.697814832978096 ], [ -77.810219237520968, 24.697836193444545 ], [ -77.810357252377798, 24.697899621252493 ], [ -77.810467058064674, 24.697998907694419 ], [ -77.810537906052744, 24.698124333991867 ], [ -77.810562861169075, 24.698263622610384 ], [ -77.810539480489595, 24.698403139045119 ], [ -77.810470052524323, 24.69852922644759 ], [ -77.810361373260761, 24.698629542456089 ], [ -77.810224080965625, 24.698694267370517 ], [ -77.810071614843551, 24.698717065399823 ], [ -77.805745296391052, 24.698737381440836 ] ] ], [ [ [ -77.743753978517901, 24.520852995916751 ], [ -77.74389147958594, 24.520788974862636 ], [ -77.744043874888121, 24.52076696074197 ], [ -77.744196247053281, 24.520789108415823 ], [ -77.744333680984127, 24.520853249924279 ], [ -77.744442723792943, 24.520953106698126 ], [ -77.744512701624572, 24.521078904130455 ], [ -77.74453676448212, 24.521218328356539 ], [ -77.74451255678261, 24.521357731596151 ], [ -77.744442447992441, 24.521483468080213 ], [ -77.744333300745481, 24.521583229797063 ], [ -77.740149999443403, 24.524360970564945 ], [ -77.740012492410742, 24.524424988684277 ], [ -77.739860091621537, 24.524446999165381 ], [ -77.739707715269702, 24.524424847434595 ], [ -77.739570279166188, 24.524360701866406 ], [ -77.739461236617288, 24.52426084152453 ], [ -77.739391261482169, 24.524135041504856 ], [ -77.739367203335348, 24.523995616054233 ], [ -77.73939141701301, 24.523856213141645 ], [ -77.73946153215978, 24.523730478486694 ], [ -77.739570685313595, 24.523630719824887 ], [ -77.743753978517901, 24.520852995916751 ] ] ], [ [ [ -77.902980639514709, 24.859539470190775 ], [ -77.902980505213975, 24.859538407466903 ], [ -77.901761684933518, 24.857126410919161 ], [ -77.901635432982502, 24.857108140841351 ], [ -77.901497626266973, 24.857044041751315 ], [ -77.901388274065468, 24.85694422584686 ], [ -77.901318080549018, 24.85681846387509 ], [ -77.900437355402431, 24.854343422410093 ], [ -77.900331022753008, 24.854277469617234 ], [ -77.900236235627361, 24.8541659434308 ], [ -77.898234856470467, 24.850843152657912 ], [ -77.896176098581321, 24.847685205158612 ], [ -77.895956860364905, 24.847408413611472 ], [ -77.895931329588535, 24.847420224080313 ], [ -77.895778515236159, 24.847442019150311 ], [ -77.895625799010574, 24.847419658667196 ], [ -77.895488129994661, 24.847355331439456 ], [ -77.895378984295746, 24.847255334313484 ], [ -77.895309045870363, 24.847129455775665 ], [ -77.894969313123838, 24.84616874198024 ], [ -77.89323498216504, 24.845381834790484 ], [ -77.893108969321048, 24.845300001881448 ], [ -77.893016837340284, 24.845186641953429 ], [ -77.89296760471214, 24.845052851538 ], [ -77.892966090553031, 24.844911727027384 ], [ -77.893012442922057, 24.84477708268761 ], [ -77.893102124388108, 24.844662098415984 ], [ -77.893226356238017, 24.844578029611839 ], [ -77.893242296423281, 24.844573145621897 ], [ -77.892012886936996, 24.844138171301413 ], [ -77.891879204137226, 24.844067193110796 ], [ -77.891776101337854, 24.843961993523216 ], [ -77.891713670957273, 24.843832870279311 ], [ -77.89169802402138, 24.84369246292384 ], [ -77.891730692010015, 24.843554515535288 ], [ -77.891808477002769, 24.84343253134892 ], [ -77.891923764771136, 24.843338450972258 ], [ -77.892065270147043, 24.843281483576021 ], [ -77.892219141693062, 24.843267205463892 ], [ -77.892370317541491, 24.843297014248705 ], [ -77.895611004929506, 24.84444356560795 ], [ -77.895744689926758, 24.844514540219965 ], [ -77.895847796299364, 24.844619736710492 ], [ -77.895910231275252, 24.844748857786122 ], [ -77.895925883189264, 24.844889264238329 ], [ -77.895900783582192, 24.844995267802425 ], [ -77.895946061695398, 24.845016496012562 ], [ -77.896055056051381, 24.845116628647052 ], [ -77.896691622517608, 24.845921830872527 ], [ -77.896761373215341, 24.846047795650648 ], [ -77.896785051249338, 24.846187262913222 ], [ -77.896760338703146, 24.846326580667967 ], [ -77.896689654458385, 24.84645211151356 ], [ -77.89657991747687, 24.84655156756692 ], [ -77.896552522119009, 24.846564197963069 ], [ -77.89700284966915, 24.847189591025113 ], [ -77.897007437683797, 24.847198859990286 ], [ -77.897014564437669, 24.847206679943774 ], [ -77.899067838242715, 24.850356186522752 ], [ -77.899074479874642, 24.850364001483101 ], [ -77.899093240909679, 24.850395150250119 ], [ -77.901219766970527, 24.853656796883396 ], [ -77.901240145832546, 24.853703407131007 ], [ -77.901265104006171, 24.853748124871867 ], [ -77.902094587460212, 24.856079135485384 ], [ -77.902096938661288, 24.856079219716378 ], [ -77.902242059461315, 24.856128063760281 ], [ -77.902363534928739, 24.856215433518809 ], [ -77.902449474250545, 24.856332776696867 ], [ -77.906500366376775, 24.864348838281359 ], [ -77.906536296982523, 24.86444971838872 ], [ -77.906545413165261, 24.864555464355647 ], [ -77.906420225900561, 24.867455842552367 ], [ -77.906433691049713, 24.867562355837148 ], [ -77.906411255353404, 24.867663676382026 ], [ -77.906400752600007, 24.867907009311889 ], [ -77.90637056002862, 24.86804542465898 ], [ -77.906294961244868, 24.868168553568648 ], [ -77.906181356288556, 24.868264343272308 ], [ -77.906040865601071, 24.868323417134484 ], [ -77.905887241480343, 24.868339992530686 ], [ -77.905735521875485, 24.868312446915116 ], [ -77.905600558310383, 24.868243476658471 ], [ -77.905495562054995, 24.868139833103051 ], [ -77.905430810877618, 24.868011661674029 ], [ -77.905412642984047, 24.867871508747196 ], [ -77.905426761095143, 24.867544474095709 ], [ -77.902980639514709, 24.859539470190775 ] ] ], [ [ [ -78.056151575174582, 25.179709016390738 ], [ -78.056011512852265, 25.179648457562092 ], [ -78.055898870958742, 25.179551477454794 ], [ -78.05582467569279, 25.179427569228494 ], [ -78.055796189730827, 25.179288861952372 ], [ -78.055816201333599, 25.179148933301065 ], [ -78.055882751466598, 25.17902148046204 ], [ -78.055989325624921, 25.17891897936088 ], [ -78.056125491562014, 25.178851463448481 ], [ -78.056277920480355, 25.178825541584111 ], [ -78.056431691719084, 25.178843751140427 ], [ -78.062130688539256, 25.180371354500739 ], [ -78.062270754103409, 25.180431907156894 ], [ -78.062383401390832, 25.180528881842207 ], [ -78.062457603725605, 25.180652786069853 ], [ -78.062486097593109, 25.180791491299438 ], [ -78.062466093671389, 25.18093142013673 ], [ -78.062399549924251, 25.181058875368375 ], [ -78.062292980003036, 25.181161380741944 ], [ -78.062156815688724, 25.181228902246232 ], [ -78.062004385766187, 25.181254830337281 ], [ -78.061850611281997, 25.181236626952792 ], [ -78.056151575174582, 25.179709016390738 ] ] ], [ [ [ -77.740956018891396, 24.47949251044172 ], [ -77.741114281714886, 24.479487567302272 ], [ -77.741266091615685, 24.479528802177381 ], [ -77.741395783636548, 24.479611960111875 ], [ -77.741489975064638, 24.479728460190646 ], [ -77.741538946350971, 24.479866280967876 ], [ -77.741863152593197, 24.481789214466694 ], [ -77.741862526521757, 24.481838555871409 ], [ -77.741866954782708, 24.481898241782567 ], [ -77.741861518149818, 24.481918027067174 ], [ -77.741861275521174, 24.48193714901436 ], [ -77.741844076882145, 24.481981500224343 ], [ -77.74182933977302, 24.482035132227328 ], [ -77.74181539489966, 24.482055464189308 ], [ -77.741807208916768, 24.482076573864482 ], [ -77.74177702076399, 24.482111414568365 ], [ -77.741747343210889, 24.482154685091196 ], [ -77.741724178067912, 24.48217240124189 ], [ -77.741706766628397, 24.48219249607094 ], [ -77.741668456986943, 24.482215015367011 ], [ -77.74162899141055, 24.482245197649998 ], [ -77.74159727955545, 24.482256855067583 ], [ -77.741570749557297, 24.482272449984237 ], [ -77.741529650559499, 24.482281715755779 ], [ -77.741485869483668, 24.482297809832872 ], [ -77.741447760690846, 24.482300177794976 ], [ -77.741413784217528, 24.482307837763415 ], [ -77.737802863061518, 24.482562194081765 ], [ -77.737630429627202, 24.482546380086447 ], [ -77.737474630385307, 24.48247693296705 ], [ -77.737354718321882, 24.482362434691943 ], [ -77.737285511539255, 24.482217034443302 ], [ -77.737021389249122, 24.481203545424741 ], [ -77.734587102607904, 24.481341754419361 ], [ -77.734433563959215, 24.481328346741254 ], [ -77.734292067332589, 24.481272173616667 ], [ -77.734176463520157, 24.481178733704052 ], [ -77.734098068662334, 24.481057173620567 ], [ -77.734064556532246, 24.480919392581718 ], [ -77.734079207396988, 24.480778877597388 ], [ -77.734140586973211, 24.480649383253393 ], [ -77.734242686883917, 24.480543585316738 ], [ -77.734375512844679, 24.480471839959112 ], [ -77.73452606298676, 24.480441170048444 ], [ -77.736927892474014, 24.480304805596251 ], [ -77.736977025773356, 24.480231673367612 ], [ -77.737094456072313, 24.480140162372042 ], [ -77.737237037939536, 24.480086340329379 ], [ -77.737390814567618, 24.480075475657411 ], [ -77.737540733379262, 24.480108631841833 ], [ -77.737672119420921, 24.480182563344059 ], [ -77.737772111794385, 24.480290033289588 ], [ -77.737830922539516, 24.480420521842351 ], [ -77.738015743309816, 24.481129705406929 ], [ -77.740792715731004, 24.481357266849873 ], [ -77.740642968530665, 24.480469044594692 ], [ -77.738788638096167, 24.48080496931761 ], [ -77.738634516475656, 24.480810378850027 ], [ -77.738486111588699, 24.480771936897138 ], [ -77.738357950479028, 24.480693406450104 ], [ -77.738262578521628, 24.480582474675519 ], [ -77.738209331366207, 24.48045000041931 ], [ -77.738203421107229, 24.480308951240158 ], [ -77.738245426128998, 24.48017313403334 ], [ -77.738331234547914, 24.480055843508403 ], [ -77.738452446765464, 24.479968560819845 ], [ -77.738597197707207, 24.479919829734445 ], [ -77.740956018891396, 24.47949251044172 ] ] ], [ [ [ -77.72994147778833, 24.481876203219148 ], [ -77.729846909432865, 24.481920528408345 ], [ -77.729694621727774, 24.481942900318778 ], [ -77.729542233425576, 24.48192110957638 ], [ -77.729404661506749, 24.481857289219224 ], [ -77.729295372572523, 24.481757686476755 ], [ -77.729225064600712, 24.481632051228999 ], [ -77.729200619747047, 24.481492681593839 ], [ -77.729224430701962, 24.481353220076858 ], [ -77.729294166531531, 24.481227318134636 ], [ -77.729403000903574, 24.481127299878281 ], [ -77.729884782573521, 24.480805549693745 ], [ -77.729958918014688, 24.480727576497419 ], [ -77.730077117313073, 24.480636896942858 ], [ -77.730211761327809, 24.480587180437237 ], [ -77.730956919835364, 24.4800895291066 ], [ -77.731094197255601, 24.480025183695812 ], [ -77.731246482288157, 24.480002810590985 ], [ -77.731398868355242, 24.480024599792849 ], [ -77.73153643899856, 24.48008841843086 ], [ -77.731645727948361, 24.480188019540307 ], [ -77.731716037256234, 24.480313653540247 ], [ -77.731740484478905, 24.480453022563889 ], [ -77.73171667640969, 24.480592484234837 ], [ -77.731646943396555, 24.48071838706468 ], [ -77.731538111289382, 24.48081840675901 ], [ -77.730555678505979, 24.481474522031402 ], [ -77.730317111817243, 24.481725439084869 ], [ -77.730198911773712, 24.481816118890062 ], [ -77.730055877808965, 24.481868932935896 ], [ -77.72994147778833, 24.481876203219148 ] ] ], [ [ [ -77.864824423414802, 24.622669411283134 ], [ -77.864876218617454, 24.622536452386996 ], [ -77.864970424465625, 24.622424632206204 ], [ -77.865097819379713, 24.622344896414955 ], [ -77.865245933099786, 24.622305050037493 ], [ -77.865400267345535, 24.622308993464944 ], [ -77.865545714962053, 24.622356340676937 ], [ -77.865668038653752, 24.622442457031806 ], [ -77.865755264580216, 24.622558912924955 ], [ -77.865798854418145, 24.62269430891271 ], [ -77.865794541167944, 24.622835391542356 ], [ -77.865338515826352, 24.625062693893049 ], [ -77.872015256171437, 24.625595696421268 ], [ -77.872165074540391, 24.625629815571727 ], [ -77.872296026384035, 24.625704584825034 ], [ -77.872395293305857, 24.625812685302559 ], [ -77.872453158356223, 24.625943535447941 ], [ -77.872463957199614, 24.626084326796267 ], [ -77.872426632617874, 24.626221277733283 ], [ -77.872344838056236, 24.626340982526695 ], [ -77.872226580053947, 24.626431723580474 ], [ -77.872083434539903, 24.626484618456463 ], [ -77.871929413695639, 24.626494489376675 ], [ -77.865156069046265, 24.62595377720265 ], [ -77.864934379847512, 24.627036510560714 ], [ -77.873885798071939, 24.626509542096944 ], [ -77.874063979058732, 24.626528929753729 ], [ -77.874222797950452, 24.6266052719706 ], [ -77.87475940274193, 24.626991442209963 ], [ -77.8748683625371, 24.627100683605285 ], [ -77.874932837744282, 24.627236257794493 ], [ -77.874945904098155, 24.627383605189767 ], [ -77.87490615819658, 24.627526901807862 ], [ -77.874817868288034, 24.627650758635884 ], [ -77.874690515962456, 24.627741874306601 ], [ -77.869637470366712, 24.63026212947268 ], [ -77.869521399214619, 24.630303630166058 ], [ -77.869397655229335, 24.630317226943301 ], [ -77.864269354449164, 24.630284420471195 ], [ -77.863514010515658, 24.63397328305803 ], [ -77.863507246636232, 24.633990644377604 ], [ -77.863505050834121, 24.634008964059472 ], [ -77.863481469674667, 24.634056807856727 ], [ -77.863462210413985, 24.634106241868373 ], [ -77.863449908150301, 24.634120842954797 ], [ -77.863441626390781, 24.634137645785433 ], [ -77.863403024557797, 24.63417648726076 ], [ -77.863367995476665, 24.634218061871181 ], [ -77.863351359050199, 24.634228473461025 ], [ -77.863337801996522, 24.634242114655169 ], [ -77.86328795808943, 24.634268151710511 ], [ -77.863240588063391, 24.634297797281235 ], [ -77.863221245966244, 24.634303000206561 ], [ -77.863203740676099, 24.634312144459315 ], [ -77.86314753378295, 24.63432282838118 ], [ -77.863092459741409, 24.634337642970472 ], [ -77.86307230532708, 24.634337127925708 ], [ -77.863052565351339, 24.634340880125031 ], [ -77.856099026339947, 24.634645738708926 ], [ -77.855982604761962, 24.634638211527012 ], [ -77.844602053926721, 24.632646473745456 ], [ -77.844592379114928, 24.632643282687191 ], [ -77.844582121430477, 24.632642592877271 ], [ -77.837382637883309, 24.631097957525398 ], [ -77.837238723400901, 24.631044069358985 ], [ -77.837120300438912, 24.630951920456528 ], [ -77.83703912883395, 24.63083066158033 ], [ -77.837003269139089, 24.630692334212235 ], [ -77.837016282206619, 24.630550674766948 ], [ -77.837076875635958, 24.630419750502803 ], [ -77.837179032175086, 24.630312562595147 ], [ -77.838701328702982, 24.629150179599765 ], [ -77.839217881368455, 24.624435108730903 ], [ -77.839253701637844, 24.624305864192262 ], [ -77.839329285460138, 24.624191835699435 ], [ -77.839438030495899, 24.624102983624137 ], [ -77.839570437839384, 24.624047069158177 ], [ -77.839714941749889, 24.624028976391912 ], [ -77.845192770906905, 24.624089953652945 ], [ -77.845351911968294, 24.624115927919188 ], [ -77.845493332425363, 24.624187519162898 ], [ -77.846519150900491, 24.624930848085853 ], [ -77.846657869485512, 24.624903599309683 ], [ -77.846811459073862, 24.624918039405852 ], [ -77.846952650081306, 24.624975158280233 ], [ -77.847067621864468, 24.625069364781872 ], [ -77.847145120216453, 24.625191437390232 ], [ -77.84717755899473, 24.625329426855803 ], [ -77.847169391868334, 24.625402017222427 ], [ -77.848578810066996, 24.62642326832686 ], [ -77.848683315657127, 24.62652716490912 ], [ -77.848747583914886, 24.626655496533218 ], [ -77.84876532372526, 24.626795701267973 ], [ -77.848734798443843, 24.626934054926835 ], [ -77.848658995948242, 24.627057014475501 ], [ -77.848545336220951, 24.627152543723902 ], [ -77.84840494506571, 24.627211291532515 ], [ -77.848251565037103, 24.627227507194181 ], [ -77.848100210189159, 24.627199603377193 ], [ -77.847965696338576, 24.627130311515799 ], [ -77.846903060885438, 24.626360337067272 ], [ -77.846706424848506, 24.6270371963762 ], [ -77.853805338014169, 24.628697414530453 ], [ -77.853947096618711, 24.628753353545648 ], [ -77.854063006490392, 24.628846597042806 ], [ -77.854141721598538, 24.628968017766592 ], [ -77.854175536698619, 24.629105730278898 ], [ -77.854161141598752, 24.62924625436229 ], [ -77.854099945235632, 24.62937583454125 ], [ -77.853997937817525, 24.629481786563623 ], [ -77.853865104506113, 24.629553739039437 ], [ -77.85371444801271, 24.629584648690681 ], [ -77.853560715778855, 24.62957148982257 ], [ -77.846453083712262, 24.627909236534734 ], [ -77.845307790293091, 24.631851389557713 ], [ -77.855701782205088, 24.633670471846404 ], [ -77.857226428304202, 24.627655223831592 ], [ -77.850491072598331, 24.626878833924117 ], [ -77.850364729674922, 24.626848326918264 ], [ -77.850251575493104, 24.626788577389323 ], [ -77.847568543191258, 24.624898340455939 ], [ -77.847462501100551, 24.624795754039365 ], [ -77.847396328492451, 24.624668233936166 ], [ -77.847376502716273, 24.624528262765804 ], [ -77.847404964310385, 24.624389541913153 ], [ -77.847410568330005, 24.62438015489349 ], [ -77.847379718127897, 24.62434654653395 ], [ -77.847321879102097, 24.624215684257972 ], [ -77.84731110867186, 24.624074888494533 ], [ -77.847348460969855, 24.623937941337651 ], [ -77.847430279548064, 24.623818248108723 ], [ -77.847548555351892, 24.623727525158042 ], [ -77.847691710733415, 24.623674653008603 ], [ -77.847845732747828, 24.623664807095874 ], [ -77.852777347288438, 24.624059114580547 ], [ -77.848200135690661, 24.622609542185838 ], [ -77.848063949926058, 24.622543043634252 ], [ -77.84795690910515, 24.62244132944538 ], [ -77.847889491138659, 24.622314356183363 ], [ -77.847868295282638, 24.622174552939608 ], [ -77.847895396189415, 24.622035604662333 ], [ -77.847968140881903, 24.621911112565996 ], [ -77.848079408503352, 24.621813262753896 ], [ -77.848218307394333, 24.62175163337675 ], [ -77.848371241247904, 24.621732257083558 ], [ -77.848523239978604, 24.62175703052824 ], [ -77.856810664404364, 24.624381475308258 ], [ -77.864350549452254, 24.62498379894987 ], [ -77.864824423414802, 24.622669411283134 ] ], [ [ -77.844340939018608, 24.631664110200887 ], [ -77.845030998929005, 24.629288982327633 ], [ -77.84299858666725, 24.628776677337253 ], [ -77.842964832011234, 24.628762669890158 ], [ -77.84292902556011, 24.628753897598251 ], [ -77.842894969014495, 24.628733678232635 ], [ -77.842857991665767, 24.628718333400162 ], [ -77.84283062447409, 24.628695476848474 ], [ -77.842799536111002, 24.628677019653374 ], [ -77.842773981812343, 24.628648169942601 ], [ -77.84274400177955, 24.628623131147787 ], [ -77.842725700955086, 24.628593662866653 ], [ -77.842702373840268, 24.62856732750171 ], [ -77.842687823221596, 24.628532671476087 ], [ -77.842667775162198, 24.628500389708535 ], [ -77.84266033210524, 24.628467194276229 ], [ -77.842647049650566, 24.628435558646885 ], [ -77.842644927003604, 24.628398488696874 ], [ -77.842636773339464, 24.628362123937148 ], [ -77.842640916597546, 24.628328450766023 ], [ -77.842638978953531, 24.628294611599941 ], [ -77.842649492018396, 24.628258756398971 ], [ -77.842654030848564, 24.628221868291213 ], [ -77.842669354812827, 24.628191013548221 ], [ -77.842678951611845, 24.628158283261165 ], [ -77.842701071256997, 24.628127152562943 ], [ -77.842717858248889, 24.628093351968708 ], [ -77.842742862872456, 24.628068335922986 ], [ -77.842763054680574, 24.6280399183753 ], [ -77.84410457015818, 24.626678165253843 ], [ -77.844245615323885, 24.626578857710832 ], [ -77.844416031455424, 24.626531761434606 ], [ -77.844593640059784, 24.626543005657304 ], [ -77.845750182951647, 24.626813530978154 ], [ -77.846059437326829, 24.625749043507394 ], [ -77.845012267859275, 24.62499024384817 ], [ -77.840154923228553, 24.624936181356059 ], [ -77.839663378388821, 24.629423294765282 ], [ -77.839608381519994, 24.629589590915668 ], [ -77.83948871232586, 24.629724557669071 ], [ -77.838570098945354, 24.630425994871974 ], [ -77.844340939018608, 24.631664110200887 ] ], [ [ -77.845284352944716, 24.628416940181708 ], [ -77.845496835275796, 24.627685570105573 ], [ -77.844638221524136, 24.627484734405687 ], [ -77.844031085960069, 24.628101035407084 ], [ -77.845284352944716, 24.628416940181708 ] ], [ [ -77.862615580822521, 24.633456792644751 ], [ -77.863266508577624, 24.630277984623056 ], [ -77.863047799347058, 24.630276580147331 ], [ -77.862902238786603, 24.630255531686217 ], [ -77.862769967410074, 24.630196134917856 ], [ -77.862662780165408, 24.63010368638977 ], [ -77.862590235135201, 24.629986429948232 ], [ -77.862558801219421, 24.629854821600023 ], [ -77.862432813994559, 24.628087765783107 ], [ -77.861517855898171, 24.628141584012273 ], [ -77.861424451202339, 24.628138973597643 ], [ -77.858210825599841, 24.627768669658639 ], [ -77.856703444472188, 24.633715995141316 ], [ -77.862615580822521, 24.633456792644751 ] ], [ [ -77.864747009571417, 24.627951618861534 ], [ -77.864453852502962, 24.62938336518399 ], [ -77.869276838692556, 24.629414220875301 ], [ -77.873207991890439, 24.62745354476916 ], [ -77.864747009571417, 24.627951618861534 ] ], [ [ -77.863497612083563, 24.629149360756013 ], [ -77.863730620485796, 24.628011418661863 ], [ -77.863417783494285, 24.628029823207207 ], [ -77.863497612083563, 24.629149360756013 ] ], [ [ -77.863917998357849, 24.627096310953458 ], [ -77.864168095576375, 24.625874881695015 ], [ -77.85879947466195, 24.625446049239514 ], [ -77.858434757714662, 24.626885113542556 ], [ -77.861501316529385, 24.627238472514335 ], [ -77.863917998357849, 24.627096310953458 ] ], [ [ -77.857806452723338, 24.625366707498259 ], [ -77.856900770976125, 24.625294338309541 ], [ -77.856794503991125, 24.625307808102111 ], [ -77.856642500156909, 24.62528304358052 ], [ -77.856603030668879, 24.625270545921584 ], [ -77.848831944824013, 24.624649345597366 ], [ -77.850747758779988, 24.625999054489718 ], [ -77.857450367397561, 24.626771668561435 ], [ -77.857806452723338, 24.625366707498259 ] ] ], [ [ [ -78.03270807582895, 25.006607980853829 ], [ -78.032715168641644, 25.006467015054174 ], [ -78.032769716249035, 25.006334945941383 ], [ -78.032866379020874, 25.006224701324545 ], [ -78.032995694880469, 25.006147072648496 ], [ -78.033145005538159, 25.006109658677406 ], [ -78.03329969555476, 25.006116121702057 ], [ -78.03344462295351, 25.006165829068202 ], [ -78.033565601361246, 25.006253915108363 ], [ -78.033650788619624, 25.006371757413557 ], [ -78.033691845958558, 25.006507820829437 ], [ -78.033826001572706, 25.007601998841995 ], [ -78.033818910118569, 25.007742964562862 ], [ -78.033764363227064, 25.007875033992711 ], [ -78.033667700197526, 25.007985279219721 ], [ -78.033538383029693, 25.008062908606576 ], [ -78.033389070236666, 25.008100323176464 ], [ -78.033234377723218, 25.008093860481228 ], [ -78.033089448030239, 25.008044153126129 ], [ -78.032968468016307, 25.007956066849292 ], [ -78.032883280099185, 25.00783822421559 ], [ -78.032842223018022, 25.007702160554601 ], [ -78.03270807582895, 25.006607980853829 ] ] ], [ [ [ -78.019503530072143, 25.069439449426856 ], [ -78.019570702928874, 25.069566611128678 ], [ -78.0195914448162, 25.069706455122731 ], [ -78.019563725224188, 25.069845292537881 ], [ -78.019490257384504, 25.069969532989308 ], [ -78.019378232739726, 25.070067014904367 ], [ -78.019238617033565, 25.070128196001793 ], [ -78.019085076910883, 25.07014708738421 ], [ -78.018932642098235, 25.070121839798137 ], [ -78.018796234132239, 25.070054924664493 ], [ -78.018689205676466, 25.069952892154419 ], [ -78.016558370999249, 25.067149280266225 ], [ -78.016491202708778, 25.067022116748916 ], [ -78.016470465097257, 25.066882271906071 ], [ -78.016498187957083, 25.0667434347586 ], [ -78.016571657426496, 25.066619195642534 ], [ -78.016683681700513, 25.06652171589656 ], [ -78.016823295053641, 25.06646053744516 ], [ -78.016976831244961, 25.066441648796165 ], [ -78.017129261231801, 25.066466898868825 ], [ -78.01726566426008, 25.066533816021376 ], [ -78.017372688352452, 25.066635849988316 ], [ -78.019503530072143, 25.069439449426856 ] ] ], [ [ [ -78.01667825268656, 25.161977964325079 ], [ -78.014012610749703, 25.160240227054398 ], [ -78.01390223858094, 25.160141119025152 ], [ -78.013830919151459, 25.1600158202736 ], [ -78.01380563362477, 25.15987659598186 ], [ -78.013828856977838, 25.159737074430847 ], [ -78.013898315789064, 25.15961091295496 ], [ -78.014007210837008, 25.159510461069733 ], [ -78.014144882697209, 25.15944555163388 ], [ -78.014297855167925, 25.159422538367892 ], [ -78.01445115438446, 25.159443673933414 ], [ -78.014589774509375, 25.159506889441133 ], [ -78.017355873406927, 25.161310109720336 ], [ -78.017444780946619, 25.161384551234736 ], [ -78.017511256268506, 25.161476358967796 ], [ -78.023002326155392, 25.171550066598531 ], [ -78.023048660272522, 25.171684731836805 ], [ -78.023046998880432, 25.171825835977568 ], [ -78.022997504446963, 25.171959566777758 ], [ -78.022905021694484, 25.172072833703201 ], [ -78.02277860341718, 25.172154549333438 ], [ -78.022630624354278, 25.172196714700387 ], [ -78.022475569849917, 25.172195202310863 ], [ -78.022328617880078, 25.172150160194761 ], [ -78.022204153265108, 25.172065997419914 ], [ -78.022114359530676, 25.171950952489738 ], [ -78.01667825268656, 25.161977964325079 ] ] ], [ [ [ -78.051721379339028, 25.024360961642397 ], [ -78.051606195214319, 25.024455291734409 ], [ -78.051464656057632, 25.024512573827625 ], [ -78.051310616802269, 25.024527200688503 ], [ -78.051159156036121, 25.02449774050854 ], [ -78.051025099946372, 25.02442707707085 ], [ -78.050921570970729, 25.024322127459556 ], [ -78.050858703246178, 25.024193164946507 ], [ -78.050842650609155, 25.024052813344149 ], [ -78.050874984251251, 25.023914811274668 ], [ -78.050952538978237, 25.023792667326692 ], [ -78.053469801026438, 25.020965339632383 ], [ -78.053584980598501, 25.020871008498908 ], [ -78.053726514545374, 25.020813724847397 ], [ -78.053880548632634, 25.020799095937644 ], [ -78.054032005082931, 25.020828553719792 ], [ -78.054166058435669, 25.020899214676309 ], [ -78.054269586708358, 25.021004162074913 ], [ -78.054332455831869, 25.021133123005686 ], [ -78.054348511643923, 25.021273473937335 ], [ -78.054316182337445, 25.021411476372258 ], [ -78.054238632378173, 25.02153362165518 ], [ -78.051721379339028, 25.024360961642397 ] ] ], [ [ [ -78.059366371214026, 25.005966754903241 ], [ -78.059351970669312, 25.005826255396233 ], [ -78.059385918552636, 25.005688577213828 ], [ -78.059464891657797, 25.005567197238879 ], [ -78.059581159456229, 25.005473996933596 ], [ -78.059723340849587, 25.005418099320458 ], [ -78.059877518229527, 25.005404975984987 ], [ -78.060028599793071, 25.00543591150263 ], [ -78.060161796774977, 25.005507877706314 ], [ -78.060264071017428, 25.005613830098007 ], [ -78.060325411201148, 25.005743397392191 ], [ -78.060785155477362, 25.007382642905931 ], [ -78.060799558025053, 25.007523142076323 ], [ -78.060765611487042, 25.007660820451125 ], [ -78.060686638636142, 25.007782201094845 ], [ -78.060570369794391, 25.007875402368921 ], [ -78.060428186169958, 25.007931301010498 ], [ -78.060274005783739, 25.007944425208745 ], [ -78.060122921039408, 25.007913490247638 ], [ -78.059989721315247, 25.007841524273616 ], [ -78.059887445219147, 25.007735571873081 ], [ -78.059826104244152, 25.007606004477978 ], [ -78.059366371214026, 25.005966754903241 ] ] ], [ [ [ -78.012448436792582, 24.970969600740947 ], [ -78.012454420579658, 24.970828589534722 ], [ -78.01250791482812, 24.970696165430706 ], [ -78.012603683016806, 24.970585290987888 ], [ -78.012732350635076, 24.970506819303441 ], [ -78.012881322845459, 24.970468431660969 ], [ -78.013036017336745, 24.970473885660397 ], [ -78.013181291693812, 24.970522647416939 ], [ -78.013302925581812, 24.970609943825064 ], [ -78.013389012681401, 24.970727229769921 ], [ -78.013431126141995, 24.970863024557662 ], [ -78.014397265657436, 24.978264175078856 ], [ -78.014391284696259, 24.978405186067977 ], [ -78.014337790135897, 24.978537610855962 ], [ -78.014242018265151, 24.978648486746959 ], [ -78.014113343848919, 24.978726960370373 ], [ -78.013964362481076, 24.978765350109601 ], [ -78.013809657622673, 24.978759898059437 ], [ -78.013664373022735, 24.978711137895253 ], [ -78.0135427302816, 24.978623842636566 ], [ -78.01345663669143, 24.978506557417397 ], [ -78.013414519647185, 24.978370763003788 ], [ -78.012448436792582, 24.970969600740947 ] ] ], [ [ [ -77.611556333298438, 24.188442866848174 ], [ -77.608978452551966, 24.182972248396748 ], [ -77.608942999183711, 24.182856883023813 ], [ -77.608941907814426, 24.182737025013243 ], [ -77.608975255364925, 24.182621132426018 ], [ -77.611683688723886, 24.176598587055953 ], [ -77.611763904432536, 24.176478115285459 ], [ -77.611880773425241, 24.176386280411212 ], [ -77.612022855760088, 24.176332071800662 ], [ -77.612176243525383, 24.17632079571246 ], [ -77.612325922205827, 24.176353555904914 ], [ -77.612457240351347, 24.176427145601579 ], [ -77.612557343708929, 24.1765343613854 ], [ -77.612616433455074, 24.176664708298325 ], [ -77.612628725376567, 24.176805427134205 ], [ -77.612593016106615, 24.176942743376699 ], [ -77.609963853593143, 24.182789123875857 ], [ -77.61256163786544, 24.188301881297782 ], [ -77.612600194438656, 24.18844209166928 ], [ -77.612588419757415, 24.188586290234074 ], [ -77.612527522981622, 24.188719667022308 ], [ -77.6062643374852, 24.197932710952742 ], [ -77.606163471180977, 24.19803933722762 ], [ -77.60603161955828, 24.198112154648925 ], [ -77.605881689231424, 24.198144035273291 ], [ -77.605728356555872, 24.19813185836118 ], [ -77.605586630954662, 24.198076815872657 ], [ -77.605470385633197, 24.197984295790395 ], [ -77.605390999528865, 24.197863354690909 ], [ -77.605356243447929, 24.1977258311985 ], [ -77.605369519427271, 24.19758518711269 ], [ -77.605429527769104, 24.197455189657415 ], [ -77.611556333298438, 24.188442866848174 ] ] ], [ [ [ -77.622245423537677, 24.181445402777374 ], [ -77.622297918358342, 24.18132141039094 ], [ -77.622387542058064, 24.181216847495222 ], [ -77.622506505692144, 24.181140801256287 ], [ -77.622644470552913, 24.181099880546299 ], [ -77.622789446661798, 24.181097641607757 ], [ -77.624066064386213, 24.181252063630829 ], [ -77.624222859174807, 24.181296346249972 ], [ -77.624355056402521, 24.181385471171041 ], [ -77.624447948286118, 24.181509522705532 ], [ -77.624491199912512, 24.181654699346673 ], [ -77.624479999090681, 24.181804849246472 ], [ -77.6241343990432, 24.183123865080404 ], [ -77.6240754711459, 24.183254273521637 ], [ -77.623975498378229, 24.183361594470252 ], [ -77.623866987528203, 24.183422557640558 ], [ -77.624180687963118, 24.183540090622319 ], [ -77.624312295036376, 24.183613253581179 ], [ -77.624412815518525, 24.183720143297418 ], [ -77.624472409756194, 24.183850296730739 ], [ -77.624485244153817, 24.183990973614485 ], [ -77.624450062243497, 24.184128403539379 ], [ -77.624370307733216, 24.184249133887935 ], [ -77.624253787467083, 24.18434134667757 ], [ -77.624111907268883, 24.184396015408055 ], [ -77.623958555457264, 24.184407788664938 ], [ -77.623808743323664, 24.184375513975539 ], [ -77.623018786902492, 24.184079542440447 ], [ -77.622887179948009, 24.184006378344758 ], [ -77.622786660387561, 24.183899487534593 ], [ -77.62272706776784, 24.183769333297096 ], [ -77.62271457973273, 24.183632431623096 ], [ -77.622633573862899, 24.18396086413291 ], [ -77.622576552008411, 24.184091983999288 ], [ -77.622478152056175, 24.184200521985193 ], [ -77.622348006037384, 24.184275853571151 ], [ -77.62219885360382, 24.184310604708994 ], [ -77.622045294961808, 24.184301373671005 ], [ -77.621902361653781, 24.184249064051542 ], [ -77.621784045107944, 24.184158796318481 ], [ -77.621701927013845, 24.184039406571667 ], [ -77.621664045610032, 24.183902581578995 ], [ -77.621674108865292, 24.183761714768305 ], [ -77.622245423537677, 24.181445402777374 ] ], [ [ -77.623216866501352, 24.183213692192712 ], [ -77.623201697525417, 24.183190970396147 ], [ -77.62316581454435, 24.183053693011274 ], [ -77.623177930489035, 24.182912962388976 ], [ -77.623395864615276, 24.182081222703985 ], [ -77.6231058243376, 24.182046138979235 ], [ -77.622749090222001, 24.183492510893188 ], [ -77.622749419064434, 24.183491226414557 ], [ -77.622829174789956, 24.183370496814209 ], [ -77.622945695380736, 24.183278285092587 ], [ -77.623087574997797, 24.18322361750559 ], [ -77.623216866501352, 24.183213692192712 ] ] ], [ [ [ -78.049694682522244, 24.765748162282257 ], [ -78.049821211774628, 24.765829195712111 ], [ -78.049914123784333, 24.765941963888256 ], [ -78.049964323648865, 24.76607542834796 ], [ -78.049966897342017, 24.766216524715315 ], [ -78.049921592776371, 24.766351441512217 ], [ -78.049832844539239, 24.766466972115435 ], [ -78.049709339857415, 24.766551807523303 ], [ -78.049563168257336, 24.766597643382934 ], [ -78.049408638147369, 24.766599992905743 ], [ -78.049260876167722, 24.766558626086649 ], [ -78.035132786765018, 24.760253037557142 ], [ -78.035006271715588, 24.760171990183334 ], [ -78.034913377035423, 24.760059210961085 ], [ -78.034863195875303, 24.759925739578467 ], [ -78.034860640203036, 24.75978464119958 ], [ -78.03490596002932, 24.759649727534153 ], [ -78.034994718994668, 24.759534204844588 ], [ -78.035118228684254, 24.759449381235328 ], [ -78.035264399136878, 24.759403559760223 ], [ -78.035418922283966, 24.759401225689302 ], [ -78.035566672479547, 24.759442607480363 ], [ -78.049694682522244, 24.765748162282257 ] ] ], [ [ [ -78.014268988963394, 24.770118796572831 ], [ -78.014137805328019, 24.770114143076778 ], [ -78.014012596447458, 24.770078105611464 ], [ -78.013902205002637, 24.770013229259298 ], [ -78.009364135866605, 24.766486229814014 ], [ -78.000934585465757, 24.763062461254975 ], [ -78.000804941056671, 24.76298563694672 ], [ -78.000707641600641, 24.76287599192479 ], [ -78.000652211429681, 24.762744259080065 ], [ -78.000644076329408, 24.762603333399518 ], [ -78.000684032465742, 24.762467009692838 ], [ -78.00076816850958, 24.762348632251811 ], [ -78.000888248559974, 24.76225978862669 ], [ -78.001032518361598, 24.762209175378342 ], [ -78.0011868558868, 24.762201746825841 ], [ -78.001336153657633, 24.762238230105496 ], [ -78.009830804322405, 24.76568843944878 ], [ -78.009950250637971, 24.765757099526954 ], [ -78.014383642282084, 24.769202742111627 ], [ -78.021052441178284, 24.768625854011521 ], [ -78.021206695918835, 24.768634681358957 ], [ -78.02135041341549, 24.768686599287804 ], [ -78.021469525724058, 24.768776525746897 ], [ -78.021552373347419, 24.768895658174454 ], [ -78.02159084653097, 24.769032335128713 ], [ -78.02158117912181, 24.769173177764266 ], [ -78.021524317275436, 24.769304399428623 ], [ -78.021425826899858, 24.769413155193558 ], [ -78.021295348873721, 24.769488799220451 ], [ -78.021145655347283, 24.769523926874612 ], [ -78.014268988963394, 24.770118796572831 ] ] ], [ [ [ -78.079061371608987, 24.825699648278146 ], [ -78.079061338677889, 24.825702756472833 ], [ -78.079062315422647, 24.825705734253205 ], [ -78.079356865084961, 24.827703024257183 ], [ -78.08306341487426, 24.829587084649329 ], [ -78.083185068375329, 24.829674186772138 ], [ -78.083271274057523, 24.829791333046458 ], [ -78.083313593463899, 24.829927056450082 ], [ -78.083307883950951, 24.830068071480891 ], [ -78.083254704247267, 24.830200574615112 ], [ -78.083159259821713, 24.830311595488617 ], [ -78.083030893385967, 24.830390266539592 ], [ -78.08288217038529, 24.830428886826059 ], [ -78.082727648988381, 24.830423675875053 ], [ -78.08258245498449, 24.830375143760801 ], [ -78.082539472456176, 24.830353296388591 ], [ -78.081962570613484, 24.832588600422458 ], [ -78.082905133946269, 24.832430909056718 ], [ -78.083059717860763, 24.832427489056538 ], [ -78.083207894034814, 24.83246782925373 ], [ -78.083335158093035, 24.83254798089482 ], [ -78.083429052614193, 24.83266009823959 ], [ -78.083480386523121, 24.832793206533541 ], [ -78.083484134786758, 24.832934276265703 ], [ -78.083439930342365, 24.833069498566449 ], [ -78.083352100088035, 24.833185636908738 ], [ -78.083229241389475, 24.833271322801583 ], [ -78.083083380537417, 24.83331816864041 ], [ -78.077962763485829, 24.834174779325689 ], [ -78.077808176649242, 24.834178194265466 ], [ -78.077659999502089, 24.834137848738774 ], [ -78.077659871916495, 24.834137768378842 ], [ -78.07802970515165, 24.835032960236255 ], [ -78.082702710673104, 24.834479545966282 ], [ -78.082857281941827, 24.83448349768662 ], [ -78.083002949871698, 24.834530844512134 ], [ -78.083125455603437, 24.834616951838683 ], [ -78.083212807478859, 24.834733390945829 ], [ -78.083256454846335, 24.834868764034081 ], [ -78.083252125073983, 24.835009819893532 ], [ -78.083200241831832, 24.835142751005115 ], [ -78.083105883680474, 24.835254545112424 ], [ -78.082978286996834, 24.835334258964689 ], [ -78.082829941874778, 24.835374089543059 ], [ -78.076048454664786, 24.836177162801697 ], [ -78.075979559166854, 24.836175398428008 ], [ -78.075910637923457, 24.836175796759907 ], [ -78.065568345907479, 24.834741815374844 ], [ -78.0653930245482, 24.834685204242025 ], [ -78.065253040382743, 24.834573474647339 ], [ -78.064668824278172, 24.833890640878813 ], [ -78.064602576155835, 24.833890737109286 ], [ -78.064455435272535, 24.833847344285942 ], [ -78.06433018997275, 24.833764581598029 ], [ -78.064239100204006, 24.833650550496685 ], [ -78.064191082435087, 24.833516413212713 ], [ -78.064190836862394, 24.833375300092126 ], [ -78.064201691837525, 24.833344647221264 ], [ -78.062766745180312, 24.831667410477095 ], [ -78.059097846303132, 24.83095937617545 ], [ -78.058954486689643, 24.830909494910713 ], [ -78.058834797208064, 24.830821895848654 ], [ -78.058750312184941, 24.830705020830344 ], [ -78.058709173256361, 24.830570132977343 ], [ -78.05871534478932, 24.83043023125726 ], [ -78.058768231888592, 24.830298797776493 ], [ -78.058862737784096, 24.830188498528479 ], [ -78.060920291000357, 24.828434523712993 ], [ -78.061030377022163, 24.8283636165832 ], [ -78.061157356954467, 24.828322479546433 ], [ -78.061291792329456, 24.828314170321139 ], [ -78.067700540029577, 24.828718935588736 ], [ -78.06785530241423, 24.828752095083505 ], [ -78.067990523445985, 24.828828377676651 ], [ -78.068092212688668, 24.828939890916132 ], [ -78.068149848938262, 24.829075097258325 ], [ -78.068157468795732, 24.829220007758465 ], [ -78.067988822315968, 24.830569222776393 ], [ -78.067954047405181, 24.830691449979504 ], [ -78.067883505486947, 24.830800088677215 ], [ -78.067782726265904, 24.830886622659332 ], [ -78.067659609804366, 24.830944268488725 ], [ -78.064308733585733, 24.832003956950864 ], [ -78.064985823094318, 24.832795359605694 ], [ -78.069101542548893, 24.830874004689292 ], [ -78.069257659428516, 24.830828926458949 ], [ -78.069421347331357, 24.830832872453399 ], [ -78.069574638608415, 24.830885409511843 ], [ -78.070869062200643, 24.83157069241933 ], [ -78.071001093395154, 24.831672472747353 ], [ -78.071086650616778, 24.831809515693998 ], [ -78.071115270991427, 24.831965062387617 ], [ -78.071083454338648, 24.832120091092346 ], [ -78.070115689209715, 24.834459999095166 ], [ -78.072299639920345, 24.83476280518224 ], [ -78.072208507128096, 24.834668139743176 ], [ -78.072147343913144, 24.834538535049802 ], [ -78.072133061833341, 24.834398025809506 ], [ -78.072167058766368, 24.834260366073675 ], [ -78.072246006706081, 24.834139030919665 ], [ -78.072362177588033, 24.834045897422808 ], [ -78.072504199800704, 24.833990082066414 ], [ -78.073272464478606, 24.833811379208171 ], [ -78.073230829860947, 24.833787992595411 ], [ -78.073130637433167, 24.833680508626948 ], [ -78.070827325020304, 24.830235041959359 ], [ -78.070768437484361, 24.830104563072187 ], [ -78.070756614124051, 24.829963863558856 ], [ -78.070793012139092, 24.829826716093834 ], [ -78.070874068490511, 24.829706545607632 ], [ -78.070991848732078, 24.829615115168266 ], [ -78.071134823721977, 24.829561374551826 ], [ -78.071288998172179, 24.829550584203595 ], [ -78.071422590592036, 24.829580111443374 ], [ -78.071422575604444, 24.82958010091787 ], [ -78.071335179315057, 24.82946371931957 ], [ -78.071291460837585, 24.829328389450374 ], [ -78.07081924805513, 24.826022809992974 ], [ -78.070823491026246, 24.825881750436604 ], [ -78.070875289319744, 24.825748791412391 ], [ -78.070969572425128, 24.825636947843034 ], [ -78.071097111198682, 24.825557167691777 ], [ -78.071245421297959, 24.825517260324144 ], [ -78.071399985220381, 24.825521132100139 ], [ -78.071545673330462, 24.825568404012106 ], [ -78.071668224793584, 24.825654448788892 ], [ -78.071755643475115, 24.825770843832817 ], [ -78.071799372184117, 24.825906195657566 ], [ -78.072207731527996, 24.828764647940559 ], [ -78.077114615258111, 24.828181949013668 ], [ -78.077269180836637, 24.828185852400399 ], [ -78.077414859789656, 24.828233153894743 ], [ -78.077537392178897, 24.828319223329846 ], [ -78.077624783736781, 24.828435635694316 ], [ -78.077668479927354, 24.82857099580638 ], [ -78.077664203339737, 24.82871205372636 ], [ -78.077612372437898, 24.828845001733495 ], [ -78.077518060659017, 24.828956825917572 ], [ -78.077390499840675, 24.829036580083717 ], [ -78.077242176565903, 24.829076457266908 ], [ -78.071845298090167, 24.829717338497325 ], [ -78.071690756316514, 24.829713434125679 ], [ -78.071593375266318, 24.829681819223595 ], [ -78.071671147916391, 24.829765257038815 ], [ -78.073974472010406, 24.833210709444216 ], [ -78.074033364617932, 24.833341186552861 ], [ -78.074045192424066, 24.833481885363526 ], [ -78.074008797487537, 24.83361903332214 ], [ -78.073991944105714, 24.833644020082577 ], [ -78.076723642560125, 24.833008561185867 ], [ -78.076866664051011, 24.832994988675889 ], [ -78.07700791351823, 24.833019559309545 ], [ -78.077135434875174, 24.833080193289309 ], [ -78.077238434026228, 24.833171758227969 ], [ -78.077308192516369, 24.833286503571721 ], [ -78.07742063058393, 24.833558669420803 ], [ -78.077427987556888, 24.833536167995963 ], [ -78.077515823965342, 24.833420032588506 ], [ -78.07763868728658, 24.833334351009182 ], [ -78.077784550828, 24.833287510295563 ], [ -78.07841296969579, 24.83318239460926 ], [ -78.078402598104262, 24.833172665371713 ], [ -78.07833430173811, 24.833046063343854 ], [ -78.078312218340372, 24.832906398041626 ], [ -78.078382667158593, 24.828240355205981 ], [ -78.076870439551328, 24.827471627518747 ], [ -78.076863742132502, 24.827466831708364 ], [ -78.076855853145446, 24.827463912116603 ], [ -78.068760544051926, 24.823011490591156 ], [ -78.068642232922613, 24.822920639260015 ], [ -78.068560474223261, 24.822800867888379 ], [ -78.068523271010491, 24.822663900602869 ], [ -78.068534264862507, 24.822523144762169 ], [ -78.068592379466239, 24.822392378533646 ], [ -78.06869192603483, 24.822284402188373 ], [ -78.06882316021327, 24.822209785136145 ], [ -78.068973235940319, 24.822175831343657 ], [ -78.069127462889625, 24.822185864398193 ], [ -78.069270744411085, 24.822238902189522 ], [ -78.077358793983322, 24.826687328287399 ], [ -78.078278704450199, 24.827154959624437 ], [ -78.078083184943097, 24.825829095970313 ], [ -78.077191402094698, 24.820347473490642 ], [ -78.077192899868038, 24.820206368022728 ], [ -78.077242100661564, 24.820072591162347 ], [ -78.077334188223219, 24.819959237890046 ], [ -78.077460148319162, 24.819877403950553 ], [ -78.077607651133405, 24.819835099748133 ], [ -78.077762258182375, 24.819836466259879 ], [ -78.077908835608667, 24.819881369708284 ], [ -78.078033035528136, 24.819965414661549 ], [ -78.078122700449001, 24.820080374277445 ], [ -78.078169053308244, 24.82021499557969 ], [ -78.079061371608987, 24.825699648278146 ] ], [ [ -78.081641748990847, 24.829896992244159 ], [ -78.079363665833625, 24.828739023352927 ], [ -78.079300592447709, 24.832918820902727 ], [ -78.079278121824672, 24.833037675988333 ], [ -78.080901233249648, 24.832766155279078 ], [ -78.081641748990847, 24.829896992244159 ] ], [ [ -78.065605299063435, 24.833519409267748 ], [ -78.065911203405207, 24.83387694887621 ], [ -78.069116443903141, 24.834321441793804 ], [ -78.070010764759175, 24.832159160023792 ], [ -78.069311767434741, 24.831789101991919 ], [ -78.065605299063435, 24.833519409267748 ] ], [ [ -78.072853868093347, 24.834839643845552 ], [ -78.075990283418591, 24.835274437871551 ], [ -78.077022570590884, 24.835152213512409 ], [ -78.076539273569281, 24.83398235140244 ], [ -78.072853868093347, 24.834839643845552 ] ], [ [ -78.063665883038112, 24.83125256057016 ], [ -78.06704199558007, 24.830184902921939 ], [ -78.067116823943991, 24.829586295658487 ], [ -78.061437954989927, 24.829227626420483 ], [ -78.060231441754112, 24.830256138012885 ], [ -78.063147614217073, 24.830818899003354 ], [ -78.063307121053541, 24.83087759070493 ], [ -78.063434931923837, 24.830982610021238 ], [ -78.063665883038112, 24.83125256057016 ] ] ] ] } } +] +} diff --git a/src/ckanext-mappreview/ckanext/mappreview/public/data/recreation/roads-simple-buf.qmd b/src/ckanext-mappreview/ckanext/mappreview/public/data/recreation/roads-simple-buf.qmd new file mode 100644 index 00000000..b190199d --- /dev/null +++ b/src/ckanext-mappreview/ckanext/mappreview/public/data/recreation/roads-simple-buf.qmd @@ -0,0 +1,26 @@ + + + + + + dataset + + + + + + + + + + 0 + 0 + + + + + false + + + + diff --git a/src/ckanext-mappreview/ckanext/mappreview/public/data/recreation/roads-simple.geojson b/src/ckanext-mappreview/ckanext/mappreview/public/data/recreation/roads-simple.geojson new file mode 100644 index 00000000..b1cd2054 --- /dev/null +++ b/src/ckanext-mappreview/ckanext/mappreview/public/data/recreation/roads-simple.geojson @@ -0,0 +1,1592 @@ +{ +"type": "FeatureCollection", +"name": "roads-simple", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, +"features": [ +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.529447071053198, 24.006080210131625 ], [ -77.527164692569997, 24.006759863753185 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.530537913710617, 23.992450608663997 ], [ -77.525855681381103, 23.994392672304848 ], [ -77.524731274334229, 23.997101291082782 ], [ -77.529447071053198, 24.006080210131636 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.529335189754988, 23.990651618309819 ], [ -77.529749150558331, 23.99249660524687 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.528477875847116, 23.989707096639215 ], [ -77.529335189755002, 23.990651618309844 ], [ -77.52908474896104, 23.989628753590349 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.527998208241513, 23.986813347474911 ], [ -77.52908474896104, 23.989628753590349 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.527623405892626, 23.96902088039997 ], [ -77.528960387406045, 23.978119317669986 ], [ -77.527998208241513, 23.986813347474911 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.527623405892626, 23.96902088039997 ], [ -77.528613555381639, 23.969153783545369 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.524983007255202, 23.957585585114366 ], [ -77.527623405892626, 23.969020880399984 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.522057311307321, 23.947289373430671 ], [ -77.524983007255202, 23.957585585114373 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.52908474896104, 23.989628753590374 ], [ -77.527192662894507, 23.988786161422979 ], [ -77.527998208241513, 23.986813347474911 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.522057311307321, 23.947289373430671 ], [ -77.525883651705584, 23.945162546060551 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.516429682008066, 23.868481347517097 ], [ -77.515501067233046, 23.885771062630397 ], [ -77.508441357316912, 23.898138441427296 ], [ -77.513744530851383, 23.905932658162023 ], [ -77.518879882438569, 23.919525383943956 ], [ -77.521755231802189, 23.934180196898421 ], [ -77.522057311307307, 23.947289373430682 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.515769582348724, 23.874763203432213 ], [ -77.514628393107117, 23.87464043392427 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.516429682008066, 23.868481347517097 ], [ -77.514885720092977, 23.868992910701159 ], [ -77.515993344945102, 23.873873121861688 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.523019490471768, 23.825257195751522 ], [ -77.519338595761155, 23.837835027704489 ], [ -77.514068986616152, 23.84779203926297 ], [ -77.516429682008066, 23.868481347517108 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.546229265782586, 24.06409844417027 ], [ -77.562815668240205, 24.057984161427875 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.546229265782586, 24.06409844417027 ], [ -77.546190107328229, 24.06352635989424 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.542609905785952, 24.065441810612064 ], [ -77.546229265782586, 24.064098444170291 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.541451934349652, 24.055838730020163 ], [ -77.542609905785966, 24.065441810612079 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.541272924272533, 24.054873274186569 ], [ -77.541451934349652, 24.055838730020163 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.540691141521918, 24.052829957469335 ], [ -77.542391737254476, 24.0551133617654 ], [ -77.541451934349652, 24.055838730020181 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.540612824613191, 24.052518348811688 ], [ -77.540120546901122, 24.053064940546989 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.540310745108059, 24.051282123405645 ], [ -77.541317676791806, 24.052319123207962 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.540310745108059, 24.051282123405645 ], [ -77.539024110178801, 24.051481350618726 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.536551533488677, 24.03696249649472 ], [ -77.540310745108059, 24.05128212340566 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.53465631524989, 24.031796239659013 ], [ -77.533720936644286, 24.032159980873274 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.534761875905389, 24.032203711536038 ], [ -77.533961481435412, 24.032589149147711 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.535548176875722, 24.031480819523363 ], [ -77.534638363289503, 24.031725701993594 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.535169799455929, 24.029395898476061 ], [ -77.534120797870358, 24.02973171256243 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.534788850390967, 24.027657634900635 ], [ -77.533675377903094, 24.028039984946439 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.533452793184807, 24.021664798063597 ], [ -77.532283658559024, 24.021992274760546 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.535924998218761, 24.033605863505919 ], [ -77.533318163970776, 24.021108404183273 ], [ -77.531846924899526, 24.020081371688768 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.536551533488677, 24.03696249649472 ], [ -77.535924998218761, 24.033605863505947 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.531265142148882, 24.017863771057062 ], [ -77.536551533488677, 24.036962496494734 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.531455340355791, 24.016054916413491 ], [ -77.532753163414895, 24.019718587105473 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.531455340355791, 24.016054916413509 ], [ -77.530621824684246, 24.016468809127858 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.530593854359708, 24.013494883727041 ], [ -77.531455340355805, 24.01605491641353 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.530593854359708, 24.013494883727041 ], [ -77.529732368363597, 24.013586861831921 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.529894596245967, 24.008369555376003 ], [ -77.530593854359708, 24.013494883727052 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.529894596245967, 24.008369555376017 ], [ -77.526868207129766, 24.008717041717887 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.529447071053198, 24.006080210131611 ], [ -77.529894596245967, 24.008369555376028 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.529849843726694, 24.007669469748478 ], [ -77.534280343135293, 24.006146642598846 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.542991719069178, 23.987347907716948 ], [ -77.5437605288745, 23.982196144222112 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.556258478566406, 23.978338430376812 ], [ -77.55102539574537, 23.984450951627128 ], [ -77.540232162427003, 23.988480529188983 ], [ -77.536535306570499, 23.991541112823377 ], [ -77.529335189754988, 23.990651618309794 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.554315894791941, 23.980783473686618 ], [ -77.547685340990284, 23.976853270303163 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.54772498555711, 23.974679834456193 ], [ -77.555445764946498, 23.979361731927789 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.54919183452968, 23.974761338962175 ], [ -77.547685340990284, 23.976853270303163 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.549657658189872, 23.975811836868431 ], [ -77.5526012672767, 23.971863369299623 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.54772498555711, 23.974679834456214 ], [ -77.550519927518351, 23.970830951861828 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.558256505338704, 23.995113272676669 ], [ -77.562491212475422, 23.999860957250235 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.551521251187282, 23.989409687006187 ], [ -77.555912592141482, 23.991275134858675 ], [ -77.558256505338704, 23.995113272676669 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.545860057498572, 23.991566448932531 ], [ -77.54819278256592, 23.9893381350435 ], [ -77.551521251187282, 23.989409687006216 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.525171954417047, 23.995309106234068 ], [ -77.543169312276945, 23.993012787994196 ], [ -77.545860057498572, 23.991566448932531 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.526297612508941, 23.995108162049952 ], [ -77.525964288769302, 23.994338964861889 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.608252327959249, 24.117654335599529 ], [ -77.610611179685421, 24.119427335684435 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.572126216438775, 24.138377000784203 ], [ -77.597122115822756, 24.127369350890611 ], [ -77.606666545286188, 24.120105773096356 ], [ -77.611106736770722, 24.112425651514904 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.572165861005629, 24.136703754349668 ], [ -77.570352122073302, 24.136911780773989 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.566457043382627, 24.129992459443947 ], [ -77.572126216438789, 24.138377000784203 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.561984236013302, 24.125055773056072 ], [ -77.560649114342581, 24.125723096671603 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.562284452724171, 24.128337193756895 ], [ -77.563537142498703, 24.126903882534833 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.564415348191076, 24.127821614823649 ], [ -77.562770098667784, 24.128762318682494 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.551808375940283, 24.108680407416983 ], [ -77.566457043382627, 24.129992459443962 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.556208922858019, 24.107115333344055 ], [ -77.577626900085946, 24.106608715672834 ], [ -77.587438930375455, 24.102781878154918 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.555138520981117, 24.107496026529823 ], [ -77.554989852428108, 24.107124380069976 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.554392965806386, 24.107761186541897 ], [ -77.553978915974056, 24.106644902715836 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.553703056519495, 24.108006555846597 ], [ -77.55325540262946, 24.106943445430286 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.551808375940283, 24.108680407416983 ], [ -77.556208922858019, 24.107115333344069 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.550014459291404, 24.10505266314988 ], [ -77.551808375940297, 24.108680407416994 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.548131065166643, 24.101887357733798 ], [ -77.549261212521728, 24.104365099035064 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.548636810594203, 24.097254022083817 ], [ -77.548151164650591, 24.102067160602662 ], [ -77.550014459291418, 24.105052663149905 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.548620386279907, 24.096521606830425 ], [ -77.551857931648854, 24.095688808371676 ], [ -77.551065040312309, 24.094078337308687 ], [ -77.549925259016049, 24.095770236130853 ], [ -77.551550686255936, 24.095073574624887 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.542609905785952, 24.065441810612064 ], [ -77.54650591512727, 24.073140371691288 ], [ -77.545613912373668, 24.076117499288532 ], [ -77.548636810594203, 24.097254022083835 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.603117253025488, 24.209200551297812 ], [ -77.60207673784673, 24.209470268598384 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.595225163219524, 24.205343499548292 ], [ -77.5952202904583, 24.204825057569305 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.598397129380942, 24.208369254859537 ], [ -77.599301498938473, 24.20744883240398 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.599524737460968, 24.209230519914961 ], [ -77.595789835608798, 24.206733110976039 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.599075673015363, 24.208890875174639 ], [ -77.599869613800394, 24.207849610735739 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.600269527273113, 24.209050708106375 ], [ -77.600708254299363, 24.208465411791803 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.601058128250685, 24.209590142770953 ], [ -77.601489900331174, 24.209039362671142 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.597147981736867, 24.206193664218056 ], [ -77.60207673784673, 24.209470268598384 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.597147981736867, 24.20619366421807 ], [ -77.599535690252296, 24.204095794010382 ], [ -77.60807886750942, 24.201378501274611 ], [ -77.60754218073302, 24.200199657734967 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.592723054029335, 24.200599266935789 ], [ -77.592843534734229, 24.20418570344177 ], [ -77.597147981736867, 24.206193664218084 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.592723054029335, 24.200599266935789 ], [ -77.590872032290264, 24.200389472261545 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.592701148446594, 24.189229896124854 ], [ -77.592723054029335, 24.200599266935797 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.592701148446594, 24.189229896124854 ], [ -77.591189663239561, 24.190099119307824 ], [ -77.591682538850549, 24.193426091244017 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.573599480322969, 24.141533441483656 ], [ -77.583018880888517, 24.160772055851314 ], [ -77.585669456396502, 24.174881862412494 ], [ -77.591857783512239, 24.185243382893002 ], [ -77.592701148446594, 24.189229896124864 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.577553438002226, 24.149678974635993 ], [ -77.576689167882193, 24.14997971312923 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.577969644073733, 24.148139858457156 ], [ -77.57720294867886, 24.148439687738005 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.580204013510212, 24.150848290769929 ], [ -77.578177747109478, 24.151557870557482 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.578579136416749, 24.154746796571221 ], [ -77.579689232316525, 24.154116322706731 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.579749873632323, 24.157690873294008 ], [ -77.583029833679859, 24.156504831401104 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.581605970803651, 24.161531546897695 ], [ -77.583150314384767, 24.161271721521651 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.582209664215966, 24.163233922377529 ], [ -77.583676048369838, 24.162890624866385 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.582624580399724, 24.164409577245333 ], [ -77.584114160024043, 24.164039833922008 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.582964116931748, 24.165278969490206 ], [ -77.584245593520308, 24.164929214701029 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.583150314384781, 24.16597847619472 ], [ -77.584136065606756, 24.165688681024921 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.58904291613392, 24.167137650297004 ], [ -77.584563224469633, 24.168636566723755 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.575275257400293, 24.146680679248554 ], [ -77.582964116931748, 24.165278969490231 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.570352122073302, 24.136911780773982 ], [ -77.573741866610561, 24.145431368743246 ], [ -77.576173386291444, 24.145951083396824 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.572372767691164, 24.141973213584567 ], [ -77.573513567595199, 24.141363077634477 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.572126216438775, 24.138377000784203 ], [ -77.573544716366172, 24.141433493067911 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.59251872061337, 24.188163450809839 ], [ -77.590991666275684, 24.189130221198049 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.607251431852617, 24.199992743630933 ], [ -77.608820565048376, 24.198416192495273 ], [ -77.6068452095532, 24.199171777039084 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.665407422986391, 24.256139469168623 ], [ -77.669955891512146, 24.251524606950056 ], [ -77.673851246608621, 24.250684556410469 ], [ -77.693666241545444, 24.252322118150822 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.664672670378351, 24.258526584477771 ], [ -77.665249975998918, 24.256176685118682 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.662674981402887, 24.25913093813843 ], [ -77.664672670378351, 24.258526584477782 ], [ -77.66512168586101, 24.260047084449344 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.662567545842663, 24.258856204896478 ], [ -77.663331455300224, 24.260950869521626 ], [ -77.66226431460764, 24.261110360337998 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.661844455974446, 24.257239993375798 ], [ -77.662567545842677, 24.258856204896496 ], [ -77.661109703366463, 24.259499493897451 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.661844455974446, 24.257239993375798 ], [ -77.660456589937112, 24.257511135558556 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.653785502765984, 24.245787695683362 ], [ -77.66184445597446, 24.257239993375808 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.653114895226878, 24.246867041659524 ], [ -77.6540012634524, 24.246191786874999 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.651400472474833, 24.243299316373882 ], [ -77.650922300142653, 24.243857610838411 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.648438136563172, 24.238061863308086 ], [ -77.65442112208558, 24.245362335147643 ], [ -77.647499286008497, 24.239465628219708 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.647499286008497, 24.239465628219708 ], [ -77.645504957501018, 24.238008690090414 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.645504957501018, 24.238008690090414 ], [ -77.648333171904881, 24.237556716842999 ], [ -77.647499286008497, 24.239465628219723 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.644542781466711, 24.24038551122171 ], [ -77.646420482576076, 24.238487248249864 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.642431825561133, 24.236913316863092 ], [ -77.645504957501018, 24.238008690090414 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.642431825561133, 24.236913316863092 ], [ -77.64127721431997, 24.23796615150027 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.632466014393685, 24.237854487633474 ], [ -77.632046155760563, 24.2352596044704 ], [ -77.642431825561133, 24.236913316863113 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.630675783832913, 24.23513198590074 ], [ -77.630928716415653, 24.234723309614203 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.622815097201126, 24.237099424629694 ], [ -77.626902887504443, 24.232797606987738 ], [ -77.632046155760563, 24.235259604470414 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.623287438163416, 24.235552063209948 ], [ -77.623549849809152, 24.235966821724613 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.625579166536056, 24.235807299378919 ], [ -77.62430209652689, 24.234525795947423 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.628815576833247, 24.232116959972675 ], [ -77.628379535890986, 24.231988527227269 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.626902887504443, 24.232797606987738 ], [ -77.62860044779876, 24.231427492702046 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.635609122772422, 24.219439244278679 ], [ -77.627637640112454, 24.233084753855643 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.637589633468622, 24.21463650869536 ], [ -77.635609122772422, 24.219439244278689 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.638081623612095, 24.213722160129937 ], [ -77.637479453583254, 24.2141148901344 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.635049311261568, 24.213429651251111 ], [ -77.637300220044835, 24.213445606298198 ], [ -77.637589633468622, 24.21463650869536 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.634197931255443, 24.215275105112045 ], [ -77.635049311261568, 24.213429651251126 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.640654905736, 24.213218455301188 ], [ -77.637589633468622, 24.214636508695378 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.676027447295496, 24.280813851490802 ], [ -77.692447543114881, 24.268595715998448 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.67219838237736, 24.285588537138114 ], [ -77.674240356703095, 24.284860028718906 ], [ -77.676027447295496, 24.280813851490816 ], [ -77.674028980396443, 24.280918948633897 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.670848727783095, 24.273675800346343 ], [ -77.670983239978199, 24.281155416887863 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.663331455300224, 24.260950869521604 ], [ -77.671886393288389, 24.287785106857701 ], [ -77.673020138933026, 24.287513620406237 ], [ -77.670983239978213, 24.281155416887877 ], [ -77.674201924647335, 24.280717512366586 ], [ -77.674153884577649, 24.274227590382758 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.663959781789814, 24.262543143511888 ], [ -77.661192673775801, 24.263392798428871 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.691102421163649, 24.248720124707599 ], [ -77.69650212499657, 24.256393925259164 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.680366669570233, 24.299320060843932 ], [ -77.68558613373726, 24.29918907783625 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.678511440754932, 24.299331968383353 ], [ -77.680451592016041, 24.298361500253041 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.677310919425423, 24.300640819891512 ], [ -77.679132027858657, 24.29959393396857 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.674239188483057, 24.29937959853001 ], [ -77.677041629193511, 24.300725142785865 ], [ -77.678472245779972, 24.29926052312992 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.677142425450555, 24.295752962881625 ], [ -77.676172807248307, 24.29619429309761 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.677223138420743, 24.295944374195621 ], [ -77.67782726310972, 24.295412968371267 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.676610484468782, 24.294491461513832 ], [ -77.678472245779972, 24.299260523129934 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.680111902232937, 24.296396726102142 ], [ -77.679098114293552, 24.293583051542473 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.681302918376886, 24.296138494394221 ], [ -77.680171934165045, 24.293190923795414 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.681138176227648, 24.292838080331471 ], [ -77.682354280886187, 24.295910541869972 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.683354459357261, 24.295701026826823 ], [ -77.682148602661428, 24.292469102021798 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.680451592016041, 24.298361500253066 ], [ -77.680062531403792, 24.297068944764703 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.678264424928983, 24.293887490621081 ], [ -77.679667692516603, 24.297492240289579 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.676610484468782, 24.294491461513832 ], [ -77.682659575606081, 24.292282509582169 ], [ -77.683142980297376, 24.292282509582169 ], [ -77.684351492025669, 24.295450051334729 ], [ -77.678811935563047, 24.297706578915832 ], [ -77.677453176430717, 24.294187807327784 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.676610484468782, 24.294491461513832 ], [ -77.675212530361492, 24.294979688289999 ], [ -77.674376370895445, 24.299040233345245 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.674167331028897, 24.289668632710782 ], [ -77.677133084135093, 24.289561456656319 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.673020138933026, 24.287513620406237 ], [ -77.676610484468796, 24.29449146151385 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.819236294769681, 24.753745174034034 ], [ -77.821355927334011, 24.751376078424368 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.826270679763439, 24.760513769745927 ], [ -77.827924459016955, 24.759223534635062 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.832536406794361, 24.773267340026432 ], [ -77.839896889105731, 24.76874134727073 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.839873596440214, 24.780584717588848 ], [ -77.848165785373283, 24.772590566553578 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.855759194340109, 24.796867506513031 ], [ -77.865635284530072, 24.78202276419303 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.913596815411466, 24.802771055883063 ], [ -77.898524528275928, 24.798136205502587 ], [ -77.885806732889804, 24.797374987666331 ], [ -77.868756501712781, 24.806297858635673 ], [ -77.866893088469368, 24.804817805980175 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.933194819032266, 24.899064427810814 ], [ -77.929330715490494, 24.871603173128648 ], [ -77.921244371981174, 24.853885202387403 ], [ -77.917663007722936, 24.829202370619935 ], [ -77.917625309151774, 24.814934373404721 ], [ -77.907465544229808, 24.784853285866031 ], [ -77.881019996575901, 24.771743999963942 ], [ -77.876741208751625, 24.772462821749148 ], [ -77.871482258077762, 24.770734219474551 ], [ -77.873631076632648, 24.762347589644701 ], [ -77.868013989532955, 24.760276518353937 ], [ -77.868786810241318, 24.757366690437571 ], [ -77.842378961158573, 24.740300033859331 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.991927933029118, 25.056003913753358 ], [ -77.99679989437341, 25.063579837712183 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.968501439779729, 25.065878237621078 ], [ -77.964196662280003, 25.067308203379749 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.968501439779729, 25.065878237621078 ], [ -77.968681106103716, 25.063995034071663 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.969282200278911, 25.067227942752204 ], [ -77.96762597060345, 25.064335604425171 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.967077376615691, 25.068029790050176 ], [ -77.965541333364385, 25.065041836964983 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.965014882694732, 25.068780994026248 ], [ -77.969283881079875, 25.0672619353358 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.991927933029118, 25.056003913753358 ], [ -77.985323749694487, 25.061793207699225 ], [ -77.965863670149488, 25.072169559435523 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.97959862231302, 25.051358186510054 ], [ -77.989748181507167, 25.053617535924445 ], [ -77.991927933029118, 25.056003913753383 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.978726448605073, 25.049893809462201 ], [ -77.976883009758382, 25.049113541319095 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.969666640889955, 25.062902301008908 ], [ -77.977912594519836, 25.057205487818589 ], [ -77.979387405124058, 25.054625870253105 ], [ -77.980138723733731, 25.052567178844701 ], [ -77.977652879444889, 25.048222806369235 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.969601712121218, 25.063036735879344 ], [ -77.969161814608285, 25.063841212048494 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.962385343252777, 25.066120295223268 ], [ -77.969666640889955, 25.062902301008908 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.966243967223576, 25.070993337015132 ], [ -77.963349999245466, 25.065784216229602 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.991927933029118, 25.056003913753358 ], [ -77.994702131869118, 25.055512762722966 ], [ -78.003734374283937, 25.057978495484285 ], [ -78.012466652928538, 25.054093685867862 ], [ -78.020621223571212, 25.052674592490241 ], [ -78.040796564561845, 25.054556648917053 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.040796564561845, 25.054556648917039 ], [ -78.049282636384419, 25.147288611781669 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.040954269789111, 25.050541808366962 ], [ -78.053217286603441, 25.054757936653832 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.03920065678966, 25.041605337994032 ], [ -78.05772785292622, 25.040365030421388 ], [ -78.053217286603441, 25.054757936653871 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.041396492102322, 25.053429431481842 ], [ -78.039174538248702, 25.041472237037429 ], [ -78.022732039227236, 25.05268008744784 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.006400031589422, 25.146790811269518 ], [ -78.011772189849339, 25.157807308225895 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.009075026486371, 25.146396152064799 ], [ -78.008475083348074, 25.145367718009055 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.01304118643796, 25.143196846564106 ], [ -78.012503462990196, 25.142598825130342 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.01378213076633, 25.142676928071637 ], [ -78.010035660012903, 25.145305815764864 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.010224823710374, 25.144159143406615 ], [ -78.010759829902128, 25.14479074553655 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.009874710956609, 25.132391415966495 ], [ -78.010609887942294, 25.131092897985386 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.009716595241869, 25.132654993777603 ], [ -78.009267153191644, 25.132227710485672 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.009289321657619, 25.133278024376441 ], [ -78.008240014267116, 25.132087221955523 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.007097285762399, 25.137021364700622 ], [ -78.005823651473477, 25.135606076468772 ], [ -78.008683383587055, 25.13363258689898 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.005998494903409, 25.138777996164745 ], [ -78.003023035269266, 25.136388773668799 ], [ -78.005446787551548, 25.13319105605331 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.00076924122628, 25.14178055138613 ], [ -77.999956397473085, 25.142309013064228 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.00478740790571, 25.140744830113938 ], [ -78.002255628045177, 25.138819058411908 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.000925439781994, 25.141843247613419 ], [ -78.002493102702942, 25.139807587475666 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.001836594031275, 25.139320526274702 ], [ -78.004381877809024, 25.141292457390815 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.003976279307096, 25.141773861983076 ], [ -78.001403634959559, 25.139838658581798 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.002343202312034, 25.142516383477485 ], [ -78.004456596070384, 25.139606476115659 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.004796512548978, 25.137940773792629 ], [ -78.001661716134308, 25.142112143206099 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.002786571631958, 25.142944501926085 ], [ -78.000133745201055, 25.141365807707512 ], [ -78.003665920783163, 25.137131327913369 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.006577379317363, 25.146723919968672 ], [ -78.000547556566318, 25.140864099761558 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.010538145242066, 25.140877478666852 ], [ -78.007044202544094, 25.137109854061197 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.014484132189452, 25.140141636697244 ], [ -78.01330007574866, 25.138942759404568 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.012337157697345, 25.142712704141481 ], [ -78.011254925642618, 25.141385875982447 ], [ -78.013759962300242, 25.13955964945314 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.011628485600255, 25.143197973589245 ], [ -78.009998007959254, 25.141271189048599 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.014168064800728, 25.14062624529285 ], [ -78.014794490713399, 25.140910925923706 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.017004653146856, 25.13941883946891 ], [ -78.014794490713399, 25.140910925923716 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.017521212030942, 25.140014536271522 ], [ -78.014875775088711, 25.141880892387015 ], [ -78.013738842239661, 25.141284348437686 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.018138440072661, 25.139495361678264 ], [ -78.01863226576674, 25.139141878335405 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.016389875903343, 25.13870987704551 ], [ -78.017521212030942, 25.140014536271522 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.016018431192037, 25.13828152621528 ], [ -78.017521212030971, 25.140014536271522 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.006577379317363, 25.146723919968682 ], [ -78.017136811076895, 25.137553822974922 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.0053074296723, 25.143535720029199 ], [ -78.004659231460082, 25.142783900195649 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.003976279307096, 25.141773861983101 ], [ -78.005780792042799, 25.143342797547561 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.00382110004513, 25.143379308188635 ], [ -78.005468956017523, 25.142208672415201 ], [ -78.004381877809024, 25.14129245739084 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.008823783871648, 25.145118517751467 ], [ -78.006872958863966, 25.142897676543875 ], [ -78.004249690387709, 25.144081684264258 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.010538145242066, 25.140877478666852 ], [ -78.004212742944375, 25.145426221478825 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.011413417879609, 25.131935185415987 ], [ -78.010065217967465, 25.132073842087088 ], [ -78.00329644634985, 25.14257658772506 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.016361318471183, 25.136798373350114 ], [ -78.010538145242066, 25.140877478666852 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.006555339227447, 25.113609303227769 ], [ -78.001138343526932, 25.1151785676057 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.996071520002005, 25.122414060931458 ], [ -77.996542855493374, 25.122612498057492 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.991647422505622, 25.127748265558694 ], [ -77.993544415210778, 25.122717038209359 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.998179791950122, 25.133273055824635 ], [ -77.995424565512849, 25.133342421944239 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.000238562324242, 25.139770300270129 ], [ -78.001530815155618, 25.13823406812125 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.000075255647715, 25.115619009366863 ], [ -77.996397305281491, 25.123693541549482 ], [ -77.999045713556811, 25.137552720478794 ], [ -78.000934390771903, 25.140400214140801 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.997933999587218, 25.116403942295971 ], [ -77.995168955062709, 25.117528401524353 ], [ -77.992137131112145, 25.121649243873474 ], [ -77.996383104700939, 25.123179256045876 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.999791244036459, 25.115625438346729 ], [ -77.998541592946779, 25.116062608184677 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.997933999587218, 25.116403942295978 ], [ -78.001643229004088, 25.118302216836081 ], [ -78.005051419511773, 25.116394207478759 ], [ -78.006975918252721, 25.111711670519998 ], [ -78.006029795966654, 25.103397535126209 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.049282636384405, 25.147288611781669 ], [ -78.026349922337403, 25.147142626361909 ], [ -78.010609887942294, 25.131092897985386 ], [ -78.005718005667859, 25.122098677460222 ], [ -77.998245789886056, 25.11927567952208 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.743487967677709, 24.516990844916119 ], [ -77.755545819854888, 24.544833659229592 ], [ -77.75460166727882, 24.567166571167 ], [ -77.757900513629224, 24.580418551628117 ], [ -77.765385482244895, 24.592138299723732 ], [ -77.76580636953787, 24.611520541179008 ], [ -77.7620297592333, 24.618738986372641 ], [ -77.760892226009076, 24.629679617365859 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.72945649535643, 24.50331295549806 ], [ -77.741616725523812, 24.513063067647199 ], [ -77.743487967677709, 24.51699084491613 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.724940488456156, 24.489944136202634 ], [ -77.725969956024102, 24.500171436607207 ], [ -77.729456495356445, 24.503312955498075 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.724428598505227, 24.479074130086786 ], [ -77.724940488456156, 24.489944136202649 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.726783292279421, 24.473788897376444 ], [ -77.724428598505227, 24.479074130086797 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.730804472227192, 24.467053915924975 ], [ -77.732550585726429, 24.468865821840961 ], [ -77.726783292279421, 24.473788897376465 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.727568190204195, 24.470170377955039 ], [ -77.727518290602831, 24.469996570863749 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.727858261176394, 24.469797649016048 ], [ -77.727261056233644, 24.470253206458281 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.750216476699222, 24.464786408362258 ], [ -77.732914596358214, 24.466976262231611 ], [ -77.727972014498803, 24.469652698575114 ], [ -77.728876353412105, 24.470817474186539 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.770697762402349, 24.701349092594903 ], [ -77.770766014395818, 24.699747239377476 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.773861892521765, 24.702243482321549 ], [ -77.771232403017777, 24.703539981059588 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.767239661400524, 24.702857916140438 ], [ -77.766147629505227, 24.701607454087917 ], [ -77.770402003764048, 24.7016281229842 ], [ -77.772335810245323, 24.704242710706033 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.76933709893288, 24.698110224148035 ], [ -77.770402003764048, 24.701628122984218 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.770959395043931, 24.712375484421123 ], [ -77.767043838491404, 24.706849831776449 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.774918010664408, 24.710195085133556 ], [ -77.772984204183146, 24.710381092249765 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.775009013322375, 24.710308756182037 ], [ -77.772335810245323, 24.704242710706033 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.773791852772376, 24.702124175466277 ], [ -77.777160250899826, 24.709795818370182 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.766272758159857, 24.707229267467635 ], [ -77.774428871377978, 24.703209283383412 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.764782589636042, 24.703260954953215 ], [ -77.769548853845791, 24.705617155758716 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.772540423488223, 24.696422802993958 ], [ -77.762826032490253, 24.701287085756853 ], [ -77.764077319036986, 24.702299860246619 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.770970770376152, 24.712809492992591 ], [ -77.779377140903634, 24.708645015025933 ], [ -77.772256182919605, 24.696698494088693 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.789512561932028, 24.717490489273949 ], [ -77.785155809683019, 24.719216110161362 ], [ -77.78123132005922, 24.7184411336805 ], [ -77.775316147292926, 24.710753105648479 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.762632651842111, 24.6960267266216 ], [ -77.786350219568504, 24.696481461918442 ], [ -77.796861026560933, 24.711373125509628 ], [ -77.795393608701602, 24.7140495091455 ], [ -77.789512561932028, 24.71749048927396 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.762172461893684, 24.695385125435507 ], [ -77.757900513629082, 24.695799358350794 ], [ -77.757001862381884, 24.694218103899932 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.762529244222151, 24.695913986939878 ], [ -77.765044222277581, 24.693546323059689 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.762899972149825, 24.670646766466231 ], [ -77.762632651842111, 24.696026726621611 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.759993475322091, 24.664170214476556 ], [ -77.760192643075996, 24.664661490499363 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.764306715943178, 24.664090963412754 ], [ -77.751342634591055, 24.66475452807407 ], [ -77.749579458093407, 24.66781439186872 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.760892226009076, 24.629679617365831 ], [ -77.760397399056387, 24.634834204694471 ], [ -77.764970282618009, 24.660846890207477 ], [ -77.762899972149825, 24.670646766466238 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.764424266670346, 24.600278379363356 ], [ -77.764498206329932, 24.603376021549678 ], [ -77.765669845621687, 24.603396846837789 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.764367390009127, 24.598458026315939 ], [ -77.764424266670346, 24.600278379363381 ], [ -77.75943049581582, 24.600397321964785 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.765564335066202, 24.599099088197594 ], [ -77.764486830997711, 24.599140661811614 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.767455792713037, 24.599114804474329 ], [ -77.765567013328194, 24.599208181771974 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.771340468673912, 24.600174950922437 ], [ -77.765595078472771, 24.60035135855729 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.803037493249263, 24.698288282315836 ], [ -77.805354335111531, 24.698405221077618 ], [ -77.801149696176282, 24.708636937686947 ], [ -77.798736319236411, 24.711092424592682 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.765059474108398, 24.7001789729661 ], [ -77.762462021858482, 24.69584069806724 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.806532926623802, 24.738410908220583 ], [ -77.806877444113553, 24.737919360534267 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.809451712849395, 24.742780423229643 ], [ -77.810050756637679, 24.742241515154721 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.814369638746854, 24.745717426117434 ], [ -77.81096409573172, 24.747193207344964 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.819051636046922, 24.749810396214173 ], [ -77.81550124437868, 24.751308742292427 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.809440986729669, 24.741674767350073 ], [ -77.822054903535388, 24.752000333606748 ], [ -77.827924459016955, 24.759223534635037 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.798593362255716, 24.737384814674343 ], [ -77.799369160300657, 24.738596413723602 ], [ -77.804571328371011, 24.737291012909495 ], [ -77.809440986729669, 24.741674767350073 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.800043332676637, 24.737704451254285 ], [ -77.79886503267322, 24.737963198622193 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.797320471431689, 24.737768362557674 ], [ -77.801101428637494, 24.7376660735016 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.790359219725175, 24.72617506733911 ], [ -77.795486304957407, 24.730227972373619 ], [ -77.800463224513393, 24.738294419231277 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.796301490057104, 24.723515276659345 ], [ -77.793609234004194, 24.72423625117856 ], [ -77.794864190012916, 24.725921756390676 ], [ -77.793287450412208, 24.728211278920291 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.786029247632342, 24.719085239465596 ], [ -77.790359219725175, 24.726175067339128 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.787525226616125, 24.721450357874847 ], [ -77.788188596097569, 24.719644117223584 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.794992903449725, 24.718770380688241 ], [ -77.787184288284308, 24.721615391365031 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.791108623497422, 24.718986836003879 ], [ -77.788353435335168, 24.71999803025864 ], [ -77.787644061488635, 24.718474990874018 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.790509385401421, 24.717416054812915 ], [ -77.790118649343427, 24.717164376017795 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.791635627973378, 24.720368271403132 ], [ -77.790602727961797, 24.716903911187998 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.796893312280233, 24.717534200124977 ], [ -77.798017669214332, 24.713927867081647 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.800493415820725, 24.716266647476164 ], [ -77.800313058837162, 24.713099651725319 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.793697770860035, 24.715238582889633 ], [ -77.796355120655761, 24.717757073507805 ], [ -77.804303175377711, 24.713752480760167 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.785544602596303, 24.725611305931217 ], [ -77.787227405688668, 24.72737439508656 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.789110145782104, 24.728781821715089 ], [ -77.786036114390598, 24.725361596005261 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.788868555239134, 24.731150197250237 ], [ -77.784728193175269, 24.726481503272005 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.794987540389826, 24.732424864508172 ], [ -77.794933909791169, 24.732585611189791 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.795448572161675, 24.732562184633693 ], [ -77.794590673959718, 24.732142339534132 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.793416163848974, 24.733939771957765 ], [ -77.796607184469465, 24.73197185001516 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.793249908993133, 24.734085903533373 ], [ -77.791994952984382, 24.734782461684127 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.792268469037595, 24.735069851672439 ], [ -77.793389348549653, 24.733964127232266 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.793389348549653, 24.733964127232266 ], [ -77.791501551476699, 24.73164061256746 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.794258164247978, 24.735391337991036 ], [ -77.793389348549653, 24.733964127232287 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.795615018394173, 24.737320238450799 ], [ -77.795963617285494, 24.735961243513472 ], [ -77.794258164247992, 24.735391337991054 ], [ -77.793872023937638, 24.736414243476027 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.789771225633089, 24.72534520126673 ], [ -77.788468681236992, 24.725804263257981 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.786069877150894, 24.727960711886816 ], [ -77.785294681344936, 24.728395915998057 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.787227405688668, 24.727374395086528 ], [ -77.786112860876116, 24.728011516978203 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.78663592539381, 24.727692202491173 ], [ -77.785069752218732, 24.72596316906715 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.789655577739182, 24.72590815397734 ], [ -77.785568199955833, 24.72736774895488 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.789886176516461, 24.725814311930744 ], [ -77.789986400515843, 24.725648888560915 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.790080102381154, 24.725781134785855 ], [ -77.789615749503938, 24.72604323967666 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.789964853227204, 24.7261461815018 ], [ -77.790205144543847, 24.725957613171982 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.790514965872191, 24.726351900723863 ], [ -77.787227405688668, 24.727374395086528 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.790615013976137, 24.727109782013471 ], [ -77.788242643461956, 24.727639772277509 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.78874709965271, 24.728233749434789 ], [ -77.791046423712061, 24.72684280365651 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.788655005385749, 24.729100732216811 ], [ -77.78874709965271, 24.728233749434789 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.787604011654139, 24.729725925532449 ], [ -77.789110145782104, 24.728781821715089 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.755506270187695, 24.547346913412984 ], [ -77.753278942178497, 24.547228172274558 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.754999803907268, 24.557653454244537 ], [ -77.752726510787213, 24.556963294429266 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.765285305157377, 24.591787951513776 ], [ -77.766246320256911, 24.591402220219575 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.765402913552634, 24.591770335761517 ], [ -77.768354837017611, 24.592291830926364 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.786805232858256, 24.696894856202608 ], [ -77.798321077220734, 24.684232697152023 ], [ -77.815661519060697, 24.671418853247538 ], [ -77.823673882751379, 24.667571377571704 ], [ -77.828346355893089, 24.667525391089033 ], [ -77.833136905973376, 24.66447491655039 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.785416954645328, 24.723976353057324 ], [ -77.784956416293412, 24.723514769932113 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.784261487460455, 24.724888001982116 ], [ -77.787235223529279, 24.721695587346421 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.786226625081412, 24.72029904589272 ], [ -77.785096460097691, 24.721226043984053 ], [ -77.785948300869009, 24.72264334176608 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.786150718478041, 24.72887159958977 ], [ -77.78661093326869, 24.728600219173831 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.796359340219865, 24.723498907224513 ], [ -77.796136653856635, 24.724888001982105 ], [ -77.795369929827586, 24.723764744457128 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.79630149005709, 24.723515276659345 ], [ -77.796313769264543, 24.72252076529826 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.793641412363385, 24.724528536955745 ], [ -77.790359219725175, 24.726175067339085 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.79094970262534, 24.72365459301859 ], [ -77.793108823788288, 24.726734262116292 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.79369077441423, 24.722949782407397 ], [ -77.791042477362822, 24.723784829324963 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.793609234004194, 24.724236251178549 ], [ -77.793125691922398, 24.722651002791313 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.736587923500579, 24.521893368718946 ], [ -77.744500586473592, 24.519330541151813 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.739860341513221, 24.523995845554801 ], [ -77.744043638766485, 24.521218113216886 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.755591321183871, 24.545502007925375 ], [ -77.752275288200394, 24.545977664472204 ], [ -77.751895755183455, 24.544604393077712 ], [ -77.746928089695189, 24.546921300348348 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.719601712476191, 24.50232483458262 ], [ -77.719424597068283, 24.499469876097038 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.718749871704873, 24.502931121183483 ], [ -77.720301740040739, 24.502839027204615 ], [ -77.72058849832024, 24.498157494397638 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.719871602621566, 24.506384596685557 ], [ -77.722971899465918, 24.509076516299551 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.720141492766956, 24.512094134715184 ], [ -77.719972811426075, 24.504212755386444 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.729568307921113, 24.503402355995231 ], [ -77.722907866757026, 24.50913963465235 ], [ -77.720487289515702, 24.516214970728715 ], [ -77.721212619281403, 24.519599019895882 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.718032976006228, 24.497858177354839 ], [ -77.725650059958511, 24.498141979915193 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.717822124330141, 24.499339406015018 ], [ -77.72015836090101, 24.498211217894003 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.721804527276689, 24.494082729683537 ], [ -77.721673902441708, 24.493392635332611 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.723612880309574, 24.493839339427002 ], [ -77.720094414784668, 24.494312897527223 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.717769006352029, 24.493941268049316 ], [ -77.724855941058649, 24.492945563131226 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.719293572696287, 24.498157090070361 ], [ -77.71956625660431, 24.497500533260943 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.71757789639598, 24.491817862409832 ], [ -77.718032976006214, 24.497858177354825 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.725155451853155, 24.48629975211481 ], [ -77.721818695902797, 24.485753236420933 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.727876980912583, 24.480515369602422 ], [ -77.725378438747484, 24.482464637533223 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.727830378720199, 24.480649676603566 ], [ -77.72838183799675, 24.483038903508003 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.724428598505227, 24.479074130086786 ], [ -77.730758549808272, 24.478005922958427 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.834875614625005, 24.74342472858012 ], [ -77.840281468941498, 24.740673657536128 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.829590225148834, 24.746651234555916 ], [ -77.830479474476817, 24.745456249659956 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.831573058465651, 24.746778563972853 ], [ -77.827962956088101, 24.744807295145911 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.829698715831029, 24.749631300867446 ], [ -77.832685311582978, 24.751282580818977 ], [ -77.833260071955706, 24.750323300524197 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.833260071955706, 24.750323300524222 ], [ -77.830240608809092, 24.748683516697294 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.829190147154193, 24.750520800013721 ], [ -77.830448406348552, 24.748320073680926 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.830097992406792, 24.751146743415088 ], [ -77.828185271826058, 24.750130933058006 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.822632301837203, 24.752638897677485 ], [ -77.825539642084152, 24.749984729240616 ], [ -77.82691003640906, 24.751333243079259 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.82398623567137, 24.754089843845023 ], [ -77.828460046140208, 24.74987187194111 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.832638709390594, 24.744666217629334 ], [ -77.82897267025642, 24.753991096975533 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.830448406348552, 24.748320073680926 ], [ -77.832126085274382, 24.746020555179268 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.8276988769979, 24.742973274942933 ], [ -77.830448406348552, 24.748320073680947 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.837982427450584, 24.744299415337004 ], [ -77.830215395386631, 24.745808940909704 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.846277617694895, 24.750337407641016 ], [ -77.844382461871263, 24.748348288367659 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.831908608376565, 24.739897703415313 ], [ -77.844382461871277, 24.74834828836768 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.724864658747208, 24.493031128598304 ], [ -77.729842040024735, 24.490757634201849 ], [ -77.730719714647975, 24.497140072961837 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.834969259758935, 24.763576021717814 ], [ -77.827924459016955, 24.759223534635037 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.839896889105731, 24.768741347270698 ], [ -77.840336430176308, 24.768480684368775 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.827924459016955, 24.759223534635037 ], [ -77.840887297442521, 24.768879827934565 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.848397879913406, 24.744100490558626 ], [ -77.834502797085975, 24.764112242858921 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.847473740632736, 24.742049200667314 ], [ -77.849583738376978, 24.739901908413199 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.846883446195889, 24.738606787194392 ], [ -77.85185434671682, 24.740172814975839 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.844225561007235, 24.741466011180439 ], [ -77.847551410953386, 24.736871436076335 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.842905450656772, 24.739844249730943 ], [ -77.838712528464626, 24.735516998865538 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.844755279410364, 24.738112990560822 ], [ -77.841834875354323, 24.734910319081521 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.83604066943461, 24.736405849948977 ], [ -77.840731956801221, 24.741103957279499 ], [ -77.847116457157796, 24.736095458228991 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.819236294769681, 24.753745174034005 ], [ -77.822168750168402, 24.758512212470425 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.826538301546364, 24.756645601724387 ], [ -77.82816489892177, 24.75866738044089 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.82816489892177, 24.75866738044089 ], [ -77.82772994512618, 24.757002841191603 ], [ -77.826093768275939, 24.756908583857484 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.843403815831252, 24.752340601968672 ], [ -77.842176624765145, 24.753976990273472 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.844514501416398, 24.754357870666631 ], [ -77.84498994900585, 24.753333916140182 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.848366949320109, 24.754893922575476 ], [ -77.842631679609227, 24.751857899594746 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.84172613690545, 24.752869609165664 ], [ -77.848382483384228, 24.755133734522833 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.850145234248885, 24.735076146754636 ], [ -77.850425212817058, 24.740074057049771 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.851978619229826, 24.739671970398174 ], [ -77.849648509610631, 24.733830986103406 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.850853031612019, 24.741766428193422 ], [ -77.850425212817058, 24.740074057049771 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.85612621435196, 24.734042620758895 ], [ -77.852071823614594, 24.737301748977341 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.869283566668301, 24.73083984446211 ], [ -77.869128226027044, 24.730092047813098 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.848397879913421, 24.744100490558605 ], [ -77.852444641153653, 24.739516778711188 ], [ -77.851667937947269, 24.736229491112201 ], [ -77.853516491578503, 24.734211928224049 ], [ -77.873167082700277, 24.73107970281243 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.87818846892965, 24.792545779488066 ], [ -77.87865089471174, 24.792148965507909 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.865691314338733, 24.78203910533966 ], [ -77.884909684431292, 24.797625276986462 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.840887297442507, 24.768879827934555 ], [ -77.865635284530072, 24.782022764193023 ], [ -77.86667772741086, 24.780417190467755 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.899408000528439, 24.81970387554318 ], [ -77.900619657530413, 24.819097607085215 ], [ -77.892091456324181, 24.813091159289606 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.884909684431292, 24.797625276986462 ], [ -77.889186586332215, 24.801838860957304 ], [ -77.887058419546705, 24.810736439517349 ], [ -77.899408000528439, 24.81970387554318 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.909126606416976, 24.84672720173462 ], [ -77.909163392800764, 24.84603844058303 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.912767295678478, 24.851606327503745 ], [ -77.909435238923024, 24.845904526293012 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.912767295678478, 24.851606327503745 ], [ -77.913241084634393, 24.850591440207968 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.916450031899771, 24.853987260704994 ], [ -77.914351770219525, 24.855024463051336 ], [ -77.912767295678478, 24.851606327503745 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.916956790060894, 24.855490381534892 ], [ -77.915112939361805, 24.854749606159412 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.900821600364054, 24.822354502795644 ], [ -77.901660439826969, 24.827260833363674 ], [ -77.914973132784652, 24.849759790245081 ], [ -77.917334310532098, 24.856610163962753 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.900821600364054, 24.822354502795644 ], [ -77.889839017025608, 24.828741153556365 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.899408000528439, 24.81970387554318 ], [ -77.900821600364054, 24.822354502795644 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.906444931578392, 24.822805667743367 ], [ -77.900821600364068, 24.822354502795669 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.920899378249445, 24.878737379099437 ], [ -77.919283835580131, 24.879146061099657 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.917559554461945, 24.877102637580524 ], [ -77.918893805458254, 24.87619421785941 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.927493588471748, 24.882993242630196 ], [ -77.92316735161215, 24.884036047753721 ], [ -77.917761497295601, 24.873797856991047 ], [ -77.916177022754553, 24.874227694860959 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.917334310532098, 24.856610163962742 ], [ -77.92758679285653, 24.883260990731628 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.933078084525818, 24.894801791373517 ], [ -77.932747317356785, 24.894825520150512 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.933410270905071, 24.89589711652906 ], [ -77.933163521878484, 24.895929040084138 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.933571820295924, 24.896219161409018 ], [ -77.933808185539817, 24.895273828023658 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.934126633854433, 24.896450389131846 ], [ -77.932949340053298, 24.896390566993304 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.934258673399526, 24.897669210072053 ], [ -77.933128233604052, 24.8977764349757 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.933213332679514, 24.898435687830315 ], [ -77.934181003078891, 24.898366680225525 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.928650876249321, 24.887270096842641 ], [ -77.929186801461739, 24.894865199386679 ], [ -77.933194819032266, 24.899064427810814 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.92758679285653, 24.883260990731618 ], [ -77.928650876249321, 24.887270096842631 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.92253348865826, 24.882495714034448 ], [ -77.920829474960897, 24.882824138267157 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.928402331223296, 24.895132921749859 ], [ -77.927951843363573, 24.895323145181486 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.928557671864553, 24.896534932013196 ], [ -77.927408151119096, 24.894118391831448 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.925101342596079, 24.892758626852704 ], [ -77.929202335525872, 24.896781515086463 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.889800181865269, 24.828790497258023 ], [ -77.886812307117481, 24.827712894026551 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.88767318585775, 24.828863113260319 ], [ -77.885147729658954, 24.830122769771098 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.886856476713021, 24.832660392046698 ], [ -77.888689770949824, 24.830911861813391 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.888207923290636, 24.832761369441727 ], [ -77.88718269205971, 24.832822516146805 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.888099201843261, 24.832406632159469 ], [ -77.887198226123829, 24.832702685310679 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.888591532138506, 24.834117665653903 ], [ -77.890048726891322, 24.833823451541896 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.889745812640811, 24.833097421744458 ], [ -77.888467114459033, 24.83363333029591 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.889163285236009, 24.836734576802076 ], [ -77.888005997458478, 24.836938987383736 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.884045029058015, 24.826013834902628 ], [ -77.88609530757077, 24.826577060443277 ], [ -77.889947755474481, 24.833541498728152 ], [ -77.890600186167831, 24.836910792840825 ], [ -77.889425357867623, 24.837801318967248 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.882747716751197, 24.826555912766992 ], [ -77.884045029058015, 24.826013834902628 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.888945808338249, 24.843346030708148 ], [ -77.889691443416396, 24.838884395336894 ], [ -77.885769092224081, 24.828022143101411 ], [ -77.881450622396514, 24.823722091484445 ], [ -77.872510768490869, 24.819414840950731 ], [ -77.861730127986092, 24.806322981957106 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.931819825331445, 24.898479402304648 ], [ -77.932520339923286, 24.897914141260621 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.905939696086264, 24.867543300615704 ], [ -77.903456884773988, 24.859418337136798 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.902000499858474, 24.856521638472874 ], [ -77.906051371808857, 24.864537714159393 ], [ -77.905906697810636, 24.867889259854969 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.900794883206601, 24.853887421572729 ], [ -77.901788311327735, 24.856679164616022 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.900669499074809, 24.853948683068065 ], [ -77.898641224957998, 24.850581256418796 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.896589692324795, 24.847437291528131 ], [ -77.900794883206601, 24.853887421572743 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.896146025396902, 24.84687715581784 ], [ -77.896589692324795, 24.847437291528131 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.895364785806464, 24.845818142311643 ], [ -77.895779517934727, 24.846990933589236 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.895480525005027, 24.845896912223278 ], [ -77.893455089029871, 24.844977926800794 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.896589692324795, 24.847437291528149 ], [ -77.895480525005041, 24.845896912223299 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.895654133802907, 24.845380530778321 ], [ -77.896290699395124, 24.84618573480363 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.892191602778681, 24.843717592837599 ], [ -77.895432300338996, 24.844864147178448 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.89372514715987, 24.84189708778554 ], [ -77.891998704114357, 24.833827026619382 ], [ -77.888914740209955, 24.829298031334066 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.890600186167816, 24.836910792840825 ], [ -77.889854551089741, 24.841802449937699 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.193729263246126, 25.136387160581151 ], [ -78.17647750522255, 25.128106859221834 ], [ -78.171425204658476, 25.110651930655841 ], [ -78.163319616761711, 25.108742646604142 ], [ -78.152256584632326, 25.102109512515586 ], [ -78.143603321877677, 25.100423275279873 ], [ -78.138756399385343, 25.101613562800775 ], [ -78.126639093154566, 25.113119078225118 ], [ -78.11868411584372, 25.110255198761696 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.1921820817726, 25.141332761385172 ], [ -78.194835278448963, 25.136272716507285 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.167454561938811, 25.126135866459613 ], [ -78.182543004273711, 25.135940931107591 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.191990395572304, 25.125825959044114 ], [ -78.177764541138586, 25.118449930566658 ], [ -78.171301977815475, 25.120309475518894 ], [ -78.172643781217332, 25.128801037779446 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.189416323740247, 25.134106415029066 ], [ -78.186445187636153, 25.123235102294146 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.192141006158224, 25.135606257932238 ], [ -78.192620221658899, 25.134713791647226 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.194057868160883, 25.135420327994058 ], [ -78.189566934326137, 25.129792714589925 ], [ -78.188416817124562, 25.13022657066286 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.19520798536243, 25.135482304671569 ], [ -78.194167403132468, 25.135420327994055 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.206462703692111, 25.136027698077324 ], [ -78.203464183845156, 25.133251124465243 ], [ -78.1991101687249, 25.133449453245369 ], [ -78.193729263246126, 25.13638716058119 ], [ -78.194167403132468, 25.135420327994055 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.193756646989044, 25.136287998616847 ], [ -78.194167403132468, 25.135420327994066 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.073117567667438, 25.095166033507812 ], [ -78.083947837982109, 25.0693105086537 ], [ -78.08468719904026, 25.060802413209604 ], [ -78.073624166910918, 25.027657378428621 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.093942904138629, 25.110032036505459 ], [ -78.078525856889087, 25.103808125048943 ], [ -78.077170341215989, 25.096585315880873 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.045672595906325, 25.104060029419749 ], [ -78.078306786945944, 25.114346434599458 ], [ -78.080771323806445, 25.112511594248456 ], [ -78.08498842021217, 25.113453813004 ], [ -78.091149762363401, 25.108817034852844 ], [ -78.093727552632998, 25.102456906022258 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.048604347325977, 25.122731690376245 ], [ -78.047965599819022, 25.116230836561396 ], [ -78.05160763762396, 25.106015046238198 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.048239437247958, 25.118809444797471 ], [ -78.061226181420651, 25.123198946479008 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.064299515709294, 25.119474136950679 ], [ -78.052785138568424, 25.114272049715531 ], [ -78.046430328375877, 25.113136315729786 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.061465785065934, 25.126420980587731 ], [ -78.064779217956143, 25.118040826880193 ], [ -78.074555214169422, 25.120792952571772 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.058512798777329, 25.129672459953397 ], [ -78.070420268992393, 25.133833714340604 ], [ -78.071679921165526, 25.131057090847079 ], [ -78.072994340824451, 25.127214338137332 ], [ -78.061226181420651, 25.123198946479008 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.073117567667438, 25.095166033507823 ], [ -78.050594439136916, 25.147319273262212 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.11868411584372, 25.110255198761696 ], [ -78.113316902236377, 25.107911974754476 ], [ -78.105485151768605, 25.106969713287466 ], [ -78.073117567667438, 25.095166033507862 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.92556026908133, 24.548020299866678 ], [ -77.943633539391399, 24.519571432477345 ], [ -77.937882953383635, 24.504472480633805 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.073624166910903, 25.027657378428614 ], [ -78.053332813426124, 24.969805795012675 ], [ -78.05481153554237, 24.929931681802099 ], [ -78.102678318121662, 24.913789673343818 ], [ -78.103883202808987, 24.911554459489587 ], [ -78.082195278436615, 24.889150413071778 ], [ -78.094079822852706, 24.853076824744072 ], [ -78.094134590338484, 24.845025909921013 ], [ -78.090903308676943, 24.839409838207978 ], [ -78.090136563875888, 24.832203001217945 ], [ -78.097858779372075, 24.821963601134534 ], [ -78.078416321917075, 24.804465191736025 ], [ -78.07660899488603, 24.802029137717152 ], [ -78.075404110198676, 24.794124061379577 ], [ -78.062259913609367, 24.775229385290768 ], [ -78.069708291676548, 24.731412508851111 ], [ -78.069598756704963, 24.719771832205918 ], [ -78.043255596040623, 24.683449905435801 ], [ -78.04024338432221, 24.650203579043428 ], [ -78.0160361556037, 24.637360561025879 ], [ -77.966690650908404, 24.645773384834214 ], [ -77.917454681184779, 24.612765981906922 ], [ -77.914990144324307, 24.608633219570944 ], [ -77.911320722776495, 24.592250204077985 ], [ -77.928572480799716, 24.574321043396459 ], [ -77.925560269081345, 24.548020299866693 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.937882953383635, 24.504472480633797 ], [ -77.945824238822922, 24.490468201163957 ], [ -77.947850635797082, 24.481048075498169 ], [ -77.959954250156287, 24.47910415225731 ], [ -77.962528321988287, 24.473621130052248 ], [ -77.962802159417222, 24.467788926129337 ], [ -77.970414839941782, 24.462803922319736 ], [ -77.983449501559377, 24.448595578989615 ], [ -77.98076589475572, 24.435482598692854 ], [ -77.971893562058014, 24.430147269630204 ], [ -77.969976700055426, 24.42730499284902 ], [ -77.971345887200144, 24.424612250508165 ], [ -77.97134588720013, 24.416184592918018 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.075150413070531, 25.151478779807007 ], [ -78.075459035850812, 25.150793251756085 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.076810498926108, 25.152318486351728 ], [ -78.077182662780089, 25.15165419866339 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.072267072064363, 25.150213141962414 ], [ -78.079652365708029, 25.152852583921032 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.07993114025966, 25.153438663310357 ], [ -78.071109274609157, 25.149645377413471 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.091639671428865, 25.156686468899188 ], [ -78.079652365708029, 25.152852583921032 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.092511965993722, 25.155473639332634 ], [ -78.083357369426693, 25.150654761140085 ], [ -78.079652365708029, 25.15285258392105 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.05325043674911, 25.142222162589881 ], [ -78.048888245024614, 25.140894321819751 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.052841555526697, 25.143196684794979 ], [ -78.048996157754289, 25.142034029708068 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.055102219708104, 25.143841258975041 ], [ -78.055282074257562, 25.142530613388598 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.055216677596562, 25.143944815229574 ], [ -78.056648968833386, 25.14424014831696 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.054492785881806, 25.145501462829117 ], [ -78.055057256070739, 25.148082444203958 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.055589013073543, 25.145204874890961 ], [ -78.052841555526712, 25.143196684795015 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.061414921180059, 25.145776260578707 ], [ -78.060659725286129, 25.143849399586898 ], [ -78.051796607968171, 25.145605884776831 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.063483441712464, 25.146348541755952 ], [ -78.059490670714695, 25.145949659304005 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.064148903545444, 25.147390514255726 ], [ -78.064526598099306, 25.147064898805109 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.071109274609157, 25.149645377413457 ], [ -78.063483441712478, 25.146348541755952 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.031622208277469, 25.149108121380397 ], [ -78.031307024973515, 25.14750740979737 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.026271535431349, 25.14837549570542 ], [ -78.025263662564043, 25.147353941218132 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.027908211831317, 25.148237110361883 ], [ -78.023339906275325, 25.145192593106334 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.027224421881485, 25.148997658860615 ], [ -78.027179800906069, 25.147691707774214 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.027962168196169, 25.148977877137398 ], [ -78.025833226898001, 25.149034961973619 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.024625866303893, 25.147919637510292 ], [ -78.025830891785191, 25.146902090754118 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.026343477251132, 25.149547694674361 ], [ -78.02438306266211, 25.147577742746552 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.02143344805117, 25.144288991820343 ], [ -78.024931619037943, 25.147618444554368 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.02143344805117, 25.144288991820343 ], [ -78.022035599946989, 25.143069215533892 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.02100179713247, 25.143890102638057 ], [ -78.022181140876413, 25.142953649325005 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.029311077317033, 25.146568333570478 ], [ -78.027125844541217, 25.146600895287108 ], [ -78.022822934829492, 25.142341090393558 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.022123376400529, 25.142891605734672 ], [ -78.02315105899838, 25.142082874094136 ], [ -78.026981960901651, 25.145941518832299 ], [ -78.029850640965378, 25.145892675990229 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.049043947556683, 25.142047602093154 ], [ -78.042152692147738, 25.139388262934148 ], [ -78.021811142605003, 25.140088379105325 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.027296742687355, 25.170986198812567 ], [ -78.027193313033749, 25.170503047711474 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.040019497253368, 25.147378670526567 ], [ -78.039152251945254, 25.153577154077276 ], [ -78.034739085992939, 25.156527620344139 ], [ -78.034125264349711, 25.160311393104489 ], [ -78.031871057280554, 25.16172908026731 ], [ -78.033003452381024, 25.165254068814459 ], [ -78.030855076629678, 25.170215700698471 ], [ -78.029108859885952, 25.172112178469103 ], [ -78.027352060010443, 25.171403397300139 ], [ -78.027828300940556, 25.170014557386438 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.04422157206794, 25.148605265427548 ], [ -78.040125900069057, 25.148758544404366 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.043046844440354, 25.149400398028835 ], [ -78.0431315381785, 25.147334935292896 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.03901467123211, 25.147963407621273 ], [ -78.043120926362818, 25.147972987613347 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.038591345960924, 25.14918964049453 ], [ -78.038453677194553, 25.147401807763185 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.037776444813858, 25.150176365813596 ], [ -78.037532862665543, 25.147415414118218 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.040432810890707, 25.169784678909185 ], [ -78.039808406115696, 25.173788333757248 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.032961119853908, 25.164056733586968 ], [ -78.038379683325374, 25.166470549366466 ], [ -78.040432810890721, 25.169784678909199 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.026156166119293, 25.171154365100357 ], [ -78.035141245000631, 25.16499544540066 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.021584253190298, 25.172504879775225 ], [ -78.022843645872129, 25.174592880109579 ], [ -78.023700879546297, 25.173960736994047 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.027267394956198, 25.171116052409108 ], [ -78.023700879546297, 25.173960736994058 ], [ -78.025891587824802, 25.179046522784446 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.047375345338509, 25.171139997842495 ], [ -78.050687865585701, 25.173386058589848 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.045761417742042, 25.170910121487239 ], [ -78.047269514020712, 25.171537491350804 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.04334969267768, 25.171399332122139 ], [ -78.043401379355075, 25.17174342121297 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.044237446765692, 25.174679081189492 ], [ -78.042417148099503, 25.174046938520988 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.041612830084233, 25.171786522768013 ], [ -78.045867249059853, 25.171216623197971 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.042231943293388, 25.173788333757233 ], [ -78.041612830084233, 25.171786522768013 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.038670719449343, 25.176331256774226 ], [ -78.039808406115696, 25.173788333757248 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.043238477949501, 25.156878580556167 ], [ -78.039102280973239, 25.153647920488613 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.049282636384405, 25.147288611781669 ], [ -78.054503084592383, 25.14855736570766 ], [ -78.059490670714695, 25.145949659303994 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.035141245000631, 25.164995445400635 ], [ -78.050594439136916, 25.147319273262202 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.040432810890707, 25.169784678909185 ], [ -78.041612830084233, 25.171786522768013 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.061990650326905, 25.180803990757454 ], [ -78.056291633863282, 25.179276383796374 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.050719614981034, 25.173477049517686 ], [ -78.052762159414613, 25.175009518097884 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.047731622486708, 25.129114707712723 ], [ -78.041877408378568, 25.12851447383834 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.047962709152173, 25.132279952577935 ], [ -78.042575895076041, 25.133333882576881 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.03799339901515, 25.079591033349619 ], [ -78.040434760490172, 25.078141802918108 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.038162729123655, 25.082121540243975 ], [ -78.041401167448385, 25.081872325977987 ], [ -78.041168338549213, 25.077597263805192 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.043451420435815, 25.077883095184831 ], [ -78.038289726705017, 25.078325760287633 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.04372254748516, 25.080743930984312 ], [ -78.037781736379557, 25.081047998252881 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.050699379762023, 25.092884769721895 ], [ -78.048491865741141, 25.08733575313283 ], [ -78.048174371787709, 25.079629374753402 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.066542707643492, 25.092810045949566 ], [ -78.069382967875256, 25.086128069178589 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.072621406200028, 25.091725488066444 ], [ -78.06631385965899, 25.089501886557645 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.073117567667438, 25.095166033507823 ], [ -78.064387729675005, 25.092051357306573 ], [ -78.044741944491932, 25.093222718473704 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.042278901119602, 25.063724752870524 ], [ -78.045316926207008, 25.061952714639478 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.04216291832283, 25.062350019324331 ], [ -78.040237022952539, 25.062547090642724 ], [ -78.039919528999121, 25.059230052223395 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.038135858508952, 25.067794014819661 ], [ -78.037845235170195, 25.065403889905472 ], [ -78.042395981835682, 25.065135468649196 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.040173524161858, 25.071845823604754 ], [ -78.038940005013998, 25.069018533846226 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.035770941341298, 25.07036957705661 ], [ -78.036427095511684, 25.072919446281375 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.037591240007501, 25.069602688710248 ], [ -78.035770941341298, 25.070369577056614 ], [ -78.03348498487675, 25.067838827291389 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.037104775699675, 25.067939455951926 ], [ -78.037591240007501, 25.069602688710248 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.042627364876154, 25.068006391794473 ], [ -78.037591240007501, 25.069602688710248 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.042507512351008, 25.066515456414631 ], [ -78.033484984876765, 25.067838827291411 ], [ -78.027770093715475, 25.071309008736996 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.035950770604529, 25.02450177211567 ], [ -78.035035413682849, 25.024721777667388 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.031267818769038, 25.030350769609935 ], [ -78.033098700567038, 25.027109575799429 ], [ -78.036276433335743, 25.026215676437346 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.037221881620837, 25.031191400541974 ], [ -78.035261625975139, 25.031647009259096 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.037469533992294, 25.032863115376937 ], [ -78.035850314829915, 25.032700102135969 ], [ -78.034709163079597, 25.0296720601328 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.036728714767676, 25.029008273684134 ], [ -78.031606478986021, 25.030590499479622 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.035553987140062, 25.023062758039785 ], [ -78.010556629875026, 25.030887763867582 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.03920065678966, 25.041605337994032 ], [ -78.035680984721424, 25.023081937585562 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.015954027082955, 25.088514671212181 ], [ -78.016716012571109, 25.087489108972761 ], [ -78.012302846618766, 25.077961512588267 ], [ -78.006789034961301, 25.074846191946168 ], [ -77.997199647678315, 25.062797673645825 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.015086210276976, 25.091993851033216 ], [ -78.016176272850345, 25.091859669623449 ], [ -78.015954027082955, 25.088514671212181 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.045672595906325, 25.104060029419735 ], [ -78.037675905061789, 25.10343706692565 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.050589520453755, 25.105679676027567 ], [ -78.053762265367681, 25.098472721146535 ], [ -78.059773484218837, 25.099603613003655 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.048174371787709, 25.079629374753388 ], [ -78.059604154110318, 25.077175500702587 ], [ -78.055359210400496, 25.10703170439669 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.977652879444889, 25.048222806369235 ], [ -77.979008314037884, 25.038491733831179 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.980362954905786, 25.04281610168939 ], [ -77.980638116332045, 25.04036149030761 ], [ -77.979008314037884, 25.038491733831179 ], [ -77.979929046502747, 25.032853526368861 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.979121962922775, 25.043390441134477 ], [ -77.981812843959645, 25.04216410033289 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.018695058213936, 24.975430707827481 ], [ -78.022208657964995, 24.974692006741602 ], [ -78.025955086615269, 24.987364432614861 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.03108790552875, 25.003085634420721 ], [ -78.022981226584974, 24.974461761340507 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.035642025512686, 25.022868483380179 ], [ -78.037585948441915, 25.022899731779585 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.03108790552875, 25.003085634420732 ], [ -78.035680984721424, 25.023081937585538 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.065476901429932, 25.004027720514088 ], [ -78.02958510081595, 25.003104817086957 ], [ -78.004376080915236, 25.006941290124718 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.032696541559375, 25.009204753015069 ], [ -78.067220441425391, 25.009074480669724 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.98209971660134, 25.024994968728016 ], [ -77.981569431928691, 25.023753219799936 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.979929046502747, 25.032853526368836 ], [ -77.982373749943989, 25.024309422281963 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.053769407272256, 24.954581230874535 ], [ -78.03510949560517, 24.95429443020647 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.047893241011863, 24.965760226620507 ], [ -78.048190246485674, 24.954543903582291 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.035024830550981, 24.96553942017708 ], [ -78.053372235391947, 24.965856644084624 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.022272156755676, 24.968427259476659 ], [ -78.03363844028776, 24.969108434283442 ], [ -78.035024830550981, 24.965539420177091 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.02298122658496, 24.974461761340507 ], [ -78.022462653127747, 24.972418314521711 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.947756325890197, 24.909688148066333 ], [ -77.941004287814366, 24.91168464336462 ], [ -77.93476024006398, 24.907768410581255 ], [ -77.932580114917229, 24.9086130987546 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.999613671613787, 24.906040621306957 ], [ -77.988882375988553, 24.912087777917598 ], [ -77.984416294377255, 24.910033697641452 ], [ -77.947756325890211, 24.909688148066358 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.999613671613787, 24.906040621306957 ], [ -78.000227493257071, 24.903583279335887 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.025648175793521, 24.927213969795272 ], [ -78.005730721782882, 24.916675740252167 ], [ -77.999613671613801, 24.906040621306971 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.023065891639135, 24.959619617496244 ], [ -78.025648175793521, 24.927213969795272 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.030971491079043, 24.96165368229174 ], [ -78.02994492729637, 24.958487434794549 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.023022199337333, 24.962017307593879 ], [ -78.031765225962602, 24.961231520664398 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.024621612010861, 24.957825390932506 ], [ -78.022679112350147, 24.962287617377942 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.024812108382918, 24.957710252506104 ], [ -78.026510279979647, 24.958336296714439 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.02596252665677, 24.959527370258048 ], [ -78.023319886801858, 24.957211318080653 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.023351636197233, 24.955704907642911 ], [ -78.027997631048777, 24.955762477807294 ], [ -78.027817717808503, 24.957978908666856 ], [ -78.026833486552931, 24.957633493495319 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.022521333011028, 24.964002865059982 ], [ -78.024018373499416, 24.963754874307501 ], [ -78.026949901002538, 24.957240102813998 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.022462653127747, 24.972418314521697 ], [ -78.023065891639149, 24.959619617496259 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.931669965584135, 24.901106689875455 ], [ -77.932580114917272, 24.914065037839311 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.936157213458984, 24.900953101295634 ], [ -77.933955922048668, 24.900847509036169 ], [ -77.933194819032266, 24.899064427810814 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.936940729004718, 24.90979268607758 ], [ -77.936157213458984, 24.900953101295649 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.08639163350162, 25.1069291298619 ], [ -78.092739607853488, 25.09142039767509 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.098699902615564, 25.096372766990637 ], [ -78.08410406527743, 25.091456026947192 ], [ -78.074657694526934, 25.091523140049695 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.065910321244814, 25.092583445200546 ], [ -78.067619817717642, 25.07476257700765 ], [ -78.060321899048589, 25.077720173766451 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.059604154110318, 25.077175500702587 ], [ -78.064256087010349, 25.075849413034717 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.067619817717627, 25.074762577007625 ], [ -78.074701356048791, 25.073960806542509 ], [ -78.072576894549442, 25.078717901135938 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.072576894549442, 25.078717901135924 ], [ -78.070540952279259, 25.083109586551185 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.070540952279245, 25.083109586551167 ], [ -78.073904682986552, 25.082628557698204 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.073904682986552, 25.082628557698204 ], [ -78.072622655449649, 25.08583556918769 ], [ -78.054607491034176, 25.085764119183803 ], [ -78.051676521002648, 25.084499214841266 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 5, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.052463624200243, 25.084874693514934 ], [ -78.045794909999856, 25.085514702460816 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.04827951932532, 25.082181624210573 ], [ -78.052010926979406, 25.082147526955016 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.051538824424, 25.08503368305966 ], [ -78.052551421101057, 25.07919658150206 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.05340089133054, 25.099293611084178 ], [ -78.047781674920543, 25.096328232188707 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.047781674920543, 25.096328232188707 ], [ -78.045637542481373, 25.096132278867248 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.047002752387542, 25.104498188836988 ], [ -78.046699773231055, 25.096274790404895 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.047961417594522, 25.104813976414995 ], [ -78.049748768901424, 25.099463442643657 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.051027379988994, 25.097788965239364 ], [ -78.050699379762023, 25.092884769721895 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.05193545841243, 25.098445841581057 ], [ -78.055092076144803, 25.078528985809822 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.058946157532816, 25.081347235832336 ], [ -78.054559502712138, 25.08202173347247 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.053021446143049, 25.079150106342706 ], [ -78.05047659367429, 25.061087217634107 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.052502700474591, 25.062833472323494 ], [ -78.041972453075616, 25.060092506075968 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.055040251709926, 25.061354503128275 ], [ -78.049689756081932, 25.059323118749742 ], [ -78.041897607883868, 25.059205362756231 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.053217286603441, 25.054757936653822 ], [ -78.059466213166885, 25.056864029446 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.056844131255275, 25.055873412652485 ], [ -78.057263067908309, 25.051446731111607 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.053820653441761, 25.054850390590065 ], [ -78.058797401213383, 25.049860700436113 ], [ -78.065485520748354, 25.048417216480036 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.061787384064317, 25.052622875440171 ], [ -78.056795883673772, 25.044016682568643 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.174768637695081, 25.12161476039347 ], [ -78.170036565832405, 25.123135249359848 ], [ -78.164941792421914, 25.12842471036063 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.164863108662644, 25.128300045564892 ], [ -78.162502595885584, 25.125628626512373 ], [ -78.159630638673491, 25.127480816599249 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.176477505222536, 25.128106859221816 ], [ -78.157722557512074, 25.157165452947918 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.157722557512074, 25.157165452947893 ], [ -78.156306249845841, 25.157040817498892 ], [ -78.156011185748696, 25.154868579225049 ], [ -78.160220766867795, 25.153515362061093 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.157722557512074, 25.157165452947893 ], [ -78.163112395019695, 25.16159883109437 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.163112395019695, 25.161598831094366 ], [ -78.159119194238514, 25.163379258895326 ], [ -78.154712903721318, 25.163040979613111 ], [ -78.155165335336932, 25.161759070660768 ], [ -78.161392542092074, 25.159668768843421 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.163112395019695, 25.161598831094366 ], [ -78.165512249676411, 25.162417831110758 ], [ -78.168620258166214, 25.163397063042062 ], [ -78.173911740974802, 25.162702699392561 ], [ -78.167184279560161, 25.160352516169958 ], [ -78.16545323685699, 25.162364418233842 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.171138138461743, 25.161598831094345 ], [ -78.171452873498694, 25.159052774184136 ], [ -78.166731847944533, 25.159373259795828 ], [ -78.167184279560161, 25.160352516169947 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.160247958025309, 25.158377356666556 ], [ -78.162522266825434, 25.156613494992673 ], [ -78.160220766867795, 25.153515362061093 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.16252226682542, 25.156613494992687 ], [ -78.166377771027982, 25.15597250842692 ], [ -78.16675151888434, 25.150488374601103 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.16681053170376, 25.153604389967278 ], [ -78.173833057215546, 25.154298805406299 ], [ -78.175210023002165, 25.152981193259723 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.176350937511089, 25.156025924102664 ], [ -78.179832693857279, 25.152607273707382 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.179832693857279, 25.152607273707382 ], [ -78.182862018587841, 25.147728408830112 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.184947138207576, 25.148778983803638 ], [ -78.181957155356628, 25.15321266669406 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.18748468944294, 25.152767525084393 ], [ -78.183637736164741, 25.150720644676404 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.175210023002165, 25.152981193259734 ], [ -78.178888488746438, 25.152251158782736 ], [ -78.186638839031147, 25.154993216893132 ], [ -78.197556210625109, 25.15574104022825 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.184947138207562, 25.148778983803641 ], [ -78.176901723825736, 25.144630050315165 ], [ -78.172987206803754, 25.145858719136672 ], [ -78.169800514554723, 25.150862300646306 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.175210023002165, 25.152981193259734 ], [ -78.15593250198944, 25.147532537919663 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.161483891981106, 25.148277712309319 ], [ -78.16027977968723, 25.149936386440327 ], [ -78.1524704165831, 25.150203477797657 ], [ -78.149795168769089, 25.148957046462268 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.168915322263331, 25.146838083976704 ], [ -78.164316673819201, 25.147203707797175 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.164017258250894, 25.147372279668136 ], [ -78.157722557512045, 25.14416707044969 ], [ -78.169667871023208, 25.127272624125624 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.164941792421914, 25.128424710360612 ], [ -78.158824130141326, 25.133001601204985 ], [ -78.159551213747093, 25.141745750826008 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.160555172844539, 25.145395743931431 ], [ -78.172034199732977, 25.128487961117749 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.164548373625735, 25.130330284974008 ], [ -78.159788006191988, 25.137631744260901 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.158548736984017, 25.134942721011544 ], [ -78.176901723825736, 25.144630050315158 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.162606100820824, 25.146566641047254 ], [ -78.174261429989244, 25.129702294229055 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.16326976253815, 25.129813823763104 ], [ -78.178259018672563, 25.137489280938457 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.190002569738496, 25.143953386842501 ], [ -78.181563736560463, 25.139216637511822 ], [ -78.184941860197711, 25.132157943275182 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.178259018672549, 25.137489280938475 ], [ -78.182562247936829, 25.131016995935404 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.180322438881092, 25.12994577537501 ], [ -78.175603441798344, 25.137471473011477 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.172180698271603, 25.137150929881628 ], [ -78.177995870917258, 25.128833051184461 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.184475035652184, 25.140837125069989 ], [ -78.186953574068099, 25.135957789725271 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.1893927706044, 25.136313952186573 ], [ -78.190347569166406, 25.134764353762066 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.187254007998391, 25.133273038285903 ], [ -78.184160300615204, 25.122066643575156 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.184117550129514, 25.131760835819009 ], [ -78.18178011689831, 25.122832478669675 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.181106475302656, 25.130320753021632 ], [ -78.17918355284354, 25.123455829272817 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.177876614779493, 25.128776014456211 ], [ -78.176764027247032, 25.12406136681356 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.176331266571239, 25.124186035934692 ], [ -78.184878272740477, 25.121930243678722 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.175491690478367, 25.130387716811768 ], [ -78.173398826726142, 25.121936847968172 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.181619193613656, 25.119866824239299 ], [ -78.174803711041307, 25.121748009783317 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.170081695831925, 25.127485163770054 ], [ -78.169185876243731, 25.124397079811963 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.167454561938797, 25.126135866459613 ], [ -78.166810531703717, 25.121087080062871 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.168915322263331, 25.146838083976704 ], [ -78.172250007105191, 25.142240195380328 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.165745404583788, 25.147085452548595 ], [ -78.170607023086887, 25.139323483507685 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.131835600723576, 25.130472756648 ], [ -78.142851327016558, 25.13116730367836 ], [ -78.14806412606589, 25.129101459889096 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.152332720004409, 25.13369613385483 ], [ -78.148221493584359, 25.130989215072713 ], [ -78.147395314112373, 25.123455829272924 ], [ -78.155991514808846, 25.111629435765291 ], [ -78.154418633130717, 25.103648621822231 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.163471032807848, 25.108806253319617 ], [ -78.155933023675175, 25.11073530968531 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.157983193431349, 25.110552468103656 ], [ -78.156754155757028, 25.105027531856102 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.159823419464132, 25.110254806197656 ], [ -78.159288259658851, 25.106486626924148 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.151802387343125, 25.117036174425937 ], [ -78.156448864159415, 25.120267802731448 ], [ -78.158278261561634, 25.119973930176243 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.157560272258621, 25.122057738487783 ], [ -78.154530947528059, 25.122894813873192 ], [ -78.156016103483623, 25.120009551129677 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.154530947528059, 25.122894813873192 ], [ -78.153468716778406, 25.123562689057003 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.147878259870268, 25.126021569643143 ], [ -78.15026235358954, 25.127373960242217 ], [ -78.148182346673352, 25.130519617814642 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.148453005414424, 25.131303609781853 ], [ -78.145875734012179, 25.132244734204768 ], [ -78.145826556662627, 25.127658910320058 ], [ -78.147867416667793, 25.125913580661269 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.150881988193532, 25.133019409783863 ], [ -78.152721221065647, 25.127997287674187 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.152332720004409, 25.133696133854805 ], [ -78.151029520242076, 25.13675024978609 ], [ -78.146092114350054, 25.139670732348421 ], [ -78.146544545965639, 25.137124217916256 ], [ -78.150881988193532, 25.133019409783852 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.749210056442095, 24.464622009431682 ], [ -77.752885017851412, 24.470732053055094 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.755746914419348, 24.465776690691769 ], [ -77.750816850409748, 24.467262302342149 ], [ -77.751343000287832, 24.468349910522168 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.752896197134902, 24.473631917974835 ], [ -77.752885017851412, 24.470732053055087 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.743863336092346, 24.469694190431277 ], [ -77.743695646840322, 24.466387218149002 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.737893725549284, 24.466567819581936 ], [ -77.738586714295224, 24.46924648234431 ], [ -77.736462650436209, 24.469704365596584 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.73593474706864, 24.466940023824986 ], [ -77.73774267839336, 24.476251913922134 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.73869291748818, 24.480362399597333 ], [ -77.741051746300045, 24.479935078131849 ], [ -77.741375945520602, 24.48185801329905 ], [ -77.737765036960283, 24.482112367602095 ], [ -77.737351403471962, 24.48052518834535 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.741375945520602, 24.48185801329905 ], [ -77.737618507236704, 24.481550111408687 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.737404714802324, 24.48072975375154 ], [ -77.734556582604839, 24.480891462258409 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.731247514698154, 24.480453968294011 ], [ -77.729693594296009, 24.481491742199417 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.729945214168552, 24.481429288174741 ], [ -77.730330813453719, 24.481023727576122 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.731236335414707, 24.501950418794621 ], [ -77.730719714647975, 24.497140072961823 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.729764369704128, 24.490708156667221 ], [ -77.72838183799675, 24.483038903508003 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.729764369704128, 24.490708156667221 ], [ -77.731638789619566, 24.489356162295085 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.727726040405599, 24.494259730359776 ], [ -77.726138582153069, 24.490800801797022 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.720604836836159, 24.48862366268731 ], [ -77.722906080391724, 24.486127866312493 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.721141442442658, 24.4876876847589 ], [ -77.721733944466465, 24.489284947242634 ], [ -77.720604836836145, 24.48862366268731 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.745313506924447, 24.52120471275127 ], [ -77.756915149541854, 24.519090008868112 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.751012487870483, 24.519354459004497 ], [ -77.750095786626076, 24.516119992177259 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.916713006395213, 24.611529779862231 ], [ -77.898266009718128, 24.610719116098917 ], [ -77.896186662992989, 24.609560444670212 ], [ -77.887846917525451, 24.613646238215644 ], [ -77.879820191995023, 24.619947449168741 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.894062599133974, 24.619927123192273 ], [ -77.890798248361165, 24.618605927635116 ], [ -77.875885084214076, 24.620801137195865 ], [ -77.873403283284048, 24.619561255051121 ], [ -77.868618549959521, 24.62051657516783 ], [ -77.866718071769867, 24.618666906198918 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.884180112547767, 24.616309046743766 ], [ -77.877092446828684, 24.60752766184676 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.863118342492982, 24.609316512475559 ], [ -77.883039825633958, 24.607426021838506 ], [ -77.882145482956474, 24.610475186163761 ], [ -77.880113270177134, 24.611270438085974 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.881318215979803, 24.611064682692778 ], [ -77.885678136532533, 24.610861408341446 ], [ -77.886572479210017, 24.61931734236218 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.889277505671444, 24.619620023204995 ], [ -77.887690407556889, 24.612020067719122 ], [ -77.888651825935185, 24.611024027848945 ], [ -77.889903905683653, 24.611511885102942 ], [ -77.890798248361165, 24.618605927635116 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.8848732281228, 24.619622233148977 ], [ -77.884180112547767, 24.61630904674378 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.883047702508421, 24.619793323078671 ], [ -77.88046859043618, 24.612243667416131 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.88077031221556, 24.612084493147485 ], [ -77.865711936257711, 24.619154733638609 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.880620648984717, 24.619319081608214 ], [ -77.877986610901758, 24.613403091515352 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.878410488988322, 24.620289194966766 ], [ -77.876874963405925, 24.613922379538845 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.878512579795824, 24.613157392960943 ], [ -77.874349499740603, 24.607878793533015 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.876484836972978, 24.614104620237313 ], [ -77.871447227047653, 24.608250319825181 ], [ -77.874367673398126, 24.615093611316489 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.865711936257711, 24.619154733638609 ], [ -77.848048668377388, 24.619154733638627 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.85540872213771, 24.619458704095472 ], [ -77.85207321042607, 24.617427002890199 ], [ -77.85111179204776, 24.619093755312747 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.854177407995266, 24.619772714975053 ], [ -77.853414724442302, 24.617935161470815 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.863028908225274, 24.633890290260215 ], [ -77.865309482052851, 24.622752402226006 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.871972335000109, 24.626045092902803 ], [ -77.847802724141104, 24.624114204566716 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.847869799841916, 24.624541035082569 ], [ -77.850552827874395, 24.626431266990824 ], [ -77.861486167106605, 24.627691405715801 ], [ -77.873917530323652, 24.626959713809331 ], [ -77.874454135930137, 24.627345885071517 ], [ -77.86940109980236, 24.629866131373571 ], [ -77.863051266792226, 24.629825482642921 ], [ -77.862894756823678, 24.627630431553847 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.858408703966745, 24.624989161149134 ], [ -77.856075393907844, 24.634195145501195 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.863028908225274, 24.633890290260226 ], [ -77.856075393907844, 24.634195145501195 ], [ -77.844694883336857, 24.632203411149248 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.844694883336857, 24.632203411149224 ], [ -77.84668479579426, 24.625354041557085 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.853683027245566, 24.629134452198826 ], [ -77.844471297667482, 24.626980038642387 ], [ -77.84312978365125, 24.628341794925543 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.845633445882186, 24.628972882758873 ], [ -77.84312978365125, 24.628341794925543 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.84827225404679, 24.626776790163483 ], [ -77.845186771809466, 24.624541035082572 ], [ -77.839708922909892, 24.624480059383824 ], [ -77.839172317303408, 24.629378345733073 ], [ -77.837495424783114, 24.63065877897883 ], [ -77.844694883336857, 24.632203411149224 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.856804025565893, 24.624856781135001 ], [ -77.84836168831454, 24.622183286404859 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.881765387318524, 24.607039789053992 ], [ -77.875840367080215, 24.601347799232698 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.877229581697122, 24.607515995837058 ], [ -77.879194152120803, 24.599497846790364 ], [ -77.875527347143091, 24.594496739570825 ], [ -77.865644860556898, 24.594151127218765 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.883911809744518, 24.59652973409041 ], [ -77.878232733742493, 24.595879179436672 ], [ -77.871771107897672, 24.597851162821094 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.87503557439706, 24.596854904486353 ], [ -77.867120525974741, 24.595309941341004 ], [ -77.86405740230434, 24.592524703339354 ], [ -77.868931569896631, 24.58520553440658 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.869222231266832, 24.595228621401709 ], [ -77.868931569896631, 24.584005963139109 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.873872813189735, 24.594110466879307 ], [ -77.872933753378376, 24.591813136247474 ], [ -77.864079760871292, 24.591691152911341 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.872933753378376, 24.591813136247474 ], [ -77.871748749330706, 24.588356895701473 ], [ -77.873000829079189, 24.58729967365576 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.872544900433624, 24.590028956567043 ], [ -77.860614182996031, 24.589353115998755 ], [ -77.856589640947362, 24.585693492312462 ], [ -77.858557194837829, 24.584107622166719 ], [ -77.867756817391069, 24.585791986351367 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.872844319110641, 24.587502986280885 ], [ -77.862559378319546, 24.586893047415213 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.905924776912812, 24.611037176834063 ], [ -77.906281555965123, 24.608310287144384 ], [ -77.907397849542662, 24.611104439147422 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.90599024867609, 24.609654519197147 ], [ -77.90489532481503, 24.609123399150686 ], [ -77.903528348682627, 24.610927752887736 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.006604445812542, 24.750585220572052 ], [ -78.006872748615777, 24.741650838378359 ], [ -77.99918140158934, 24.733934264321046 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.035335204327126, 24.875254226856192 ], [ -78.035938885634451, 24.880832274695443 ], [ -78.025648175793521, 24.927213969795272 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.027010978282348, 24.917714472406178 ], [ -78.007241664970451, 24.916688035221991 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.028907116332718, 24.908282741036409 ], [ -78.001924922682178, 24.908514070799441 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.000904813691037, 24.906578158340302 ], [ -78.001450796133668, 24.903446142139238 ], [ -78.017057075855902, 24.905109061256955 ], [ -78.030279373577969, 24.902986498921909 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.030627049373649, 24.901691306191541 ], [ -78.025195594221088, 24.903953132049477 ], [ -78.015983864642919, 24.904561517192562 ], [ -78.008024214813219, 24.902776912268543 ], [ -78.001115417629634, 24.902574114621601 ], [ -78.000227493257071, 24.903583279335887 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.029041267734314, 24.901661521086524 ], [ -78.016050940343732, 24.903993691152341 ], [ -78.002345138811165, 24.901479001569822 ], [ -78.000221074952123, 24.902127958625311 ], [ -78.000227493257071, 24.903583279335887 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.000227493257071, 24.903583279335887 ], [ -77.997113747660819, 24.906727367950367 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.003038254386212, 24.894056312566011 ], [ -78.031840518339678, 24.897170677402485 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.033852305255266, 24.889742310757644 ], [ -78.005900150954162, 24.884320962055401 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.028214000757586, 24.876167015552724 ], [ -78.026089936898529, 24.874422569062578 ], [ -78.019181139714917, 24.873753181895022 ], [ -78.015201314800066, 24.877282637025093 ], [ -78.016006223209814, 24.880852558046282 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.015648486138815, 24.880284622965476 ], [ -78.006346328567275, 24.884492611591369 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.006503832261458, 24.883570496929284 ], [ -78.008940916057625, 24.878154843160281 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.014688769360689, 24.885693465791903 ], [ -78.017437171493796, 24.875578774720807 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.020276709494837, 24.873793750917461 ], [ -78.018979912612465, 24.870974172155663 ], [ -78.021730016345757, 24.871217591564101 ], [ -78.021372279274772, 24.87355033658292 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.020276709494837, 24.873793750917461 ], [ -78.012673757539673, 24.902653291092687 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.998432389597141, 24.902634953950681 ], [ -78.003038254386198, 24.894056312566025 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.009970615820606, 24.90268683693159 ], [ -78.014688769360674, 24.885693465791896 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.011960311911309, 24.885307993555905 ], [ -78.006836457509564, 24.902258818510486 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.005363545347691, 24.901722360865502 ], [ -78.008997498680714, 24.885512541572862 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.006346328567275, 24.884492611591369 ], [ -78.002971178685414, 24.901479001569818 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.014501635061251, 24.903375849505508 ], [ -78.024122092737258, 24.874058741460281 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.025600163256115, 24.87433201668221 ], [ -78.017726681011268, 24.903904930529542 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.021372279274814, 24.903121667503584 ], [ -78.021215769306266, 24.898802017648819 ], [ -78.027308547556601, 24.875423389952473 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.028258717891461, 24.87312436034383 ], [ -78.029085984868146, 24.882089836146708 ], [ -78.023309610550697, 24.903268100774497 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.026495093918612, 24.902457545374936 ], [ -78.030718160254651, 24.88655204766469 ], [ -78.03297637551529, 24.888519426081384 ], [ -78.029041267734328, 24.901661521086524 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.030718160254651, 24.886552047664683 ], [ -78.030584008852983, 24.883671911401922 ], [ -78.032171467105542, 24.882008703536155 ], [ -78.031031180191746, 24.878154843160218 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.031388917262746, 24.882515781477885 ], [ -78.029488439073063, 24.878479383406262 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.032260901373292, 24.881866721339488 ], [ -78.033423546854024, 24.879006759487911 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.033423546854024, 24.879006759487911 ], [ -78.033289395452385, 24.87726235308817 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.029488439073063, 24.878479383406233 ], [ -78.028170214680387, 24.876052026234156 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.036307801988926, 24.881319074195158 ], [ -78.046436232811544, 24.885030857302436 ], [ -78.049365205080335, 24.881319074195137 ], [ -78.047800105394728, 24.878519950877028 ], [ -78.038789602918968, 24.875923605892904 ], [ -78.038364790147185, 24.879371864687286 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.031031180191746, 24.878154843160218 ], [ -78.033848359625821, 24.876248151999416 ], [ -78.037045634697861, 24.877526044007691 ], [ -78.040958383911914, 24.883529931116861 ], [ -78.035107748905787, 24.88488614821777 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.0444212049577, 24.884143569106783 ], [ -78.043909714747642, 24.880081788375257 ], [ -78.041249045282086, 24.880081788375268 ], [ -78.041012524350819, 24.882642591689553 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.040675319467439, 24.883703112358219 ], [ -78.041718575187787, 24.888985913274269 ], [ -78.039527435627932, 24.89093297122654 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.038498941548823, 24.890770717569733 ], [ -78.038476582981872, 24.886754871630764 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.040590418723013, 24.886407874360088 ], [ -78.035726479248567, 24.887140236248715 ], [ -78.034988646539659, 24.889918882373809 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.033852305255266, 24.889742310757633 ], [ -78.043507260542768, 24.891744236312636 ], [ -78.045318304464701, 24.890831562716009 ], [ -78.047442368323729, 24.890953252918639 ], [ -78.050840870498234, 24.892839435724138 ], [ -78.044915850259827, 24.894299686495092 ], [ -78.046413874244635, 24.890912689531095 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.044915850259827, 24.894299686495092 ], [ -78.045206511629999, 24.898619493903606 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.039118868713942, 24.890868516359021 ], [ -78.036687897626862, 24.893366750494753 ], [ -78.03698520739691, 24.890403383914034 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.04668217704787, 24.898720896017576 ], [ -78.049387563647301, 24.897666309960854 ], [ -78.053233237160512, 24.899065662581936 ], [ -78.050572567694985, 24.901174801775351 ], [ -78.04279178640077, 24.900505559588687 ], [ -78.040801873943366, 24.902087398909231 ], [ -78.038811961485948, 24.901113961726519 ], [ -78.036822049028515, 24.905129340620054 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.031734249311143, 24.897566576160227 ], [ -78.028325793592302, 24.9081712073482 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.029780262819557, 24.904887592165792 ], [ -78.035704120681658, 24.904845429232875 ], [ -78.040511212573193, 24.907502003101836 ], [ -78.039035547155336, 24.910341026456138 ], [ -78.033177602617755, 24.911456339186291 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.031008314713247, 24.904909434366573 ], [ -78.034988646539659, 24.889918882373809 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.033221400271174, 24.904948796422357 ], [ -78.035748837815504, 24.895009524381681 ], [ -78.034008417638375, 24.89354705473303 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.053184942655932, 24.899372301211265 ], [ -78.032835161659548, 24.897137647713123 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.044963203288759, 24.896586770721413 ], [ -78.035351476832133, 24.896572218949284 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.041042470563653, 24.901907681574237 ], [ -78.041911815798215, 24.898250319201289 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.038789602918996, 24.90099228153888 ], [ -78.039470556272249, 24.897976772369933 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.035532902648526, 24.904859764265424 ], [ -78.037043157731517, 24.897704778081984 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.034250813830738, 24.904967105621623 ], [ -78.032484487042709, 24.918066894902168 ], [ -78.026805411040613, 24.927657654032242 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.027839316747432, 24.925938731189852 ], [ -78.026894845308362, 24.92394715282439 ], [ -78.028303435025407, 24.916404150433031 ], [ -78.03002504467959, 24.913524710651345 ], [ -78.032894607541721, 24.914014113750369 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.033134061957639, 24.911849873135459 ], [ -78.028205235132816, 24.911349351963196 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.029577873340841, 24.910604646738634 ], [ -78.031008314713233, 24.904909434366573 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.039545841299088, 24.909826780424968 ], [ -78.033355172507783, 24.90881511135413 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.040511212573193, 24.907502003101825 ], [ -78.033401188287115, 24.908130649618386 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.032894607541721, 24.914014113750355 ], [ -78.037917618808464, 24.913058316192409 ], [ -78.039706304163474, 24.917762736003731 ], [ -78.042545842164515, 24.918796873197827 ], [ -78.040712439675659, 24.921513976657874 ], [ -78.03715742753262, 24.921878956143711 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.039706304163474, 24.917762736003716 ], [ -78.035189873642125, 24.917843845116668 ], [ -78.029354287671453, 24.914944161197745 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.038543658682713, 24.914903605694494 ], [ -78.033378829720178, 24.916546092909137 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.027631562458978, 24.908180018472237 ], [ -78.024296486939605, 24.926503841415339 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.020888851339137, 24.924713574905148 ], [ -78.022400773353937, 24.917438299018684 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.01761340702862, 24.922992733113841 ], [ -78.018755404567713, 24.917250230580859 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.015005035299367, 24.921622338468435 ], [ -78.015083945958636, 24.917060815851588 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.011422967970532, 24.916886459576567 ], [ -78.011601585523294, 24.917823567843488 ], [ -78.008515224631935, 24.918177007190842 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.024455650568356, 24.917498029794917 ], [ -78.025621011278574, 24.904483687909089 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.020451710126451, 24.917337744817491 ], [ -78.022758032580626, 24.904691775368157 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.019864239649493, 24.904687905625739 ], [ -78.019069346880343, 24.911334669196645 ], [ -78.0169452830213, 24.912409416620658 ], [ -78.017309250344667, 24.905087278027214 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.013168007955741, 24.916969270613698 ], [ -78.013907702858333, 24.904428066056472 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.009900903156151, 24.91681422980178 ], [ -78.011199131318335, 24.903790895504795 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.006972676840064, 24.917345343572418 ], [ -78.008153341341085, 24.903870401762667 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.007056020320675, 24.917141683043106 ], [ -78.004758108727515, 24.908474193898826 ], [ -78.005230269959227, 24.90369643159147 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.002614457843563, 24.908504365640198 ], [ -78.002601468092394, 24.903678229602004 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.000869473393408, 24.908394274623827 ], [ -78.002881744417763, 24.914092492830026 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.025648175793521, 24.927213969795272 ], [ -78.054179634235268, 24.942935275248807 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.052174447004319, 24.941613906010318 ], [ -78.052204743081518, 24.938676981439887 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.04994652782085, 24.939974500689168 ], [ -78.050997380466896, 24.933486767811267 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.047599130201931, 24.938867227297909 ], [ -78.049812376419226, 24.932878525342375 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.044653453903422, 24.937297409582747 ], [ -78.045608965835015, 24.93448022405487 ], [ -78.039656517542269, 24.934644394900136 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.043529391131258, 24.934472943210906 ], [ -78.044334527519567, 24.930830753632836 ], [ -78.029449627188725, 24.923268907479681 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.031971257556833, 24.930568202897973 ], [ -78.03715742753262, 24.921878956143694 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.036892006275991, 24.933178179430133 ], [ -78.043909714747741, 24.92328817235358 ], [ -78.040712439675659, 24.921513976657863 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.043621098798482, 24.923621292938552 ], [ -78.039438001360267, 24.923592317623896 ], [ -78.042088822456492, 24.925509367862361 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.041084901690212, 24.927037121890663 ], [ -78.027703226964491, 24.919524064439717 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.02888475776578, 24.916404150433014 ], [ -78.032283259940257, 24.918573824732583 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.028146925056845, 24.925427311503302 ], [ -78.039061727223057, 24.93018906122056 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.034541475201024, 24.938149860341923 ], [ -78.035301666476883, 24.933730063958347 ], [ -78.027006638143121, 24.930384699837145 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.024522540137141, 24.926622601864917 ], [ -78.023442480387033, 24.953863504745144 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.022244263385531, 24.953739527374445 ], [ -78.020723880833785, 24.94988790761159 ], [ -78.014687067760704, 24.945265804884681 ], [ -78.014552916359094, 24.940177236837631 ], [ -78.009410445963496, 24.932898800139764 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.019896638562699, 24.949130158080983 ], [ -78.022552146721836, 24.925587422181184 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.020491010382315, 24.924504559857823 ], [ -78.018130287069056, 24.945792895536684 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.019769861387175, 24.947666575074891 ], [ -78.016721697351983, 24.94441434598998 ], [ -78.01578263754061, 24.940785443281214 ], [ -78.018307380841975, 24.923357332720734 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.016336987426641, 24.922322125621523 ], [ -78.014552916359094, 24.940177236837631 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.012116042719896, 24.935569155921552 ], [ -78.01339027087829, 24.933871986489027 ], [ -78.014321685523313, 24.921263315469346 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.011087338483776, 24.932189180248916 ], [ -78.012341594018892, 24.920222995491365 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.004245617000947, 24.923815357012035 ], [ -78.008940916057782, 24.92312596123605 ], [ -78.010461298609528, 24.931945881060081 ], [ -78.024747932804431, 24.938255455435161 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.003977314197712, 24.916515676678081 ], [ -78.003552501425887, 24.918016201804566 ], [ -78.003239481488777, 24.918847565974655 ], [ -77.999997489282848, 24.91892867437415 ], [ -77.999863337881237, 24.915805962488935 ], [ -78.000243433519159, 24.915866795293741 ], [ -78.001137776196643, 24.916495399186491 ], [ -78.003082971520229, 24.917630933581545 ], [ -78.003954955630761, 24.91803647904614 ], [ -78.008515224631921, 24.918177007190842 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.005730721782882, 24.916675740252142 ], [ -78.003977314197712, 24.916515676678092 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.003977314197712, 24.916515676678092 ], [ -77.999662110778786, 24.913068455221214 ], [ -77.996822572777774, 24.91331179166065 ], [ -77.996487194273712, 24.916799561210301 ], [ -77.991523592413657, 24.920652215252179 ], [ -77.99136708244508, 24.923409830551822 ], [ -77.991210572476518, 24.924403368010296 ], [ -77.990562174035347, 24.924545301279402 ], [ -77.990606891169207, 24.924342539416379 ], [ -77.990942269673283, 24.924119500981945 ], [ -77.991300006744282, 24.923937014690043 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.991403200130122, 24.922820255088265 ], [ -77.989936134161098, 24.920469723828855 ], [ -77.990875193972457, 24.91840146882409 ], [ -77.996822572777759, 24.913311791660639 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.981596388693504, 24.928701845984758 ], [ -77.992753313595202, 24.939954227056074 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.053769407272256, 24.954581230874521 ], [ -78.084892967943972, 24.955624749973012 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.068683006914355, 24.970178507447088 ], [ -78.062690910975135, 24.972124283295667 ], [ -78.036866766162504, 24.969489371121632 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.058172320305815, 24.972014037386913 ], [ -78.054775978279295, 24.961908616814835 ], [ -78.054755147428182, 24.954614281170755 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.060432695714482, 24.971333815568542 ], [ -78.057548440579538, 24.96198969687142 ], [ -78.057749580777312, 24.954714679693627 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.062243739636401, 24.967786782475908 ], [ -78.060320902879766, 24.962151856824327 ], [ -78.060428118847213, 24.95480448668766 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.063942990723632, 24.967604360866591 ], [ -78.062755188380208, 24.954882509464202 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.070024520930602, 24.965678782942106 ], [ -78.066067054582675, 24.964300456030919 ], [ -78.065508141930778, 24.954974811360668 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.06785573993767, 24.962030236879645 ], [ -78.067812057722705, 24.955052057724103 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.070203389466073, 24.958746452949708 ], [ -78.070268966896805, 24.95513443364106 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.059871572073675, 24.972058750760453 ], [ -78.061818926864603, 24.968030010867626 ], [ -78.068683006914341, 24.96673278722281 ], [ -78.076106051137572, 24.969955551999426 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.068318247017658, 24.965411601023032 ], [ -78.066737811590812, 24.962374826410734 ], [ -78.053510548578032, 24.961930442351438 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.067207341496484, 24.962597795593222 ], [ -78.070203389466059, 24.958746452949683 ], [ -78.075166991326199, 24.959881598042447 ], [ -78.083059565455102, 24.95742886069818 ], [ -78.084892967943972, 24.955624749973012 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.08026968318012, 24.958155978953759 ], [ -78.080000651917686, 24.955460719673606 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.077601210246826, 24.95915312596826 ], [ -78.077652080062762, 24.955381976329505 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.075166991326199, 24.959881598042447 ], [ -78.075056248442223, 24.955294942756417 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.072565905475216, 24.95937335994542 ], [ -78.072618114695331, 24.951915090924913 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.084982402211708, 24.955523394653568 ], [ -78.080000651917686, 24.955460719673606 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.079526808998807, 24.955444832586132 ], [ -78.077335772319103, 24.953334099388329 ], [ -78.072610171261061, 24.953049867330709 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.070268966896805, 24.955134433641039 ], [ -78.070337540867726, 24.953070570481582 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.067812057722705, 24.955052057724103 ], [ -78.067989891339295, 24.952320523583094 ], [ -78.069711500993449, 24.951165036988307 ], [ -78.072618114695331, 24.951915090924885 ], [ -78.074496234318048, 24.950881231604715 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.065508141930778, 24.95497481136066 ], [ -78.065664600377801, 24.950942047099133 ], [ -78.063026289479168, 24.948103958692332 ], [ -78.055088998216405, 24.947799873912519 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.062755188380208, 24.954882509464202 ], [ -78.062695280857398, 24.948091277468798 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.060428118847213, 24.954804486687642 ], [ -78.060612095542623, 24.94801146882687 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.057749580777312, 24.954714679693627 ], [ -78.058019351846184, 24.947912138487759 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.054755147428182, 24.954614281170755 ], [ -78.055469093854356, 24.936467112516596 ], [ -78.059896090107955, 24.937947120857565 ], [ -78.062176663935574, 24.94139364672224 ], [ -78.064479596330116, 24.942184306706931 ], [ -78.065619883243926, 24.942346492743265 ], [ -78.066536584488361, 24.940704349262102 ], [ -78.065821110346349, 24.940704349262099 ], [ -78.064792616267255, 24.941718020663153 ], [ -78.064345444928492, 24.941839660670794 ], [ -78.063764122188104, 24.94194102725211 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.061908361132311, 24.941454466901224 ], [ -78.060678639950766, 24.942265399751811 ], [ -78.060455054281391, 24.940400246215468 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.061169186909382, 24.940371457754836 ], [ -78.056296360831041, 24.940379972652345 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.059113540265145, 24.938676981439865 ], [ -78.058308631855397, 24.938656707593172 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.058234647418374, 24.937024747190286 ], [ -78.058019351846184, 24.947912138487741 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.053962603158709, 24.949097051912787 ], [ -78.037626957438363, 24.949137841327968 ], [ -78.037021722975908, 24.965572775901968 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.034696753465767, 24.965529825913631 ], [ -78.035458176445474, 24.943339877556763 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.042970654936411, 24.949218929795087 ], [ -78.042477761115393, 24.96566492687807 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.053570581237281, 24.960226250498618 ], [ -78.034847539567764, 24.959820635974857 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.048716806639533, 25.122787679499549 ], [ -78.052337135112722, 25.114191982720921 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.054586462481168, 25.115600739499708 ], [ -78.051042097601012, 25.124093374843877 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.048940392308907, 25.1264921741097 ], [ -78.058470097347481, 25.129774572705422 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.048940392308907, 25.126492174109679 ], [ -78.049253412246031, 25.130247161927969 ], [ -78.052640735137032, 25.130216798607979 ], [ -78.056968480162936, 25.116741533708097 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.059477537150883, 25.117661165400357 ], [ -78.053065547908844, 25.133678168468865 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.053311492145127, 25.13570231591147 ], [ -78.052640735137032, 25.130216798607979 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.048391009425302, 25.136441969850218 ], [ -78.050248368474726, 25.136299432998452 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.055665704653805, 25.136465018268773 ], [ -78.050952663333263, 25.135580868011044 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.056351394391413, 25.134829200667934 ], [ -78.05216002594787, 25.13339478514963 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.057056552107156, 25.136005935134129 ], [ -78.059411702033358, 25.12998666737148 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.059862552257798, 25.137817514139151 ], [ -78.062615902267495, 25.131106673963004 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.062355532471329, 25.138566427216396 ], [ -78.065107822870871, 25.131974375233419 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.066659556606751, 25.136218468140797 ], [ -78.061316300352757, 25.134274286955829 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.064110679975911, 25.139133169194437 ], [ -78.067733354189514, 25.132893306313569 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.055649597138554, 25.136503444943266 ], [ -78.071108911427302, 25.141298908946808 ], [ -78.072293915475001, 25.140681575829266 ], [ -78.070426975135703, 25.140448810072947 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.066848510186148, 25.139997581190737 ], [ -78.065631062527643, 25.141956719489166 ], [ -78.062869779510891, 25.14111674540074 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.072204481207237, 25.141005423099845 ], [ -78.074932226373591, 25.141410230980046 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.067732767819763, 25.140276765533052 ], [ -78.070420268992393, 25.133833714340593 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.070420268992393, 25.133833714340593 ], [ -78.072651652545986, 25.134629521945527 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.056837977846442, 25.133668368223493 ], [ -78.066178847417603, 25.136825703264499 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.06187140643253, 25.118520944032895 ], [ -78.057357006544905, 25.129264516973766 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.074719819987706, 25.131967737727738 ], [ -78.068928951150895, 25.130166193057875 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.067733354189514, 25.132893306313559 ], [ -78.070496376514313, 25.126362023440862 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.065107822870871, 25.131974375233419 ], [ -78.067717111296147, 25.125413720841774 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.062615902267495, 25.131106673963004 ], [ -78.065192359355564, 25.124552253377303 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.078306786945944, 25.114346434599458 ], [ -78.07753699942181, 25.117595125062984 ], [ -78.057816743383, 25.110570148649124 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.06394743883483, 25.116794720203639 ], [ -78.054351165507711, 25.112523820944354 ], [ -78.049342949161527, 25.11209259883076 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.049365205080662, 25.111774748210852 ], [ -78.048057228914828, 25.110762480467862 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.047848187518838, 25.113389716945317 ], [ -78.047718866030337, 25.104734079182283 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.055359210400496, 25.107031704396707 ], [ -78.053568615664901, 25.112402350002085 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.055368480303343, 25.112928723213514 ], [ -78.059357307077761, 25.10831168541641 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.063066288492735, 25.10949909490019 ], [ -78.069636926892628, 25.09391881472493 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.078525856889087, 25.103808125048943 ], [ -78.063987707857706, 25.098391891697041 ], [ -78.066542707643492, 25.092810045949566 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.059113540265372, 25.10355489186054 ], [ -78.064177403251122, 25.076455186305608 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.063101687227487, 25.076178489481261 ], [ -78.087598354543559, 25.082597832629492 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.101751327414959, 25.083043334026534 ], [ -78.087866657346794, 25.078567996331426 ], [ -78.079314303665996, 25.08050810785781 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.08605561342489, 25.075510092336412 ], [ -78.086726370432999, 25.077879468319065 ], [ -78.080689557359918, 25.092560476514034 ], [ -78.081159087265618, 25.09638737408023 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.076083692570847, 25.098290654221127 ], [ -78.074197415358057, 25.09554420267494 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.077676664735094, 25.096762648817492 ], [ -78.077693603324121, 25.0914500046479 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.069636926892613, 25.093918814724915 ], [ -78.072796983231029, 25.085898554443119 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.072622655449649, 25.08583556918768 ], [ -78.076106051137756, 25.085918804035927 ], [ -78.101572458879474, 25.094423319911499 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.086793446133825, 25.085615060394961 ], [ -78.07834136748815, 25.082809633384489 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.069382967875256, 25.086128069178589 ], [ -78.070540952279245, 25.083109586551167 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.070942175645044, 25.073990159304927 ], [ -78.0683695201825, 25.085864587667782 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.073904682986552, 25.082628557698204 ], [ -78.080756633060702, 25.066133394116839 ], [ -78.080443613123592, 25.059206732778449 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.084639054374705, 25.06037598139639 ], [ -78.067520361433736, 25.068462446643515 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.065575166110207, 25.068563708792315 ], [ -78.064256087010349, 25.075849413034717 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.048258456017237, 25.07368746422835 ], [ -78.045631324402081, 25.06895863037273 ], [ -78.042729931525244, 25.069282323296662 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.044602830322987, 25.074750667254932 ], [ -78.04310368148866, 25.073810585006871 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.044233913968483, 25.073707715800808 ], [ -78.044155658984209, 25.071753423626614 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.044837595275808, 25.071712919831985 ], [ -78.046257364276315, 25.070781328858573 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.045564248701282, 25.071054731291959 ], [ -78.043844961977072, 25.069182427087174 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.046939300567942, 25.068229543383673 ], [ -78.045295945898033, 25.065890359997429 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.047252320505052, 25.067206789043734 ], [ -78.045944344339205, 25.065454922660887 ], [ -78.042507512351008, 25.066515456414621 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.044811254926984, 25.066134969616833 ], [ -78.043507260543024, 25.065343531465722 ], [ -78.044468678921334, 25.063267586114474 ], [ -78.045430097299658, 25.064725814817976 ], [ -78.044334527519723, 25.065515681451924 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.044053799925265, 25.063504637934965 ], [ -78.043610375528743, 25.062948125323242 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.044468678921319, 25.063267586114456 ], [ -78.045687220819403, 25.061768832971907 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.040230936593403, 25.062483503859941 ], [ -78.036576104792417, 25.061495409813141 ], [ -78.039995485401477, 25.060023619774597 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.040287626904046, 25.061647311643345 ], [ -78.039995485401477, 25.060023619774597 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.041880733561698, 25.059005349792844 ], [ -78.037850543107879, 25.059226986745074 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.037850543107879, 25.059226986745049 ], [ -78.03397133174424, 25.06024980770211 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.096765366987796, 25.103395449528595 ], [ -78.101639534580116, 25.089363710404712 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.099208272959402, 25.104444930711896 ], [ -78.09996264205985, 25.101148049785202 ], [ -78.098186844283305, 25.099890657225156 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.093727552632998, 25.102456906022258 ], [ -78.097691237897308, 25.093121720593246 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.091543675391719, 25.101672230471443 ], [ -78.099741486094189, 25.082395527635313 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.092739607853488, 25.091420397675108 ], [ -78.096754672363701, 25.081432819916994 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.09587102431027, 25.077922501433235 ], [ -78.081219450503625, 25.112611718787399 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.088824535514888, 25.110566927665591 ], [ -78.090236665442106, 25.10450901067648 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.08639163350162, 25.106929129861904 ], [ -78.085228346448133, 25.109023891059266 ], [ -78.082463726536488, 25.109638852631157 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.075319954350022, 25.113403426693662 ], [ -78.090169589741237, 25.076241667377616 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.092897334907605, 25.077071961782892 ], [ -78.08155203014806, 25.10500886795435 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.083283151124547, 25.101917434526563 ], [ -78.077674270950936, 25.100038021569596 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.065459520262152, 25.110265268433665 ], [ -78.076038975436845, 25.084159611655863 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.076756321860657, 25.091472583873802 ], [ -78.080063517485542, 25.0817701069791 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.085876744889276, 25.083066115304387 ], [ -78.080947779396979, 25.080920169316592 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.07828106502086, 25.080232183550127 ], [ -78.080130593186354, 25.075472121194188 ], [ -78.074446868800635, 25.074530664180379 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.075269942352449, 25.079342053605121 ], [ -78.078408983532171, 25.077557985163747 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.067296775764319, 25.072839426625105 ], [ -78.064121859259231, 25.073467228161526 ], [ -78.063808839322107, 25.07182683672016 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.065241650348838, 25.070449971237213 ], [ -78.060589205683115, 25.070287684030248 ], [ -78.059604154110318, 25.077175500702587 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.082277015612348, 25.070550961519558 ], [ -78.07581538976747, 25.068930783379869 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.080705003421002, 25.066257693953474 ], [ -78.077760585091013, 25.066439717684741 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.074701356048791, 25.073960806542502 ], [ -78.077576860477649, 25.063996865581696 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.065575166110207, 25.068563708792297 ], [ -78.059381843068493, 25.06629794819483 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.070851787907429, 25.066740977306097 ], [ -78.06951027389114, 25.061032108067813 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.066715453023946, 25.064292904983102 ], [ -78.077738226524076, 25.058642152113901 ], [ -78.082439952038925, 25.061503502957784 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.08424154979356, 25.057989006465075 ], [ -78.080484882675606, 25.060119988425797 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.08006351748557, 25.059573835402443 ], [ -78.078520776366858, 25.057629444852985 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.075335011036728, 25.059783551989771 ], [ -78.075055198491569, 25.035996019661706 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.071053015009767, 25.036016277462963 ], [ -78.071567262049356, 25.05424694194787 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.070672919371859, 25.056799018654274 ], [ -78.063697046487405, 25.05623189508983 ], [ -78.074697461420584, 25.054044393901385 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.075189561081729, 25.053538445629819 ], [ -78.082782969614541, 25.053372336080276 ], [ -78.093143279143888, 25.050641536675457 ], [ -78.094037621821386, 25.04786651770431 ], [ -78.092226577899453, 25.046165015155349 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.080593834176042, 25.046976304458582 ], [ -78.090728553914644, 25.044119129636595 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.079274207970684, 25.043256442612343 ], [ -78.082947772620429, 25.039925970470399 ], [ -78.083104282588991, 25.035854214959361 ], [ -78.088693924323337, 25.035975761857092 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.079150729246649, 25.042915554338396 ], [ -78.079482194745154, 25.035894730605325 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.079776175151139, 25.044665089097105 ], [ -78.074989650639708, 25.044686318699132 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.078789079170093, 25.044807847385034 ], [ -78.078587852067642, 25.052322721992386 ], [ -78.082457621491585, 25.052342526636487 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.082679625234135, 25.046388284789025 ], [ -78.084710058729797, 25.05288904210289 ], [ -78.088805717158039, 25.057366139594311 ], [ -78.082947772620415, 25.039925970470399 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.092047709363953, 25.058783930462546 ], [ -78.085027119345597, 25.037251997012227 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.092137143631689, 25.051026388361226 ], [ -78.094931964498883, 25.058601643984108 ], [ -78.092271295033356, 25.064292904983024 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.094596585994822, 25.052464507651539 ], [ -78.094641303128697, 25.047441144280761 ], [ -78.088761000024164, 25.040614711768018 ], [ -78.084334003770522, 25.025137356794108 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.073250368131283, 25.026572741457706 ], [ -78.074943405656825, 25.024995539541923 ], [ -78.090616761079929, 25.025258914308427 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.088379475691795, 25.035968924167022 ], [ -78.091019215284788, 25.029168950127257 ], [ -78.090616761079929, 25.025258914308406 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.090616761079929, 25.025258914308381 ], [ -78.099358960752411, 25.015007140917312 ], [ -78.097838578200665, 25.012535241381045 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.091399874202608, 25.024529513925433 ], [ -78.088447980086968, 25.018127336492068 ], [ -78.078610210634537, 25.014095380487095 ], [ -78.074898688522936, 25.014075119067321 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.088781330959961, 25.025223402791124 ], [ -78.086413350495675, 25.018998545770067 ], [ -78.077469923720741, 25.021551355960231 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.086055613424705, 25.022989820856115 ], [ -78.078786893606178, 25.025053584096604 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.077423772310567, 25.02503299817112 ], [ -78.073914911577688, 25.009050183738417 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.067220441425391, 25.009074480669714 ], [ -78.088895151425717, 25.008989396971774 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.072752278437335, 25.009052765545121 ], [ -78.074093780113216, 25.017397947225604 ], [ -78.070221645340212, 25.017784064166097 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.076155562044235, 25.017729716845789 ], [ -78.074965764223762, 25.018107075737653 ], [ -78.074943405656825, 25.024995539541923 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.079482194745154, 25.035894730605325 ], [ -78.069487915324146, 25.035590862934431 ], [ -78.06293685521149, 25.026737854422613 ], [ -78.054798336846304, 25.019748186014141 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.075055198491569, 25.035996019661706 ], [ -78.071477827781564, 25.025420990806953 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.071232502484435, 25.036015368953557 ], [ -78.064971484802797, 25.024894241404311 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.068160685821283, 25.030631366303982 ], [ -78.066983755827138, 25.018552811563048 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.071477827781564, 25.025420990806953 ], [ -78.062646193841303, 25.024894241404315 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.062799822417915, 25.026620168754089 ], [ -78.061617699762181, 25.020315478291046 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.064971484802797, 25.024894241404301 ], [ -78.064189015425825, 25.009080984688755 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.059540933435798, 25.023821356327446 ], [ -78.062333173904179, 25.019748186014123 ], [ -78.068325269843371, 25.01808681497986 ], [ -78.067743947103011, 25.015189492191013 ], [ -78.069206245395634, 25.014837459406642 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.067743947103011, 25.015189492190999 ], [ -78.066670735890014, 25.014480346827913 ], [ -78.067220441425391, 25.009074480669714 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.05982896050935, 25.009090339321993 ], [ -78.058688727493404, 25.021369014135807 ], [ -78.059896090108012, 25.022442800980713 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.052562480152602, 25.020153395050876 ], [ -78.055513675409912, 25.009099597899503 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.052294177349339, 25.020133134630807 ], [ -78.052204731918209, 25.009106697339526 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.034362204838288, 25.009191394691427 ], [ -78.036889124729527, 25.020031832480331 ], [ -78.058997484654782, 25.018044263408488 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.047643595426365, 25.019991311596698 ], [ -78.047442330920177, 25.009116915216612 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.046011420039932, 25.020315478291074 ], [ -78.046033778606883, 25.015189492191048 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.046749252748853, 25.011866604267947 ], [ -78.046749378031336, 25.00911840196817 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.046056137173792, 25.011947651384649 ], [ -78.046033907899613, 25.009119937031144 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.044915850259997, 25.021287973238035 ], [ -78.044423676633201, 25.00912339183132 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.042970654936454, 25.021531095770953 ], [ -78.042925925713689, 25.009126605301404 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.039974606966851, 25.022017339392207 ], [ -78.03946074598997, 25.009150505287899 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.032696541559375, 25.009204753015069 ], [ -78.026000502631035, 25.009151494949347 ], [ -78.026089936898785, 25.013264659534375 ], [ -78.031992598570227, 25.01338622880532 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.034565246389903, 25.016968905469437 ], [ -78.020187275227372, 25.021652656856883 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.025060958576347, 25.026406129285139 ], [ -78.019269603114196, 25.00506962963826 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.021404663902715, 25.012614480819288 ], [ -78.031433634396819, 25.010752200989206 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.034425752909712, 25.023422249269021 ], [ -78.02958510081595, 25.003104817086957 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.027010344983253, 25.003595238691478 ], [ -78.032283536077728, 25.024104824635383 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.030338064616913, 25.029108173321745 ], [ -78.024530023814435, 25.004067671185894 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.029890893278193, 25.03731276978376 ], [ -78.022152266041772, 25.004520566487979 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.033334112586488, 25.007652080494935 ], [ -78.033199961184849, 25.006557901638228 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.032998734082426, 25.005646078478861 ], [ -78.032415251806498, 25.003120309366444 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.036128933453668, 25.007591293036359 ], [ -78.035010556099891, 25.003188107799641 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.038722527218383, 25.007611555525884 ], [ -78.037649896456884, 25.00325705657059 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.04151734808552, 25.007571030543474 ], [ -78.04040029289331, 25.003328906472298 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.002937640835185, 24.973322642952358 ], [ -77.997247385549656, 24.973312508881595 ], [ -77.988259241640876, 24.977670082312912 ], [ -77.984335313143404, 24.984135220761445 ], [ -77.985207297253964, 24.988725465375076 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.002311600960908, 24.975592653768395 ], [ -78.004167362016688, 24.967201512188275 ], [ -77.996274787887856, 24.967758912525596 ], [ -77.99466497106836, 24.970099966369883 ], [ -77.998946636636859, 24.977710617155019 ], [ -78.00200976030726, 24.977335669355664 ], [ -78.002300421677447, 24.975531850453237 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.001086303730446, 24.977371634379107 ], [ -78.003027075102892, 24.968650747813452 ], [ -77.996967903462902, 24.968873705625455 ], [ -77.995917050816857, 24.970353324504423 ], [ -78.000573225680071, 24.977514333049712 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.001324775727241, 24.976750476081257 ], [ -77.999447600330669, 24.975995735537388 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.00149551326767, 24.974113097900808 ], [ -77.998285700209024, 24.974057615784993 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.000768859842239, 24.975298770800062 ], [ -77.998880875402392, 24.97505573436527 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.000185192753378, 24.972961057951938 ], [ -78.000757680558792, 24.969846607713588 ], [ -77.998790126668297, 24.970251981313218 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.998957815920335, 24.972897011261022 ], [ -77.997795170439588, 24.971245140987733 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.997650209192827, 24.973065608785209 ], [ -77.997437433368589, 24.972076145983415 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.994632299114002, 24.969798849177565 ], [ -77.995861154399506, 24.969826338998566 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.001893746833161, 24.977345528414752 ], [ -78.00129428616529, 24.981429632077543 ], [ -78.003015895819473, 24.984094688036862 ], [ -78.01351324299651, 24.984246685685051 ], [ -78.016990000155275, 24.988066831535626 ], [ -78.024245355126382, 24.986060509787379 ], [ -78.027040175993562, 24.9913903631933 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.028029100376656, 24.991589070355325 ], [ -78.02728612022986, 24.991745003033884 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.020019045645199, 24.987202085063736 ], [ -78.02121576930638, 24.994247717961375 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.038411201621642, 25.037450820879798 ], [ -78.034720343736595, 25.038072426886014 ], [ -78.028739427080879, 25.042792324246921 ], [ -78.031853377965291, 25.046462752752859 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.039952248399956, 25.046124502902209 ], [ -78.036397236256903, 25.045901685270106 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.038845483786844, 25.046104969929456 ], [ -78.037727570989674, 25.043855795357683 ], [ -78.036710256194041, 25.044514129994898 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.037164981102677, 25.044219864429664 ], [ -78.036434366132781, 25.043340116662019 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.029822006472486, 25.047847414122526 ], [ -78.026715976773062, 25.044109001405673 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.035967993319986, 25.043658023886177 ], [ -78.032853403397354, 25.039885456156078 ], [ -78.029443721939401, 25.039774041722396 ], [ -78.032126749971866, 25.037515345471032 ], [ -78.031232407294382, 25.039328382975565 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.034139020996236, 25.038416803222535 ], [ -78.032037315704116, 25.035752925785999 ], [ -78.016855848753721, 25.047552551748751 ], [ -77.985374986506045, 25.04858559799289 ], [ -77.982868501075927, 25.052017934313508 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.028803476593581, 25.047932499884286 ], [ -78.026450864473645, 25.045259537970225 ], [ -78.027800723886742, 25.048037320732735 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.028739427080879, 25.042792324246911 ], [ -78.025043153942846, 25.045259537970225 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.034520309920097, 25.041874846836787 ], [ -78.035922684178701, 25.037802377626704 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.036165347783182, 25.037768096204527 ], [ -78.033547268245272, 25.036515226093556 ], [ -78.036034866306522, 25.03476803610971 ], [ -78.037114753836988, 25.03672488721935 ], [ -78.035745610717996, 25.037030642385417 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.037049433467814, 25.036100228493556 ], [ -78.034044071288037, 25.036045151016005 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.036739297899473, 25.033352153800298 ], [ -78.03635731669327, 25.034847161816405 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.037287216976424, 25.037609608071357 ], [ -78.037153321248823, 25.041948827893187 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.035899880365236, 25.042228363597221 ], [ -78.034916814551096, 25.042363242082985 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.035388862158868, 25.043093173146588 ], [ -78.033460491568746, 25.044386008371983 ], [ -78.031503195419759, 25.042009976382911 ], [ -78.033200502911228, 25.040259427996709 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.034832505562534, 25.043466172043672 ], [ -78.032422685791261, 25.040875484657867 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.034348222673856, 25.042887284736778 ], [ -78.03311351519649, 25.041411365411047 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.032640934067942, 25.044814038652657 ], [ -78.029950857094718, 25.042866052037276 ], [ -78.031927436949587, 25.045303214286768 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.032640934067942, 25.044814038652657 ], [ -78.028541539378622, 25.047634898162581 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.029930247496949, 25.046678575622074 ], [ -78.028466011740335, 25.044883921005603 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.030114768594885, 25.045626418545783 ], [ -78.029121657740973, 25.044429684999709 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.029679344551894, 25.043983751547405 ], [ -78.027746174864731, 25.045348958926255 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.023616159706194, 25.043599826413114 ], [ -78.026094115914489, 25.04660476138055 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.026003310226059, 25.044599161579093 ], [ -78.02424288014798, 25.043669709458023 ], [ -78.025833785884842, 25.042490427741079 ], [ -78.02553488844336, 25.043992918022617 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.03008128668867, 25.041701695675844 ], [ -78.028755267328833, 25.040201715307422 ], [ -78.027231854562658, 25.04276122676804 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.028041770210478, 25.040804471961639 ], [ -78.027862026595159, 25.042313369975993 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.027729211850783, 25.043449682072559 ], [ -78.025833785884842, 25.042490427741079 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.027136572934936, 25.049677885475482 ], [ -78.024098252353738, 25.045984562810713 ], [ -78.021899909880986, 25.047417129409304 ], [ -78.024341276562993, 25.051583213572378 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.016124052536924, 25.047567085785214 ], [ -78.013125823695972, 25.03444480323509 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.015584496198343, 25.033492571708322 ], [ -78.018746594249862, 25.046081567257396 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.021274962610136, 25.044100967583891 ], [ -78.01757071790621, 25.030312589021694 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.019566581466961, 25.027621770068318 ], [ -78.023486947791483, 25.042368180727234 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.025718779919188, 25.040616786263989 ], [ -78.022210182565431, 25.027314450213641 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.024658730958549, 25.026534288398004 ], [ -78.027777799431263, 25.038986200657359 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.023970416075414, 25.033936830137627 ], [ -78.009124454721487, 25.038323541519659 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.011155336804521, 25.037727553907018 ], [ -78.009992221487053, 25.03925826416253 ], [ -78.007263577102009, 25.036174525999922 ], [ -78.006347601071724, 25.032321928327175 ], [ -78.010556629875026, 25.030887763867593 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.008201369088141, 25.031690286294069 ], [ -78.009519770692464, 25.0357027858465 ], [ -78.019267684025507, 25.031640503902345 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.011546541246418, 25.037612749764104 ], [ -78.010054054423406, 25.031059009918454 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.013637649423302, 25.047616467653121 ], [ -78.012017010606698, 25.041538258672791 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.010764489827054, 25.04767353077586 ], [ -78.012215987365408, 25.042284537611177 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.99679989437341, 25.063579837712158 ], [ -77.994787019384006, 25.065820626953741 ], [ -77.983554260696593, 25.065672152271553 ], [ -77.979417905780792, 25.066999684217912 ], [ -77.978295629355941, 25.065255365845903 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.979745728781111, 25.065462540649172 ], [ -77.983920651108718, 25.063645891564953 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.983395244860048, 25.062755625889295 ], [ -77.984258115961993, 25.064082588515785 ], [ -77.988963340201863, 25.061977694882771 ], [ -77.989599702496605, 25.064650292224755 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.988818198322974, 25.065753113666645 ], [ -77.988809070554666, 25.063034513218717 ], [ -77.985018470109992, 25.065704659969548 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.988760861289904, 25.064964711608539 ], [ -77.986480252839073, 25.064069297963943 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.98744654734287, 25.063688483714348 ], [ -77.987032424612991, 25.062906123701179 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.984136719209431, 25.063925495026837 ], [ -77.984064499747006, 25.065683480363177 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.983149644143367, 25.065804018554207 ], [ -77.982984485572416, 25.064053251010812 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.981336634517973, 25.065497475944461 ], [ -77.981001246845892, 25.06491622535551 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.995466487185666, 25.060481216048839 ], [ -77.991094189703944, 25.063610955741627 ], [ -77.990428738630996, 25.065771330478803 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.991440975357804, 25.065782779881204 ], [ -77.99191374720472, 25.063820570532076 ], [ -77.995076274972504, 25.06178554511504 ], [ -77.99679989437341, 25.063579837712158 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.99679989437341, 25.063579837712158 ], [ -77.993957949302995, 25.065811249350922 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.996250505577962, 25.062959371978135 ], [ -77.993128156948103, 25.065801863577764 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.995687608703278, 25.062296121862897 ], [ -77.992173641940994, 25.065791067067035 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.994169204788719, 25.062341807032936 ], [ -77.993649548707936, 25.061654874149344 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.991322613917177, 25.06338890005452 ], [ -77.987931282970365, 25.059392274679841 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.991998802134049, 25.062764543446708 ], [ -77.989320088761019, 25.059532129896862 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.991373803439473, 25.062117439979104 ], [ -77.994112089677444, 25.060326943871107 ], [ -77.990436597396496, 25.057163289833706 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.992058280137357, 25.061669880432376 ], [ -77.990612097056399, 25.059759220129859 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.988963340201863, 25.061977694882746 ], [ -77.987922020083161, 25.060632640180764 ], [ -77.98819199196582, 25.062414397779602 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.986699643581645, 25.06053776979045 ], [ -77.985656184639794, 25.059339976294087 ], [ -77.987393886494985, 25.053016728895141 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.989368805248134, 25.058092171404521 ], [ -77.986549690633311, 25.056140349702272 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.985733852207048, 25.059062687855306 ], [ -77.988677774526025, 25.05740663698959 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.988280309491714, 25.057012331568 ], [ -77.989001907613641, 25.056431432691816 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.988047364171521, 25.054046899507103 ], [ -77.987364009757115, 25.056368738569258 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.987610709719661, 25.055530529097446 ], [ -77.989917883643969, 25.056387760339931 ], [ -77.987828796770472, 25.054789532594981 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.990284274056052, 25.055339619225958 ], [ -77.987176958705774, 25.053819394013924 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.98273470319576, 25.052396041664775 ], [ -77.980835258164504, 25.056911827535451 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.982450046546205, 25.054209326370952 ], [ -77.980613495546649, 25.057697924126764 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.978473004191613, 25.057287407647028 ], [ -77.982242968695289, 25.058160845315946 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.986842132552709, 25.054632118906738 ], [ -77.982598084477786, 25.053651715341065 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.986103303332342, 25.054461444966048 ], [ -77.982729074115994, 25.052849896429528 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.986738812554321, 25.055440583980705 ], [ -77.983216795843305, 25.054955298571606 ], [ -77.981413769341529, 25.061121752689861 ], [ -77.982465500026535, 25.063200830618527 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.979027440977973, 25.064890938558079 ], [ -77.982001927838567, 25.06234468920734 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.981641085411297, 25.061678268588388 ], [ -77.977923418573425, 25.063401340592584 ], [ -77.977643804837868, 25.061741874671288 ], [ -77.979321487251269, 25.062065035586667 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.979321487251269, 25.062065035586638 ], [ -77.981192006723674, 25.058658702001743 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.980445641142524, 25.062232338242438 ], [ -77.981192006723674, 25.058658702001743 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.97981115545042, 25.060341941432831 ], [ -77.97503475441232, 25.059187915387714 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.985752603169288, 25.05999504415713 ], [ -77.982840763578196, 25.06186415187463 ], [ -77.983062526196065, 25.059392381851985 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.985317759644531, 25.060518527934061 ], [ -77.985910223892361, 25.055249107697247 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.985681914323123, 25.055994860651058 ], [ -77.983997785932274, 25.055697735114702 ], [ -77.982985391372466, 25.058868325264321 ], [ -77.984394822674716, 25.061203068042882 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.983688471921269, 25.059919952771011 ], [ -77.984836838699536, 25.05581918318812 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.979347477619257, 25.060229912728712 ], [ -77.98070991407613, 25.055540513633872 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.999760258129044, 25.057636841634586 ], [ -77.999800782918271, 25.048727389081339 ], [ -77.993837704091803, 25.048626109432913 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.999800782918271, 25.048727389081325 ], [ -78.016963281170334, 25.0487273890813 ], [ -78.023616159706165, 25.043599826413107 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.968510778856, 25.064048588836332 ], [ -77.966825645827342, 25.05986403086472 ], [ -77.96369204361838, 25.057383486095365 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.964097576016954, 25.065530953843044 ], [ -77.963200309117923, 25.063348936749307 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.040023688438524, 25.160278627813991 ], [ -78.03659412768819, 25.158096538025255 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.04841350955985, 25.15050242145783 ], [ -78.046377319125654, 25.150423718881608 ], [ -78.042234741718744, 25.155229477402496 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.041139771242712, 25.154304717103727 ], [ -78.044728641395338, 25.15031108675052 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.045312949914518, 25.151648855544554 ], [ -78.044241123249449, 25.150853595873006 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.043652180750897, 25.151508966575911 ], [ -78.041089107537843, 25.150325165772596 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.042824763816469, 25.152429703858903 ], [ -78.040824696958438, 25.151521876711787 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.041949219783916, 25.15340398869694 ], [ -78.040451411434603, 25.152732654659381 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.040082964086764, 25.153918881480774 ], [ -78.041291303863261, 25.149269234609921 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.042306951559411, 25.150692627674196 ], [ -78.04250448181574, 25.149367788571674 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.039617040483648, 25.153790147696689 ], [ -78.040513625688561, 25.150198454515472 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.039102280973239, 25.153647920488613 ], [ -78.028879560195378, 25.149410025959519 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.037668007897793, 25.153178132358374 ], [ -78.038927162212204, 25.149522658922212 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.047809249767809, 25.141663618091815 ], [ -78.047730479149578, 25.143609287857757 ], [ -78.025224472774369, 25.143581128262625 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.027387633562995, 25.145934611752416 ], [ -78.020247332456421, 25.138568616838565 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.028631478607295, 25.145913433746411 ], [ -78.028443283167576, 25.139868945552152 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.021505394536064, 25.139791244538049 ], [ -78.020978349940606, 25.136822637569203 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.0240116783216, 25.139998414039024 ], [ -78.022953652504256, 25.115516864051656 ], [ -78.025488883353717, 25.115587279203741 ], [ -78.025457776226702, 25.111573550793448 ], [ -78.046296591748415, 25.111573758470346 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.041633482260082, 25.10881315582715 ], [ -78.044479784379376, 25.111291880693127 ], [ -78.044801922840932, 25.128796622327336 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.047045819899381, 25.120855164138984 ], [ -78.041804571458513, 25.120910547236662 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.048315448832028, 25.135509408140539 ], [ -78.046766158212989, 25.135569459639203 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.042023351608194, 25.139393221100644 ], [ -78.041401167448385, 25.081872325977972 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.04300219584745, 25.085614926177715 ], [ -78.042632579784495, 25.080799718625368 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.051447780824461, 25.077402234085987 ], [ -78.04741940787963, 25.079585765169302 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.035770941341298, 25.07036957705661 ], [ -78.03326566510043, 25.070950024396527 ], [ -78.031928058639991, 25.073232285895294 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.034225804101382, 25.069238415063623 ], [ -78.029206185028613, 25.072612416608916 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.044765418122665, 25.069092324037914 ], [ -78.042646783548847, 25.068247991389793 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.043795427585579, 25.06824506680703 ], [ -78.04371765976812, 25.066131777126262 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.04283110664899, 25.071710782955083 ], [ -78.029206185028613, 25.072612416608916 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.030434916544579, 25.07257015267966 ], [ -78.029241917467715, 25.070400150072842 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.030468859417013, 25.069642661043613 ], [ -78.030403809417578, 25.06840003994877 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.027770093715475, 25.071309008736996 ], [ -78.022595920543807, 25.070428761174501 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.02354468791691, 25.070611907964754 ], [ -78.02390241987726, 25.071626254459751 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.016965530559133, 25.066892565611365 ], [ -78.019096368757772, 25.069696171274728 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.029159524338127, 25.073330901174309 ], [ -78.041151321791688, 25.072626504582061 ], [ -78.041462393061565, 25.075965308515567 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.039969179313687, 25.072695943654463 ], [ -78.03987866548168, 25.071867754391558 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.042286731926737, 25.076528810749085 ], [ -78.04155536663319, 25.071775607588258 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.04313907929351, 25.074233802778721 ], [ -78.038491662434296, 25.076909173290694 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.042271178363222, 25.073006879245067 ], [ -78.037900627021514, 25.075514504861623 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.036919177308377, 25.072087872856514 ], [ -78.039222679918467, 25.079177236508698 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.041251991030009, 25.079133256794641 ], [ -78.03729403804526, 25.079346283016363 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.036936306084925, 25.079515329290619 ], [ -78.036687449069021, 25.076063921593644 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.038747979211536, 25.077437024659154 ], [ -78.032550201179731, 25.081163518231886 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.042286731926737, 25.076528810749071 ], [ -78.040404750743988, 25.077500846006824 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.03914396468754, 25.07825250123863 ], [ -78.03729403804526, 25.079346283016349 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.039611519005803, 25.080064728069885 ], [ -78.044790855649183, 25.079797072562311 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.051152459957521, 25.077562310531217 ], [ -78.04847705019715, 25.078317913152386 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.047015015228766, 25.078571484606126 ], [ -78.044790855649183, 25.079797072562311 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.04827951932532, 25.082181624210563 ], [ -78.045257462553977, 25.082093256050438 ], [ -78.044790855649183, 25.079797072562311 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.047982228254369, 25.073310182413174 ], [ -78.043288668290941, 25.076022279515669 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.047154997300197, 25.076754210916349 ], [ -78.044868623466627, 25.07331681328214 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.044602830322987, 25.074750667254921 ], [ -78.047679608863163, 25.072896852628432 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.049534692514726, 25.074232522900143 ], [ -78.048617032268581, 25.073049143023553 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.047357193625601, 25.074950997960268 ], [ -78.046743880713976, 25.074025747183057 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.04785490765741, 25.07430296181791 ], [ -78.047354363739828, 25.073672987166532 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.047683818458978, 25.074641068059194 ], [ -78.047067705078121, 25.0738386294321 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.033374540044889, 25.089692893577688 ], [ -78.037402912989748, 25.084523219274768 ], [ -78.037675905061789, 25.103437066925633 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.037857735234226, 25.101775638491404 ], [ -78.034821021449801, 25.097707569907094 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.037579634674586, 25.091622546526171 ], [ -78.033219004409943, 25.087340507551211 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.037589081449738, 25.092002034188475 ], [ -78.035287628354595, 25.090904284311268 ], [ -78.035164336918868, 25.086637179215497 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.037503886651237, 25.088579620046954 ], [ -78.034261093164019, 25.085847352841764 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.044777658974169, 25.093647618691673 ], [ -78.044013177474511, 25.092904461366665 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.044184266672957, 25.097594889168928 ], [ -78.044433123688876, 25.102679504137598 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.043295213795986, 25.103874825656451 ], [ -78.042994419065721, 25.105940025487499 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.038548623187467, 25.103505054034844 ], [ -78.039589128671935, 25.143785646071318 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.036804609600381, 25.139593277248444 ], [ -78.0363374938905, 25.117319479171396 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.03330454900923, 25.107278011250845 ], [ -78.03425545007461, 25.139709503020324 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.031658033509814, 25.139780756793574 ], [ -78.030972958329954, 25.111409022832724 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.025488883353717, 25.115587279203726 ], [ -78.026618593321928, 25.139919001396034 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.029213655448217, 25.139847812291652 ], [ -78.02863847996116, 25.113200182926516 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.021079448103293, 25.116960366561216 ], [ -78.021701590643048, 25.132563188244479 ], [ -78.023443589754336, 25.13480205781644 ], [ -78.020978349940592, 25.136822637569193 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.017136811076881, 25.137553822974905 ], [ -78.020208448547677, 25.135308965983203 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.021701590643048, 25.13256318824449 ], [ -78.019290788301532, 25.134140257876432 ], [ -78.018668645761792, 25.12203009393772 ], [ -78.021218712453489, 25.121366228245861 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.066594955507711, 25.107602359225158 ], [ -78.062187516416856, 25.106059740599498 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.061720909512061, 25.106862533028412 ], [ -78.064367803495628, 25.098513376557509 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.06329181942489, 25.097651229550941 ], [ -78.054177431217596, 25.096045518493813 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.06329181942489, 25.097651229550912 ], [ -78.060288679112858, 25.108609860005441 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.061487606059615, 25.104017525576101 ], [ -78.056217551940676, 25.103954573999577 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.081458381585463, 25.115256327636128 ], [ -78.078306786945944, 25.114346434599458 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.070496376514313, 25.126362023440862 ], [ -78.072178860506042, 25.120323722860409 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.085875593617672, 25.122776452706319 ], [ -78.065438211187015, 25.117087112308734 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.06759718621926, 25.119180512991228 ], [ -78.066231442925215, 25.1236777100487 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.072994340824437, 25.127214338137318 ], [ -78.074031555017285, 25.125085911337187 ], [ -78.076605669775489, 25.124536714765316 ], [ -78.077157821279499, 25.123100342828984 ], [ -78.075058090207875, 25.122480726192343 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.084405781867545, 25.12524081248802 ], [ -78.077157821279499, 25.123100342828984 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.076057382425446, 25.120040150745631 ], [ -78.074031555017285, 25.12508591133717 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.079516458817352, 25.12100419052507 ], [ -78.07980970385519, 25.118903786913879 ], [ -78.077715544696431, 25.117124025326454 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.076690723028634, 25.120216662459637 ], [ -78.07753699942181, 25.117595125062984 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.02255834362704, 25.171750510146332 ], [ -78.017067297606573, 25.161676783689106 ], [ -78.014301193464334, 25.15987355845736 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.011772189849339, 25.157807308225895 ], [ -78.013140417618928, 25.1595755021328 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.010715079066543, 25.155502164668086 ], [ -78.015134729310773, 25.153286343892358 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.998541592946779, 25.116062608184677 ], [ -77.997933999587218, 25.116403942295957 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.002849677707388, 25.121015032859045 ], [ -78.000848233874009, 25.120258888456554 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.002745385356661, 25.120298782990897 ], [ -78.000350809351403, 25.120070961013859 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.99965375848916, 25.119807614069956 ], [ -78.00073638396735, 25.118055345176121 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.000719990988571, 25.120523511113774 ], [ -77.9988947993605, 25.121549330111218 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.997354564962052, 25.12045794424423 ], [ -77.994860054903668, 25.119457498636674 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.997053214753663, 25.119093698203244 ], [ -77.99573062217236, 25.118290301742864 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.996632388983343, 25.125074418956412 ], [ -77.993318682606287, 25.124924887757736 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.031686553762114, 25.05367097894781 ], [ -78.028058530695404, 25.049049454731502 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.038043229068478, 25.05921639015099 ], [ -78.03773966625532, 25.054735236341507 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.0346685709453, 25.054099985005081 ], [ -78.034168357438162, 25.063871112563071 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.038764989760395, 25.05470292870951 ], [ -78.041735160875163, 25.057279849184361 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.034108483462518, 25.053932654832074 ], [ -78.034409531813637, 25.052046153281676 ], [ -78.032841969765968, 25.05367097894781 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.032661017591593, 25.050789854998772 ], [ -78.031364705323512, 25.049192152714763 ], [ -78.038241758899815, 25.044523693281395 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.032749497446645, 25.048252106591317 ], [ -78.03024594535259, 25.047558442277872 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.036233413028, 25.044699356921438 ], [ -78.035458768121941, 25.046412936495191 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.041071973935573, 25.050284600972127 ], [ -78.042051744835859, 25.047594429608854 ], [ -78.040738021213599, 25.041502419242534 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.041842694865906, 25.048168426138137 ], [ -78.040529106564378, 25.04837527406529 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.041321132430028, 25.048250555495919 ], [ -78.040031203018785, 25.041549737146802 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.057847361715559, 25.040513910020096 ], [ -78.069487915324146, 25.035590862934431 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.060178210501348, 25.02436867025569 ], [ -78.051608279463295, 25.033391531465472 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.056431766972381, 25.033036437939824 ], [ -78.037837008538389, 25.034429034625706 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.046623958027382, 25.033714109679366 ], [ -78.044614222575063, 25.028433786560626 ], [ -78.03768045928075, 25.025306070340388 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.036023099762474, 25.024882550147829 ], [ -78.044508708785798, 25.024158765805581 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.03768045928075, 25.025306070340378 ], [ -78.038010064096468, 25.024713071395961 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.03832861541477, 25.023148036258334 ], [ -78.048473012582363, 25.021891441971903 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.053854215834676, 25.021249481230534 ], [ -78.051336958290861, 25.024076815071272 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.029254429538256, 24.988627994724567 ], [ -78.032415251806498, 25.003120309366434 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.02958510081595, 25.003104817086957 ], [ -78.028289732036455, 24.997316975604267 ], [ -78.019094958972246, 24.997207684062104 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.028530906411888, 24.993956216223626 ], [ -78.02121576930638, 24.994247717961375 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.028380172427234, 24.993560023086541 ], [ -78.021157316158778, 24.993630889220544 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.022666881710464, 24.99361607831386 ], [ -78.024108918328196, 25.004147879938817 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.027010344983253, 25.003595238691478 ], [ -78.025287118014688, 24.994085478404926 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.020316089585293, 24.997222198754141 ], [ -78.021187023913072, 25.004704417213894 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.018366179773707, 25.005241704910979 ], [ -78.017542398930246, 24.999816993088313 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.020575679349122, 24.999745842070485 ], [ -78.011618553333165, 24.99980333192882 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.01467775881359, 24.99985427407341 ], [ -78.015214923624825, 25.005700037203059 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.012339753455038, 25.005723303491457 ], [ -78.012990232593566, 24.999885298863088 ], [ -78.011332158762301, 24.992904252329165 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.017798646704165, 24.988013185074465 ], [ -78.018778417604437, 24.993423404467297 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.006177056486962, 24.99845086961874 ], [ -77.99677125584428, 25.00058201559694 ], [ -77.994344438691243, 25.002836072080161 ], [ -77.998806164637173, 25.005431601044251 ], [ -78.002574514253638, 25.005581866831232 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.00411200089718, 25.014351606125199 ], [ -78.001293275384015, 24.9965929173263 ], [ -78.003313110778421, 24.992958900025915 ], [ -78.002815688629056, 24.988067834945689 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.003313110778421, 24.992958900025886 ], [ -78.008136598287521, 24.991715658913627 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.005067688624678, 24.992506663694819 ], [ -78.007647013582002, 25.006091025823185 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.005523626615187, 25.006636726857572 ], [ -78.003087009801462, 24.993860583514397 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.010080689453488, 25.005645397674904 ], [ -78.008317479069092, 24.998519176152929 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.000009044509412, 25.005479566807587 ], [ -77.999292996738077, 25.00021360206043 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.000177843897504, 24.985499264739346 ], [ -78.015262317132667, 24.985191338727049 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.014230368371827, 24.984463358699369 ], [ -78.016653068420752, 24.996169409563613 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.015311535957238, 24.988464045785211 ], [ -78.010653855831322, 24.989953240624438 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.011332158762301, 24.992904252329165 ], [ -78.010277020869651, 24.988122484792555 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.012296856264072, 24.986278039034232 ], [ -78.013653462126001, 24.992931576180563 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.027094094686646, 24.988065084178849 ], [ -78.033444834311723, 24.985676880363581 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.039564634088904, 24.987507672614321 ], [ -78.068415118752696, 24.979036614069557 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.059327822494566, 24.986564011852323 ], [ -78.066757044921459, 24.986141412321633 ], [ -78.068656293128171, 24.977752241347311 ], [ -78.063832805619029, 24.977834222985638 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.070480174342535, 24.983545475937976 ], [ -78.066214402576662, 24.989324775277659 ], [ -78.060748687317471, 24.990533809697173 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.062700832573114, 24.990412076827049 ], [ -78.058964097914568, 24.978954633232718 ], [ -78.063832805619029, 24.977834222985624 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.063235260328611, 24.98046984283156 ], [ -78.06574712722427, 24.987138783831544 ], [ -78.062127923646116, 24.988732524645872 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.060648953621993, 24.990255164847188 ], [ -78.054818913336447, 24.990363107597691 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.049422636685662, 24.993245800035147 ], [ -78.059913722017953, 24.992835942673945 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.057441684669527, 24.996551932767773 ], [ -78.085206884643839, 24.997194022612366 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.086322316130321, 24.995732238729232 ], [ -78.087874876172322, 24.997207684061966 ], [ -78.088628546095634, 25.007617267110167 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.082946015692912, 25.009012750206708 ], [ -78.091326684421048, 25.007494324426219 ], [ -78.096798328064196, 25.000923541964465 ], [ -78.094899079857484, 24.998628466528491 ], [ -78.088075652550572, 25.000216206823687 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.091142057072204, 25.007520065807608 ], [ -78.090653076116709, 24.999840479548141 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.095675957144636, 25.003588530572081 ], [ -78.093175574465377, 24.999445350521324 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.088895151425717, 25.008989396971788 ], [ -78.088975331447799, 25.00761479250556 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.086156508747223, 25.008013414921301 ], [ -78.085206884643839, 24.997194022612355 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.075604632011277, 24.997030283872245 ], [ -78.075620203219515, 25.011838224614717 ], [ -78.078830837092781, 25.012111420749036 ], [ -78.077775741151896, 25.009033046031174 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.078996644475893, 25.010786413823372 ], [ -78.083217196046377, 25.0100214548625 ], [ -78.083232269444849, 25.00250821188888 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.085553572808593, 25.002521872747632 ], [ -78.081559122215083, 25.002467229303459 ], [ -78.081754813741213, 24.997168022247969 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.081468681824305, 25.00044540478385 ], [ -78.075482357224558, 24.999104315092247 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.080322512146495, 25.000188634618468 ], [ -78.080429197805771, 24.997158037950602 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.07127824435166, 24.99690264273859 ], [ -78.072752278437335, 25.00905276554511 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.064977792119663, 25.002585251312247 ], [ -78.067977990197264, 25.002617498716496 ], [ -78.068246796792181, 24.996813206059489 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.07718615368006, 24.997076943370036 ], [ -78.077700332207797, 24.986810881762114 ], [ -78.078333414943359, 24.986564954636147 ], [ -78.07771540560627, 24.988887580098019 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.049709031256555, 25.007521645033378 ], [ -78.046754645157236, 24.996319686678643 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.050344948430578, 24.993209767949697 ], [ -78.042051744835859, 25.000582015596851 ], [ -78.037288550920621, 25.00025414939071 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.063305236672832, 25.007548965634331 ], [ -78.059172691254702, 24.99659373992283 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.060287014666798, 25.003883008301727 ], [ -78.056280636054495, 24.992977877335765 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.058630508900649, 25.00383681908577 ], [ -78.054237049519188, 24.993057714560937 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.057517051661904, 25.00749432442629 ], [ -78.056704791855068, 25.00378312328921 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.055223435907564, 25.003741817834413 ], [ -78.051340541870886, 24.993170872945875 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.052058235857928, 25.003653560790788 ], [ -78.048838927409975, 24.994548578983228 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.053959721008383, 25.009102931956516 ], [ -78.053084110904692, 25.00368216584555 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.047056113126558, 25.007603606818105 ], [ -78.041870864054246, 24.988286434187394 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.044491132705232, 25.003442562763489 ], [ -78.039564634088904, 24.987507672614306 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.062883181515772, 25.000718626257807 ], [ -78.061918484013972, 24.996483625140044 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.061463827554945, 24.99664907527135 ], [ -78.059913722017953, 24.992835942673935 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.059389788124733, 24.990278478208193 ], [ -78.054864133531879, 24.97899562365798 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.060305630378167, 25.007494324426279 ], [ -78.059845891724933, 25.005855076881989 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.034364311618106, 24.974732546262921 ], [ -78.034294594458103, 24.968388883318958 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.036112825840178, 24.973639425695826 ], [ -78.037589919190026, 24.965582266945678 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.038826037564078, 24.973885378670307 ], [ -78.039910434744357, 24.965621028397624 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.04198687799115, 24.970219044757869 ], [ -78.042684630236948, 24.965668567292415 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.044675564533009, 24.970599882892731 ], [ -78.045668623943556, 24.965721078614209 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.047520951430755, 24.970994239889752 ], [ -78.048171035554986, 24.965765115198302 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.049966183316513, 24.971300242466622 ], [ -78.050584210786951, 24.965807581416176 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.055412221709688, 24.963801748288272 ], [ -78.055266344463291, 24.97185096106362 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.034740217453972, 24.963884183082723 ], [ -78.024018373499416, 24.963754874307476 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.035030840319138, 24.955917785823907 ], [ -78.032073155051279, 24.955888521358663 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.03333932052243, 24.964921441580493 ], [ -78.025847841484818, 24.964743795984663 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.031711393488095, 24.96514008196181 ], [ -78.032073155051279, 24.955888521358656 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.035142068499383, 24.953333616824899 ], [ -78.027038639963649, 24.952663293963436 ], [ -78.027872541398906, 24.930733920692816 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.030912503369422, 24.932066312059042 ], [ -78.030822062978643, 24.938025713256533 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.024779443109338, 24.937847187353494 ], [ -78.034541475201024, 24.938149860341923 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.037514651897538, 24.93817606139444 ], [ -78.039428973502723, 24.935469766844864 ], [ -78.052949811926752, 24.943779815678187 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.047930370237552, 24.943670476569388 ], [ -78.048023840520884, 24.940361290344569 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.047930370237552, 24.943670476569388 ], [ -78.047748531860407, 24.954535382786656 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.042970654936411, 24.949218929795069 ], [ -78.043674604985796, 24.93839450386146 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.043287763510023, 24.94345179806065 ], [ -78.027340107932986, 24.943028107345292 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.033488841851948, 24.943256733636989 ], [ -78.033700510945962, 24.938121790524903 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.032888610953151, 24.943231392299953 ], [ -78.032826716895116, 24.953282287830138 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.02997795266451, 24.953168949605342 ], [ -78.030339714227708, 24.943123779569657 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.037783467406911, 24.949036480668997 ], [ -78.03528898261095, 24.948999949760026 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.035307454650535, 24.948455051422098 ], [ -78.027116645453788, 24.947890881528892 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.035353335491976, 24.947101622809708 ], [ -78.02821436504405, 24.946827604278429 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.027143329228011, 24.955751891853478 ], [ -78.027264740940637, 24.95293662159531 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.029118768951989, 24.954795233401711 ], [ -78.029166174902016, 24.952957070441222 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.030656255595488, 24.953264613952651 ], [ -78.030505521610863, 24.956571821401809 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.022272156755676, 24.968427259476634 ], [ -78.015591851689706, 24.968117152177069 ], [ -78.015156154488565, 24.965180540322184 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.008109225843924, 24.964321868644333 ], [ -78.00846914961879, 24.954086040958924 ], [ -78.006934737736486, 24.951114743688034 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.015099324418827, 24.9546699869056 ], [ -78.004339497886178, 24.953931466568282 ], [ -77.998789094410753, 24.954910434431664 ], [ -77.996496948265573, 24.957589675096283 ], [ -78.001194900695339, 24.964356215626502 ], [ -78.010515032128538, 24.964184480619913 ], [ -78.010628692267971, 24.972805281988219 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.011291709747965, 24.969920300167541 ], [ -78.011329596461138, 24.965283580520925 ], [ -78.008677526541106, 24.966176591962768 ], [ -78.008279716053096, 24.971483007051315 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.013905892954867, 24.978317469834487 ], [ -78.012939781769703, 24.970916313442199 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.005987569907944, 24.964390562599057 ], [ -78.006198253220191, 24.954001040491431 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.010249825136512, 24.963188412856137 ], [ -78.000664486711329, 24.963446017361008 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.003240783205072, 24.964201654131372 ], [ -78.003752253832488, 24.95499630843431 ], [ -78.004983572009635, 24.954481063520038 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.009891339516543, 24.96319804711209 ], [ -78.010761295763956, 24.953210116846215 ], [ -78.008184999270199, 24.948778875846198 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.004339497886178, 24.953931466568282 ], [ -78.006271720256478, 24.947748331831352 ], [ -77.99808819021753, 24.928819140112164 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.006385380395884, 24.935432663722352 ], [ -78.008791186680455, 24.937390885730235 ], [ -78.009056393672452, 24.935535728814358 ], [ -78.010837069190174, 24.936532020259648 ], [ -78.012276764289638, 24.943523011221178 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.008753299967324, 24.937545480879216 ], [ -78.010268768493063, 24.940929348328929 ], [ -78.02339455996497, 24.946410295764416 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.018868119777977, 24.948732398191609 ], [ -78.013432309040525, 24.949070861749345 ], [ -78.011765293662236, 24.945171934069734 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.021975762854311, 24.96095581789594 ], [ -78.022922930682881, 24.954034516183572 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.013204988761686, 24.959461674034536 ], [ -78.013572039578406, 24.954356660145766 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.011973670584496, 24.949620480394984 ], [ -78.005532929350167, 24.937785961836536 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.01071416001723, 24.94111650080669 ], [ -78.003301814445962, 24.94162960863536 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.001403277617555, 24.938181036676124 ], [ -77.990548734302067, 24.940190745596084 ], [ -77.989260586055224, 24.939967446223779 ], [ -77.988275531513466, 24.936377423839257 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.999698375526123, 24.943316894313178 ], [ -77.998826981123813, 24.936188472395305 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.998467057348975, 24.943385599987508 ], [ -77.997444116094115, 24.935570083825887 ], [ -77.993541784640371, 24.934522251666174 ], [ -77.988703065982293, 24.938494725130642 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.996951588823237, 24.939228837724446 ], [ -77.995076196522675, 24.942818777028364 ], [ -77.991855825905517, 24.945034524675428 ], [ -77.994299518903247, 24.948297956379047 ], [ -77.996932645466686, 24.947147177173932 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.991874769262083, 24.943110777060298 ], [ -77.9937122748495, 24.940654519922361 ], [ -77.99259689885973, 24.935527355280172 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.996502347009042, 24.940122746910887 ], [ -77.994507895825521, 24.935759036218013 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.991195223437813, 24.940257359557911 ], [ -77.99016986717065, 24.943007718304543 ], [ -77.98823764480035, 24.943505834825391 ], [ -77.987233646902055, 24.941341589789399 ], [ -77.989260586055224, 24.939967446223779 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.987972437808367, 24.943402776400134 ], [ -77.986229649003775, 24.94568721793334 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.988275531513452, 24.936377423839247 ], [ -77.981910563705441, 24.938713526846989 ], [ -77.980395095179716, 24.944158536183245 ], [ -77.979391097281436, 24.942698541519956 ], [ -77.981948450418585, 24.938644818567155 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.980708309728357, 24.940536025011109 ], [ -77.979902567908837, 24.936532020259708 ], [ -77.976814800787679, 24.935381131144098 ], [ -77.980148831544284, 24.932924719916475 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.979391097281436, 24.942698541519956 ], [ -77.978481816165996, 24.939263191706335 ], [ -77.975962349741991, 24.940929348328996 ], [ -77.975469822471126, 24.945515456885005 ], [ -77.967191575649395, 24.946666251335468 ], [ -77.965126749783096, 24.946546019582442 ], [ -77.965240409922515, 24.944639471812938 ], [ -77.97207896164484, 24.936566374993479 ], [ -77.975299332261983, 24.938318453714754 ], [ -77.973897523875706, 24.945687217933365 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.972091058933884, 24.945982461515708 ], [ -77.97305811313457, 24.936766568804437 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.969492670002651, 24.946341603426792 ], [ -77.969840179755153, 24.939295123223534 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.967079245339633, 24.946671683334284 ], [ -77.967453213195853, 24.942104013687519 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.982849740375414, 24.937956708383265 ], [ -77.991268581851784, 24.934195875895099 ], [ -77.98797243780831, 24.921741417915271 ], [ -77.98159638869349, 24.928701845984744 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.988900662280315, 24.925675444728995 ], [ -77.983612071040596, 24.930725391230631 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.990470380178039, 24.929341745125264 ], [ -77.984988171145361, 24.932106840231285 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.991327635115994, 24.932616168472368 ], [ -77.976896292963119, 24.935639766131178 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.981377773663624, 24.909990329497322 ], [ -77.981377268263216, 24.91446647003551 ], [ -77.978535987377413, 24.91635124809612 ], [ -77.976474029248863, 24.920753859628167 ], [ -77.974379599338718, 24.92123975695608 ], [ -77.973551202022691, 24.909878622475347 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.981377343080311, 24.913803853452833 ], [ -77.963371665392543, 24.914657894121284 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.973564890594957, 24.911020013595543 ], [ -77.963274250047888, 24.911977929888753 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.973631825704871, 24.916601096629545 ], [ -77.969638719232123, 24.916012579160956 ], [ -77.969672551160201, 24.9098232632644 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.976474029248877, 24.920753859628167 ], [ -77.965628454210432, 24.934564376749801 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.966164238606041, 24.933887138001573 ], [ -77.963144362921682, 24.932694599855267 ], [ -77.96173184042415, 24.921548963349718 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.971625901064414, 24.926763078431701 ], [ -77.96986602170297, 24.926878970725959 ], [ -77.965092669814794, 24.919664264720506 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.973236166055088, 24.925175932378188 ], [ -77.967544289321992, 24.919899853624386 ], [ -77.964004865132807, 24.919399226665664 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.967544289321978, 24.919899853624386 ], [ -77.96647272053076, 24.918368517704405 ], [ -77.962202681256642, 24.919090014881789 ], [ -77.956828601409768, 24.913877470985426 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.963905105255193, 24.919389445868113 ], [ -77.963339193085673, 24.909783920205083 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.967047080701079, 24.918530573011399 ], [ -77.96608305915214, 24.917161104822696 ], [ -77.96386548625506, 24.917607599781633 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.963728854989597, 24.916616292701129 ], [ -77.960180984491032, 24.916765702031658 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.963225542375554, 24.913627145537447 ], [ -77.956828601409768, 24.913877470985426 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.962303214748374, 24.913663238144554 ], [ -77.959945892438768, 24.91068210212601 ], [ -77.953695074489985, 24.911109137778741 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.952103957193927, 24.911212215128618 ], [ -77.948467117660087, 24.911830677419388 ], [ -77.946096402350861, 24.910328223340425 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.944999675396176, 24.910857865722903 ], [ -77.945138760050995, 24.911226940457311 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.954393217793339, 24.920061820734755 ], [ -77.95307811064049, 24.914289770615813 ], [ -77.954003556414705, 24.900800967916197 ], [ -77.96090380999452, 24.892907272955522 ], [ -77.973080728076596, 24.892347626168238 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.963176834703191, 24.889372619088029 ], [ -77.972577415462553, 24.888974964196517 ], [ -77.973551202022676, 24.909878622475347 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.979347512600171, 24.909961352015042 ], [ -77.975158922095957, 24.898753957437066 ], [ -77.972885897387272, 24.870195358909665 ], [ -77.977302059678365, 24.868354067506697 ], [ -77.981214909355401, 24.868486641404029 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.981214909355401, 24.868486641404029 ], [ -77.982286478146634, 24.875851634533991 ], [ -77.980370643035045, 24.877957941852742 ], [ -77.985257646158701, 24.899313575184312 ], [ -77.981750693751081, 24.901934908749794 ], [ -77.98166892559334, 24.909994485046063 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.981708715432191, 24.906072617725847 ], [ -77.98579343055431, 24.905557559005345 ], [ -77.986751348110133, 24.904026045043352 ], [ -77.981733518136039, 24.903627887466442 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.974015915385365, 24.921074846562441 ], [ -77.970913168110854, 24.916748246407138 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.953126455379262, 24.915097260129794 ], [ -77.949571158232871, 24.914702068868131 ], [ -77.948467117660087, 24.911830677419388 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.947756325890197, 24.909688148066333 ], [ -77.95379248983464, 24.905793174851006 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.947756325890197, 24.909688148066333 ], [ -77.945187467723329, 24.90940098629925 ], [ -77.938368393597372, 24.904541460517915 ], [ -77.936157213458984, 24.900953101295649 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.939699736641003, 24.905528106993067 ], [ -77.938076147563393, 24.905896256642031 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.934439308029567, 24.906485293795825 ], [ -77.932477550958069, 24.906243127870482 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.934439308029567, 24.906485293795825 ], [ -77.932702067716534, 24.905145230193082 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.936095368888715, 24.908193485641046 ], [ -77.935186159005255, 24.907766439896729 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.932019384724512, 24.904232425588226 ], [ -77.934244477340258, 24.903009933945945 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.954003556414705, 24.900800967916179 ], [ -77.944326965512175, 24.897502171712734 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.949701045359063, 24.895896922031802 ], [ -77.949798460703704, 24.898665596508238 ], [ -77.946242800623736, 24.896868910570113 ], [ -77.945934318699017, 24.894173832633832 ], [ -77.947671559012036, 24.894100195798956 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.945993209121724, 24.894938569810222 ], [ -77.943336576174843, 24.895396197677023 ], [ -77.943011858359313, 24.89710454300268 ], [ -77.939602321296334, 24.896721640071391 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.963339193085673, 24.909783920205065 ], [ -77.962835880996849, 24.872640551492562 ], [ -77.981783165532562, 24.873362315959287 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.977886551746295, 24.870681455263583 ], [ -77.969898493484465, 24.870784566365632 ], [ -77.96971622529658, 24.872432389764711 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.981988400734437, 24.87380296449658 ], [ -77.987530670867301, 24.869959675140823 ], [ -77.990144649282243, 24.86993021463811 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.987455316830491, 24.870069655264174 ], [ -77.984624446418366, 24.870357391240034 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.985858374117356, 24.87172729245275 ], [ -77.982448837054363, 24.867956344961563 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.982199996348882, 24.875257253282534 ], [ -77.962705993870657, 24.874570157269968 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.980370643035045, 24.877957941852728 ], [ -77.973461644890435, 24.877798575351068 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.980370643035045, 24.877957941852728 ], [ -77.979883566311756, 24.876131495616733 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.970336698862113, 24.874839113624581 ], [ -77.972577415462538, 24.888974964196521 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.963051856313427, 24.886162770604397 ], [ -77.982097311070135, 24.885408907710133 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.974395835229473, 24.886986670532622 ], [ -77.982500984290454, 24.887194947036019 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.974424391296182, 24.888619499491774 ], [ -77.994934237061244, 24.891655427948798 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.983430968456503, 24.891332946088127 ], [ -77.993180760857427, 24.893894012427605 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.9914922282167, 24.890830676068195 ], [ -77.987969039918255, 24.878385090706121 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.980370643035045, 24.877957941852728 ], [ -77.983098272685439, 24.879136279935203 ], [ -77.986410394403777, 24.877972671148122 ], [ -77.990794084913304, 24.879342487944232 ], [ -77.995989569961665, 24.878812238082773 ], [ -77.997678102602393, 24.884659589886731 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.9956973239277, 24.878915342400738 ], [ -77.995713559818498, 24.883127816673852 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.995713559818498, 24.883127816673838 ], [ -77.980774910942841, 24.879702490246409 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.981283259217932, 24.88189614454167 ], [ -77.996135692978697, 24.886058789201645 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.981863000236089, 24.884397829446602 ], [ -77.996265580104918, 24.887958729212031 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.982374454159597, 24.886631935808772 ], [ -77.995924626398605, 24.889991190818478 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.993180760857427, 24.893894012427584 ], [ -77.996265580104918, 24.887958729212031 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.993180760857427, 24.893894012427584 ], [ -77.990566782442471, 24.898518328152857 ], [ -77.985030343687839, 24.898223790915143 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.9840244773508, 24.900811412199111 ], [ -77.984657364353481, 24.896697033187287 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.983975010787347, 24.894306378825849 ], [ -77.97480403913606, 24.89427598770186 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.983358233112455, 24.894304334924126 ], [ -77.981393504153957, 24.89697199981466 ], [ -77.974964091406662, 24.89688363761028 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.981804549388741, 24.901873847899655 ], [ -77.979136715336082, 24.899593383106552 ], [ -77.973379420928381, 24.899578811861129 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.981745008719727, 24.902495277692623 ], [ -77.97636535642188, 24.902271053447645 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.98188691683464, 24.901780460658674 ], [ -77.98790409635518, 24.902126352278202 ], [ -77.990566782442457, 24.898518328152861 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.985549892192665, 24.910225614104036 ], [ -77.984332200384458, 24.908370193792514 ], [ -77.953169435198546, 24.908059223410735 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.952039013630824, 24.907133231417351 ], [ -77.973508722194325, 24.906941532751137 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.973484653919428, 24.905277401711047 ], [ -77.953470677908086, 24.90531907397768 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.95375947285163, 24.902870494744615 ], [ -77.973438245122907, 24.902626012714961 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.973379420928381, 24.899578811861108 ], [ -77.955042653424385, 24.900359169966055 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.97332426643824, 24.89672164007133 ], [ -77.958078764999485, 24.896544915240977 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.963184869237011, 24.891154596347917 ], [ -77.952282551992397, 24.884468119273983 ], [ -77.951974070067649, 24.881581295603137 ], [ -77.952136428975408, 24.883481304485905 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.95431203833941, 24.885823135690188 ], [ -77.956747421955797, 24.87714782790237 ], [ -77.9628745891074, 24.880668274612404 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.962974374769075, 24.884172752541588 ], [ -77.956025693983392, 24.880020372888037 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.963120052665104, 24.887914283397265 ], [ -77.954884883380956, 24.883266966816294 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.962917060450764, 24.882700684218147 ], [ -77.971561688430782, 24.882238696626516 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.971052560047312, 24.879163346514847 ], [ -77.962847803551327, 24.879386470285699 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.981540618541601, 24.883006701739287 ], [ -77.976230490887119, 24.882744870402739 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.974149409914176, 24.885457574631253 ], [ -77.977448182695312, 24.880918494931702 ], [ -77.98096741504834, 24.880533199836538 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.962789652253448, 24.876603634226104 ], [ -77.968940575928656, 24.875969470856621 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.962797019046903, 24.876956176316831 ], [ -77.959929656547928, 24.87529191046708 ], [ -77.956747421955797, 24.877147827902338 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.983430968456503, 24.891332946088138 ], [ -77.974621659240881, 24.891304498071626 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.041396492102308, 25.053429431481835 ], [ -78.041520133082869, 25.054805985935776 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.042340287814838, 25.054322083326699 ], [ -78.041520133082869, 25.054805985935776 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.042340287814838, 25.05432208332671 ], [ -78.041451314481435, 25.054039797282019 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.041451314481435, 25.054039797282019 ], [ -78.040796564561845, 25.054556648917039 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.040750210437025, 25.054451272652624 ], [ -78.041553015610461, 25.05518429783276 ], [ -78.042425852516786, 25.054386678006662 ], [ -78.041414815630347, 25.053633437100917 ], [ -78.040750210437025, 25.054451272652624 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.786822530009616, 24.696384140921992 ], [ -77.792413065854916, 24.697441083175178 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.605846931883889, 24.197693950947269 ], [ -77.612110139216057, 24.188480922377003 ], [ -77.609429937880222, 24.182793217775146 ], [ -77.612138351861717, 24.176770665949174 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.622153841064119, 24.183861290239236 ], [ -77.622725147138325, 24.181544977179566 ], [ -77.624001769353541, 24.18169939935844 ], [ -77.623656164444455, 24.183018414520458 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.623994716192144, 24.183957802370809 ], [ -77.623204762114227, 24.183661831602606 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.674615255632816, 24.25080384903131 ], [ -77.673373899224615, 24.256642848896337 ], [ -77.668605962111371, 24.252655895641208 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.696515321811333, 24.256404921322321 ], [ -77.699371852182438, 24.260481780907472 ], [ -77.699301320568324, 24.26313745665902 ], [ -77.693538887696249, 24.267824942621523 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.698892237206579, 24.294654095862782 ], [ -77.683177793584761, 24.292288369182216 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.690273273963399, 24.296994064746727 ], [ -77.690442549837229, 24.29296980584482 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.693094538527461, 24.29559265999233 ], [ -77.692516179291815, 24.293509809658655 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.693785748345661, 24.295245520643608 ], [ -77.693517728212072, 24.293651238849339 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.699089725726083, 24.294216954036187 ], [ -77.696635225555369, 24.294628381679374 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.915175163086502, 24.754162202728466 ], [ -77.913704656184905, 24.753198521021254 ], [ -77.913861700611221, 24.749629329512512 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.915175163086502, 24.754162202728466 ], [ -77.91548925193932, 24.749615052746417 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.917473722418237, 24.749622191129436 ], [ -77.908643542625327, 24.751378233351652 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.908643542625327, 24.751378233351652 ], [ -77.91282663507377, 24.761079295872428 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.908643542625327, 24.751378233351652 ], [ -77.910313924251568, 24.763477792566501 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.912098520005856, 24.762935275457032 ], [ -77.893467340329806, 24.768874410127712 ], [ -77.882631274909059, 24.762906721925088 ], [ -77.880575420599897, 24.764591380317064 ], [ -77.880875232686691, 24.766375976071433 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.879518939913396, 24.765833458962195 ], [ -77.886607697183805, 24.77428874412416 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.883885084829785, 24.773048815149004 ], [ -77.879518939913396, 24.765833458962195 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.879518939913396, 24.765833458962195 ], [ -77.896394077367034, 24.774756437734041 ], [ -77.900363018324882, 24.779724752314177 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.900677107177685, 24.779210788736926 ], [ -77.888284874259014, 24.760408287869016 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.883113424651597, 24.763172253667481 ], [ -77.88598631492728, 24.76063671612539 ], [ -77.891697021341457, 24.759537405140765 ], [ -77.908643542625327, 24.751378233351652 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.911471782001684, 24.750103994134403 ], [ -77.910442415145809, 24.748158822610826 ], [ -77.901890632290602, 24.751128389946203 ], [ -77.897537965782575, 24.756446375269558 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.90215373854565, 24.751030664765668 ], [ -77.902718684720725, 24.748330143803294 ], [ -77.899392198234466, 24.745403406766012 ], [ -77.896137095578354, 24.748101715546699 ], [ -77.896822380348127, 24.749786373938903 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.900662830411576, 24.74650271775085 ], [ -77.895937220853966, 24.751399648500819 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.902718684720725, 24.748330143803294 ], [ -77.905616868225849, 24.747188002520375 ], [ -77.906941818384396, 24.749673961987124 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.006604445812556, 24.750585220571971 ], [ -78.00168444682788, 24.756290404568361 ], [ -78.002656088507706, 24.757865134187242 ], [ -78.022759019812142, 24.761919225333521 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.020736270502624, 24.798520012615587 ], [ -78.012898325949138, 24.792118072779378 ], [ -77.998889249276985, 24.793694465695662 ], [ -77.995409287555859, 24.795657521025511 ], [ -77.970127514368144, 24.797114940891642 ], [ -77.968045485988014, 24.79878056359572 ], [ -77.967629080311909, 24.803271796244275 ], [ -77.97673051865948, 24.81133222040155 ], [ -77.982827887487105, 24.811361963663952 ], [ -77.979645358391735, 24.812581437429515 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.977359520939444, 24.811455554181872 ], [ -77.968610607976871, 24.813235789206164 ], [ -77.9698003384798, 24.809666597697415 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.968997270390332, 24.806722014702782 ], [ -77.962275293048663, 24.805829716825571 ], [ -77.965011673205495, 24.8102317196863 ], [ -77.969408306592939, 24.810697415921105 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.975243355530822, 24.810142489898638 ], [ -77.979747675215023, 24.805953448797773 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.981441851451152, 24.807761839162144 ], [ -77.978262891547288, 24.803288452471239 ], [ -77.966860514407003, 24.800204671007659 ], [ -77.961530521753872, 24.800528277704451 ], [ -77.961016558176553, 24.799195779541293 ], [ -77.964785624409885, 24.797577746057218 ], [ -77.965071159730655, 24.797920388442066 ], [ -77.963338912118274, 24.798358209267153 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.978262891547217, 24.803288452471239 ], [ -77.979075477480777, 24.799733537728571 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.979075477480777, 24.799733537728571 ], [ -77.979134964005993, 24.786943934822215 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.98436977821892, 24.790483383068356 ], [ -77.981216992386081, 24.793011560387075 ], [ -77.982258006576146, 24.80232120157228 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.984191318643468, 24.804076054064236 ], [ -77.984399521481436, 24.787360340498189 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.987195388163386, 24.788431097950866 ], [ -77.987016928587948, 24.801964282421512 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.989961511582763, 24.790423896543118 ], [ -77.990050741370538, 24.802767350510848 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.995582988209179, 24.814843115115512 ], [ -77.995077352745454, 24.800030970354246 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.000451786930029, 24.793480508257769 ], [ -77.997427070488797, 24.787717259648932 ], [ -78.001829073349654, 24.785010622754978 ], [ -78.005903900322195, 24.779597348966615 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.017682232301453, 24.785129595805177 ], [ -78.029906713219304, 24.782244499335516 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.031899511811744, 24.786081380207545 ], [ -78.020269896145351, 24.784118324877724 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.024850358581659, 24.769097977278399 ], [ -78.032821552951461, 24.789025963202242 ], [ -78.017176596837757, 24.801399160432418 ], [ -78.010514106021191, 24.80487912215353 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.016548967764294, 24.795784403009684 ], [ -78.025181123819536, 24.79495638097794 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.024909845106947, 24.808656516500356 ], [ -78.026242631453741, 24.794105324279577 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.022857559989291, 24.808031907986255 ], [ -78.024220437756199, 24.795726604651218 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.020835018134321, 24.807526272522452 ], [ -78.022249128305447, 24.797307088915929 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.019853490469373, 24.807139610109108 ], [ -78.020296478044173, 24.798875727104004 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.027110846537312, 24.806217568969291 ], [ -78.029467887959242, 24.791571706380438 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.025891372771781, 24.803154012924363 ], [ -78.028155582307946, 24.7925999046229 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.032821552951461, 24.789025963202242 ], [ -78.03900815156679, 24.79182182988405 ], [ -78.047336265087452, 24.792505924923134 ], [ -78.063427370139962, 24.788996219939541 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.071793734601769, 24.789138774938468 ], [ -78.066015033983859, 24.790275180230097 ], [ -78.063010964463942, 24.788431097950728 ], [ -78.067100596502144, 24.782658386096397 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.062259913609282, 24.775229385290761 ], [ -78.058103326139232, 24.775016886530327 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.061287598070891, 24.775285195833955 ], [ -78.054147472216897, 24.770287707781087 ], [ -78.048228562964681, 24.771031289345608 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.035349730270184, 24.759847822618173 ], [ -78.049477779992728, 24.766153394283542 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.85766826241921, 24.765663164051954 ], [ -77.85892461783034, 24.762379507863898 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.852956929627524, 24.763778630935363 ], [ -77.85892461783034, 24.762379507863898 ], [ -77.862022676059908, 24.75942421729469 ], [ -77.866691178553495, 24.759110128441986 ], [ -77.868013989532955, 24.760276518353916 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.858087261120019, 24.762575825944289 ], [ -77.85395630325003, 24.755440999570869 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.868786810241247, 24.757366690437657 ], [ -77.871853419205692, 24.747998045544584 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.805311430632585, 24.698288282315911 ], [ -77.810069068948209, 24.698265949201708 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.93456680404374, 24.533037515071278 ], [ -77.947754118775606, 24.532063694774354 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.938307859354495, 24.527375744758274 ], [ -77.947292092977762, 24.526384627675768 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.018702255920147, 24.760642845056669 ], [ -78.019238309496615, 24.733378216468441 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.024850358581659, 24.769097977278399 ], [ -78.022759019812142, 24.761919225333521 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.021099048003308, 24.769074890477881 ], [ -78.014222405696202, 24.769669755729353 ], [ -78.009630045954879, 24.766100564220615 ], [ -78.001135370163766, 24.762650345762115 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.077680228052813, 24.820281235311075 ], [ -78.078572525929957, 24.825765892929489 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.082766325952946, 24.834926817801811 ], [ -78.075984862086059, 24.835729885891393 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.075984862086059, 24.835729885891393 ], [ -78.06564260753818, 24.834295906090365 ], [ -78.063045368707705, 24.831260172392508 ], [ -78.059200106023511, 24.830518104155288 ], [ -78.061257658863312, 24.828764124685357 ], [ -78.067666430003527, 24.829168889178348 ], [ -78.067497778131397, 24.830518104155267 ], [ -78.063551324324081, 24.831766128008805 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.069015644980354, 24.822625196540631 ], [ -78.077110934841841, 24.827077605964163 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.071309310441123, 24.825964503608308 ], [ -78.071781535683073, 24.829270080301743 ], [ -78.077178395590678, 24.828629203187514 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.077705259462689, 24.835526154623086 ], [ -78.076845729595362, 24.83344560955867 ], [ -78.072626273751752, 24.834427135182295 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.073552555563126, 24.833445609558677 ], [ -78.071249237309502, 24.830000150022162 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.069487870222332, 24.83470067058358 ], [ -78.070621059603866, 24.831960825890924 ], [ -78.069326632816711, 24.831275541121219 ], [ -78.064679115647706, 24.833445148391057 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.082994256834652, 24.832874538917203 ], [ -78.077873656749901, 24.833731144879206 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.078806405464192, 24.832912610293352 ], [ -78.078882548216413, 24.827868152960932 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.077110934841841, 24.827077605964163 ], [ -78.082822935642184, 24.829981114334071 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.081377222248378, 24.832889239231783 ], [ -78.082208402436635, 24.829668736523203 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.078882548216413, 24.827868152960932 ], [ -78.078572525929957, 24.825765892929489 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.079091940784977, 24.850101836599478 ], [ -78.081585615919124, 24.838128388817925 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.077074157851897, 24.848502838803476 ], [ -78.078692191335961, 24.838299710010567 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.074333018773174, 24.848902588252486 ], [ -78.075494195744, 24.842715989637384 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.080708532765186, 24.842339727014732 ], [ -78.066071530160613, 24.84338223871892 ], [ -78.062454749431652, 24.846313734678141 ], [ -78.046388628719754, 24.847474911649094 ], [ -78.043761703769221, 24.849378480453712 ], [ -78.043495204136661, 24.856745291727812 ], [ -78.076598265650759, 24.848255374858802 ], [ -78.079091940784977, 24.850101836599478 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.071971184238265, 24.849521849746452 ], [ -78.072921090577921, 24.842897926366334 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.069079168872051, 24.852862011366092 ], [ -78.070557675594117, 24.843065036516585 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.067077716756316, 24.850757101239953 ], [ -78.06926952575256, 24.840717242392312 ], [ -78.078692191335961, 24.838299710010567 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.078958690968591, 24.838147424506172 ], [ -78.081585615919067, 24.838128388817925 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.074333018773174, 24.848902588252486 ], [ -78.074123626204624, 24.850634835864643 ], [ -78.069079168871994, 24.852862011366096 ], [ -78.063235212641558, 24.858058754202904 ], [ -78.051528264492561, 24.860971214474084 ], [ -78.051128515043615, 24.865882421990126 ], [ -78.047644984130955, 24.864074031625755 ], [ -78.047264270370022, 24.865406529788963 ], [ -78.036299714054806, 24.86571110079776 ], [ -78.034586502130594, 24.851358192010558 ], [ -78.041134778818744, 24.850139907975464 ], [ -78.042391134229888, 24.849359444765703 ], [ -78.037460891025631, 24.845133522019371 ], [ -78.036166464238448, 24.845552307156272 ], [ -78.035919000293902, 24.851167835130084 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.035519250844857, 24.841764205235073 ], [ -78.03845074680406, 24.839727386614083 ], [ -78.038222318547497, 24.837671532305091 ], [ -78.033387253783587, 24.841231205969702 ], [ -78.033349182407434, 24.866548671071847 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.033756394256187, 24.853034675377803 ], [ -78.031845363051772, 24.85600289989392 ], [ -78.031635970483237, 24.857030827048529 ], [ -78.031293328098386, 24.864740280707309 ], [ -78.027962082690109, 24.860723750529505 ], [ -78.025563585996139, 24.860133644200044 ], [ -78.027809797185725, 24.860114608511964 ], [ -78.027981118378179, 24.860742786217571 ], [ -78.034929144515303, 24.858896324477051 ], [ -78.043495204136661, 24.856745291727812 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.037365712585412, 24.865520743917237 ], [ -78.037120407942567, 24.850886767673462 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.040278172856702, 24.86514003015629 ], [ -78.041134778818702, 24.850139907975464 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.045932874496032, 24.856119403392306 ], [ -78.046864520921034, 24.84648505587057 ], [ -78.052632334399235, 24.845361950275944 ], [ -78.053679297241843, 24.843306095966717 ], [ -78.055297330725921, 24.84423884468109 ], [ -78.055106973845341, 24.846504091558625 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.053489489845234, 24.860317054035576 ], [ -78.053446027799339, 24.846689044065993 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.051081053779768, 24.846952392701311 ], [ -78.051166586419697, 24.861504213739455 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.047644984130955, 24.864074031625755 ], [ -78.048818385300549, 24.847204349235195 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.056458507696775, 24.860095572823898 ], [ -78.055106973845341, 24.846504091558625 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.058658464940152, 24.852867242834211 ], [ -78.06016864375998, 24.846126615708592 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.06369206915474, 24.857811290258294 ], [ -78.065527948865423, 24.843822825663452 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.062454749431652, 24.846313734678141 ], [ -78.059923002921366, 24.858477539339983 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.067135753174838, 24.854900304203923 ], [ -78.068774597863381, 24.856535899159219 ], [ -78.064624817869031, 24.861827820436204 ], [ -78.059523253472477, 24.864074031625734 ], [ -78.051136462652053, 24.864968447017976 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.06255017823176, 24.862887384720548 ], [ -78.06350171227426, 24.860476286584817 ], [ -78.061769464661992, 24.858858253100923 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.066452243921646, 24.859448359430374 ], [ -78.06350171227426, 24.860476286584817 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.065272031262737, 24.867519491162078 ], [ -78.056839221457793, 24.868890060701549 ], [ -78.06371110484281, 24.863674282176724 ], [ -78.063120998513369, 24.862684426398197 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.058168399127609, 24.867419481152041 ], [ -78.055703857492318, 24.864013637971066 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.056839221457793, 24.868890060701549 ], [ -78.05308425161941, 24.864536892889408 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.067924827546562, 24.858140170813964 ], [ -78.069783489329907, 24.858420432275814 ], [ -78.071668022446502, 24.856554934847281 ], [ -78.068774597863381, 24.856535899159219 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.045298482063799, 24.865460833333373 ], [ -78.04487576031913, 24.856390824599941 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.030448619441216, 24.836905345861197 ], [ -78.033482432223821, 24.825983619844429 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.036873164157186, 24.826340538995243 ], [ -78.032126139450398, 24.826126387504729 ], [ -78.013994646585502, 24.83415706839946 ], [ -78.024916372602576, 24.826804533891426 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.0307846080659, 24.835721571985832 ], [ -78.024702221112051, 24.832800775626065 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.02559451898918, 24.833728765418453 ], [ -78.026986503677705, 24.831123255617086 ], [ -78.029235094328257, 24.830552184975634 ], [ -78.029927517481042, 24.827225698489571 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.029984624545037, 24.835691820748277 ], [ -78.032533027282483, 24.826083557206658 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.033387253783587, 24.841231205969702 ], [ -78.030448619441216, 24.836905345861197 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.028878175177312, 24.834371219889906 ], [ -78.027512966412644, 24.834291702663315 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.028878175177312, 24.834371219889906 ], [ -78.028962483096876, 24.830575890300082 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.033482432223821, 24.825983619844429 ], [ -78.039442982043553, 24.817381868308313 ], [ -78.038479300336121, 24.815383121063473 ], [ -78.028806791347208, 24.811457010403757 ], [ -78.027110846537255, 24.806217568969291 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.029699089224337, 24.804782622282485 ], [ -78.025451751328788, 24.80853027336671 ], [ -78.019853490469373, 24.807139610109108 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.033506421587077, 24.813323986800548 ], [ -78.031340917318431, 24.815811424044487 ], [ -78.02106164577296, 24.81909508023249 ], [ -78.018634595546928, 24.821272287052857 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.032542702267961, 24.8142670225267 ], [ -78.029806164969699, 24.813241606158137 ], [ -78.026094205800504, 24.817417560223401 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.004571981002059, 24.81281330317718 ], [ -78.008391015916615, 24.818309858100758 ], [ -78.011924515510358, 24.819915994279651 ], [ -78.017697087910705, 24.816403909835056 ], [ -78.016440732499575, 24.814024448829233 ], [ -78.018934407633765, 24.811759201951528 ], [ -78.018020694607486, 24.810007918651245 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.020389558014855, 24.807350788232998 ], [ -78.011282061038756, 24.817279551485122 ], [ -78.011215357901705, 24.819969085595925 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.011282061038756, 24.817279551485122 ], [ -78.008198279575112, 24.813624699380235 ], [ -78.008921635720881, 24.812216058464696 ], [ -78.013471165164191, 24.814862019103153 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.00892163572081, 24.812216058464696 ], [ -78.012214809753019, 24.804944425630829 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.01120666098825, 24.804586334687833 ], [ -78.013966093053412, 24.804830211502523 ], [ -78.016581731586285, 24.801577620007883 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -78.01508323746971, 24.813142025639248 ], [ -78.011531428552146, 24.806042784831224 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.992160712395361, 24.792114371887564 ], [ -77.98578375689948, 24.787165092995384 ], [ -77.976456269756397, 24.786689200794232 ], [ -77.969888957380178, 24.784166972128123 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.979134964005993, 24.786943934822215 ], [ -77.976551448196616, 24.779931531537681 ], [ -77.963226466563626, 24.775553323287024 ], [ -77.960085578035887, 24.770318509074151 ], [ -77.957944063130597, 24.769795027652933 ], [ -77.959562096614547, 24.767986637288381 ], [ -77.960323524136484, 24.767843869628084 ], [ -77.961275308538831, 24.767748691187851 ], [ -77.961941557620435, 24.767605923527388 ], [ -77.965986641330517, 24.766225836144173 ], [ -77.964463786286657, 24.761514503352569 ], [ -77.95784888469035, 24.760372362069837 ], [ -77.953565854879685, 24.762228341654275 ], [ -77.950520144792208, 24.761181378811834 ], [ -77.949235235848974, 24.763846375138364 ], [ -77.954688960474556, 24.76693491552378 ], [ -77.959600167990615, 24.765906988369334 ], [ -77.960413943654657, 24.767862905316157 ], [ -77.960399666888648, 24.770604044394904 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.956251056041324, 24.766723925670057 ], [ -77.954196412046343, 24.761930909028525 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.953423087219392, 24.765226462521568 ], [ -77.950303967878114, 24.761586710525588 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.963977606258595, 24.775734632868563 ], [ -77.966919390044794, 24.769628465382446 ], [ -77.965731002870001, 24.766274529184354 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.967841206366458, 24.776673255173105 ], [ -77.968585012748903, 24.772483818589496 ], [ -77.973581880861246, 24.772222077878791 ], [ -77.973558086251245, 24.776219572368529 ], [ -77.976651385558839, 24.778480060324064 ], [ -77.976551448196616, 24.779931531537681 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.973558086251245, 24.776219572368529 ], [ -77.969703359421644, 24.772293461708976 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.976456269756397, 24.786689200794232 ], [ -77.976551448196616, 24.779931531537681 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.979026087642708, 24.783833847587172 ], [ -77.980434728558265, 24.779550817776737 ], [ -77.979340176495569, 24.77848006032406 ], [ -77.976551448196616, 24.779931531537681 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.979130725241362, 24.787855269221271 ], [ -77.975628217326374, 24.789758705491757 ], [ -77.977436607690919, 24.799276549515078 ], [ -77.979982630967172, 24.799895209376537 ], [ -77.984191318643468, 24.804076054064236 ], [ -77.987016928587948, 24.801964282421512 ], [ -77.990050741370538, 24.802767350510848 ], [ -77.99021431329254, 24.810103097091531 ], [ -77.99532780026864, 24.807367609564359 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.992350503287398, 24.808960330694827 ], [ -77.994663905373557, 24.811078676103968 ], [ -77.994425959272959, 24.814314743071957 ], [ -77.999018319014354, 24.814433716122181 ], [ -77.999518005825593, 24.807557073815211 ], [ -77.997019571769329, 24.806248370262072 ], [ -77.99728131247997, 24.803274044004777 ], [ -77.995099708461836, 24.800685861341414 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.992160712395361, 24.792114371887564 ], [ -77.994616645212091, 24.807748045809923 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.895464626598496, 24.774229653636965 ], [ -77.887071349146069, 24.760565332295329 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.886565441084002, 24.760598615720454 ], [ -77.897557866333841, 24.779232520091579 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.895212496863451, 24.778186269348126 ], [ -77.884040074924911, 24.763682582803401 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.890327730443985, 24.771464389615144 ], [ -77.885044048368968, 24.761650366513916 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.881703285116743, 24.763477792566537 ], [ -77.889536000059877, 24.775622348439502 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.892276248922144, 24.776870309412988 ], [ -77.887116445835375, 24.769735709586286 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.881555632940547, 24.771987938858707 ], [ -77.881333423576152, 24.77332365279765 ], [ -77.907528978262405, 24.78501292238758 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.900677107177685, 24.779210788736926 ], [ -77.908958965854396, 24.783246005191923 ], [ -77.906975462805008, 24.784117422686503 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.908958965854396, 24.783246005191923 ], [ -77.925781755166085, 24.780009938223916 ], [ -77.929113000574304, 24.77003999660954 ], [ -77.936156205151718, 24.766851518861763 ], [ -77.93639415125233, 24.764567236296177 ], [ -77.929945811926345, 24.76513830693747 ], [ -77.924829970763639, 24.761926034579663 ], [ -77.922855018128828, 24.773347447407588 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.927923270071361, 24.772014949244433 ], [ -77.908411689823168, 24.77698802274659 ], [ -77.902558215748684, 24.775155837772054 ], [ -77.898443541649016, 24.77635235666169 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.898834279502836, 24.767088309214117 ], [ -77.901582636736151, 24.771110754062263 ], [ -77.904081070792401, 24.771443878603012 ], [ -77.902320269647973, 24.768802676886487 ], [ -77.900987771484679, 24.772562225275696 ], [ -77.901392279855742, 24.77349021506809 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.894755854543902, 24.76838728890046 ], [ -77.891327159800852, 24.762854024371929 ], [ -77.890038188872424, 24.763281978468086 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.891327159800852, 24.762854024371929 ], [ -77.89392077229725, 24.7619022399697 ], [ -77.894917439594053, 24.757626499365774 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.90603275936391, 24.764854421558653 ], [ -77.904675936043844, 24.760902866347237 ], [ -77.906722272508844, 24.759879698114613 ], [ -77.907531289250855, 24.75604876589534 ], [ -77.904727935721638, 24.753208454270123 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.904146246834003, 24.753470411229561 ], [ -77.90029772779296, 24.763758219554074 ], [ -77.902233274675538, 24.766076163984803 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.901772993616618, 24.767089464962353 ], [ -77.900059781692434, 24.765756966799138 ], [ -77.90029772779296, 24.763758219554074 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.89655148383045, 24.767768075036443 ], [ -77.89339729087591, 24.762259159120468 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.89392077229725, 24.7619022399697 ], [ -77.896347822523254, 24.762473310610932 ], [ -77.897195721070347, 24.756600501274324 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.897115646475839, 24.759593060561436 ], [ -77.899724232370232, 24.75546181503428 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.909246503062889, 24.789717709932745 ], [ -77.921665287625899, 24.787695597272808 ], [ -77.92186534272372, 24.780770126388383 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.871853419205692, 24.747998045544584 ], [ -77.867818085062666, 24.75183711991496 ], [ -77.863723325987834, 24.759511349585928 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.865920233187623, 24.759138681973919 ], [ -77.866687915551893, 24.755983016694472 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.861729403304025, 24.752714170840704 ], [ -77.86689485419241, 24.748053776915754 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.868750833777057, 24.74472729042963 ], [ -77.867965611645133, 24.742828480546788 ], [ -77.866380890615204, 24.743285337059941 ], [ -77.8613126386727, 24.749010320240135 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.857023710981494, 24.749611993802834 ], [ -77.868722280244953, 24.740929670664329 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.850606909734211, 24.745495312872105 ], [ -77.863955382672358, 24.732603498000117 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.864258680986765, 24.732483989267223 ], [ -77.865510007887011, 24.73473355420515 ], [ -77.863825349494874, 24.734904875397547 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.861598173993386, 24.734804938035158 ], [ -77.861098487182161, 24.737988656860985 ], [ -77.852636392621818, 24.746776765928825 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.854825349751053, 24.748162747812398 ], [ -77.857829107760068, 24.744470308640931 ], [ -77.862197798166846, 24.742100365479192 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.861989889954273, 24.742638480852975 ], [ -77.864096608049621, 24.738973753717527 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.860313265050223, 24.743299613826029 ], [ -77.860384648880455, 24.740815456536051 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.858537617745938, 24.763390985357329 ], [ -77.868322530795965, 24.77124400387844 ], [ -77.86324000208748, 24.773261786811595 ], [ -77.863639751536482, 24.775108248552044 ], [ -77.870511634921385, 24.777202174237164 ], [ -77.872148704093448, 24.779752956435392 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.868316362513156, 24.784000030482556 ], [ -77.869369493638558, 24.778572743776458 ], [ -77.866590593141396, 24.771884246234318 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.867381755532762, 24.771591778620458 ], [ -77.863011573830917, 24.767360723517022 ], [ -77.858690472644255, 24.767132295260474 ], [ -77.85766826241921, 24.765663164051954 ], [ -77.854274193017346, 24.768141186727021 ], [ -77.850486091095902, 24.764981262511203 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.852751337973601, 24.766542188930959 ], [ -77.850010198894793, 24.766104368106053 ], [ -77.851399804122238, 24.763648764347998 ], [ -77.855921822133112, 24.766152443639282 ] ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "Descrptn": "TNCdig_current" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -77.855498096402698, 24.763182854992817 ], [ -77.855502509216478, 24.757343211894472 ] ] ] } } +] +} diff --git a/src/ckanext-mappreview/ckanext/mappreview/public/data/recreation/roads-simple.qmd b/src/ckanext-mappreview/ckanext/mappreview/public/data/recreation/roads-simple.qmd new file mode 100644 index 00000000..b190199d --- /dev/null +++ b/src/ckanext-mappreview/ckanext/mappreview/public/data/recreation/roads-simple.qmd @@ -0,0 +1,26 @@ + + + + + + dataset + + + + + + + + + + 0 + 0 + + + + + false + + + + diff --git a/src/ckanext-mappreview/ckanext/mappreview/templates/.gitignore b/src/ckanext-mappreview/ckanext/mappreview/templates/.gitignore new file mode 100644 index 00000000..e69de29b diff --git a/src/ckanext-mappreview/ckanext/mappreview/templates/base.html b/src/ckanext-mappreview/ckanext/mappreview/templates/base.html new file mode 100644 index 00000000..34b91417 --- /dev/null +++ b/src/ckanext-mappreview/ckanext/mappreview/templates/base.html @@ -0,0 +1,11 @@ +{% ckan_extends %} + +{% block styles %} + {{ super() }} + {% asset 'mappreview/mappreview-css' %} +{% endblock %} + +{% block scripts %} + {{ super() }} + {% asset 'mappreview/mappreview-js' %} +{% endblock %} diff --git a/src/ckanext-mappreview/ckanext/mappreview/templates/package/snippets/resources_list.html b/src/ckanext-mappreview/ckanext/mappreview/templates/package/snippets/resources_list.html new file mode 100644 index 00000000..e0f7ac57 --- /dev/null +++ b/src/ckanext-mappreview/ckanext/mappreview/templates/package/snippets/resources_list.html @@ -0,0 +1,9 @@ +{% ckan_extends %} + +{% block resource_list %} +
+ +
+
+{% endblock %} + diff --git a/src/ckanext-mappreview/ckanext/mappreview/tests/__init__.py b/src/ckanext-mappreview/ckanext/mappreview/tests/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/src/ckanext-mappreview/ckanext/mappreview/tests/test_plugin.py b/src/ckanext-mappreview/ckanext/mappreview/tests/test_plugin.py new file mode 100644 index 00000000..40dee309 --- /dev/null +++ b/src/ckanext-mappreview/ckanext/mappreview/tests/test_plugin.py @@ -0,0 +1,56 @@ +""" +Tests for plugin.py. + +Tests are written using the pytest library (https://docs.pytest.org), and you +should read the testing guidelines in the CKAN docs: +https://docs.ckan.org/en/2.9/contributing/testing.html + +To write tests for your extension you should install the pytest-ckan package: + + pip install pytest-ckan + +This will allow you to use CKAN specific fixtures on your tests. + +For instance, if your test involves database access you can use `clean_db` to +reset the database: + + import pytest + + from ckan.tests import factories + + @pytest.mark.usefixtures("clean_db") + def test_some_action(): + + dataset = factories.Dataset() + + # ... + +For functional tests that involve requests to the application, you can use the +`app` fixture: + + from ckan.plugins import toolkit + + def test_some_endpoint(app): + + url = toolkit.url_for('myblueprint.some_endpoint') + + response = app.get(url) + + assert response.status_code == 200 + + +To temporary patch the CKAN configuration for the duration of a test you can use: + + import pytest + + @pytest.mark.ckan_config("ckanext.myext.some_key", "some_value") + def test_some_action(): + pass +""" +import ckanext.mappreview.plugin as plugin + + +@pytest.mark.ckan_config("ckan.plugins", "mappreview") +@pytest.mark.usefixtures("with_plugins") +def test_plugin(): + assert plugin_loaded("mappreview") diff --git a/src/ckanext-mappreview/dev-requirements.txt b/src/ckanext-mappreview/dev-requirements.txt new file mode 100644 index 00000000..eac82b41 --- /dev/null +++ b/src/ckanext-mappreview/dev-requirements.txt @@ -0,0 +1 @@ +pytest-ckan diff --git a/src/ckanext-mappreview/requirements.txt b/src/ckanext-mappreview/requirements.txt new file mode 100644 index 00000000..e69de29b diff --git a/src/ckanext-mappreview/setup.cfg b/src/ckanext-mappreview/setup.cfg new file mode 100644 index 00000000..eefe6f53 --- /dev/null +++ b/src/ckanext-mappreview/setup.cfg @@ -0,0 +1,62 @@ +[metadata] +name = ckanext-mappreview +version = 0.0.1 +description = +long_description = file: README.md +long_description_content_type = text/markdown +url = https://github.com/stamen/ckanext-mappreview +author = Stamen Design +author_email = info@stamen.com +license = AGPL +classifiers = + Development Status :: 4 - Beta + License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+) + Programming Language :: Python :: 3.7 + Programming Language :: Python :: 3.8 + Programming Language :: Python :: 3.9 + Programming Language :: Python :: 3.10 +keywords = CKAN maps webmaps mapbox + +[options] +packages = find: +namespace_packages = ckanext +install_requires = +include_package_data = True + +[options.entry_points] +ckan.plugins = + mappreview = ckanext.mappreview.plugin:MappreviewPlugin + +babel.extractors = + ckan = ckan.lib.extract:extract_ckan + +[options.extras_require] + +[extract_messages] +keywords = translate isPlural +add_comments = TRANSLATORS: +output_file = ckanext/mappreview/i18n/ckanext-mappreview.pot +width = 80 + +[init_catalog] +domain = ckanext-mappreview +input_file = ckanext/mappreview/i18n/ckanext-mappreview.pot +output_dir = ckanext/mappreview/i18n + +[update_catalog] +domain = ckanext-mappreview +input_file = ckanext/mappreview/i18n/ckanext-mappreview.pot +output_dir = ckanext/mappreview/i18n +previous = true + +[compile_catalog] +domain = ckanext-mappreview +directory = ckanext/mappreview/i18n +statistics = true + +[tool:pytest] +filterwarnings = + ignore::sqlalchemy.exc.SADeprecationWarning + ignore::sqlalchemy.exc.SAWarning + ignore::DeprecationWarning +addopts = --ckan-ini test.ini diff --git a/src/ckanext-mappreview/setup.py b/src/ckanext-mappreview/setup.py new file mode 100644 index 00000000..4d26df7a --- /dev/null +++ b/src/ckanext-mappreview/setup.py @@ -0,0 +1,16 @@ +# -*- coding: utf-8 -*- +from setuptools import setup + +setup( + # If you are changing from the default layout of your extension, you may + # have to change the message extractors, you can read more about babel + # message extraction at + # http://babel.pocoo.org/docs/messages/#extraction-method-mapping-and-configuration + message_extractors={ + 'ckanext': [ + ('**.py', 'python', None), + ('**.js', 'javascript', None), + ('**/templates/**.html', 'ckan', None), + ], + } +) diff --git a/src/ckanext-mappreview/test.ini b/src/ckanext-mappreview/test.ini new file mode 100644 index 00000000..0320cebb --- /dev/null +++ b/src/ckanext-mappreview/test.ini @@ -0,0 +1,45 @@ +[DEFAULT] +debug = false +smtp_server = localhost +error_email_from = ckan@localhost + +[app:main] +use = config:../../src/ckan/test-core.ini + +# Insert any custom config settings to be used when running your extension's +# tests here. These will override the one defined in CKAN core's test-core.ini +ckan.plugins = mappreview + + +# Logging configuration +[loggers] +keys = root, ckan, sqlalchemy + +[handlers] +keys = console + +[formatters] +keys = generic + +[logger_root] +level = WARN +handlers = console + +[logger_ckan] +qualname = ckan +handlers = +level = INFO + +[logger_sqlalchemy] +handlers = +qualname = sqlalchemy.engine +level = WARN + +[handler_console] +class = StreamHandler +args = (sys.stderr,) +level = NOTSET +formatter = generic + +[formatter_generic] +format = %(asctime)s %(levelname)-5.5s [%(name)s] %(message)s